<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Sahil Ahuja's Weblog</title>
	<atom:link href="http://sahilahuja.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sahilahuja.wordpress.com</link>
	<description>Random unpredictable thoughts. Confirming to the quantum theory.</description>
	<lastBuildDate>Sat, 24 Oct 2009 07:36:25 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='sahilahuja.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/597753a4fdf2cb7aa3c15d549924150e?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Sahil Ahuja's Weblog</title>
		<link>http://sahilahuja.wordpress.com</link>
	</image>
			<item>
		<title>httpd with SElinux</title>
		<link>http://sahilahuja.wordpress.com/2009/10/22/httpd-with-selinux/</link>
		<comments>http://sahilahuja.wordpress.com/2009/10/22/httpd-with-selinux/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 09:17:13 +0000</pubDate>
		<dc:creator>Sahil Ahuja</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://sahilahuja.wordpress.com/?p=102</guid>
		<description><![CDATA[Giving httpd access to other folders (apart from default SElinux allowed folders):

system-config-selinux rocks!!
Go to System-&#62; Administration -&#62; SELinux Management (or system-config-selinux from command line).
Type httpd in Filter and press enter.You will see that files that allow httpd write access have the Selinux File Type httpd_cache_t:s0. So.. now you know what to do right? Say you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=102&subd=sahilahuja&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h4>Giving httpd access to other folders (apart from default SElinux allowed folders):</h4>
<ul>
<li>system-config-selinux rocks!!<br />
Go to System-&gt; Administration -&gt; SELinux Management (or system-config-selinux from command line).<br />
Type httpd in Filter and press enter.You will see that files that allow httpd write access have the Selinux File Type <strong>httpd_cache_t:s0</strong>. So.. now you know what to do right? Say you want to give httpd write access to folder /var/lib/dokuwiki/data/cache, then add a new file labelling using the Add button with the following details:<br />
<code>File specifications: /var/lib/dokuwiki/data/cache(/.*)?<br />
File Type: all files<br />
SELinux Type: httpd_cache_t<br />
MLS: s0</code><br />
and then<br />
<code>restorecon /var/lib/dokuwiki/data/cache</code></p>
<p><strong>OR </strong></li>
<li>Go to /var/lib/dokuwiki/data and apply the selinux file type to cache directory<code>chcon -R -t httpd_cache_t /var/lib/dokuwiki/data/cache</code></li>
</ul>
<p>And now, httpd should have write access to this folder.</p>
<h4>Running httpd on other ports:</h4>
<p>Open /etc/httpd/http.conf and change<br />
<code>Listen 80</code><br />
to<br />
<code>Listen 81</code></p>
<p>If you use VirtualHosts, you need to change the ports there instead (&lt;VirtualHost *:<strong>81</strong>&gt;)</p>
<h4>Giving httpd access to other ports:</h4>
<p>Go to Network Port in SELinux Administration and filter of &#8220;80&#8243; and press enter. You will see an entry for http_port_t. Create a similar new entry for port 81 for SELinux Port type http_port_1.<br />
And that&#8217;s it.</p>
<h4>Links to posts that helped me:</h4>
<p><a href="http://danwalsh.livejournal.com/9275.html">Dan Walsh&#8217;s Blog</a></p>
<p><a href="http://equivocation.org/node/11">Notes on SElinux</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sahilahuja.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sahilahuja.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sahilahuja.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sahilahuja.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sahilahuja.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sahilahuja.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sahilahuja.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sahilahuja.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sahilahuja.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sahilahuja.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=102&subd=sahilahuja&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sahilahuja.wordpress.com/2009/10/22/httpd-with-selinux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cb056bb91e3189c69c70431c3db1c81?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gud4nothin</media:title>
		</media:content>
	</item>
		<item>
		<title>Making Fedora rpms/yum work &#8211; Offline</title>
		<link>http://sahilahuja.wordpress.com/2009/10/22/making-fedora-work-offline/</link>
		<comments>http://sahilahuja.wordpress.com/2009/10/22/making-fedora-work-offline/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 19:30:44 +0000</pubDate>
		<dc:creator>Sahil Ahuja</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[rpms]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[yum]]></category>
		<category><![CDATA[yumdownloader]]></category>

		<guid isPermaLink="false">http://sahilahuja.wordpress.com/?p=93</guid>
		<description><![CDATA[This is guide relevant to those who wish to spread fedora to friends and loved ones who don&#8217;t necessarily always have an internet connection (or a good one atleast). The problem faced in such situations, almost always (talking from my experience), is that there are a huge number of rpms that need to be downloaded [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=93&subd=sahilahuja&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is guide relevant to those who wish to spread fedora to friends and loved ones who don&#8217;t necessarily always have an internet connection (or a good one atleast). The problem faced in such situations, almost always (talking from my experience), is that there are a huge number of rpms that need to be downloaded to make fedora capable of playing media, and fill it with good stuff like k3b, amarok etc.</p>
<p>This isn&#8217;t always possible with the skimpy internet connections that our not-so-tech-savvy aunts have. (We&#8217;ll assume that it is our aunt on whose system we need to install fedora for the sake of this guide.)</p>
<p>So, I devised a way of spreading fedora to our aunt&#8217;s system, without getting embarrassed  by that fact that we weren&#8217;t able to run mp3 on their system.</p>
<p>The way to do this, is to <strong>install a fresh copy of fedora</strong> on our system, and then bring it to perfect shape by <strong>installing many more rpms</strong>, and while doing this, <strong>keeping a copy of the rpms</strong> required, and then copying this repository of rpms (which we are sure don&#8217;t require any more rpms as dependencies as we install them on our own system in offline mode) on a pen drive and taking it along with the fedora installation media to our aunt&#8217;s home. And after installing fedora on her system, we simply <strong>install all the rpms on her system</strong>.</p>
<h3>Steps:</h3>
<h4>On our system:</h4>
<p>Download all rpms required for the extra packages (the package rpms + dependencies)<br />
<code>yumdownloader --destdir=rpmsForAunt --resolve rpmName(s)</code></p>
<h4>On our aunt&#8217;s system:</h4>
<ol>
<li> Install fedora.</li>
<li> Install the extra downloaded rpms:
<ol>
<li>You need to disable all repositories before yum localinstall will work without net access. To do so,<br />
go to System &gt; Administration &gt; Add/Remove Software and go the System &gt; Software Sources and <strong>uncheck </strong>all sources.</li>
<li> Installing the rpms:(1 : see footnote)<br />
<code>cd rpmsForAunt<br />
yumlocalinstall --nogpgcheck *</code><br />
The above command is to be run for every category of rpms below after copying the resultant directories on our Aunt&#8217;s system.</li>
</ol>
</li>
</ol>
<h4>For getting all updates:</h4>
<p>I wrote a script for downloading all updates (after a fresh install) to a directory:<br />
<code>for i in `yum list updates | grep fc11 | cut -d ' ' -f 1`<br />
do<br />
echo Now downloading rpms for package $i<br />
yumdownloader --destdir=localUpdate --resolve $i<br />
done<br />
</code></p>
<h4>For getting all media rpms:</h4>
<p><code>rpm -ivh http://rpm.livna.org/livna-release.rpm<br />
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-livna<br />
rpm -ivh http://linuxdownload.adobe.com/adobe-release/adobe-release-i386-1.0-1.noarch.rpm<br />
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux<br />
</code><br />
(the above is required only so that <em>you (and not your aunt) </em>can download the rpms)<br />
<code>yumdownloader --destdir=localRpmsForMedia --resolve libdvdcss vlc flash-plugin xine xine-lib-extras xine-lib-extras-freeworld mplayer mplayer-gui gecko-mediaplayer mencoder amarok rhythmbox gstreamer-plugins-ugly gstreamer-plugins-bad gstreamer-ffmpeg audacious audacious-plugins-freeworld* k3b<br />
</code></p>
<h4>A few more rpms that I use:</h4>
<p><code>yumdownloader --destdir=localRpmsOther system-config-lvm gparted digikam m17n-db-*</code></p>
<blockquote><p>(1)I faced an issue while bash was updated in this method. It said transaction failed.<br />
To resolve this, I ran<br />
<code>yum-complete-transaction --clean<br />
rpm -e bash<br />
</code><br />
The above command listed two bash versions (I don&#8217;t remember the version numbers), on saying rpm -e bash.version1, it said there are many dependencies, then I tried rpm -e bash.version and it worked. Then, I went back to the yumlocalinstall step and then that worked.</p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sahilahuja.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sahilahuja.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sahilahuja.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sahilahuja.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sahilahuja.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sahilahuja.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sahilahuja.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sahilahuja.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sahilahuja.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sahilahuja.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=93&subd=sahilahuja&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sahilahuja.wordpress.com/2009/10/22/making-fedora-work-offline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cb056bb91e3189c69c70431c3db1c81?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gud4nothin</media:title>
		</media:content>
	</item>
		<item>
		<title>India, and Mr. God</title>
		<link>http://sahilahuja.wordpress.com/2008/10/29/india-and-mr-god/</link>
		<comments>http://sahilahuja.wordpress.com/2008/10/29/india-and-mr-god/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 06:08:57 +0000</pubDate>
		<dc:creator>Sahil Ahuja</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://sahilahuja.wordpress.com/?p=73</guid>
		<description><![CDATA[So long since I have written anything. And there&#8217;s so much I want to write.
But I ll write about what&#8217;s on the top of my mind right now.
Yesterday (Diwali), Rajni aunty, mom&#8217;s friend, came to our house. Her son, (Mr. X we&#8217;ll call him) went straight to everyone&#8217;s feet wishing them Happy Diwali, conjuring a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=73&subd=sahilahuja&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>So long since I have written anything. And there&#8217;s so much I want to write.</p>
<p>But I ll write about what&#8217;s on the top of my mind right now.</p>
<p>Yesterday (Diwali), Rajni aunty, mom&#8217;s friend, came to our house. Her son, (Mr. X we&#8217;ll call him) went straight to everyone&#8217;s feet wishing them Happy Diwali, conjuring a smile on everyone&#8217;s face as they blessed him (I know, a strange custom. Hopefully will be prevalent only for one more generation). Then he dashed towards the glass table where we had kept crackers we had dried all day long on the roof. We didn&#8217;t buy any crackers this year, we used only what we had from last year.</p>
<p>We had a special matchstick that was a mini-sparkler. Mr. X took that out. I don&#8217;t know what possessed him, but what he did next was insane. He lit the match stick, on top of the stack of crackers.</p>
<p>The crackers caught fire. Yes, inside my house. There was a stack of loose electric crackers that caught fire and thus were lighting each other. And all of them started bursting one after the other. The whole commotion went on for around a minute after which the electric crackers ran out. After the smoke settled, I saw a few atom bombs (green coloured crackers filled with gunpowder tightly wrapped with rope) lying on the glass table.</p>
<p><em>I couldn&#8217;t help thinking what might have happened had that the atom bombs gotten lit on the glass table. </em>(Anyone heard of pipe bombs used in delhi blasts? A Hint : Its the shreds that cause the maximum damage. Not the shockwave)</p>
<p>A question to &#8220;modern&#8221; parents : should children be beaten up for their misdeeds? You decide.</p>
<p>Now, coming back to the title of the post. After the smoke settled, Mom took a broom and swiped all the leftovers to one side. (Our sofa got burnt partially). After swiping the burnt cracker papers to one side, as she was about to swipe them out of the door, Mr. X&#8217;s mom says &#8220;Don&#8217;t swipe them out of the house. It&#8217;s considered a sin to clean the house during Diwali.&#8221;</p>
<p><strong>After all this. I don&#8217;t think God would mind.</strong></p>
<p>Will India ever prosper? Not until our value system and reason is so deeply screwed up with religion and baseless customs.</p>
<p><a href="http://www.iht.com/articles/2008/10/29/asia/29india.php">Here&#8217;s</a> an article I read minutes after writing my post, reinforcing what I just wrote.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sahilahuja.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sahilahuja.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sahilahuja.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sahilahuja.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sahilahuja.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sahilahuja.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sahilahuja.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sahilahuja.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sahilahuja.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sahilahuja.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=73&subd=sahilahuja&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sahilahuja.wordpress.com/2008/10/29/india-and-mr-god/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cb056bb91e3189c69c70431c3db1c81?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gud4nothin</media:title>
		</media:content>
	</item>
		<item>
		<title>Talk about punctuality!!</title>
		<link>http://sahilahuja.wordpress.com/2008/06/30/talk-about-punctuality/</link>
		<comments>http://sahilahuja.wordpress.com/2008/06/30/talk-about-punctuality/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 20:10:05 +0000</pubDate>
		<dc:creator>Sahil Ahuja</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://sahilahuja.wordpress.com/?p=71</guid>
		<description><![CDATA[This wednesday, working at Goldman Sachs, I got a call from Santa Fe. The guy asked me when I wanted him to bring my luggage to my house. I said Saturday (yesterday) around 10 am.
Yesterday, he reached here at 9:55. After everything was brought in and kept at the wanted places, he gave me a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=71&subd=sahilahuja&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This wednesday, working at Goldman Sachs, I got a call from Santa Fe. The guy asked me when I wanted him to bring my luggage to my house. I said Saturday (yesterday) around 10 am.</p>
<p>Yesterday, he reached here at 9:55. After everything was brought in and kept at the wanted places, he gave me a feedback form. And boy, the first question was :</p>
<p>Were we on time?</p>
<p>The options were :</p>
<p>a) on time b) 5 min late c) 10 min late d) 30 min late</p>
<p>and nothing after that. They DON&#8217;T HAVE a <em>concept </em>of getting late more than half an hour!!</p>
<p>Compare that to the Indian based relocation services. What options should their feedback forms have ?</p>
<p>How much late were we?</p>
<p>a) 1 day 2) 2 day 3) 1 week 4) 2 weeks 5) luggage lost in transit!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sahilahuja.wordpress.com/71/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sahilahuja.wordpress.com/71/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sahilahuja.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sahilahuja.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sahilahuja.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sahilahuja.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sahilahuja.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sahilahuja.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sahilahuja.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sahilahuja.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sahilahuja.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sahilahuja.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=71&subd=sahilahuja&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sahilahuja.wordpress.com/2008/06/30/talk-about-punctuality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cb056bb91e3189c69c70431c3db1c81?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gud4nothin</media:title>
		</media:content>
	</item>
		<item>
		<title>So many things&#8230; so less time&#8230;</title>
		<link>http://sahilahuja.wordpress.com/2008/06/30/so-many-things-so-less-time/</link>
		<comments>http://sahilahuja.wordpress.com/2008/06/30/so-many-things-so-less-time/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 19:27:48 +0000</pubDate>
		<dc:creator>Sahil Ahuja</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[bangalore]]></category>

		<guid isPermaLink="false">http://sahilahuja.wordpress.com/?p=67</guid>
		<description><![CDATA[Hello Banagalore!!!
Anshu came here last week. We had a gr8 time!! He reached here last Saturday. We had an Italian brunch here at a great place named Casa Picolo on CMH road.
We asked Sriram where we could go. He told us about a great place to shop &#8211; Brigade road. Me and Anshu first went [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=67&subd=sahilahuja&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hello <a href="http://wikimapia.org/#lat=12.9725675&amp;lon=77.6189715&amp;z=11&amp;l=0&amp;m=a&amp;v=2">Banagalore</a>!!!</p>
<p>Anshu came <a href="http://wikimapia.org/#lat=12.9804922&amp;lon=77.6254088&amp;z=18&amp;l=0&amp;m=a&amp;v=2">here</a> last week. We had a gr8 time!! He reached here last Saturday. We had an Italian brunch here at a great place named Casa Picolo on <a href="http://wikimapia.org/#lat=12.9784902&amp;lon=77.6290995&amp;z=18&amp;l=0&amp;m=a&amp;v=2">CMH road</a>.</p>
<p>We asked Sriram where we could go. He told us about a great place to shop &#8211; <a href="http://wikimapia.org/#lat=12.9731843&amp;lon=77.6068962&amp;z=17&amp;l=0&amp;m=a&amp;v=2">Brigade road</a>. Me and Anshu first went to MG road and set about searching for his memory card. We found a great lane there to shop which joined <a href="http://wikimapia.org/#lat=12.9725675&amp;lon=77.6189715&amp;z=18&amp;l=0&amp;m=a&amp;v=2">M.G. road</a> at the middle from the left. We spent our time till the evening there going from shop to shop. From there, we went to meet one of Anshu&#8217;s friend Kriti, at <a href="http://wikimapia.org/#lat=12.970064&amp;lon=77.609691&amp;z=17&amp;l=0&amp;m=a&amp;v=2">Garuda mall</a>. We took an auto to reach there. At Garuda mall, Anshu bought a few clothes for his interview. After that, she took us to Brigade road. We were walking that road, Anshu stopped suddenly and exclaimed, &#8220;I have come here before&#8221;. We were on Brigade road the whole afternoon and we didn&#8217;t know it!!. And we took an auto to Garuda mall, which was walking distance from there. I wonder which route he took us from. We went to cafe coffee day there, and them came back.</p>
<p>The next day, we went to a great place called <a href="http://wikimapia.org/#lat=12.954626&amp;lon=77.6957953&amp;z=16&amp;l=0&amp;m=a&amp;v=2">Marathalli</a>. It&#8217;s a great place for shopping. I got 50% off on my Rebook shoes! And Anshu found the memory card he was searching for the whole day on M.G. the whole day but had found only duplicate, China made cards !</p>
<p><a href="http://sahilahuja.files.wordpress.com/2008/06/dsc09336.jpg"><img class="alignnone size-medium wp-image-69" src="http://sahilahuja.files.wordpress.com/2008/06/dsc09336.jpg?w=300&#038;h=225" alt="Anshu and Sriram" width="300" height="225" /><br />
</a></p>
<p>Next Wednesday my mom is coming, and so now am making a list of places to take her to, and yes, all the above mentioned place are there in the list.</p>
<p>And ya, forgot to mention, I spent the weekend before Anshu&#8217;s visit in Google office in <a href="http://wikimapia.org/#lat=12.994102&amp;lon=77.660943&amp;z=18&amp;l=0&amp;m=a&amp;v=2">K.R. Puram</a>, eating chocos and maggi, and playing pool and foosball.</p>
<p>This album basically summarizes what I did on that week&#8217;s Firday (the 13th)  : <a href="http://picasaweb.google.com/sahilahuja/ChennaiTripForVISAInterview">http://picasaweb.google.com/sahilahuja/ChennaiTripForVISAInterview</a></p>
<p>Time has flown by since I came to Bangalore. It&#8217;s already time for me to get ready for my New York trip!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sahilahuja.wordpress.com/67/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sahilahuja.wordpress.com/67/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sahilahuja.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sahilahuja.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sahilahuja.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sahilahuja.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sahilahuja.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sahilahuja.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sahilahuja.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sahilahuja.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sahilahuja.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sahilahuja.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=67&subd=sahilahuja&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sahilahuja.wordpress.com/2008/06/30/so-many-things-so-less-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cb056bb91e3189c69c70431c3db1c81?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gud4nothin</media:title>
		</media:content>

		<media:content url="http://sahilahuja.files.wordpress.com/2008/06/dsc09336.jpg?w=300" medium="image">
			<media:title type="html">Anshu and Sriram</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora 9 Released!!!</title>
		<link>http://sahilahuja.wordpress.com/2008/05/22/fedora-9-released/</link>
		<comments>http://sahilahuja.wordpress.com/2008/05/22/fedora-9-released/#comments</comments>
		<pubDate>Thu, 22 May 2008 11:20:28 +0000</pubDate>
		<dc:creator>Sahil Ahuja</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://sahilahuja.wordpress.com/?p=53</guid>
		<description><![CDATA[And it rocks!!
The first thing you notice after fedora 9 is the blazing faaaast startup and shutdown times.
Now, before I say anything else about Fedora 9, here are a few screenshots :
Here&#8217;s Gnome  in F9 :

And here is KDE 4 (finally !!):

KDE 4 seems to be following the footsteps of some of its latest applications [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=53&subd=sahilahuja&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>And it rocks!!</p>
<p>The first thing you notice after fedora 9 is the <strong>blazing faaaast startup and shutdown times</strong>.</p>
<p>Now, before I say anything else about <a href="http://fedoraproject.org/">Fedora 9</a>, here are a few screenshots :</p>
<p>Here&#8217;s Gnome  in F9 :</p>
<p><a href="http://sahilahuja.files.wordpress.com/2008/05/screenshot.png"><img class="alignnone size-medium wp-image-55" src="http://sahilahuja.files.wordpress.com/2008/05/screenshot.png?w=300&#038;h=187" alt="Gnome Preview" width="300" height="187" /></a></p>
<p>And here is <a href="http://www.kde.org/">KDE 4</a> (finally !!):</p>
<p><a href="http://sahilahuja.files.wordpress.com/2008/05/snapshot2.png"><img class="alignnone size-medium wp-image-56" src="http://sahilahuja.files.wordpress.com/2008/05/snapshot2.png?w=300&#038;h=187" alt="KDE 4 Preview" width="300" height="187" /></a></p>
<p>KDE 4 seems to be following the footsteps of some of its latest applications like <a href="http://basket.kde.org/">Basket</a>. The new start menu now acts like that of IPOD. And the inbuilt search as shown in the following video is simply amazing!. The whole desktop has been given a major revamp. And so has been the theme. The widgets on the desktop now act a bit like widgets on Vista.</p>
<p><span style="text-align:center; display: block;"><a href="http://sahilahuja.wordpress.com/2008/05/22/fedora-9-released/"><img src="http://img.youtube.com/vi/n2_BVgWMa1c/2.jpg" alt="" /></a></span></p>
<p>Among the key features, the feature that i think will prove to be indispensable later in making fedora more famous is the windows <strong><a href="http://lewk.org/blog/liveusb-creator-2.0.html">fedora live usb creator</a>.</strong></p>
<p>A feature (a release method actually) that really helped me a lot in creating the live DVD is <strong>Jigdo</strong>. Here is what the official release notes say about Jigdo :</p>
<p style="padding-left:30px;font-size:x-small;line-height:1.2em;">Fedora releases are also available via Jigdo. This distribution method can improve the speed of obtaining the installation ISO images. Instead of waiting for torrent downloads to complete, Jigdo seeks the fastest mirrors it can find via the Fedora Project Mirror Manager infrastructure, and downloads the bits it needs from these mirrors. To optimize seeking these bits, you can tell Jigdo to scan a DVD or CD you already have, and cut down on redundant downloads. This feature becomes particularly useful if you:</p>
<p style="padding-left:30px;font-size:x-small;line-height:1.2em;">1. Download all the test releases and then get the final release, in which case you have 90% of the data already with each subsequent download.</p>
<p style="padding-left:30px;font-size:x-small;line-height:1.2em;">2. Download both the DVD and the CD set, in which case the DVD holds 95% of the data needed for the CD sets.</p>
<p style="padding-left:30px;font-size:x-small;line-height:1.2em;">3. Download any combination of the above.</p>
<p>Anaconda, the installer for fedora, now supports <strong>resizing</strong> of ntfs, ext3 and ext4 partitions during installation. This will be of great help to windows users. (yes, it supports ext4 now.) Also, it gives an option of installing <strong>encrypted</strong> partitions. Business users ought to try this, but with caution.<br />
<a href="http://docs.fedoraproject.org/release-notes/f9/en_US/sn-OverView.html#sn-New-Features">Here</a> is a list of all the new features in fedora 9.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sahilahuja.wordpress.com/53/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sahilahuja.wordpress.com/53/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sahilahuja.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sahilahuja.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sahilahuja.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sahilahuja.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sahilahuja.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sahilahuja.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sahilahuja.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sahilahuja.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sahilahuja.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sahilahuja.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=53&subd=sahilahuja&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sahilahuja.wordpress.com/2008/05/22/fedora-9-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cb056bb91e3189c69c70431c3db1c81?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gud4nothin</media:title>
		</media:content>

		<media:content url="http://sahilahuja.files.wordpress.com/2008/05/screenshot.png?w=300" medium="image">
			<media:title type="html">Gnome Preview</media:title>
		</media:content>

		<media:content url="http://sahilahuja.files.wordpress.com/2008/05/snapshot2.png?w=300" medium="image">
			<media:title type="html">KDE 4 Preview</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/n2_BVgWMa1c/2.jpg" medium="image" />
	</item>
		<item>
		<title>College Nostalgia&#8230;</title>
		<link>http://sahilahuja.wordpress.com/2008/05/22/college-nostalgia/</link>
		<comments>http://sahilahuja.wordpress.com/2008/05/22/college-nostalgia/#comments</comments>
		<pubDate>Thu, 22 May 2008 06:36:54 +0000</pubDate>
		<dc:creator>Sahil Ahuja</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[nitt]]></category>
		<category><![CDATA[octa]]></category>

		<guid isPermaLink="false">http://sahilahuja.wordpress.com/?p=44</guid>
		<description><![CDATA[Here are a few pics and videos I took on the last day of college :
Last night at octa:


       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=44&subd=sahilahuja&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here are a few pics and videos I took on the last day of college :</p>

<a href='http://sahilahuja.wordpress.com/2008/05/22/college-nostalgia/dsc09076/' title='dsc09076'><img width="150" height="112" src="http://sahilahuja.files.wordpress.com/2008/05/dsc09076.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Shishir, Abhishek and Me, Hemant peeping" title="dsc09076" /></a>
<a href='http://sahilahuja.wordpress.com/2008/05/22/college-nostalgia/dsc09086/' title='dsc09086'><img width="150" height="112" src="http://sahilahuja.files.wordpress.com/2008/05/dsc09086.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Seeing off Purnima" title="dsc09086" /></a>
<a href='http://sahilahuja.wordpress.com/2008/05/22/college-nostalgia/dsc09205/' title='dsc09205'><img width="150" height="112" src="http://sahilahuja.files.wordpress.com/2008/05/dsc09205.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Me and Shishir" title="dsc09205" /></a>

<p>Last night at octa:</p>
<p><span style="text-align:center; display: block;"><a href="http://sahilahuja.wordpress.com/2008/05/22/college-nostalgia/"><img src="http://img.youtube.com/vi/z4wK0uOz05I/2.jpg" alt="" /></a></span></p>
<p><span style="text-align:center; display: block;"><a href="http://sahilahuja.wordpress.com/2008/05/22/college-nostalgia/"><img src="http://img.youtube.com/vi/hUM17283rvw/2.jpg" alt="" /></a></span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sahilahuja.wordpress.com/44/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sahilahuja.wordpress.com/44/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sahilahuja.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sahilahuja.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sahilahuja.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sahilahuja.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sahilahuja.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sahilahuja.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sahilahuja.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sahilahuja.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sahilahuja.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sahilahuja.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=44&subd=sahilahuja&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sahilahuja.wordpress.com/2008/05/22/college-nostalgia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cb056bb91e3189c69c70431c3db1c81?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gud4nothin</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/z4wK0uOz05I/2.jpg" medium="image" />

		<media:content url="http://img.youtube.com/vi/hUM17283rvw/2.jpg" medium="image" />
	</item>
		<item>
		<title>The Gods must be crazy..</title>
		<link>http://sahilahuja.wordpress.com/2008/05/22/the-gods-must-be-crazy/</link>
		<comments>http://sahilahuja.wordpress.com/2008/05/22/the-gods-must-be-crazy/#comments</comments>
		<pubDate>Thu, 22 May 2008 05:53:10 +0000</pubDate>
		<dc:creator>Sahil Ahuja</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[faridabad]]></category>
		<category><![CDATA[home]]></category>

		<guid isPermaLink="false">http://sahilahuja.wordpress.com/2008/05/22/the-gods-must-be-crazy/</guid>
		<description><![CDATA[Really.

I mean, this is Faridabad.. in MAY!!! Last year this time, it was blazing hot with loo making it&#8217;s rounds all over India, with people dying of brain fever.
And now, when I come to Faridabad for 10 days, the last time before my job starts, the weather decides to become stormy, windy and rainy.
I caught [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=43&subd=sahilahuja&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Really.</p>
<p><img style="max-width:800px;" src="http://sahilahuja.files.wordpress.com/2008/05/dsc09262.jpg?w=466&#038;h=349" alt="" width="466" height="349" /><br />
I mean, this is Faridabad.. in MAY!!! Last year this time, it was blazing hot with loo making it&#8217;s rounds all over India, with people dying of brain fever.</p>
<p>And now, when I come to Faridabad for 10 days, the last time before my job starts, the weather decides to become stormy, windy and rainy.</p>
<p>I caught a throat infection while coming home via Bhilai from NIT Trichy. I was hoping the heat here would cure the infection. But no, God makes sure the weather is such that it only gets worse.</p>
<p>Thank you, O Lord. (:oloo)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sahilahuja.wordpress.com/43/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sahilahuja.wordpress.com/43/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sahilahuja.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sahilahuja.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sahilahuja.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sahilahuja.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sahilahuja.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sahilahuja.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sahilahuja.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sahilahuja.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sahilahuja.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sahilahuja.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=43&subd=sahilahuja&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sahilahuja.wordpress.com/2008/05/22/the-gods-must-be-crazy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cb056bb91e3189c69c70431c3db1c81?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gud4nothin</media:title>
		</media:content>

		<media:content url="http://sahilahuja.files.wordpress.com/2008/05/dsc09262.jpg" medium="image" />
	</item>
		<item>
		<title>There are websites for everything, even washing your clothes..</title>
		<link>http://sahilahuja.wordpress.com/2008/05/22/there-are-websites-for-everything-even-washing-your-clothes/</link>
		<comments>http://sahilahuja.wordpress.com/2008/05/22/there-are-websites-for-everything-even-washing-your-clothes/#comments</comments>
		<pubDate>Thu, 22 May 2008 05:42:34 +0000</pubDate>
		<dc:creator>Sahil Ahuja</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[men]]></category>
		<category><![CDATA[sex]]></category>
		<category><![CDATA[women]]></category>

		<guid isPermaLink="false">http://sahilahuja.wordpress.com/2008/05/22/there-are-websites-for-everything-even-washing-your-clothes/</guid>
		<description><![CDATA[What Makes Married Men Want to Have Affairs? &#8212; New York Magazine
Consider the Website meet2cheat, in which married people find one another for recreational sex; it charges $59 for a man’s three-month entry fee, $9 for a woman. Cheating wives are harder to come by.
Wow. Nice article. Says men are more prone to infidelity (cheating [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=41&subd=sahilahuja&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://nymag.com/relationships/sex/47055/index1.html">What Makes Married Men Want to Have Affairs? &#8212; New York Magazine</a><br />
<blockquote>Consider the Website meet2cheat, in which married people find one another for recreational sex; it charges $59 for a man’s three-month entry fee, $9 for a woman. Cheating wives are harder to come by.</p></blockquote>
<p>Wow. Nice article. Says men are more prone to infidelity (cheating on someone). Quite right.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sahilahuja.wordpress.com/41/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sahilahuja.wordpress.com/41/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sahilahuja.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sahilahuja.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sahilahuja.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sahilahuja.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sahilahuja.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sahilahuja.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sahilahuja.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sahilahuja.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sahilahuja.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sahilahuja.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=41&subd=sahilahuja&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sahilahuja.wordpress.com/2008/05/22/there-are-websites-for-everything-even-washing-your-clothes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cb056bb91e3189c69c70431c3db1c81?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gud4nothin</media:title>
		</media:content>
	</item>
		<item>
		<title>Adios College!!!</title>
		<link>http://sahilahuja.wordpress.com/2008/05/20/leaving-college-at-last-yipeeeeee/</link>
		<comments>http://sahilahuja.wordpress.com/2008/05/20/leaving-college-at-last-yipeeeeee/#comments</comments>
		<pubDate>Mon, 19 May 2008 21:42:59 +0000</pubDate>
		<dc:creator>Sahil Ahuja</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[nitt farewell]]></category>

		<guid isPermaLink="false">http://sahilahuja.wordpress.com/?p=34</guid>
		<description><![CDATA[Here&#8217;s the farewell cake we gave our juniors. It    was   DELICIOUS.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=34&subd=sahilahuja&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here&#8217;s the farewell cake we gave our juniors. It    was   DELICIOUS.<a href="http://sahilahuja.files.wordpress.com/2008/05/dsc08927.jpg"><img class="alignnone size-medium wp-image-40" src="http://sahilahuja.files.wordpress.com/2008/05/dsc08927.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sahilahuja.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sahilahuja.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sahilahuja.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sahilahuja.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sahilahuja.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sahilahuja.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sahilahuja.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sahilahuja.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sahilahuja.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sahilahuja.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sahilahuja.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sahilahuja.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sahilahuja.wordpress.com&blog=1705839&post=34&subd=sahilahuja&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sahilahuja.wordpress.com/2008/05/20/leaving-college-at-last-yipeeeeee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cb056bb91e3189c69c70431c3db1c81?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gud4nothin</media:title>
		</media:content>

		<media:content url="http://sahilahuja.files.wordpress.com/2008/05/dsc08927.jpg?w=300" medium="image" />
	</item>
	</channel>
</rss>