<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Surya's blog</title>
	<atom:link href="http://www.hakc.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hakc.net</link>
	<description></description>
	<lastBuildDate>Sat, 25 Jul 2009 11:39:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>pyS60 Automatic SMS sender</title>
		<link>http://www.hakc.net/2009/03/28/pys60-automatic-sms-sender/</link>
		<comments>http://www.hakc.net/2009/03/28/pys60-automatic-sms-sender/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 11:05:03 +0000</pubDate>
		<dc:creator>Surya</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Automatic SMS]]></category>
		<category><![CDATA[pyS60]]></category>

		<guid isPermaLink="false">http://www.hakc.net/?p=52</guid>
		<description><![CDATA[Ever felt like sending a predefined message to someone automatically after x seconds? Annoy someone ? If you have a smartphone with pyS60 installed it&#8217;s just 13 lines of copy-paste. Code and instructions after the break.

The Script :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 25/03/2009 -- Surya -  HAKC.NET
import messaging
import appuifw
import e32 #import the modules.
number = &#34;123456789&#34; #define the recipient [...]]]></description>
			<content:encoded><![CDATA[<p>Ever felt like sending a predefined message to someone automatically after x seconds? Annoy someone ? If you have a smartphone with pyS60 installed it&#8217;s just 13 lines of copy-paste. Code and instructions after the break.</p>
<p><span id="more-52"></span></p>
<p>The Script :</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</pre></td><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;"># 25/03/2009 -- Surya -  HAKC.NET</span>
<span style="color: #ff7700;font-weight:bold;">import</span> messaging
<span style="color: #ff7700;font-weight:bold;">import</span> appuifw
<span style="color: #ff7700;font-weight:bold;">import</span> e32 <span style="color: #808080; font-style: italic;">#import the modules.</span>
number = <span style="color: #483d8b;">&quot;123456789&quot;</span> <span style="color: #808080; font-style: italic;">#define the recipient phone number here</span>
text = <span style="color: #483d8b;">&quot;Hi :}&quot;</span> <span style="color: #808080; font-style: italic;">#define the message here</span>
i = <span style="color: #ff4500;">0</span> <span style="color: #808080; font-style: italic;">#counter initial value</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">while</span> <span style="color: #008000;">True</span>: <span style="color: #808080; font-style: italic;">#infinte loop</span>
	tex = appuifw.<span style="color: black;">note</span><span style="color: black;">&#40;</span>u<span style="color: #483d8b;">&quot;Sending!&quot;</span><span style="color: black;">&#41;</span> <span style="color: #808080; font-style: italic;">#Throw a dialog box just before the message is sent</span>
	messaging.<span style="color: black;">sms_send</span><span style="color: black;">&#40;</span>number, text<span style="color: black;">&#41;</span> <span style="color: #808080; font-style: italic;">#Send the message</span>
	tex = appuifw.<span style="color: black;">note</span><span style="color: black;">&#40;</span>u<span style="color: #483d8b;">&quot;Sent!&quot;</span><span style="color: black;">&#41;</span> <span style="color: #808080; font-style: italic;">#Throw a dialog box after the message is sent</span>
	<span style="color: #ff7700;font-weight:bold;">print</span> i <span style="color: #808080; font-style: italic;">#Print the counter in Python Console</span>
	i=i+<span style="color: #ff4500;">1</span> <span style="color: #808080; font-style: italic;">#Increment the counter</span>
	e32.<span style="color: black;">ao_sleep</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">300</span><span style="color: black;">&#41;</span> <span style="color: #808080; font-style: italic;">#Wait for 5 minutes (value to be given in seconds) before the next </span>
&nbsp;
<span style="color: #808080; font-style: italic;"># NOTE : You do get charged for every text sent (unless it's free). I don't endorse spamming.</span></pre></td></tr></table></div>

<p>The script is not a biggie. It just sends sends the predefined text to the predefined number in an infinte <em>While</em> loop which sleeps for the defined seconds before the next iteration.</p>
<p>How to execute ? If you don&#8217;t have the Python installed in your <a href="http://www.forum.nokia.com/Resources_and_Information/Explore/Software_Platforms/S60/">Series 60</a> phone, get it <a href="http://sourceforge.net/projects/pys60">here</a>. Just copy the above snippet create a new &#8216;I_am_so_kewl.<strong>py</strong>&#8216; file in your pc, paste and save the above snippet. Then transfer the file to the Python directory in the mem card/phone memory. Open Python shell in the phone (usually in the &#8216;Applications&#8217; folder), Options-&gt;Run Script-&gt; Browser for &#8216;I_am_so_kewl.py&#8217;, execute it and watch the magic happen. <em>Make sure</em> that once you run the sript you don&#8217;t exit the python shell, you can just click the menu button and python will silently run with the evil script in the background. If you&#8217;re just curious to check how many messages have been sent, just open the python shell again and you&#8217;d have the latest counter read printed (add 1 to it; I was too lazy to increment it in the script). More information on pyS60 : <a href="http://wiki.opensource.nokia.com/projects/PyS60">Nokia Wiki</a>,  <a href="http://croozeus.com/tutorials.htm">Croozeus</a> and <a href="http://www.mobilenin.com/pys60/menu.htm">Mobilenin</a>.</p>
<p>Special thanks goes to my first victim for being the guinea pig and the inspiration behind this. Some might look at the code, the other way and might put this into work for evil purpose; I don&#8217;t endorse that.</p>
<p><img id="smallDivTip" style="border: 1px solid blue; z-index: 90; opacity: 1; position: absolute; left: 25px; top: 145px;" src="chrome://dictionarytip/skin/book.png" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hakc.net/2009/03/28/pys60-automatic-sms-sender/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>N82 &amp; Its smashing GPS</title>
		<link>http://www.hakc.net/2009/01/26/n82-its-smashing-gps/</link>
		<comments>http://www.hakc.net/2009/01/26/n82-its-smashing-gps/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 15:31:51 +0000</pubDate>
		<dc:creator>Surya</dc:creator>
				<category><![CDATA[N82/GPS]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[n82]]></category>
		<category><![CDATA[n82 GPS]]></category>
		<category><![CDATA[Nokia GPS]]></category>

		<guid isPermaLink="false">http://www.hakc.net/?p=45</guid>
		<description><![CDATA[I got a Nokia n82 this year. The only thing I&#8217;ve been mad about in the n82 is the GPS. I&#8217;ve an unsual attraction and liking for the GPS; it&#8217;s simply super-awesome. Most of the time I&#8217;m hooked to the GPS applications in my phone. I&#8217;ve installed everything I can, upgraded the firmware (which in [...]]]></description>
			<content:encoded><![CDATA[<p>I got a Nokia n82 this year. The only thing I&#8217;ve been mad about in the n82 is the GPS. I&#8217;ve an unsual attraction and liking for the GPS; it&#8217;s simply super-awesome. Most of the time I&#8217;m hooked to the GPS applications in my phone. I&#8217;ve installed everything I can, upgraded the firmware (which in my opinion has reduced the &#8216;time-to-first-fix&#8217;), Nokia&#8217;s Maps 2.0, Google maps (Sadly, I can&#8217;t be arsed to pay high for my GPRS data so it&#8217;s good as long as I&#8217;m in my home, with the WiFi network) and of course Nokia Lab&#8217;s sportstracker. Some action-shots after the break.</p>
<p><span id="more-45"></span></p>
<p>Following are some &#8216;action-shots&#8217; of the n82 GPS.</p>
<p><a href="http://sportstracker.nokia.com/nts/workoutdetail/index.do?id=505994">Mumbai &#8211; Chennai</a> (Flight journey; yes I had to sneak with the phone)<br />
<a href="http://sportstracker.nokia.com/nts/workoutdetail/index.do?id=505996">Bhubaneswar &#8211; Mumbai</a> (Flight journey again)</p>
<p>Some pics : (While approaching Chennai airport; the grey sign)</p>
<p><img class="alignnone size-full wp-image-46" title="Approaching Chennai airport" src="http://www.hakc.net/wp-content/uploads/2009/01/maps2.jpg" alt="Approaching Chennai airport" width="320" height="240" /> <img class="alignnone size-full wp-image-47" title="Approaching Chennai airport 2" src="http://www.hakc.net/wp-content/uploads/2009/01/maps3.jpg" alt="Approaching Chennai airport 2" width="320" height="240" /></p>
<p>Yes, I&#8217;m a GPS freak. Viva la GPS!</p>
<p><img id="smallDivTip" style="border: 1px solid blue; z-index: 90; opacity: 1; position: absolute; left: 435px; top: 329px;" src="chrome://dictionarytip/skin/book.png" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hakc.net/2009/01/26/n82-its-smashing-gps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ever thought of suing god ?</title>
		<link>http://www.hakc.net/2008/10/19/ever-thought-of-suing-god/</link>
		<comments>http://www.hakc.net/2008/10/19/ever-thought-of-suing-god/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 16:34:50 +0000</pubDate>
		<dc:creator>Surya</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.hakc.net/?p=42</guid>
		<description><![CDATA[You might be wondering, what provoked me to post something new ? It&#8217;s this piece from BBC&#8217;s website. Some jobless ninja tried &#8217;suing god&#8217;. In BBC&#8217;s tone &#8220;He sought a permanent injunction to prevent the &#8216;death, destruction and terrorisation&#8217; caused by God. &#8221;
Seriously, what is that ? Apparently he wanted to &#8216;prove&#8217; that since a [...]]]></description>
			<content:encoded><![CDATA[<p>You might be wondering, what provoked me to post something new ? It&#8217;s <a href="http://news.bbc.co.uk/2/hi/americas/7673591.stm">this piece</a> from BBC&#8217;s website. Some jobless ninja tried &#8217;suing god&#8217;. In BBC&#8217;s tone &#8220;<em>He sought a permanent injunction to prevent the &#8216;death, destruction and terrorisation&#8217; caused by God. </em>&#8221;</p>
<p>Seriously, what is that ? Apparently he wanted to &#8216;prove&#8217; that since a person can sue anyone, he should try suing god and become &#8216;<a href="http://www.physorg.com/news143439396.html">joe the plumber</a>&#8216; (I mean the media attention). The court, in turn threw out the case stating &#8220;<em>that because the defendant has no address, legal papers cannot be served.&#8221;</em></p>
<p><span id="more-42"></span></p>
<p>We could surely expect, some other smart-ass to sue his (<em>I&#8217;ve to be sexist here; I don&#8217;t want to be called a perv</em>) own genitals with charges of &#8216;<em>excessive irritation, poor performance &amp; distraction</em>&#8216; one day. Who knows the court might throw this one out too; stating that &#8216;<em>the defendant has no proper address</em>&#8216;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hakc.net/2008/10/19/ever-thought-of-suing-god/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New PC!</title>
		<link>http://www.hakc.net/2008/05/03/new-pc/</link>
		<comments>http://www.hakc.net/2008/05/03/new-pc/#comments</comments>
		<pubDate>Sat, 03 May 2008 16:21:02 +0000</pubDate>
		<dc:creator>Surya</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.hakc.net/?p=28</guid>
		<description><![CDATA[Finally, I got a new new monster beast. I haven&#8217;t kicked the old beast but they two seem to like each other. Moving on to the config:

Intel Core 2 Quad 2.4 GHz (Will o&#8217;clock to 3)
Abit IP35-E
Corsair 2 Gigis RAM
Cooler Master Mystique Cabinet with CM PSU
NVidia 8800 GT; 512 MB
Samsung 22&#8243; LCD
Logitech mx200 cordless mouse/keyboard

Rest, [...]]]></description>
			<content:encoded><![CDATA[<p>Finally, I got a new new monster beast. I haven&#8217;t kicked the old beast but they two seem to like each other. Moving on to the config:</p>
<ul>
<li>Intel Core 2 Quad 2.4 GHz (Will o&#8217;clock to 3)</li>
<li>Abit IP35-E</li>
<li>Corsair 2 Gigis RAM</li>
<li>Cooler Master Mystique Cabinet with CM PSU</li>
<li>NVidia 8800 GT; 512 MB</li>
<li>Samsung 22&#8243; LCD</li>
<li>Logitech mx200 cordless mouse/keyboard</li>
</ul>
<p>Rest, aren&#8217;t worth mentioning, though I&#8217;ve decided to keep both my old and new pc. About Websites, I sold cropr.in (rebranded to a new site now) for a mid $xxx value at sitepoint. It was an AJAX cropper + resizer. Then, sold sprif.com an AJAX site again for $500 at sitepoint.</p>
<p>Now it&#8217;s the time to shoot and burn some stuff, game I mean <img src='http://www.hakc.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.hakc.net/2008/05/03/new-pc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AJAX Contact Form with captcha</title>
		<link>http://www.hakc.net/2008/04/06/ajax-contact-form-with-captcha/</link>
		<comments>http://www.hakc.net/2008/04/06/ajax-contact-form-with-captcha/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 21:18:04 +0000</pubDate>
		<dc:creator>Surya</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[captcha]]></category>
		<category><![CDATA[contact]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.hakc.net/?p=26</guid>
		<description><![CDATA[Here it is, an AJAX&#8217;d contact form with a captcha. I had an idea to code this about a week ago and thought would be a tough job to do but it wasn&#8217;t that tough to code when I started doing it. The only place where I had to spend a lot of time was, [...]]]></description>
			<content:encoded><![CDATA[<p>Here it is, an AJAX&#8217;d contact form with a captcha. I had an idea to code this about a week ago and thought would be a tough job to do but it wasn&#8217;t that tough to code when I started doing it. The only place where I had to spend a lot of time was, pondering how to pass the value from the &#8216;textarea&#8217; to the PHP preserving the line breaks. After googling for about an hour and reading different articles I finally got what was required, I just had to escape(): the variable before sending it to the PHP script.</p>
<p>On a positive note, I didn&#8217;t really have any problem with running this script on IE (I usually have to break my head over this matter). To prelude its features, I guess it does everything you&#8217;d normally except a contact form to do. It sanitizes all the variables, checks for the Email structure and disabled the submit button once the email is sent to prevent mass emails. I would like to thank SecondVersion and Psyrens for the PHP backend &amp; ajax captcha respectively. As usual I&#8217;m lazy to provide a detailed documentation about it and would *make sure* that I write one in the future. But the whole script isn&#8217;t obfuscated at all, you&#8217;d just have to edit some constants and woo! it&#8217;s done.</p>
<p>I&#8217;m currently working on integrating this script as a wordpress plugin. Please let me know any bugs/commments/feedback by commenting below or contacting me. Show-off your own modified version of this script here <img src='http://www.hakc.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Script Demo : ~Snipped temporarily~<a href="http://hakc.net/ajax-contact-form-captcha-demo/" target="_blank"></a></p>
<p>Script Download : <a href="http://hakc.net/ajax-contact-form-captcha-demo/ajax-contact-form-hakc.net.zip" target="_blank">http://hakc.net/&#8230;./&#8230;.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hakc.net/2008/04/06/ajax-contact-form-with-captcha/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Back and some Orkut rant</title>
		<link>http://www.hakc.net/2008/04/04/back-and-some-orkut-rant/</link>
		<comments>http://www.hakc.net/2008/04/04/back-and-some-orkut-rant/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 17:32:37 +0000</pubDate>
		<dc:creator>Surya</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.hakc.net/?p=25</guid>
		<description><![CDATA[I&#8217;ve finally become free from a voyage that many idiots including me embarked about a year ago. I&#8217;m finally completely sane.  I had decided long back to write a blog entry on &#8220;why orkut sucks&#8221; and I think this is the perfectly right time to do it. So this isn&#8217;t the way you&#8217;d normally [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally become free from a voyage that many idiots including me embarked about a year ago. I&#8217;m finally completely sane.  I had decided long back to write a blog entry on &#8220;why orkut sucks&#8221; and I think this is the perfectly right time to do it. So this isn&#8217;t the way you&#8217;d normally expect a person to prelude his blog after months of inactivity and if you&#8217;re one of those &#8216;pro orkut lover&#8217; you wouldn&#8217;t indeed like this. Yeah, and this is my first &#8220;hate rant&#8221;.</p>
<p>I don&#8217;t have anything against most of the social networking sites out there (probably because I don&#8217;t visit many) but orkut is something which just rages me to the core. I find it ridiculous that it&#8217;s a big &#8220;phenomenon&#8221; in India (I would infact rate <a href="http://www.youtube.com/user/itschriscrocker">Chris Crocker&#8217;s videos</a> more than this crap).</p>
<p>PS : Parental advisory <img src='http://www.hakc.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> , entry is a bit profane.</p>
<p><span id="more-25"></span></p>
<p>I really don&#8217;t understand the purpose of the &#8220;orkut scrapbook&#8221; (or perhaps, spambook), is it that the website fails to convey what the scrapbook really is or is it that those idiots who use it fail to understand that its not something which can be used chat with other users. Almost every orkut user thinks its the elite instant message protocol which can be used to send messages like &#8220;hi der???!!!!!&#8221;. My question to all these losers : What the fuck is wrong in using any of the IM services available, instead of spamming a user&#8217;s scrapbook with retarded junk ?</p>
<p>Another interesting, part in orkut is the &#8220;Testimonials&#8221;. Orkut users, especially Indians fail to understand that it&#8217;s not a place to spam others with graphical chain-messages. The best part, the users even accept testimonials submitted for them with these messages containing junk. Yeah, and a typical testimonial would start like &#8220;So let&#8217;s see&#8230;.hmmm&#8230;..<em>insert name here</em>&#8220;, is it just me or is it that it&#8217;s the gayest way of starting how you feel about a person ?</p>
<p>It&#8217;s also very common to see that users have special names in their profiles using ASCII codes and fonts. Now my question to these high faggots is how in the world do they expect people visiting their profile to know who they are ? Randomly searching, I got this name &#8220;NOT#!NG $PEC!@L F0R ME EXCEPT&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;, Now seriously tell me what does this fruit expect from the people who visit his profile ? Being a non-orkut user, for me at least its quite difficult to understand who the person really is (or I don&#8217;t even know what that emo line means). I would try reading the testimonial at last to see who the person really is and you know its filled with chain-message junk.</p>
<p>&lt;sarcasm&gt;When it comes to security and ease of interface, orkut beats any website&lt;/sarcasm&gt;.  Orkut users randomly run these javascripts to send mass scrapbook entries to all the users (oh by the way, that&#8217;s more of spam). What these nincompoops aren&#8217;t aware of is, it takes a second for someone to add a XSS method to the scripts which would make the user vulnerable to hacking attemps.  Orkut doesn&#8217;t care about this, they think putting a security tip at the homepage of every user would make them stop using these &#8220;mass-spam&#8221; scripts. Unlike Facebook, orkut doesn&#8217;t have an API. These javascripts can even change the user&#8217;s profile fields (no wonder, so many viruses are posting more spam in the spambooks).</p>
<p>To conclude, I would prefer facebook over orkut anytime. It&#8217;s more secure, neat interface and not gay like orkut (you can&#8217;t even use a fake name). Those orkut users who whine about abuse of their accounts (normally after getting hacked), probably deserve it because I would call it the &#8220;heights of insanity&#8221; to upload your picture at a site like orkut.</p>
<p>I&#8217;m done with the &#8220;anti-orkut post&#8221; <img src='http://www.hakc.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I&#8217;ve some scripts being coded and would release them soon. Yeah and welcome to <a href="http://conta.in">Abishek</a> @ blogosphere.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hakc.net/2008/04/04/back-and-some-orkut-rant/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Voila! Condolences.mobi sold!</title>
		<link>http://www.hakc.net/2008/01/05/voila-condolencesmobi-sold/</link>
		<comments>http://www.hakc.net/2008/01/05/voila-condolencesmobi-sold/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 08:38:18 +0000</pubDate>
		<dc:creator>Surya</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.hakc.net/2008/01/05/voila-condolencesmobi-sold/</guid>
		<description><![CDATA[Finally, I&#8217;ve sold a domain for the very first time and the price offered for it has beat my highest earning record. I bought condolences.mobi for 10USD back in april. Bingo, then came the 500 USD bid through SEDO. Here&#8217;s my paypal screen :

]]></description>
			<content:encoded><![CDATA[<p>Finally, I&#8217;ve sold a domain for the very first time and the price offered for it has beat my highest earning record. I bought condolences.mobi for 10USD back in april. Bingo, then came the 500 USD bid through SEDO. Here&#8217;s my paypal screen :</p>
<p><img src="http://www.hakc.net/helo.jpg" alt="" width="513" height="226" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hakc.net/2008/01/05/voila-condolencesmobi-sold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stall&#8217;d</title>
		<link>http://www.hakc.net/2007/09/25/stalld/</link>
		<comments>http://www.hakc.net/2007/09/25/stalld/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 19:11:05 +0000</pubDate>
		<dc:creator>Surya</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.hakc.net/2007/09/25/stalld/</guid>
		<description><![CDATA[Yes, the blog is stalled and will be the same for the upcoming months.
I cannot update the blog, been busy in real life.
Will try updating in the mean time.
Surya
PS: Check the movie ratings page, hell yeah I can watch movies but cannot update my blog! :p
]]></description>
			<content:encoded><![CDATA[<p>Yes, the blog is stalled and will be the same for the upcoming months.</p>
<p>I cannot update the blog, been busy in real life.</p>
<p>Will try updating in the mean time.</p>
<p>Surya</p>
<p>PS: Check the <a href="http://hakc.net/movies/">movie ratings page</a>, hell yeah I can watch movies but cannot update my blog! :p</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hakc.net/2007/09/25/stalld/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pssst! Iâ€™m a compTIA certified b&#8230;. now..</title>
		<link>http://www.hakc.net/2007/05/21/pssst-i%e2%80%99m-a-comptia-certified-bitch-now/</link>
		<comments>http://www.hakc.net/2007/05/21/pssst-i%e2%80%99m-a-comptia-certified-bitch-now/#comments</comments>
		<pubDate>Mon, 21 May 2007 16:42:53 +0000</pubDate>
		<dc:creator>Surya</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.hakc.net/2007/05/21/pssst-i%e2%80%99m-a-comptia-certified-bitch-now/</guid>
		<description><![CDATA[Oops! Iâ€™ve finally updated my blog (once again). I got certificated in the compTIA I-NET+ today with 878/900 marks. Iâ€™m yet to confirm that if Iâ€™m the youngest to do this. It was pretty easy than what I expected it to be and I took 15 minutes to complete this.  Two questions went wrong [...]]]></description>
			<content:encoded><![CDATA[<p>Oops! Iâ€™ve finally updated my blog (once again). I got certificated in the <a href="http://certification.comptia.org/inet/">compTIA I-NET+</a> today with 878/900 marks. Iâ€™m yet to confirm that if Iâ€™m the youngest to do this. It was pretty easy than what I expected it to be and I took 15 minutes to complete this.  Two questions went wrong (somewhere) out of 74 questions <img src="http://www.hakc.net/wp-includes/images/smilies/icon_razz.gif" alt=":P" class="wp-smiley" /></p>
<p>Apart from compTIA, I got certified in <a href="http://expertrating.com/">AJAX and Computer Skills</a> (bah) way back in the first week on may and I was way too lazy to update this. I will post the screenshots of the hard copy certificate pretty soon (yes soon).</p>
<p><span id="more-20"></span></p>
<p>Iâ€™ve some exciting websites coming up soon and Iâ€™ll update here asap they get up. Be sure to check the updated about-me page for some â€œshiny badgesâ€ (Iâ€™m still waiting for some more badges).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hakc.net/2007/05/21/pssst-i%e2%80%99m-a-comptia-certified-bitch-now/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>AJAX Password Strength</title>
		<link>http://www.hakc.net/2007/04/06/ajax-password-strength/</link>
		<comments>http://www.hakc.net/2007/04/06/ajax-password-strength/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 15:46:45 +0000</pubDate>
		<dc:creator>Surya</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.hakc.net/2007/04/06/ajax-password-strength/</guid>
		<description><![CDATA[Follow this URL :
http://www.hakc.net/scripts/
]]></description>
			<content:encoded><![CDATA[<p>Follow this URL :</p>
<p><a href="http://www.hakc.net/scripts/">http://www.hakc.net/scripts/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hakc.net/2007/04/06/ajax-password-strength/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>
