<?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>enerjee &#187; popular</title>
	<atom:link href="http://www.hindoogle.com/blog/category/popular/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hindoogle.com/blog</link>
	<description>A mind that is stretched by a new experience can never go back to its old dimensions.</description>
	<lastBuildDate>Tue, 07 Sep 2010 17:47:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Cygwin Vs. Hadoop &#8211; DFS Copy</title>
		<link>http://www.hindoogle.com/blog/2009/12/cygwin-vs-hadoop-dfs-copy/</link>
		<comments>http://www.hindoogle.com/blog/2009/12/cygwin-vs-hadoop-dfs-copy/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 04:32:52 +0000</pubDate>
		<dc:creator>rajat</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[popular]]></category>

		<guid isPermaLink="false">http://www.hindoogle.com/blog/2009/12/cygwin-vs-hadoop-dfs-copy/</guid>
		<description><![CDATA[Cygwin makes Hadoop MUCH harder to run. If you&#8217;re having problems setting up your DFS file share under Cygwin, see what happened to me. Notice that you have to use the WINDOWS path (C:\\cygwin\\home\\Rajat\\&#8230;..) With escape characters. Rajat@rtde ~/hadoop-0.20.1 $ bin/hadoop dfs -copyFromLocal /home/Rajat/java/mrh/input inputs copyFromLocal: File /home/Rajat/java/mrh/input does not exist. Rajat@rtde ~/hadoop-0.20.1 $ bin/hadoop [...]]]></description>
			<content:encoded><![CDATA[<p>Cygwin makes Hadoop MUCH harder to run.</p>
<p>If you&#8217;re having problems setting up your DFS file share under Cygwin, see what happened to me. Notice that you have to use the WINDOWS path (C:\\cygwin\\home\\Rajat\\&#8230;..) With escape characters.</p>
<p><span style="color: #00ff00;">Rajat@rtde ~/hadoop-0.20.1<br />
$ bin/hadoop dfs -copyFromLocal /home/Rajat/java/mrh/input inputs<br />
<strong>copyFromLocal: File /home/Rajat/java/mrh/input does not exist.</strong></span></p>
<p><span style="color: #00ff00;">Rajat@rtde ~/hadoop-0.20.1<br />
$ bin/hadoop dfs -copyFromLocal C:\cygwin\home\Rajat\java\mrh\input input<br />
<strong>copyFromLocal: File C:cygwinhomeRajatjavamrhinput does not exist.</strong></span></p>
<h2><span style="color: #00ff00;">Rajat@rtde ~/hadoop-0.20.1<br />
$ bin/hadoop dfs -copyFromLocal C:\\cygwin\\home\\Rajat\\java\\mrh\\input input<br />
<span style="color: #c0c0c0;">(((THIS WORKED)))</span></span></h2>
<p><span style="color: #00ff00;"><span style="color: #c0c0c0;">Test:</span></span></p>
<p><span style="color: #00ff00;"><br />
Rajat@rtde ~/hadoop-0.20.1<br />
$ bin/hadoop dfs -ls<br />
Found 1 items<br />
drwxr-xr-x   &#8211; Rajat supergroup          0 2009-12-16 23:30 /user/Rajat/input</span></p>
<p><span style="color: #00ff00;">Rajat@rtde ~/hadoop-0.20.1<br />
$ bin/hadoop dfs -ls input<br />
Found 1 items<br />
-rw-r&#8211;r&#8211;   1 Rajat supergroup     683956 2009-12-16 23:30 /user/Rajat/input/162523852.csv</span></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6080046302320343";
/* java 300x250, created 2/22/10 */
google_ad_slot = "4685335865";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hindoogle.com/blog/2009/12/cygwin-vs-hadoop-dfs-copy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t compile the example WordCount.java (Hadoop)</title>
		<link>http://www.hindoogle.com/blog/2009/12/cant-compile-the-example-wordcount-java-hadoop/</link>
		<comments>http://www.hindoogle.com/blog/2009/12/cant-compile-the-example-wordcount-java-hadoop/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 05:34:41 +0000</pubDate>
		<dc:creator>rajat</dc:creator>
				<category><![CDATA[from the road]]></category>
		<category><![CDATA[geek out]]></category>
		<category><![CDATA[popular]]></category>

		<guid isPermaLink="false">http://www.hindoogle.com/blog/2009/12/cant-compile-the-example-wordcount-java-hadoop/</guid>
		<description><![CDATA[http://mail-archives.apache.org/mod_mbox/hadoop-common-user/200907.mbox/%3Cd6d7c4410907201717t672e4caet3f369d7e4327ff7b@mail.gmail.com%3E Seen this? Rajat@rtde ~/java $ javac -classpath /home/Rajat/hadoop-0.20.1/hadoop-0.20.1-core.jar -d wordcount_classes WordCount.java WordCount.java:5: package org.apache.hadoop.fs does not exist import org.apache.hadoop.fs.Path; WordCount.java:6: package org.apache.hadoop.conf does not exist import org.apache.hadoop.conf.*; ^ WordCount.java:7: package org.apache.hadoop.io does not exist import org.apache.hadoop.io.*; ^ WordCount.java:8: package org.apache.hadoop.mapred does not exist import org.apache.hadoop.mapred.*; ^ WordCount.java:9: package org.apache.hadoop.util does not exist import org.apache.hadoop.util.*; [...]]]></description>
			<content:encoded><![CDATA[<p>http://mail-archives.apache.org/mod_mbox/hadoop-common-user/200907.mbox/%3Cd6d7c4410907201717t672e4caet3f369d7e4327ff7b@mail.gmail.com%3E</p>
<p>Seen this?</p>
<blockquote><p>Rajat@rtde ~/java<br />
$ javac -classpath /home/Rajat/hadoop-0.20.1/hadoop-0.20.1-core.jar -d<br />
wordcount_classes WordCount.java</p>
<p>WordCount.java:5: package org.apache.hadoop.fs does not exist<br />
import org.apache.hadoop.fs.Path;</p>
<p>WordCount.java:6: package org.apache.hadoop.conf does not exist<br />
import org.apache.hadoop.conf.*;<br />
^<br />
WordCount.java:7: package org.apache.hadoop.io does not exist<br />
import org.apache.hadoop.io.*;<br />
^<br />
WordCount.java:8: package org.apache.hadoop.mapred does not exist<br />
import org.apache.hadoop.mapred.*;<br />
^<br />
WordCount.java:9: package org.apache.hadoop.util does not exist<br />
import org.apache.hadoop.util.*;</p></blockquote>
<h3></h3>
<h3>And running CygWin on Windows? Tried everything for your classpath<br />
huh? Try this:</h3>
<p>$ javac -verbose -classpath C:\\cygwin\\home\\Rajat\\hadoop-0.20.1\\hadoop-0.20.1-core.jar -d wordcount_classes WordCount.java</p>
<p>(Change your cygwin path, obviously)</p>
<p>Use the -verbose flag to show the entire class search path.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6080046302320343";
/* java 300x250, created 2/22/10 */
google_ad_slot = "4685335865";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hindoogle.com/blog/2009/12/cant-compile-the-example-wordcount-java-hadoop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ScrubyT traverse_for_match: undefined method each for nil:NilClass</title>
		<link>http://www.hindoogle.com/blog/2009/09/scrubyt-traverse_for_match-nilclass/</link>
		<comments>http://www.hindoogle.com/blog/2009/09/scrubyt-traverse_for_match-nilclass/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 21:43:56 +0000</pubDate>
		<dc:creator>rajat</dc:creator>
				<category><![CDATA[geek out]]></category>
		<category><![CDATA[popular]]></category>

		<guid isPermaLink="false">http://www.hindoogle.com/blog/?p=736</guid>
		<description><![CDATA[Using ScrubyT, a Ruby on Rails plugin, on a Linux system such as my CentOS 5 VPS, you can get an error message and stack trace like this: /usr/lib/ruby/gems/1.8/gems/scrubyt-0.4.06/lib/scrubyt/utils/shared_utils.rb:43:in `traverse_for_match&#8217;: undefined method `each&#8217; for nil:NilClass (NoMethodError) If you see this, go to shared_utils.rb in the path above, and change this block: node.children.each { &#124;child&#124; traverse_for_m&#8230;. [...]]]></description>
			<content:encoded><![CDATA[<p>Using <a href="http://scrubyt.org/">ScrubyT</a>, a Ruby on Rails plugin, on a Linux system such as my CentOS 5 VPS, you can get an error message and stack trace like this:</p>
<blockquote><p>/usr/lib/ruby/gems/1.8/gems/scrubyt-0.4.06/lib/scrubyt/utils/shared_utils.rb:43:in `traverse_for_match&#8217;: undefined method `each&#8217; for nil:NilClass (NoMethodError)</p></blockquote>
<p>If you see this, go to shared_utils.rb in the path above, and change this block:</p>
<blockquote><p>node.children.each { |child| traverse_for_m&#8230;.</p></blockquote>
<p>into this:</p>
<blockquote><p>if node.children<br />
node.children.each { |child| traverse_for_m&#8230;.<br />
end</p></blockquote>
<p>Thanks to <a href="http://deginzabi163.wordpress.com/2009/08/">Deginzabi who wrote about it</a> in Japanese. This article is a translation of what he said. <em>Hope this makes the next ScrubyT release!</em> It is a great project.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6080046302320343";
/* ruby */
google_ad_slot = "5588307521";
google_ad_width = 234;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hindoogle.com/blog/2009/09/scrubyt-traverse_for_match-nilclass/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Talk &#8211; Invisible Mode</title>
		<link>http://www.hindoogle.com/blog/2009/08/google-talk-invisible-mode/</link>
		<comments>http://www.hindoogle.com/blog/2009/08/google-talk-invisible-mode/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 16:52:47 +0000</pubDate>
		<dc:creator>rajat</dc:creator>
				<category><![CDATA[geek out]]></category>
		<category><![CDATA[popular]]></category>

		<guid isPermaLink="false">http://www.hindoogle.com/blog/?p=695</guid>
		<description><![CDATA[Did you know that you can use &#8220;Invisible Mode&#8221; in the Google Talk app? This is not the web application, but the genuine standalone Google Talk app. You don&#8217;t have to use the GTalk applet that is embedded in Gmail any longer, and can avoid cyberstalkers with class and sophistication! Here is the link to [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know that you can use &#8220;Invisible Mode&#8221; in the Google Talk app? This is not the web application, but the genuine standalone Google Talk app. You don&#8217;t have to use the GTalk applet that is embedded in Gmail any longer, and can avoid cyberstalkers with class and sophistication!</p>
<p>Here is the link to the version of GTalk you&#8217;re interested in &#8211; Google Talk Labs Edition:</p>
<p><a href="http://www.google.com/talk/labsedition/index.html">http://www.google.com/talk/labsedition/index.html</a></p>
<p>I would recommend uninstalling the ordinary version of Gtalk first, otherwise the two will be installed side by side and become an annoyance.</p>
<p><img class="aligncenter size-full wp-image-703" title="gtalk-invisible" src="http://www.hindoogle.com/blog/wp-content/uploads/2009/08/gtalk-invisible.jpg" alt="gtalk-invisible" width="266" height="782" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hindoogle.com/blog/2009/08/google-talk-invisible-mode/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>auto_complete with Rails 2.2</title>
		<link>http://www.hindoogle.com/blog/2009/01/auto_complete-with-rails-22/</link>
		<comments>http://www.hindoogle.com/blog/2009/01/auto_complete-with-rails-22/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 02:45:00 +0000</pubDate>
		<dc:creator>rajat</dc:creator>
				<category><![CDATA[geek out]]></category>
		<category><![CDATA[popular]]></category>

		<guid isPermaLink="false">http://www.hindoogle.com/blog/?p=370</guid>
		<description><![CDATA[This page is about the auto_complete plugin for scriptaculous &#38; Ruby on Rails 2.2. After looking through tons of pages and following countless dead links, here are the problems I had and how to fix them. Error: undefined method `text_field_with_auto_complete' for #&#60;ActionView::Base:0x478d5e4&#62; Answer: Install the auto_complete plugin. command:ruby script/plugin install git://github.com/rails/auto_complete.git Error: ruby script/plugin install [...]]]></description>
			<content:encoded><![CDATA[<p>This page is about the auto_complete plugin for scriptaculous &amp; Ruby on Rails 2.2. After looking through tons of pages and following countless dead links, here are the problems I had and how to fix them.</p>
<h3><code>Error:</code></h3>
<pre><code>undefined method `text_field_with_auto_complete' for #&lt;ActionView::Base:0x478d5e4&gt;

</code></pre>
<h3><code>Answer:</code></h3>
<p>Install the auto_complete plugin.</p>
<pre><code>command:ruby </code>script/plugin install git://github.com/rails/auto_complete.git</pre>
<h3><span>Error:</span></h3>
<pre><span>ruby script/plugin install git://github.com/rails/auto_complete.git
removing: C:/Dropbox/My Dropbox/Ruby/mc/vendor/plugins/auto_complete/.git</span></pre>
<h3><span>Answer:</span></h3>
<pre><span>You don't have GIT installed. Its like a package manager. Get it from:<a title="http://git-scm.com/download" href="http://git-scm.com/download">http://git-scm.com/download</a>

</span></pre>
<h3><span>Error:</span></h3>
<pre><span>ruby script/plugin remove auto_complete
Plugin doesn't exist: C:/Dropbox/My Dropbox/Ruby/mcvendor/plugins/auto_complete

</span></pre>
<h3><span>Answer:</span></h3>
<pre><span>Duh, it isn't installed. Install as directed above.

</span></pre>
<h3><span>Error:</span></h3>
<pre><span>Just doesn't seem to work.

</span></pre>
<h3><span>Answer: </span></h3>
<pre><span>Restart rails
Do the error logs tell you something?
Go over this article with a fine toothed comb:<a href="http://www.slash7.com/articles/2005/08/13/ajaxariffic-autocomplete-with-scriptaculous">http://www.slash7.com/articles/2005/08/13/ajaxariffic-autocomplete-with-scriptaculous</a>

</span></pre>
<h3><span>Error:</span></h3>
<pre><span>ActionController::InvalidAuthenticityToken in your development.log

</span></pre>
<h3><span>Answer:</span></h3>
<pre><span>There is a cross-site scripting protection that must be turned off.
Add this to your controller:
skip_before_filter :verify_authenticity_token

</span></pre>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6080046302320343";
/* ruby */
google_ad_slot = "5588307521";
google_ad_width = 234;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hindoogle.com/blog/2009/01/auto_complete-with-rails-22/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Re-activate Netflix on your XBox 360</title>
		<link>http://www.hindoogle.com/blog/2008/12/how-to-re-activate-netflix-on-your-xbox-360/</link>
		<comments>http://www.hindoogle.com/blog/2008/12/how-to-re-activate-netflix-on-your-xbox-360/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 00:24:32 +0000</pubDate>
		<dc:creator>rajat</dc:creator>
				<category><![CDATA[geek out]]></category>
		<category><![CDATA[popular]]></category>

		<guid isPermaLink="false">http://www.hindoogle.com/blog/?p=330</guid>
		<description><![CDATA[My Room mate got excited when NXE came out for the xbox 360. He downloaded and activated the Netflix app for Xbox 360 while I was out of town. But he doesn&#8217;t have an unlimited account, or good taste in movies for that matter. Here are some quick directions to get rid of your existing [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp mceIEcenter">
<p style="text-align: left;">My Room mate got excited when NXE came out for the xbox 360. He downloaded and activated the Netflix app for Xbox 360 while I was out of town. But he doesn&#8217;t have an unlimited account, or good taste in movies for that matter. Here are some quick directions to get rid of your existing activation code and input a new one.<br />
1.     In the <strong>Guide</strong>, select the <strong>Settings </strong>blade, and then select <strong>System Settings</strong>.<br />
2.     Select <strong>Memory</strong>.<br />
3.     Select <strong>Hard Drive</strong> or <strong>Memory Card.</strong><br />
4.     Select <strong>Games</strong>.<br />
5.     Locate any select items that refer to “<strong>Netflix</strong>.”<br />
6.     Press the A button to delete the items.<br />
7.     Exit to the Xbox 360 Dashboard.<br />
8.     Open the Video Marketplace.<br />
9.     Select Netflix.<br />
10.     Confirm the download, and follow any on-screen prompts to reconfigure Netflix on your Xbox 360 console.</p>
<p style="text-align: left;">You will now get a new activation code.</p>
<p style="text-align: left;">At this point, Netflix actually told me to &#8220;FUX OF&#8221; , but i&#8217;m persistent like that and i got a new activation.</p>
<p style="text-align: left;">
<dl id="attachment_332" class="wp-caption aligncenter" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://www.hindoogle.com/blog/wp-content/uploads/2008/12/img_0875.jpg"><img class="size-medium wp-image-332" title="FUX 0F" src="http://www.hindoogle.com/blog/wp-content/uploads/2008/12/img_0875-300x225.jpg" alt="Netflix telling me to FUX0F" width="300" height="225" /></a></dt>
<dd class="wp-caption-dd">Netflix telling me to FUX0F</dd>
</dl>
</div>
<hr />
<span style="color: #ffff00;"><strong>I use ad revenue to pay for my hosting. So if you found my tip useful please &#8230;</strong><br />
<script type="text/javascript">// <![CDATA[
 google_ad_client = "pub-6080046302320343"; /* netflix */ google_ad_slot = "6243719041"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script></span><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hindoogle.com/blog/2008/12/how-to-re-activate-netflix-on-your-xbox-360/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>EasyCGI SUCKS</title>
		<link>http://www.hindoogle.com/blog/2008/11/easycgi-sucks/</link>
		<comments>http://www.hindoogle.com/blog/2008/11/easycgi-sucks/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 18:18:01 +0000</pubDate>
		<dc:creator>rajat</dc:creator>
				<category><![CDATA[popular]]></category>
		<category><![CDATA[whining]]></category>

		<guid isPermaLink="false">http://www.hindoogle.com/blog/?p=301</guid>
		<description><![CDATA[After a week of Hindoogle being down, along with all of my homework, music, and blog, I finally switched to a new web host. EasyCGI, who i was a loyal customer of for 3+ years, apparently sold out to a shitty company, and decided to &#8220;migrate&#8221; all of its users from perfectly good Windows 2003 [...]]]></description>
			<content:encoded><![CDATA[<p>After a week of Hindoogle being down, along with all of my homework, music, and blog, I finally switched to a new web host.</p>
<p>EasyCGI, who i was a loyal customer of for 3+ years, apparently sold out to a shitty company, and decided to &#8220;migrate&#8221; all of its users from perfectly good Windows 2003 servers to some other configuration. They didn&#8217;t test anything, and put up a half-ass control panel. Their support staff gives answers like &#8220;Did you refresh your browser?&#8221; when i tell them that my entire MySQL database is inaccessible. They did an excellent job copying files (hooray) to the new server, but screwed up all the database stuff.</p>
<p>Anyway, I suppose I&#8217;m lucky because nothing on hindoogle generates any money, and downtime is a nuisance and not a business loss. I feel bad for other EasyCGI customers that relied upon them for business. Is this any way to treat longtime customers?</p>
<p>I Joined eApps.com , per Jason&#8217;s recommendation, and am _VERY_ satisfied. I can start putting up my Ruby on Rails business ideas here :)</p>
<p><span style="color: #00ffff;">This site is currently hosted by Eapps.com. They are a VERY good host, not a single day of downtime since November 2008. They promptly and properly answer all of my questions. I have a Linux private VPS for $11 a month, which is a steal. VPS is far superior to shared windows hosting. If you want to earn me a free month, please <a href="http://www.eapps.com" target="_blank">click this link to sign up </a>with eapps and list &#8220;Rajat Banerjee&#8221; as your referrer. Thanks I appreciate it!</span></p>
<hr />&#8220;People say, &#8216;How can I help on this war against terror? How can I fight evil?&#8217; You can do so by mentoring a child, by going into a shut-in&#8217;s house and say, &quot;I love you.&#8217;&#8221; &#8212; <a href="http://www.hindoogle.com/bushism">President Bush, September 19, 2002</a></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6080046302320343";
/* 468x60, created 3/1/09 */
google_ad_slot = "1010951488";
google_ad_width = 468;
google_ad_height = 60;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hindoogle.com/blog/2008/11/easycgi-sucks/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Sarah Palin or Tina Fey? Listen to Sound Bytes and Guess</title>
		<link>http://www.hindoogle.com/blog/2008/10/sarah-palin-or-tina-fey/</link>
		<comments>http://www.hindoogle.com/blog/2008/10/sarah-palin-or-tina-fey/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 01:22:14 +0000</pubDate>
		<dc:creator>rajat</dc:creator>
				<category><![CDATA[election]]></category>
		<category><![CDATA[funnies]]></category>
		<category><![CDATA[popular]]></category>

		<guid isPermaLink="false">http://www.hindoogle.com/blog/?p=240</guid>
		<description><![CDATA[Are these sound bytes from Vice Presidential Candidate Sarah Palin? Or from Comedian Tina Fey? These days it is incredibly difficult to differentiate. Listen for yourself, jot down your answers, and see if you are right. Madeline Albright Quote I read all of &#8216;em One Heartbeat Away from the Presidency A Washington Outsider Russian Diplomacy [...]]]></description>
			<content:encoded><![CDATA[<p>Are these sound bytes from Vice Presidential Candidate Sarah Palin? Or from Comedian Tina Fey? These days it is incredibly difficult to differentiate.</p>
<p>Listen for yourself, jot down your answers, and see if you are right.</p>
<hr />
<h2><span style="color: #e22644;">Madeline Albright Quote</span></h2>
<p><img class="aligncenter" title="Sarah Palin" src="http://www.hindoogle.com/blog/wp-content/uploads/2008/10/SarahPalinTall.jpg" alt="" width="200" height="250" /></p>
<hr />
<h2><span style="color: #c0c0c0;">I read all of &#8216;em</span></h2>
<h2><span style="color: #99ccff;">One Heartbeat Away from the Presidency</span></h2>
<p><img class="aligncenter" title="Tina Fey on Saturday Night Live" src="http://www.hindoogle.com/blog/wp-content/uploads/2008/10/tina-fey-snl.jpg" alt="" width="300" height="193" /></p>
<hr />
<h2><span style="color: #e22644;">A Washington Outsider</span></h2>
<h2><span style="color: #c0c0c0;">Russian Diplomacy</span></h2>
<p style="text-align: center;">
<p><img class="aligncenter" title="Sarah Palin Winking at You" src="http://www.hindoogle.com/blog/wp-content/uploads/2008/10/Palin-Wink.jpg" alt="" /></p>
<hr />
<h2><span style="color: #99ccff;">At the United Nations</span></h2>
<h2><span style="color: #e22644;">What Does a VP Do?</span></h2>
<p><img class="aligncenter" title="Tina Fey on SNL" src="http://www.hindoogle.com/blog/wp-content/uploads/2008/10/tina_fey_2.jpg" alt="" /></p>
<hr />
<h1><a href="http://www.hindoogle.com/blog/?page_id=254" target="_blank">Click here for the answers</a>.</h1>
<p>Once you&#8217;ve had a moment to consider, please think hard about putting this woman into office. She seems to embody some of the values Americans seek, but like they always say in this town, You can&#8217;t polish a turd.</p>
<p><code>NOTE: Using Firefox 3 and not seeing any audio player? Disable Adblock, or upgrade to Adblock Plus. Adblock indiscriminately blocks the Flash Plugins you need. </code></p>
<h3><span style="color: #ffcc00;"><a href="http://www.addtoany.com/add_to/Digg?linkname=Sarah%20Palin%20or%20Tina%20Fey%3F%20Listen%20to%20Sound%20Bytes%20and%20Guess&amp;linkurl=http%3A%2F%2Fwww.hindoogle.com%2Fblog%2F%3Fp%3D240&amp;type=page">Digg this if you like it!!</a></span></h3>
<hr />
&#8220;The suicide bombings have increased; there&#8217;s too many of them.&#8221; &#8212; <a href="http://www.hindoogle.com/bushism">President Bush, August 15, 2001</a><br />
<P><br />
<script type="text/javascript"><!--
google_ad_client = "pub-6080046302320343";
/* 468x60, created 3/1/09 */
google_ad_slot = "1010951488";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hindoogle.com/blog/2008/10/sarah-palin-or-tina-fey/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
<enclosure url="http://www.hindoogle.com/blog/wp-content/uploads/2008/10/Albright_Quote.mp3" length="124343" type="audio/mpeg" />
<enclosure url="http://www.hindoogle.com/blog/wp-content/uploads/2008/10/one-heartbeat-away.mp3" length="106311" type="audio/mpeg" />
<enclosure url="http://www.hindoogle.com/blog/wp-content/uploads/2008/10/Outsider.mp3" length="214788" type="audio/mpeg" />
<enclosure url="http://www.hindoogle.com/blog/wp-content/uploads/2008/10/read-all-of-them.mp3" length="152424" type="audio/mpeg" />
<enclosure url="http://www.hindoogle.com/blog/wp-content/uploads/2008/10/Russians.mp3" length="127576" type="audio/mpeg" />
<enclosure url="http://www.hindoogle.com/blog/wp-content/uploads/2008/10/United-Nations.mp3" length="87587" type="audio/mpeg" />
<enclosure url="http://www.hindoogle.com/blog/wp-content/uploads/2008/10/what-does-a-vp-do.mp3" length="83090" type="audio/mpeg" />
		</item>
		<item>
		<title>obi-wan</title>
		<link>http://www.hindoogle.com/blog/2007/12/obi-wan/</link>
		<comments>http://www.hindoogle.com/blog/2007/12/obi-wan/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 02:16:24 +0000</pubDate>
		<dc:creator>rajat</dc:creator>
				<category><![CDATA[popular]]></category>
		<category><![CDATA[uncategorizable]]></category>

		<guid isPermaLink="false">http://www.hindoogle.com/blog/?p=27</guid>
		<description><![CDATA[i keep thinking, what if Obi-Wan Kenobi had killed Anakin Skywalker on the lava planet of Mustafar? Anakin symbolized Obi-Wan&#8217;s weakness and failures. Had Obi-Wan killed Anakin when it was obvious that he&#8217;d failed as a Anakin&#8217;s instructor and Anakin had crossed to the dark side, the galaxy would have been changed forever. Darth Sidious [...]]]></description>
			<content:encoded><![CDATA[<p>i keep thinking, what if Obi-Wan Kenobi had killed Anakin Skywalker on the lava planet of Mustafar? Anakin symbolized Obi-Wan&#8217;s weakness and failures. Had Obi-Wan killed Anakin when it was obvious that he&#8217;d failed as a Anakin&#8217;s instructor and Anakin had crossed to the dark side, the galaxy would have been changed forever. Darth Sidious would not have gotten his apprentice, and the Jedi knights would have survived to this date.</p>
<p>When Obi-Wan had the opportunity to kill Anakin, he should have taken it. Instead he demonstrated the Jedi&#8217;s legendary mercy. But perhaps it was actually vindictiveness, as Anakin smoldered on the ground beside his severed limbs. Whatever, Obiwan should have just done it.</p>
<p><img src="http://www.hindoogle.com/blog/wp-content/uploads/2007/12/anakin-mustafar.jpg" alt="Anakin" width="400" height="300" /><br />
<span style="color: #ffff00;"><strong><br />
</strong></span></p>
<p><span style="color: #ffff00;"><strong>I use ad revenue to pay for my hosting. So if you download my picture, would you please&#8230;</strong></span></p>
<p><script type="text/javascript">// <![CDATA[
 google_ad_client = "pub-6080046302320343"; /* 468x60, created 3/1/09 */ google_ad_slot = "1010951488"; google_ad_width = 468; google_ad_height = 60;
// ]]&gt;</script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hindoogle.com/blog/2007/12/obi-wan/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>manu chao!</title>
		<link>http://www.hindoogle.com/blog/2007/11/manu-chao/</link>
		<comments>http://www.hindoogle.com/blog/2007/11/manu-chao/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 05:41:12 +0000</pubDate>
		<dc:creator>rajat</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[popular]]></category>

		<guid isPermaLink="false">http://www.hindoogle.com/blog/?p=23</guid>
		<description><![CDATA[finally finished my case study for MSE252! I just finished posting the new Manu Chao album on Hindoogle Music. Drop a comment (with your email in the e-field) and i&#8217;ll send you the link! Unfort it doesn&#8217;t have bongo bong on it, one of his best songs ever. Click below to listen. In other news, [...]]]></description>
			<content:encoded><![CDATA[<p>finally finished my case study for MSE252!</p>
<p style="text-align: center"><img src="http://www.hindoogle.com/blog/wp-content/uploads/2007/11/radiolina.jpg" alt="La Radiolina" width="273" height="273" /></p>
<p>I just finished posting the new Manu Chao album on Hindoogle Music. Drop a comment (with your email in the e-field) and i&#8217;ll send you the link!</p>
<p>Unfort it doesn&#8217;t have bongo bong on it, one of his best songs ever. Click below to listen.</p>
<p>In other news, me and my hottie are going to San Fran for new years, and planning to go to London in April. The long distance is <em>extremely </em>hard and I miss her very much. I think the rewards later on may make up for some of it.</p>
<hr />
&#8220;As governor of Texas, I have set high standards for our public schools, and I have met those standards.&#8221; &#8212; <a href="http://www.hindoogle.com/bushism">President Bush, CNN, 30 August, 2000 </a><br />
<br />
<script type="text/javascript"><!--
google_ad_client = "pub-6080046302320343";
/* 468x60, created 3/1/09 */
google_ad_slot = "1010951488";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hindoogle.com/blog/2007/11/manu-chao/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
