<?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>Gaganpreet&#039;s blog</title>
	<atom:link href="http://gaganpreet.in/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://gaganpreet.in/blog</link>
	<description>cat /dev/zero &#62; /dev/null</description>
	<lastBuildDate>Tue, 31 Jan 2012 16:11:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>zsh is really awesome</title>
		<link>http://gaganpreet.in/blog/2012/01/31/zsh-is-really-awesome/</link>
		<comments>http://gaganpreet.in/blog/2012/01/31/zsh-is-really-awesome/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 16:11:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gaganpreet.in/blog/?p=336</guid>
		<description><![CDATA[A few months ago, I decided to try out zsh as my default shell. It&#8217;s very similar to bash, but is much more powerful. My favourite features so far: Shared command line history among all sessions. I usually have at least 4-5 shells open, and the command history being shared among them is awesome. Means...  <a href="http://gaganpreet.in/blog/2012/01/31/zsh-is-really-awesome/" class="more-link" title="Read zsh is really awesome">Read more &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>A few months ago, I decided to try out zsh as my default shell. It&#8217;s very similar to bash, but is much more powerful. My favourite features so far:</p>
<ol>
<li><strong>Shared command line history</strong> among all sessions. I usually have at least 4-5 shells open, and the command history being shared among them is awesome. Means I don&#8217;t have to hunt in which shell I typed that huge pipe command, it&#8217;s just available across all the shells!</li>
<li><strong>Better file globbing</strong>. <em>ls **/</em>, simulates find. Replacing ls by another command is equivalent to find -exec. Less typing!</li>
<li><strong>Programmable prompt</strong>.  My zsh shows the git/svn branch name in the prompt itself.  People have gone so far to have written a prompt which displays the <a href="http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/">battery status right there</a>. One word, zsh is extensible, very extensible. zsh also has two prompts, one which appears on the left side (the normal one), and another on the right side.</li>
<li><strong>Auto-completion</strong> built in. bash-completion offers many of the auto completion features, but zsh has far more commands in the list.</li>
<li><strong>Command arguments expansion.</strong> Pressing tab on a command with wildcards/backtick commands expands them. So something like <em>ls *avi</em>, will actually fill in in all the .avi files in the prompt, so I know what&#8217;s going on.</li>
</ol>
<h2>You don&#8217;t even have to bother with your zshrc</h2>
<p>My zsh experience improved ten-fold after I installed robbyrussel&#8217;s <a href="https://github.com/robbyrussell/oh-my-zsh">oh-my-zsh</a>. Setting it up is just two commands (and another for changing your default shell):<br />
<script type="text/javascript" src="https://gist.github.com/1393913.js">// <![CDATA[</p>
<p>// ]]&gt;</script></p>
<p>oh-my-zsh will provide plugins (git, yum, deb, svn etc) , themes (I currently use afowler), a lot of sane configuration options, and better keyboard shortcuts.</p>
<p>&nbsp;</p>
<p>You won&#8217;t go back to bash once you use zsh. <img src='http://gaganpreet.in/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p><iframe style="display: none;" width="320" height="240"></iframe></p>
<p><iframe style="display: none;" width="320" height="240"></iframe></p>
<p><iframe style="display: none;"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://gaganpreet.in/blog/2012/01/31/zsh-is-really-awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Permission Denied</title>
		<link>http://gaganpreet.in/blog/2010/11/05/permission-denied/</link>
		<comments>http://gaganpreet.in/blog/2010/11/05/permission-denied/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 09:58:12 +0000</pubDate>
		<dc:creator>gagan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[AT_FDCWD]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[permission denied]]></category>
		<category><![CDATA[rm]]></category>

		<guid isPermaLink="false">http://gaganpreet.in/blog/?p=72</guid>
		<description><![CDATA[Update: The problem is solved now, it was because the parent directory had the +i flag set. I ran into a weird problem today. I was cleaning up disk space and ran into a file that refused to delete. geekbox:/media/7/ # rm file.iso rm: cannot remove `file.iso&#8217;: Permission denied No problem, huh? Did everything I...  <a href="http://gaganpreet.in/blog/2010/11/05/permission-denied/" class="more-link" title="Read Permission Denied">Read more &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><strong>Update: The problem is solved now, it was because the parent directory had the +i flag set.</strong></p>
<p>I ran into a weird problem today. I was cleaning up disk space and ran into a file that refused to delete.</p>
<p><span style="color: #c00000;">geekbox:/media/7/ #</span> rm file.iso</p>
<p>rm: cannot remove `file.iso&#8217;: Permission denied</p>
<p>No problem, huh? Did everything I could think of:</p>
<p><span style="color: #c00000;">geekbox:/media/7/ #</span> rm -f file.iso</p>
<h3>Permissions?</h3>
<p><span style="color: #c00000;">geekbox:/media/7/ # </span>chmod 777 file.iso</p>
<p><span style="color: #c00000;">geekbox:/media/7/ # </span>chown root:root file.iso</p>
<p><span style="color: #c00000;">geekbox:/media/7/ #</span> rm -f file.iso</p>
<p>rm: cannot remove `file.iso&#8217;: Permission denied</p>
<h3>Filesystem problems?</h3>
<p><span style="color: #c00000;">geekbox:/media/7/ #</span> fsck -f /dev/sdc2</p>
<p>7: 194131/31514624 files (0.3% non-contiguous), 119735268/126050006 blocks</p>
<h3>Corrupted file?</h3>
<p><span style="color: #c00000;">geekbox:/media/7/ #</span> dd if=file.iso of=/dev/null</p>
<p>7472920576 bytes (7.5 GB) copied, 302.342 s, 24.7 MB/s</p>
<h3>Immutable bit set?</h3>
<p><span style="color: #c00000;">geekbox:/media/7/ #</span> lsattr file.iso</p>
<p>&#8212;&#8212;&#8212;&#8212;-e- file.iso</p>
<p><strong>strace points me to this:</strong></p>
<p>unlinkat(AT_FDCWD, &#8220;file.iso&#8221;, 0) = -1 EACCES (Permission denied)</p>
<p><strong>I got my disk space back at least,</strong></p>
<p><span style="color: #c00000;">geekbox:/media/7/ #</span> echo &#8220;&#8221; &gt; file.iso</p>
<p>But now I&#8217;m stuck with a file I don&#8217;t know what to do with.</p>
]]></content:encoded>
			<wfw:commentRss>http://gaganpreet.in/blog/2010/11/05/permission-denied/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TV Shows</title>
		<link>http://gaganpreet.in/blog/2010/09/10/tv-shows/</link>
		<comments>http://gaganpreet.in/blog/2010/09/10/tv-shows/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 13:43:00 +0000</pubDate>
		<dc:creator>gagan</dc:creator>
				<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://gaganpreet.in/blog/?p=61</guid>
		<description><![CDATA[Inspired by Rohan, I too decided to make a list of the TV shows I have seen/currently seeing. And (hopefully) by the end of next three years, I will have caught up on him. (The numbers in the bracket are the number of seasons seen). Comedy: Friends (10/10) &#8211; It&#8217;s a good comedy, but the...  <a href="http://gaganpreet.in/blog/2010/09/10/tv-shows/" class="more-link" title="Read TV Shows">Read more &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>Inspired by <a href="http://bronzebeard.wordpress.com/tv-shows/" target="_self">Rohan</a>, I too decided to make a list of the TV shows I have seen/currently seeing. And (hopefully) by the end of next three years, I will have caught up on him. <img src='http://gaganpreet.in/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  (The numbers in the bracket are the number of seasons seen).</p>
<p><strong>Comedy:</strong></p>
<ol>
<li>Friends (10/10) &#8211; It&#8217;s a good comedy, but the way people watch it over and over again makes me cringe.</li>
<li>That 70&#8242;s Show (8/8) &#8211; I loved it, though it gets a bit boring halfway through.</li>
<li>The IT Crowd (4/4) &#8211; Already a <a href="http://gaganpreet.in/blog/2010/04/26/the-it-crowd/">post dedicated</a> to it.</li>
<li>Happy Days (4/11) &#8211; I like watching old series, and seriously, The Fonz is awesome.</li>
<li>Mind Your Language (1/3) &#8211; Gets very repetitive.</li>
<li>The Cosby Show (8/8) &#8211; This is one show that gets better with each season, though it has does have its share of boring episodes.</li>
<li>It&#8217;s Always Sunny in Philadelphia (1/5)</li>
<li>The Big Bang Theory (3/3) &#8211; Ranks next to The IT Crowd.</li>
<li>Cheers (3/11)</li>
<li>Lucky Louie (1/1) &#8211; Why did this one last only one season?</li>
</ol>
<p><strong>Animation/Anime:</strong></p>
<ol>
<li>Dragon Ball (all)</li>
<li>Dragon Ball Z (all) &#8211; Frieza saga sucks, but the rest is very good.</li>
<li>Dragon Ball GT (all) &#8211; Worth watching if you like the first two.</li>
<li>Detective Academy Q (1/1) &#8211; The first anime I ever saw, the mysteries are totally amazing.</li>
<li>Avatar: The Last Airbender (3/3) &#8211; I found this a bit cliched.</li>
<li>South Park (14.5/14.5) &#8211; Some episodes are insanely funny, but quite a lot are bland (lots of Western cultural references).</li>
<li>Star Trek: The Animated Series (2/2)</li>
</ol>
<p><strong>Mystery/Thriller/Action:</strong></p>
<ol>
<li>Sherlock (1/1) &#8211; A very intriguing reboot of the old Sherlock. </li>
<li>Sherlock Holmes (2/7) &#8211; The old series, faithful to the book as far as I have observed.</li>
<li>Spartacus: Blood And Sand (1/1) &#8211; One of the best series in the last season. Looking forward to the next season.</li>
<li>Star Trek: TOS (3/3) &#8211; A very good series considering it&#8217;s close to 50 years old.</li>
<li>Star Trek: Enterprise (4/4) &#8211; I started with this series, it&#8217;s nowhere near to the others.</li>
<li>Star Trek: Deep Space 9 (2/7) &#8211; The starting is boring, but I have been told it picks up in the 3rd season.</li>
<li>Star Trek: The Next Generation (7/7) &#8211; The best of the canon. I wish there were more episodes.</li>
<li>Mission Impossible (2/7)</li>
<li>Xena: Warrior Princess (1/6)</li>
<li>Heroes (4/4) &#8211; Only the first season is worth watching.</li>
<li>24 (7/8) &#8211; Started off good, but got boring and slow as it progressed.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://gaganpreet.in/blog/2010/09/10/tv-shows/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The IT crowd</title>
		<link>http://gaganpreet.in/blog/2010/04/26/the-it-crowd/</link>
		<comments>http://gaganpreet.in/blog/2010/04/26/the-it-crowd/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 14:51:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IIIT]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[it crowd]]></category>
		<category><![CDATA[server room]]></category>
		<category><![CDATA[sitcom]]></category>

		<guid isPermaLink="false">http://gaganpreet.in/blog/?p=47</guid>
		<description><![CDATA[Go, watch it.]]></description>
			<content:encoded><![CDATA[<p>&#8230;. is  an awesome sitcom. 18 episodes of pure humor. If you have not seen it yet, go get it and watch it.</p>
<p>And now, a true incident that happened today (inspired by The IT Crowd, of course).</p>
<p>I happened to go to the server room today.</p>
<p><strong>JP: </strong>We are, izzin, having some issues, izzin, with the faculty mail server. It&#8217;s, izzin, giving input/output errors, izzin with the disk, izzin.</p>
<p><strong>I (trying very hard to keep a straight face):</strong> Did you try turning it off and then turning it back on again?</p>
]]></content:encoded>
			<wfw:commentRss>http://gaganpreet.in/blog/2010/04/26/the-it-crowd/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How To: Using CoreAVC on Linux for fast HD video playback</title>
		<link>http://gaganpreet.in/blog/2010/03/31/how-to-using-coreavc-on-linux-for-fast-hd-video-playback/</link>
		<comments>http://gaganpreet.in/blog/2010/03/31/how-to-using-coreavc-on-linux-for-fast-hd-video-playback/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 16:05:26 +0000</pubDate>
		<dc:creator>gagan</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[coreavc]]></category>
		<category><![CDATA[h264]]></category>
		<category><![CDATA[opensuse]]></category>

		<guid isPermaLink="false">http://gaganpreet.in/blog/?p=30</guid>
		<description><![CDATA[CoreAVC is a fast proprietary codec for decoding H.264/AVC video. It enables low-end systems to play videos without any lag, present in other decoders. Step 1: Preparing for installation First of all, remove any existing MPlayer installations. On OpenSuSE this can be done by: zypper rm MPlayer Next, install the dependencies for MPlayer by zypper...  <a href="http://gaganpreet.in/blog/2010/03/31/how-to-using-coreavc-on-linux-for-fast-hd-video-playback/" class="more-link" title="Read How To: Using CoreAVC on Linux for fast HD video playback">Read more &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>CoreAVC is a fast proprietary codec for decoding H.264/AVC video. It enables low-end systems to play videos without any lag, present in other decoders.</p>
<p><span style="text-decoration: underline"><strong>Step 1: Preparing for installation</strong></span></p>
<ol>
<li>First of all, remove any existing MPlayer installations. On OpenSuSE this can be done by:</li>
<blockquote><p>zypper rm MPlayer</p></blockquote>
<li>Next, install the dependencies for MPlayer by<br />
<blockquote><p>zypper si -d MPlayer</p></blockquote>
</li>
<li>Install wine<br />
<blockquote><p>zypper in wine</p></blockquote>
</li>
</ol>
<p><span style="text-decoration: underline"><strong>Step 2: Install dshowserver</strong></span></p>
<ol>
<li>Install CoreAVC. You will need a licensed copy to get beyond this step.<br />
<blockquote><p>wine CoreAVC-Setup.exe</p></blockquote>
</li>
<li>Download the source:<br />
<blockquote><p>svn co http://coreavc-for-linux.googlecode.com/svn/trunk/ coreavc-for-linux<br />
cd coreavc-for-linux/dshowserver</p></blockquote>
</li>
<li>Compile and install:<br />
<blockquote><p>make &amp;&amp; make install<br />
sudo cp &#8220;$HOME/.wine/drive_c/Program Files/CoreCodec/CoreAVC Professional Edition/CoreAVCDecoder.ax&#8221; /usr/local/share/dshowserver</p></blockquote>
</li>
<li>Verify whether dshowserver is installed correctly<br />
<blockquote><p>dshowserver -c CoreAVCDecoder.ax</p></blockquote>
<p>should show something like:</p>
<blockquote><p>Starting wine dshowserver.exe.so<br />
No id specified, assuming test mode<br />
Using default width  for CoreAVCDecoder.ax: 1280<br />
Using default height for CoreAVCDecoder.ax: 720<br />
Using default fourcc for CoreAVCDecoder.ax: 0&#215;34363248<br />
Using default outfmt for CoreAVCDecoder.ax: 0&#215;30323449<br />
Using default outbit for CoreAVCDecoder.ax: 12<br />
Using default GUID   for CoreAVCDecoder.ax: 09571a4b-f1fe-4c60-9760de6d310c7c31<br />
Opening device (port is 0)<br />
len: 992<br />
ProductVersion: 2.0.0<br />
fixme:thread:SetThreadIdealProcessor (0x8c): stub<br />
fixme:thread:SetThreadIdealProcessor (0&#215;90): stub<br />
Decoder supports the following YUV formats: YUY2 UYVY YV12 I420<br />
Decoder is capable of YUV output (flags 0x2b)<br />
Setting fmt<br />
Starting<br />
Initialization is complete</p></blockquote>
</li>
</ol>
<p><span style="text-decoration: underline"><strong>Step 3: Install Mplayer</strong></span></p>
<ol>
<li>Download the source:<br />
<blockquote><p>cd ..<br />
wget http://www.mplayerhq.hu/MPlayer/releases/mplayer-checkout-snapshot.tar.bz2<br />
tar xvjf mplayer-checkout-snapshot.tar.bz2<br />
cd mplayer-export-*</p></blockquote>
</li>
<li>Patch the source:<br />
<blockquote><p>patch -p0 &lt; ./mplayer/dshowserver.patch</p></blockquote>
</li>
<li>Compile and install. Grab a cup of coffee while it compiles, it takes a few minutes.<br />
<blockquote><p>./configure &amp;&amp; make &amp;&amp; sudo make install</p></blockquote>
</li>
</ol>
<p><span style="text-decoration: underline"><strong>Step 4: Final steps</strong></span></p>
<p>Copy this <a href="http://gaganpreet.in/uploads/codecs.conf">codecs.conf</a> to your $HOME/.mplayer/ directory.</p>
<p>Test out playback with</p>
<blockquote><p>mplayer -vc coreserve &lt;filename&gt;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://gaganpreet.in/blog/2010/03/31/how-to-using-coreavc-on-linux-for-fast-hd-video-playback/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to study at IIIT @ Rs. 100</title>
		<link>http://gaganpreet.in/blog/2010/03/27/how-to-study-at-iiit-rs-100/</link>
		<comments>http://gaganpreet.in/blog/2010/03/27/how-to-study-at-iiit-rs-100/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 12:42:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IIIT]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[incompetence]]></category>

		<guid isPermaLink="false">http://gaganpreet.in/blog/?p=4</guid>
		<description><![CDATA[IIIT's abroad admission form]]></description>
			<content:encoded><![CDATA[<p>Last year&#8217;s recession and this years budget have left a big hole&#8217;s in people&#8217;s pockets. So, here I (thanks to <a href="http://sanrag.wordpress.com">Sanrag</a>) bring to you a once in a lifetime opportunity to study at IIIT-H for Rs. 100.  (Of course, if you are a heartless monster, you can pay Re. 1 and still get away).</p>
<p><strong>Ingredients: </strong></p>
<p>You must be an &#8220;abroad&#8221; student (or get a <a href="http://en.wikipedia.org/wiki/Camouflage_passport">Camouflage passport</a>) and Fire{fox,bug}</p>
<p><strong>Recipe:</strong></p>
<p>1) Fill up the <a href="http://iiit.ac.in/abroad/">main form</a>. The form field at bottom is edited by Firebug.</p>
<p>The &#8220;form input sanity check&#8221; which is done by Javascript, is also bypassed, so empty fields work.</p>
<p style="text-align: center;"><a href="http://gaganpreet.in/blog/wp-content/uploads/2010/03/post1_1.png"><img class="size-large wp-image-7 aligncenter" title="Step 1" src="http://gaganpreet.in/blog/wp-content/uploads/2010/03/post1_1-573x1024.png" alt="Step 1" width="454" height="811" /></a>﻿</p>
<p style="text-align: left;">2) After clicking on next, you are redirected to the payment page<a href="http://gaganpreet.in/blog/wp-content/uploads/2010/03/post1_2.png"><img class="aligncenter size-full wp-image-8" title="Step 2" src="http://gaganpreet.in/blog/wp-content/uploads/2010/03/post1_2.png" alt="" width="433" height="172" /></a></p>
<p style="text-align: left;">﻿3)<br />
<a href="http://gaganpreet.in/blog/wp-content/uploads/2010/03/post1_3.png"><img class="aligncenter size-full wp-image-9" title="Step 3" src="http://gaganpreet.in/blog/wp-content/uploads/2010/03/post1_3.png" alt="" width="408" height="169" /></a></p>
<p style="text-align: left;">4) Final step, enter your details and get ready for admission in IIIT.<br />
<a href="http://gaganpreet.in/blog/wp-content/uploads/2010/03/post1_4.png"><img class="aligncenter size-full wp-image-10" title="Step 4" src="http://gaganpreet.in/blog/wp-content/uploads/2010/03/post1_4.png" alt="" width="433" height="310" /></a></p>
<p style="text-align: left;">PS: Although there is supposedly a &#8220;criteria&#8221; for admission, but knowing IIIT, you will surely get admission.</p>
]]></content:encoded>
			<wfw:commentRss>http://gaganpreet.in/blog/2010/03/27/how-to-study-at-iiit-rs-100/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>My reply to Prof. Sangal&#8217;s post</title>
		<link>http://gaganpreet.in/blog/2010/01/17/my-reply-to-prof-sangals-post/</link>
		<comments>http://gaganpreet.in/blog/2010/01/17/my-reply-to-prof-sangals-post/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 23:53:09 +0000</pubDate>
		<dc:creator>gagan</dc:creator>
				<category><![CDATA[IIIT]]></category>
		<category><![CDATA[human values]]></category>
		<category><![CDATA[jeevan vidya]]></category>
		<category><![CDATA[jv]]></category>

		<guid isPermaLink="false">http://gaganpreet.wordpress.com/?p=267</guid>
		<description><![CDATA[If you have not already read the post, The Al-Qaeda of Jeevan Vidya,  by Rishabh and Prof. Sangal&#8217;s reply to that post, Prof. Sangal&#8217;s reply to &#8220;The Al-Qaeda of Jeevan Vidya&#8221;, then I suggest you read them first because my post is a direct response to Prof. Sangal&#8217;s reply. 1) You&#8217;ve mentioned four conditions that...  <a href="http://gaganpreet.in/blog/2010/01/17/my-reply-to-prof-sangals-post/" class="more-link" title="Read My reply to Prof. Sangal&#8217;s post">Read more &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>If you have not already read the post, <a href="http://rmshark.blogspot.com/2010/01/al-qaeda-of-jeevan-vidya.html">The Al-Qaeda of Jeevan Vidya</a>,  by Rishabh and Prof. Sangal&#8217;s reply to that post,<a href="http://rmshark.blogspot.com/2010/01/prof-sangals-reply-to-al-qaeda-of.html"> Prof. Sangal&#8217;s reply to &#8220;The Al-Qaeda of Jeevan Vidya&#8221;</a>, then I suggest you read them first because my post is a direct response to Prof. Sangal&#8217;s reply.</p>
<p>1) You&#8217;ve mentioned four conditions that were laid before you chose human values. I don&#8217;t remember the content of Jeevan Vidya shivirs, and though I&#8217;m sure you can prove that it satisfies the conditions, but that is no means to measure the success. Satisfying the conditions is only the theoretical aspect, I may say. Today, if I look at Human Values from a practical part, I dare to say that it has failed to capture the interests of the IIIT student masses and thus, is not successful.</p>
<p>2) JV probably doesn&#8217;t preach us to do things. I don&#8217;t remember. It tells a thousand things during a week&#8217;s shivir, any normal person is bound to like a few of them. That is, by no means, a measure of JV&#8217;s success. Many of the things discussed in JV are already known to the person, and if he has already chosen not to apply them in his life, then there is no use preaching these things to him.</p>
<p>3) I think the philosophy of &#8220;open source&#8221; is grossly misunderstood here. An open source concept is open to modification, something which I&#8217;ve not seen in JV. The negative feedback from the student masses has been floating around ever since JV was introduced, and the feedback is always more negative with each passing year.</p>
<p>I wouldn&#8217;t classify JV as a religion, for a religion makes us believe things without understanding. JV is a cult. A cult that everyone in IIIT is being &#8220;forced&#8221; to follow. I still use the word &#8220;force&#8221; because of the changes I have seen in IIIT over my 3.5 years of stay &#8211; changes like compulsory washing of plates, owl and lark separation of students (and changing course timings in such a way to force them to be more lark like), forcing canteens to close at midnight. No wonder, the hacker culture has very much disappeared from IIIT. Everything comes at a cost.</p>
<p>4) The concept of compulsory courses stems from the stream (in our case, computers or electronics) a person is studying in, and it is the UGC which decides what goes into the list of these courses. Humanities courses are separate from these &#8220;core and compulsory&#8221; courses.</p>
<p>I agree with your idea of a broad course structure requiring humanities, but my main conflict here is with the current HSSM courses being offered in IIIT-H. There is no breadth in the courses being offered in the Humanities stream. Rishabh&#8217;s <a href="http://rmshark.blogspot.com/2009/12/rubbish-that-is-called-hssm-course.html">earlier post about this</a>, discusses these issues in detail. Humanities is as vast as area as is computer science, and limiting students to very similar options by offering such courses is akin to an <a href="http://abstrusegoose.com/183">illusion of choice </a>because after all he has to complete his degree.</p>
<p>PS: Not that I hate anonymous comments, but if you&#8217;ve a hate comment to add, then do not do it.</p>
]]></content:encoded>
			<wfw:commentRss>http://gaganpreet.in/blog/2010/01/17/my-reply-to-prof-sangals-post/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kulbir needs an intervention</title>
		<link>http://gaganpreet.in/blog/2009/11/20/kulbir-needs-an-intervention/</link>
		<comments>http://gaganpreet.in/blog/2009/11/20/kulbir-needs-an-intervention/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 08:51:38 +0000</pubDate>
		<dc:creator>gagan</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[IIIT]]></category>
		<category><![CDATA[bc]]></category>
		<category><![CDATA[intervention]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://gaganpreet.wordpress.com/?p=261</guid>
		<description><![CDATA[Do you know that his videocache plugin caches only one version of the youtube video? That means if someone has seen a low quality version and they want to see the higher quality version &#8211; they can&#8217;t. We (I, Rishabh and Sanrag) went to his lab to force him to fix that. Now the list...  <a href="http://gaganpreet.in/blog/2009/11/20/kulbir-needs-an-intervention/" class="more-link" title="Read Kulbir needs an intervention">Read more &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>Do you know that his videocache plugin caches only one version of the youtube video? That means if someone has seen a low quality version and they want to see the higher quality version &#8211; they can&#8217;t.</p>
<p>We (I, <a href="http://rmshark.blogspot.com/">Rishabh</a> and <a href="http://sanrag.wordpress.com/">Sanrag</a>) went to his lab to force him to fix that.</p>
<p>Now the list of WTF&#8217;s</p>
<p>1) He sits in CIE (Center for Internet Explorer).</p>
<p>2) His working notebook:</p>
<img src="http://gaganpreet.files.wordpress.com/2009/11/drupal_1.jpg" alt="" width="400" height="300" />
<p>3) And more:</p>
<img src="http://gaganpreet.files.wordpress.com/2009/11/drupal_2.jpg" alt="" width="400" height="300" />
<p>4) His room too houses Microsoft items &#8211; another keyboard and a mouse to be more specific.</p>
<p>5) His software works true Micrsoft style &#8211; does not do what it&#8217;s supposed to do.</p>
<p><span style="background-color:#ffffff;">All these proofs have led us to believe that Kulbir is a secret agent for Microsoft and he uses Linux as an undercover operation. You&#8217;ve been warned &#8211; don&#8217;t trust him.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://gaganpreet.in/blog/2009/11/20/kulbir-needs-an-intervention/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>How to piss off a MS fanboy</title>
		<link>http://gaganpreet.in/blog/2009/09/12/how-to-piss-off-a-ms-fanboy/</link>
		<comments>http://gaganpreet.in/blog/2009/09/12/how-to-piss-off-a-ms-fanboy/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 17:23:34 +0000</pubDate>
		<dc:creator>gagan</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[IIIT]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[MS fanboy]]></category>
		<category><![CDATA[piss off]]></category>

		<guid isPermaLink="false">http://gaganpreet.wordpress.com/?p=254</guid>
		<description><![CDATA[Situation: Me and the MS fanboy were chatting about some random stuff and as usual were not in agreement. MS Fanboy: Sucker ! me: Sure Whatever gives you pleasure MS Fanboy: Right now&#8230;closing this chat window me: Be my guest MS Fanboy: wtf !&#8230; u opened it again&#8230; biatch me: Why don&#8217;t you try the...  <a href="http://gaganpreet.in/blog/2009/09/12/how-to-piss-off-a-ms-fanboy/" class="more-link" title="Read How to piss off a MS fanboy">Read more &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration:underline;">Situation:</span></strong> Me and the MS fanboy were chatting about some random stuff and as usual were not in agreement.</p>
<p><strong>MS Fanboy:</strong> Sucker !</p>
<p><strong>me:</strong> Sure</p>
<p>Whatever gives you pleasure</p>
<p><strong>MS Fanboy:</strong> Right now&#8230;closing this chat window</p>
<p><strong>me:</strong> Be my guest</p>
<p><strong>MS Fanboy:</strong> wtf !&#8230; u opened it again&#8230; biatch</p>
<p><strong>me:</strong> Why don&#8217;t you try the &#8220;block&#8221; feature instead</p>
<p><strong>MS Fanboy:</strong> Why don&#8217;t u just stop pinging me instead of suggesting alternatives</p>
<p><strong>me:</strong> I will do what I wanna do shithead, you do what you can to avoid me</p>
<p><strong>MS Fanboy:</strong> **sighs**</p>
<p>Arrogant Ppl !!</p>
<p><strong>me:</strong> It is better to be arrogant rather than been an irrational sucker</p>
<p><strong>MS Fanboy:</strong> Unfortunately&#8230; u r both !</p>
<p><strong>me: </strong>As I said, whatever suits you</p>
<p>MS Fanboy has signed off.</p>
<p>(At this point, I was blocked)</p>
<p>PS0: The Internetz for the one who guesses the MS fanboy.</p>
]]></content:encoded>
			<wfw:commentRss>http://gaganpreet.in/blog/2009/09/12/how-to-piss-off-a-ms-fanboy/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Homeopathy</title>
		<link>http://gaganpreet.in/blog/2009/08/15/homeopathy/</link>
		<comments>http://gaganpreet.in/blog/2009/08/15/homeopathy/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 19:19:06 +0000</pubDate>
		<dc:creator>gagan</dc:creator>
				<category><![CDATA[health]]></category>
		<category><![CDATA[homeopathic]]></category>
		<category><![CDATA[homeopathy]]></category>
		<category><![CDATA[IIIT]]></category>
		<category><![CDATA[medicine]]></category>
		<category><![CDATA[swine flu]]></category>

		<guid isPermaLink="false">http://gaganpreet.wordpress.com/?p=251</guid>
		<description><![CDATA[My views on homeopathy]]></description>
			<content:encoded><![CDATA[<p>This post might be offending to homeopathy aficionados. I don&#8217;t care.</p>
<p>Got this mail in the evening:</p>
<blockquote><p>Dear All,</p></blockquote>
<blockquote><p>The Campus Life council has arranged for the availability of the Homeopathic Medicine which helps to develop immunity against all kinds of Flu including the Swine Flu. For this purpose, we have appointed representatives in the Hostels who will be distributing the medicine.</p></blockquote>
<p>Does homeopathy work? Various articles I found over the net claim it doesn&#8217;t. <a href="http://en.wikipedia.org/wiki/Homeopathy">Wikipedia</a> article says: Homeopathy is unsupported by modern scientific research. The extreme dilutions used in homeopathic preparations usually leave none of the original material in the final product.</p>
<p>Homeopathy medicines are based upon the &#8220;water memory&#8221; effect. The idea is as plainly epic as it sounds. The idea is, the more you &#8220;dilute&#8221; the drug, the more &#8220;potent&#8221; it becomes because the water actually &#8220;remembers&#8221; the drug.</p>
<p>Physicist Robert L. Park, former executive director of the American Physical Society, has noted that (from Wikipedia).</p>
<blockquote><p>Since the least amount of a substance in a solution is one molecule, a 30C solution would have to have at least one molecule of the original substance dissolved in a minimum of 1,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000 molecules of water. This would require a container more than 30,000,000,000 times the size of the Earth.</p></blockquote>
<blockquote></blockquote>
<p>No, I don&#8217;t believe in homeopathy. And for something like swine flu, I suggest you too don&#8217;t.</p>
<p>PS0: Happy Independence Day to you all!</p>
]]></content:encoded>
			<wfw:commentRss>http://gaganpreet.in/blog/2009/08/15/homeopathy/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.365 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-04-18 06:36:00 -->
<!-- Compression = gzip -->
