<?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>Harsh J &#187; Blog</title>
	<atom:link href="http://www.harshj.com/tags/personal/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.harshj.com</link>
	<description>Memoirs of a QWERTY Keyboard</description>
	<lastBuildDate>Sun, 15 Jan 2012 19:52:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom:link rel='hub' href='http://www.harshj.com/?pushpress=hub'/>
		<item>
		<title>Clearing all log files in /var/log</title>
		<link>http://www.harshj.com/2009/05/19/clearing-all-log-files-in-varlog/</link>
		<comments>http://www.harshj.com/2009/05/19/clearing-all-log-files-in-varlog/#comments</comments>
		<pubDate>Mon, 18 May 2009 22:01:49 +0000</pubDate>
		<dc:creator>Harsh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.harshj.com/?p=645</guid>
		<description><![CDATA[Stupid things you end up writing when you worry about filling disk spaces at 3 AM in the morning of the day right before your exams begin. The following will delete all your log files in a safe manner, by simply rewriting them to null. Suggest better methods if known, and thank you! Optionally, get [...]]]></description>
			<content:encoded><![CDATA[<p>Stupid things you end up writing when you worry about filling disk spaces at 3 AM in the morning of the day right before your exams begin. The following will delete all your log files in a safe manner, by simply rewriting them to null.</p>
<pre class="brush: bash; title: ; notranslate">
cd /var/log
for file in `find .`
do
	if [ -f $file ];
	then
		cat /dev/null &gt; $file
	fi
done
</pre>
<p>Suggest better methods if known, and thank you!</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6470447295952949";
//Big-Posts-Journalist
google_ad_slot = "1391165574";
google_ad_width = 336;
google_ad_height = 280;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>Optionally, get in there and delete those now-stagnant <strong>.gz</strong> files with the following:</p>
<pre class="brush: bash; title: ; notranslate">find /var/log -name &quot;*.gz&quot; | xargs rm</pre>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6470447295952949";
//Big-Posts-Journalist
google_ad_slot = "1391165574";
google_ad_width = 336;
google_ad_height = 280;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>P.s. So much for BS code highlight plugins printing angled brackets in HTML notations when asked to do bash.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.harshj.com/2009/05/19/clearing-all-log-files-in-varlog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The new print function in Python 3</title>
		<link>http://www.harshj.com/2008/12/09/the-new-print-function-in-python-3/</link>
		<comments>http://www.harshj.com/2008/12/09/the-new-print-function-in-python-3/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 17:36:17 +0000</pubDate>
		<dc:creator>Harsh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Computing Issues]]></category>
		<category><![CDATA[Movie]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Function]]></category>
		<category><![CDATA[Print]]></category>
		<category><![CDATA[Py3k]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Python 3.0]]></category>
		<category><![CDATA[Statements]]></category>

		<guid isPermaLink="false">http://www.harshj.com/2008/12/09/the-new-print-function-in-python-3/</guid>
		<description><![CDATA[The print statement has gone. A function replaces it in Python 3.0. Apart from the other changes, this one probably needs the most mind and finger retraining, cause its something I use a lot while fiddling with the interpreter. So far, till Python 2.6 So this is how you all have been happily typing away [...]]]></description>
			<content:encoded><![CDATA[<p>The print statement has gone. A function replaces it in Python 3.0. Apart from the other changes, this one probably needs the most mind and finger retraining, cause its something I use a lot while fiddling with the interpreter.</p>
<h2>So far, till Python 2.6</h2>
<p>So this is how you all have been happily typing away in Python 2.x:</p>
<pre class="brush: python; title: ; notranslate">print &quot;Print this and print a newline&quot;
print &quot;Print this, but not a newline&quot;,</pre>
<p>Now, if you had a collection of elements you wanted to print with certain formatting, say with punctuation, here&#8217;s how you would do it:</p>
<pre class="brush: python; title: ; notranslate">basket = ('Apple', 'Oranges', 'Banana')
print &quot;, &quot;.join(basket) + &quot;.&quot;

# Which produces the output:
&quot;Apple, Oranges, Banana.&quot;</pre>
<div class="wp-caption alignright" style="width: 260px"><img title="Python 3.0 - Newbies First" src="http://img254.imageshack.us/img254/3940/mainphpg2viewcorewf6.jpg" alt="About the print() function in Python 3.0" width="250" height="265" /><p class="wp-caption-text">About the print() function in Python 3.0</p></div>
<p>Some would even prefer to use a logical loop instead, for readability&#8217;s sake. But this method does require a string operation to happen, and loops probably would take up lines, or worse, in certain cases.</p>
<p><!--adsense--></p>
<h2>Now, in Python 3.0 onwards</h2>
<p>The print statement has gone for good and the print() function comes in.</p>
<p>This decision is well explained in the PEP (Python Enhancement Proposals) and the specific paper on it can be found <a title="PEP - 3105 - On making print statement into a function" href="http://www.python.org/dev/peps/pep-3105/" target="_blank">here</a> (Numbered 3105)</p>
<p>Digging into this function&#8217;s <a title="Python 3.0's print() function doc." href="http://docs.python.org/3.0/library/functions.html#print" target="_blank">documentation</a> would reveal all about it in simple text (If you are an avid reader of the Python Documentation). Of what&#8217;s continued here is all just for newbies-only, with some demonstrations.</p>
<p>A simple demo equivalent to the first as above:</p>
<pre class="brush: python; title: ; notranslate">print (&quot;Print this line, and print a newline&quot;)
print (&quot;Print this line, but not a newline&quot;, end=&quot;&quot;)</pre>
<p>You might notice that its got a little complex here, with a keyword argument being supplied instead of an ending comma as before.</p>
<p>But lets see the full power of this new print() function by doing the same punctuation to the fruit basket as before:</p>
<pre class="brush: python; title: ; notranslate">basket = ('Apple', 'Oranges', 'Banana')

print (*basket, sep=&quot;, &quot;, end=&quot;.\n&quot;)

# Which produces the same output as desired:

&quot;Apple, Oranges, Banana.&quot;</pre>
<p>We do the same thing as before, except that we don&#8217;t require a loop, nor string operations. The function&#8217;s two keyword arguments <strong>sep</strong> and <strong>end</strong> handle the complex jobs for us. Basically, this is what they mean:</p>
<ul>
<li><strong>sep &#8211; Seperator string</strong> &#8211; Defines the string that is to be placed between every two values printed.</li>
<li><strong>end &#8211; Ender string</strong> &#8211; Defines the string to be printed at the end of the print function.</li>
</ul>
<p>By default, sep has a space (&#8216;   &#8216;) and end is a newline (&#8216; \n &#8216;). So a simple signature of this new print function would be like:</p>
<pre class="brush: python; title: ; notranslate">print ( [object(s)], sep=' ', end='\n' )</pre>
<p><!--adsense--></p>
<h2>And finally, the Star of this show</h2>
<p>The one last addition to the print function made by the Python team was the file keyword argument. That&#8217;s right, one more keyword argument.</p>
<ul>
<li><strong>file &#8211; Object Name</strong> &#8211; Specify file/object to print to.</li>
</ul>
<p>This one is a really cool addition, and it defaults to <strong>sys.stdout</strong>, (i.e.) your terminal. Thus, a more complete print() signature is:</p>
<pre class="brush: python; title: ; notranslate">print ( [object(s)], sep=' ', end='\n' , file=sys.stdout)
# No, you obviously don't have to import sys for this.
# Its just to describe what file its printing to.
# (/dev/stdout in UNIX's case)</pre>
<p>All the <strong>file</strong> argument needs is an object that supports any <strong>write(string)</strong> method.</p>
<p>Now lets try printing the fruit basket to a file than to the terminal as default:</p>
<pre class="brush: python; title: ; notranslate">fruits = open(&quot;fruitsfile.txt&quot;, &quot;w&quot;)
basket = ('Apple', 'Oranges', 'Banana')
print (*basket, sep=&quot;, &quot;, end=&quot;.\n&quot;, file=fruits)

# Effectively prints the punctuated line,
# to the file named fruitsfile.txt</pre>
<p>This could have a great use, especially with logging! And since it supports any object with a write method, the possibilities could be endless.</p>
<p>Now tell me if you still hate that its got parentheses? Look at the power of this new function!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.harshj.com/2008/12/09/the-new-print-function-in-python-3/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Twitter or This post had to come sooner or later</title>
		<link>http://www.harshj.com/2008/08/21/twitter-or-this-post-had-to-come-sooner-or-later/</link>
		<comments>http://www.harshj.com/2008/08/21/twitter-or-this-post-had-to-come-sooner-or-later/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 16:58:27 +0000</pubDate>
		<dc:creator>Harsh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Micro-blogging]]></category>
		<category><![CDATA[QwertyManiac]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.harshj.com/?p=360</guid>
		<description><![CDATA[@having fun with microblogging, status-blogging, whatever twitter is. Though am not totally addicted to it, its good to post short thoughts or replies at Twitter. I still find the place a bit weird to browse through but I&#8217;m beginning to get a hang of it, unfortunately not while I&#8217;m mobile. I think that&#8217;s the best [...]]]></description>
			<content:encoded><![CDATA[<p><code>@having fun with microblogging, status-blogging, whatever twitter is.</code></p>
<p>Though am not totally addicted to it, its good to post short thoughts or replies at <a title="Twitter" href="http://www.twitter.com" target="_blank">Twitter</a>. I still find the place a bit weird to browse through but I&#8217;m beginning to get a hang of it, unfortunately not while I&#8217;m mobile. I think that&#8217;s the best point of Twitter, a scribble pad to post upon as you travel.</p>
<div class="wp-caption alignleft" style="width: 138px"><a href="http://www.twitter.com/QwertyManiac"><img title="Twitter" src="http://img169.imageshack.us/img169/102/twitterbirdthumbnailup7.png" alt="Twitter - Cause birds tweet?" width="128" height="128" /></a><p class="wp-caption-text">Twitter - Cause birds &quot;tweet&quot;?</p></div>
<p>I&#8217;ve had many nice ideas, thoughts and such while travelling but never have I cultivated the so-said good habit of carrying around a small notebook to scribble them upon. I find that quite odd to do, non-wash-proof kind of odd. Twitter, however, with the advance of the mobile devices into every man&#8217;s pockets, promises to help cultivating the same habit in a digital way. I need to setup the texting feature and give it a spin, and also try some gprs methods while am at it.</p>
<p>On my desktop I use <a title="Ping.fm" href="http://www.ping.fm" target="_blank">Ping.fm</a> for &#8220;tweeting&#8221;, as they like to call it, and I use it along with Bitlbee. Nice integration into one single irssi IRC interface. Ok I got a bit off the topic there, admitted. I&#8217;m turning quite the jargon guy here I notice, but I can&#8217;t really help changing that back, but yes I can dumb stuff down a bit maybe.</p>
<p>So, more tiny updates at my Twitter account &#8211; <a title="QwertyManiac's Twitter Page" href="http://www.twitter.com/QwertyManiac" target="_blank">QwertyManiac</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.harshj.com/2008/08/21/twitter-or-this-post-had-to-come-sooner-or-later/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Open Source Games</title>
		<link>http://www.harshj.com/2008/07/17/open-source-games/</link>
		<comments>http://www.harshj.com/2008/07/17/open-source-games/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 13:30:52 +0000</pubDate>
		<dc:creator>Harsh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Computing Issues]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[yo frankie]]></category>

		<guid isPermaLink="false">http://www.harshj.com/?p=325</guid>
		<description><![CDATA[I&#8217;m sure there has been a lot of incidents where you have cursed your most recently acquired game, be it anything from a silly to annoying bug, the lack of a feature that would have made playing more heavenly for you or even something as small as better detail on some object on screen. Now [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure there has been a lot of incidents where you have cursed your most recently acquired game, be it anything from a silly to annoying bug, the lack of a feature that would have made playing more heavenly for you or even something as small as better detail on some object on screen.</p>
<p>Now what if the game were open source, to the fullest extent rather than just the &#8220;Extend&#8221;. You don&#8217;t like the character&#8217;s tail, you contribute an idea in form of a feature-request or by getting into the development yourself. So do million others. Together you can, over time, form a completely different game than the one you were being unsatisfied with!</p>
<p><center><div class="wp-caption aligncenter" style="width: 310px"><a href="http://apricot.blender.org"><img title="Yo Frankie! - An open source game in active development." src="http://img398.imageshack.us/img398/725/83496383rj2.jpg" alt="Yo Frankie! - An open source game in active development." width="300" height="177" /></a><p class="wp-caption-text">Yo Frankie! - An open source game in active development.</p></div></center></p>
<p>The usual way of extending a game would be to add in map and skin packs while letting the functionality of the entire game remain constant. What if the game evolves with time, adding in new moves, more pick-ups and extras, and more elements to the game, such as weapons or collectibles?</p>
<p>Though these are present in some of the games alive today, it would be greater if the game were or went open-source, opening the game&#8217;s code to a world of never-before imagined possibilities and also getting in tons of optimization over time. Of course, building a game big enough like the heavyweights we have today requires the work of a large active team behind it, but once done with its release, getting in additions to the code would we amazingly easy were it supported by a good version-tracking system!</p>
<p>Playing such a game would mean endless hours of fun, repeated every couple of months for a completely different experience while still remaining the old charms that a player liked. New innovative concepts implemented by avid code-enabled gamers would add in more and more goodies, much like how <a title="Compiz-Fusion" href="http://www.compiz-fusion.org/" target="_blank">Compiz-Fusion</a> is today, an idea being born a day and implemented almost as fast.</p>
<p>Yes there would be a point where it would hit a roadblock and this is where the next game development has to begin. Ideas found in the older version could be tried out across a multitude of other genres, and what a learning experience would it be for creating that &#8220;ultimate&#8221; game many always dreamed about!</p>
<p>I hope some biggie in gaming gets onto this OSS bandwagon, with atleast a half-baked title cracked open, and pretty soon, since the game market is losing out on ideas really, and thats cause ideas are limited to them in the closed confines they live in.</p>
<p>You&#8217;d say what of the OSS games we have today, and I&#8217;d point at their evergrowing success till date. No game has ever been given a cold shoulder and kicked out of existence, right from Nethack to Nezuiz. Though this post was inspired by a particular game known as <a title="Yo Frankie!" href="http://apricot.blender.org/" target="_blank">Yo Frankie</a>!.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.harshj.com/2008/07/17/open-source-games/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Managing Tag and Tags</title>
		<link>http://www.harshj.com/2007/11/28/managing-tag-and-tags/</link>
		<comments>http://www.harshj.com/2007/11/28/managing-tag-and-tags/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 18:00:43 +0000</pubDate>
		<dc:creator>Harsh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Confusion]]></category>
		<category><![CDATA[Tags]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.harshj.com/2007/11/28/managing-tag-and-tags/</guid>
		<description><![CDATA[This new Tags feature in WordPress 2.3 is confusing me. While Categories are linked as URL/tag/name, the tags are linked as URL/tags/name. And it makes NO difference at all. What is it all about anyway?]]></description>
			<content:encoded><![CDATA[<p>This new Tags feature in WordPress 2.3 is confusing me. While Categories are linked as URL/tag/name, the tags are linked as URL/tags/name. And it makes NO difference at all. <img src='http://www.harshj.com/wp-includes/images/smilies/icon_confused.gif' alt=':?' class='wp-smiley' /> </p>
<p>What is it all about anyway?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.harshj.com/2007/11/28/managing-tag-and-tags/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New theme &#8211; The Journalist</title>
		<link>http://www.harshj.com/2007/11/26/new-theme-the-journalist/</link>
		<comments>http://www.harshj.com/2007/11/26/new-theme-the-journalist/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 08:04:32 +0000</pubDate>
		<dc:creator>Harsh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[black and white]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[journalist]]></category>
		<category><![CDATA[minimalistic]]></category>
		<category><![CDATA[New Releases]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://www.harshj.com/2007/11/26/new-theme-the-journalist/</guid>
		<description><![CDATA[Finally put in a new theme &#8220;The Journalist&#8221; by Lucian Marin after months of Blue-K2. This theme was recently featured on WordPress.com and is fantastic at its simplicity and minimalism! I had to modify a bit of the CSS to help support the switch-over from the colorful Blue-K2 I had here earlier (The colors being [...]]]></description>
			<content:encoded><![CDATA[<p>Finally put in a new theme <strong><a href="http://lucianmarin.com/journalist/">&#8220;The Journalist&#8221; by Lucian Marin</a></strong> after months of <a href="http://code.google.com/p/blue-k2/">Blue-K2</a>. This theme was recently featured on <a href="http://www.wordpress.com">WordPress.com</a> and is fantastic at its simplicity and minimalism!</p>
<p>I had to modify a bit of the <strong>CSS</strong> to help support the switch-over from the colorful Blue-K2 I had here earlier (The colors being those &#8220;Download&#8221; or &#8220;Favorite&#8221; boxes you&#8217;ve seen around, perhaps.)</p>
<p>Also converted a few images to Grayscale and added them for a little more eye gloss than the default theme had. Hope you like this theme, cause I find it pretty readable and wide.</p>
<p>Post any problems, comments on what you feel is not good and other things if you have the time. <img src='http://www.harshj.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.harshj.com/2007/11/26/new-theme-the-journalist/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Exams again ..</title>
		<link>http://www.harshj.com/2007/09/10/exams-again/</link>
		<comments>http://www.harshj.com/2007/09/10/exams-again/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 08:58:05 +0000</pubDate>
		<dc:creator>Harsh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.harshj.com/2007/09/10/exams-again/</guid>
		<description><![CDATA[Got exams upto 19th. Check out the new movie (&#038; music) page. It isn&#8217;t fully customized yet, but I&#8217;ll do it eventually.]]></description>
			<content:encoded><![CDATA[<p>Got exams upto 19th. <img src='http://www.harshj.com/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' /> </p>
<p>Check out the new <a href="http://www.harshj.com/movies/">movie (&#038; music) page</a>. It isn&#8217;t fully customized yet, but I&#8217;ll do it eventually.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.harshj.com/2007/09/10/exams-again/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Sorry</title>
		<link>http://www.harshj.com/2007/07/15/sorry/</link>
		<comments>http://www.harshj.com/2007/07/15/sorry/#comments</comments>
		<pubDate>Sun, 15 Jul 2007 00:29:49 +0000</pubDate>
		<dc:creator>Harsh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.harshj.com/2007/07/15/sorry/</guid>
		<description><![CDATA[This must&#8217;ve been my longest break from blogging perhaps, half a month. Am really sorry, but I had just lost interest in doing anything worthwhile online. My feed reader counts the unread at 700+, let&#8217;s see how fast I finish that up. So my second year in B.Tech IT has started off (6th July). It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>This must&#8217;ve been my longest break from blogging perhaps, half a month. Am really sorry, but I had just lost interest in doing anything worthwhile online. My feed reader counts the unread at 700+, let&#8217;s see how fast I finish that up. <img src='http://www.harshj.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<br/><br />
So my second year in <strong>B.Tech IT</strong> has started off (6th July). It&#8217;s going pretty good till now. Here are my subjects this semester:</p>
<p class="greenbox">
<ul>
<li><em>Object Oriented Programming (Lab included)</em></li>
<li><em>Data Structures (Lab included)<br />
</em></li>
<li><em>Mathematics &#8211; III</em></li>
<li><em>Signals and Systems (Lab included)</em></li>
<li><em>Digital Principles and System Design</em></li>
<li><em>Principles of Communication</em></li>
</ul>
<p class="greenbox">
<p>For those interested in reading the contents of my syllabus, you can download it <a href="http://www.annauniv.edu/academic/3to8sem/I&#038;C/B.TECH%20IT.doc" title="B.Tech IT Syllabus - Anna Univ." target="_blank">here</a>.</p>
<p>Off these subjects, I didn&#8217;t quite like <em>Principles of Communication</em>. And yeah, the order of the subjects I&#8217;ve written above is based on most and least favorites <img src='http://www.harshj.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Anyway, now that I feel like putting something up here, you can expect things like features in Gutsy Gibbon (Ubuntu 7.10),  some weird cool news and so on ..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.harshj.com/2007/07/15/sorry/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Stop saying blog</title>
		<link>http://www.harshj.com/2007/06/22/stop-saying-blog/</link>
		<comments>http://www.harshj.com/2007/06/22/stop-saying-blog/#comments</comments>
		<pubDate>Fri, 22 Jun 2007 05:59:31 +0000</pubDate>
		<dc:creator>Harsh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.harshj.com/2007/06/22/stop-saying-blog/</guid>
		<description><![CDATA[That&#8217;s right, cause it seems to initiate a series of reactions in human brains that pushes the nerves out and clearly visible on the temples. Also raises thier blood pressure and makes them explode. Boom. Okay, on topic, blog&#8217;s supposedly the 2nd most hated word on the Internet. Thanks to its cliched usage maybe? Here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s right, cause it seems to initiate a series of reactions in human brains that pushes the nerves out and clearly visible on the temples. Also raises thier blood pressure and makes them explode. Boom.</p>
<p>Okay, on topic, blog&#8217;s supposedly the 2nd most hated word on the Internet. Thanks to its cliched usage maybe?</p>
<p>Here&#8217;s the 10 most hated words:</p>
<blockquote>
<ul>
<li><strong>Folksonomy</strong></li>
<li><strong>Blogosphere</strong></li>
<li><strong>Blog</strong></li>
<li><strong>Netiquette</strong></li>
<li><strong>Blook</strong></li>
<li><strong>Webinar</strong></li>
<li><strong>Vlog</strong></li>
<li><strong>Social Networking</strong></li>
<li><strong>Cookie</strong></li>
<li><strong>Wiki</strong></li>
</ul>
<p class="author"><a href="http://in.today.reuters.com/news/newsArticle.aspx?type=entertainmentNews&amp;storyID=2007-06-21T212831Z_01_NOOTR_RTRMDNC_0_India-304208-1.xml" title="Top ten most hated words on the Internet" target="_blank">Reuters</a></p>
</blockquote>
<p>So, The new blogosphere which practices folksonomy with its blogs lack netiquette, publish blooks, conduct webinars, start vlogs, go &#8216;lol&#8217; on social networking, spoil wikis and have cookies?</p>
<p>Must appreciate myself, I&#8217;ve left the &#8220;Check my blog now!&#8221;, &#8220;How&#8217;s my blog look now? And now?&#8221; dialogues long time back <img src='http://www.harshj.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.harshj.com/2007/06/22/stop-saying-blog/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Adsense displays Checkout enabled icons</title>
		<link>http://www.harshj.com/2007/05/27/adsense-displays-checkout-enabled-icons/</link>
		<comments>http://www.harshj.com/2007/05/27/adsense-displays-checkout-enabled-icons/#comments</comments>
		<pubDate>Sun, 27 May 2007 01:11:45 +0000</pubDate>
		<dc:creator>Harsh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Browser]]></category>

		<guid isPermaLink="false">http://www.harshj.com/2007/05/27/adsense-displays-checkout-enabled-icons/</guid>
		<description><![CDATA[Google Adsense seems to have started displaying a small icon next to ads from websites which support Google Checkout services. IMHO, Adsense ads are getting too cramped up with the link + description + title and now this too. Instead, they can try putting the description as a tool-tip box on hover and make space [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://adsense.google.com" title="Adsense" target="_blank">Google Adsense</a> seems to have started displaying a small icon next to ads from websites which support <a href="http://checkout.google.com" title="Google Checkout" target="_blank">Google Checkout</a> services.</p>
<p><img src="http://www.harshj.com/wp-content/uploads/2007/05/checkout.jpg" alt="Checkout" /></p>
<p>IMHO, Adsense ads are getting too <strong>cramped up</strong> with the link + description + title and now this too. Instead, they can try putting the <strong>description as a tool-tip box on hover</strong> and make space for more variety in a box instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.harshj.com/2007/05/27/adsense-displays-checkout-enabled-icons/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

