<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>/me on the net!</title>
    <link>http://web.gnuer.org/blog/</link>
    <description>Anurag's blog at web.gnuer.org</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.2 - http://www.s9y.org/</generator>
    <pubDate>Wed, 25 Apr 2012 10:01:56 GMT</pubDate>

    <image>
        <url>http://web.gnuer.org/blog/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: /me on the net! - Anurag's blog at web.gnuer.org</title>
        <link>http://web.gnuer.org/blog/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Setting up UserDir  on Nginx</title>
    <link>http://web.gnuer.org/blog/archives/104-Setting-up-UserDir-on-Nginx.html</link>
    
    <comments>http://web.gnuer.org/blog/archives/104-Setting-up-UserDir-on-Nginx.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=104</wfw:comment>

    <slash:comments>5</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=104</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    Nginx doesn&#039;t have mod_userdir like Apache, but the behavior can be emulated by the following configuration snippet.&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
# userdir simulation&lt;br /&gt;
location ~ /~([^/]+)($|/.*)$ {&lt;br /&gt;
&amp;#160;&amp;#160;alias /home/$1/public_html$2;&lt;br /&gt;
&amp;#160;&amp;#160;error_page 404 = @404;&lt;br /&gt;
&amp;#160;&amp;#160;autoindex on;&lt;br /&gt;
}&lt;br /&gt;
location @404 {&lt;br /&gt;
&amp;#160;&amp;#160;return 404;&lt;br /&gt;
}&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
Putting these location directives in a virtual host config section will let the virtual host publish user&#039;s public_html directories. 
    </content:encoded>

    <pubDate>Wed, 18 Apr 2012 18:02:38 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/104-guid.html</guid>
    
</item>
<item>
    <title>Tracing ruby programs with set_trace_func</title>
    <link>http://web.gnuer.org/blog/archives/102-Tracing-ruby-programs-with-set_trace_func.html</link>
    
    <comments>http://web.gnuer.org/blog/archives/102-Tracing-ruby-programs-with-set_trace_func.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=102</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=102</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    At times you may need to trace a ruby program&#039;s execution flow. Ruby&#039;s set_trace_func comes handy there.&lt;br /&gt;
&lt;br /&gt;
&lt;script src=&quot;https://gist.github.com/1477993.js&quot;&gt; &lt;/script&gt;&lt;br /&gt;
&lt;br /&gt;
When saved in a file called trace.rb and executed with $ ruby trace.rb, it outputs&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;   2011-12-15 00:33:26 +0530 c-return trace.rb:3  set_trace_func   Kernel&lt;br /&gt;
   2011-12-15 00:33:26 +0530     line trace.rb:5                     &lt;br /&gt;
   2011-12-15 00:33:26 +0530   c-call trace.rb:5        puts   Kernel&lt;br /&gt;
   2011-12-15 00:33:26 +0530   c-call trace.rb:5        puts       IO&lt;br /&gt;
   2011-12-15 00:33:26 +0530   c-call trace.rb:5       write       IO&lt;br /&gt;
*** Hello World&lt;br /&gt;
   2011-12-15 00:33:26 +0530 c-return trace.rb:5       write       IO&lt;br /&gt;
   2011-12-15 00:33:26 +0530 c-return trace.rb:5        puts       IO&lt;br /&gt;
   2011-12-15 00:33:26 +0530 c-return trace.rb:5        puts   Kernel&lt;br /&gt;
&lt;/code&gt; 
    </content:encoded>

    <pubDate>Thu, 15 Dec 2011 00:34:38 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/102-guid.html</guid>
    
</item>
<item>
    <title>What's new in Firefox 5!</title>
    <link>http://web.gnuer.org/blog/archives/99-Whats-new-in-Firefox-5!.html</link>
            <category>utilities</category>
    
    <comments>http://web.gnuer.org/blog/archives/99-Whats-new-in-Firefox-5!.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=99</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=99</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>

    <pubDate>Tue, 28 Jun 2011 18:12:15 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/99-guid.html</guid>
    
</item>
<item>
    <title>Rotten tomatoes' rotten TOS</title>
    <link>http://web.gnuer.org/blog/archives/98-Rotten-tomatoes-rotten-TOS.html</link>
            <category>misc</category>
    
    <comments>http://web.gnuer.org/blog/archives/98-Rotten-tomatoes-rotten-TOS.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=98</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=98</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    &lt;blockquote&gt;3 (b) No Conflicting Uses.  &lt;em&gt;&lt;strong&gt;You may not use the Flixster API to develop (or instruct any third party to develop) a service that may reasonably be deemed to be directly competitive with Flixster’s products and services&lt;/strong&gt;&lt;/em&gt;, unless you have been specifically permitted to do so in a separate written agreement with Flixster prior to the undertaking of the development and launch of such service.&lt;/blockquote&gt;&lt;br /&gt;
Dear Rotten Tomatoes, what&#039;s the point of launching these &lt;a href=&quot;http://developer.rottentomatoes.com/docs&quot;&gt;APIs&lt;/a&gt; then?  
    </content:encoded>

    <pubDate>Sun, 20 Mar 2011 01:04:21 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/98-guid.html</guid>
    
</item>
<item>
    <title>Convert videos for Android (Samsung Galaxy)</title>
    <link>http://web.gnuer.org/blog/archives/97-Convert-videos-for-Android-Samsung-Galaxy.html</link>
            <category>utilities</category>
    
    <comments>http://web.gnuer.org/blog/archives/97-Convert-videos-for-Android-Samsung-Galaxy.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=97</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=97</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    My &lt;a href=&quot;http://www.gsmarena.com/samsung_galaxy_551-3515.php&quot; title=&quot;Samsung Galaxy 551&quot; target=&quot;_blank&quot;&gt;Android phone&lt;/a&gt; doesn&#039;t support DivX/XviD. To play videos on it. I need to convert them to MP4. Taking a note for myself if I need it later.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;&lt;code&gt;$ ffmpeg -i input_video.avi -f mp4 -vcodec libx264 -acodec libfaac -s 400x240 -ab 128k output_video.mp4&lt;/code&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
400x240 is the phone&#039;s screen resolution.&lt;br /&gt;
&lt;br /&gt;
[Edit] &lt;a href=&quot;http://www.ffmpeg.org/faq.html#SEC23&quot; title=&quot;FFMpeg FAQs&quot;&gt;Good parameters for high quality MPEG4 encoding&lt;/a&gt;:&lt;br /&gt;
&lt;blockquote&gt;&lt;code&gt;-mbd rd -flags +mv4+aic -trellis 2 -cmp 2 -subcmp 2 -g 300 &lt;/code&gt;&lt;/blockquote&gt; 
    </content:encoded>

    <pubDate>Tue, 22 Feb 2011 00:21:30 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/97-guid.html</guid>
    
</item>
<item>
    <title>Mumbai, Delhi, Pune, Ahmedabad - Autorickshaw Taxi fares</title>
    <link>http://web.gnuer.org/blog/archives/96-Mumbai,-Delhi,-Pune,-Ahmedabad-Autorickshaw-Taxi-fares.html</link>
            <category>utilities</category>
    
    <comments>http://web.gnuer.org/blog/archives/96-Mumbai,-Delhi,-Pune,-Ahmedabad-Autorickshaw-Taxi-fares.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=96</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=96</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    &lt;div class=&quot;serendipity_imageComment_right&quot; style=&quot;width: 73px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://web.gnuer.org/blog/uploads/screenshots/rickfare.png&#039; target=&quot;_blank&quot;&gt;&lt;!-- s9ymdb:14 --&gt;&lt;img width=&quot;73&quot; height=&quot;110&quot;  src=&quot;http://web.gnuer.org/blog/uploads/screenshots/rickfare.serendipityThumb.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Rickshaw fares for Mumbai&lt;/div&gt;&lt;/div&gt;Two months back Mumbai&#039;s autorickshaw and taxi drivers went on a strike, demanding a steep increase in fares. While earlier the fare calculation was simple, after the new fare structure came in place, autorickshaw fare calculations became relatively complex. &lt;br /&gt;
&lt;br /&gt;
I started &lt;a href=&quot;http://rickfare.com&quot; title=&quot;rickfare.com&quot;&gt;http://rickfare.com&lt;/a&gt; on the day new fares came into effect after seeing the new complicated fare structure. Over time, friends pitched in for their cities and I added New Delhi, Ahmedabad, Pune and Navi Mumbai. Today &lt;a href=&quot;http://rickfare.com&quot; title=&quot;http://rickfare.com &quot;&gt;Rickfare.com&lt;/a&gt; is accessed by thousands of commuters over a wide variety of mobile devices including iPhone, BlackBerry, Android, HTC and assorted Nokia handsets.&lt;br /&gt;
&lt;br /&gt;
I&#039;d like to thank &lt;a href=&quot;http://www.ashishmehta.com/blog/&quot;&gt;Ashish Mehta&lt;/a&gt;, &lt;a href=&quot;http://atuljha.com/blog/&quot;&gt;Atul Jha&lt;/a&gt;, &lt;a href=&quot;http://kartikm.wordpress.com/2010/07/20/rickfare/&quot;&gt;Kartik Mistry&lt;/a&gt; and &lt;a href=&quot;http://eficacy.com&quot;&gt;Kamaleshwar&lt;/a&gt; for helping out with auto fares of their cities &lt;img src=&quot;http://web.gnuer.org/blog/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Thu, 26 Aug 2010 14:09:32 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/96-guid.html</guid>
    
</item>
<item>
    <title>Extract mp3 audio from a video clip using mencoder</title>
    <link>http://web.gnuer.org/blog/archives/95-Extract-mp3-audio-from-a-video-clip-using-mencoder.html</link>
            <category>utilities</category>
    
    <comments>http://web.gnuer.org/blog/archives/95-Extract-mp3-audio-from-a-video-clip-using-mencoder.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=95</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=95</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    This post is a note for self. I always keep forgetting how to extract mp3 audio file from any video clip.&lt;br /&gt;
&lt;blockquote&gt;&lt;code&gt;$ mencoder videofile.avi -of rawaudio -oac mp3lame -ovc copy -o audio-output.mp3&lt;/code&gt;&lt;/blockquote&gt;&lt;br /&gt;
This is an awesome companion to the youtube video downloader - &lt;a href=&quot;http://bitbucket.org/rg3/youtube-dl/wiki/Home&quot; title=&quot;Youtube video downloader&quot;&gt;youtube-dl.py&lt;/a&gt; 
    </content:encoded>

    <pubDate>Mon, 17 May 2010 13:52:44 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/95-guid.html</guid>
    
</item>
<item>
    <title>Server sent unexpected return value (502 Bad Gateway) in response to COPY request</title>
    <link>http://web.gnuer.org/blog/archives/94-Server-sent-unexpected-return-value-502-Bad-Gateway-in-response-to-COPY-request.html</link>
            <category>utilities</category>
    
    <comments>http://web.gnuer.org/blog/archives/94-Server-sent-unexpected-return-value-502-Bad-Gateway-in-response-to-COPY-request.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=94</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=94</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    During the recent server migration, I shifted svn services from &lt;em&gt;http&lt;/em&gt; to &lt;em&gt;https&lt;/em&gt;. Everything seemed to work fine, except for this error while creating branches.&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;frodo$ svn cp https://svn.xinh.org/svn/project/UberCool/trunk https://svn.xinh.org/svn/project/UberCool/branches/1.0&lt;br /&gt;
svn: Server sent unexpected return value (502 Bad Gateway) in response to COPY request for &#039;/svn/project/!svn/bc/15/UberCool/trunk&#039;&lt;br /&gt;
svn: Your commit message was left in a temporary file:&lt;br /&gt;
svn:    &#039;svn-commit.tmp&#039;&lt;br /&gt;
frodo$ &lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
Googling around a bit helped. I&#039;m using HTTPS over Apache + dav_svn module. This issue can be fixed by enabling &lt;strong&gt;mod_headers&lt;/strong&gt; module in Apache and adding the following line at the end of your VirtualHost.&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;RequestHeader edit Destination ^https http early&lt;/code&gt;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Wed, 21 Apr 2010 10:46:14 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/94-guid.html</guid>
    
</item>
<item>
    <title>Trek to Sankshi fort</title>
    <link>http://web.gnuer.org/blog/archives/93-Trek-to-Sankshi-fort.html</link>
            <category>travel</category>
            <category>trekking</category>
    
    <comments>http://web.gnuer.org/blog/archives/93-Trek-to-Sankshi-fort.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=93</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=93</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    After a long long time I got a chance to go trekking again on 22 Nov. Sankshi fort is located near Alibag, off the Mumbai Alibag highway. Difficulty level is easy to moderate, but it involves about an hour of walking.&lt;br /&gt;
&lt;br /&gt;
Article on &lt;a href=&quot;http://www.maharashtra.gov.in/english/gazetteer/KOLABA/places_Sankshi%20Fort.html&quot; target=&quot;_blank&quot;&gt;Sankshi fort&lt;/a&gt; from Maharashtra government website.&lt;blockquote&gt;The name Sankshi is said to have been derived from a chief named Sank who is traditionally believed to have been the lord of the fort. See below.] (T. Pen) also known as Badr-ud-din, or Darghaca Killa from a tomb or dargah of the saint Badr-ud-din at its foot, lies within the limits of Nidivali village about five miles north-east of Pen. &lt;a href=&quot;http://www.maharashtra.gov.in/english/gazetteer/KOLABA/places_Sankshi%20Fort.html&quot; target=&quot;_blank&quot;&gt;read more...&lt;/a&gt;&lt;/blockquote&gt;&lt;br /&gt;
We assembled at Panvel ST depot at 7AM, waiting for others to join in, and finally left Panvel at 9:15 after having breakfast at a restaurant across the road. Since the bus started from Panvel, everyone got seats, and I dozed off to sleep.&lt;br /&gt;
&lt;br /&gt;
We got down at Balavali Phata and marched towards saint Badr-ud-din&#039;s dargaah. The route is cool and covered with dense trees, but full of giant spider webs. The photographers among us took half an hour to capture the arachnids and buffaloes on camera.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.flickr.com/photos/anuragp/4124310341/&quot; title=&quot;Long shot of Sankshi fort by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2612/4124310341_748134bb1b_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;Long shot of Sankshi fort&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/anuragp/4125078468/&quot; title=&quot;Monster spider by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2682/4125078468_31bfda1341_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;Monster spider&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/anuragp/4125083446/&quot; title=&quot;Route through jungle by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2674/4125083446_517650d33b_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;Route through jungle&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/anuragp/4124311987/&quot; title=&quot;Old mazaar by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2797/4124311987_049d2cd45e_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;Old mazaar&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
We reached dargaah in less than 2 hours, relaxed and moved towards the Sankshi hill. There&#039;s a GI water pipe that runs to dargaah at the base of the hill from a water cistern at the top of the hill. Some walk in the jungle, struggling with the itchy bushes, a rock patch and we were at the top. After exploring for half an hour, we came back down to have lunch at the old dargaah structure that looked beautiful and wise in white color.&lt;br /&gt;
&lt;br /&gt;
It was a nice little trek (microtrek &lt;img src=&quot;http://web.gnuer.org/blog/templates/default/img/emoticons/tongue.png&quot; alt=&quot;:-P&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; ) and we were back to panvel around 6PM, without feeling tired at all! Complete &lt;a href=&quot;http://www.flickr.com/photos/anuragp/sets/72157622729495919/&quot;&gt;pictures from trek to sankshi fort&lt;/a&gt; are available in my &lt;a href=&quot;http://www.flickr.com/photos/anuragp/sets/&quot;&gt;flickr set&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Tue, 24 Nov 2009 11:50:59 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/93-guid.html</guid>
    
</item>
<item>
    <title>Trek to Gorakhgad and Malshej ghat</title>
    <link>http://web.gnuer.org/blog/archives/92-Trek-to-Gorakhgad-and-Malshej-ghat.html</link>
            <category>travel</category>
            <category>trekking</category>
    
    <comments>http://web.gnuer.org/blog/archives/92-Trek-to-Gorakhgad-and-Malshej-ghat.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=92</wfw:comment>

    <slash:comments>5</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=92</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    Trek to Gorakhgad can be counted as one of the most luxurious treks in the Sahyadri range. We left Mumbai on Saturday 4th July 2009 at 2300Hrs. It rained heavily whole day so many participants dropped out at the last minute since the train services were badly affected. As a result, the bus we hired had several seats empty and lots of place for us to sleep.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.flickr.com/photos/anuragp/3693763870/&quot; title=&quot;Trekkers climbing up Gorakhgad by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2461/3693763870_782e703f3f_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;Trekkers climbing up Gorakhgad&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/anuragp/3692950971/&quot; title=&quot;Tree and fog at Gorakhgad by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3590/3692950971_03a3081345_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;Tree and fog at Gorakhgad&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/anuragp/3692969953/&quot; title=&quot;Machchindra hill covered with clouds by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2536/3692969953_f0ab0b7f00_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;Machchindra hill covered with clouds&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/anuragp/3693803642/&quot; title=&quot;Crawling clouds by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3548/3693803642_095ff001fe_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;Crawling clouds&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
We took &lt;a href=&quot;en.wikipedia.org/wiki/National_Highway_222_(India)&quot; title=&quot;National Highway 222&quot;&gt;NH-222&lt;/a&gt; from Kalyan and stopped at Dehri. Trek began at 3AM in the moonlit sky with torches. In about 2 hours we reached the base of Gorakhgad mountain and started climbing upwards in the light of dawn.&lt;br /&gt;
&lt;br /&gt;
After exploring the top, taking pictures, having breakfast and walking in the clouds we were back to the highway before noon. After Gorakhgad we switched to picnic mood and started our trip to the scenic Malshej ghat.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.flickr.com/photos/anuragp/3693846758/&quot; title=&quot;Flying Ninja fighters by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3551/3693846758_3e1862d66f_t.jpg&quot; width=&quot;100&quot; height=&quot;80&quot; alt=&quot;Flying Ninja fighters&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/anuragp/3693858262/&quot; title=&quot;Lake at Malshej plateau by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2658/3693858262_5746ba4f83_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;Lake at Malshej plateau&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/anuragp/3693076849/&quot; title=&quot;Tree covered in clouds by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2597/3693076849_2e8578f752_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;Tree covered in clouds&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.flickr.com/photos/anuragp/3693868926/&quot; title=&quot;Ragging Jagidsh by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2459/3693868926_5e69c579a1_t.jpg&quot; width=&quot;100&quot; height=&quot;75&quot; alt=&quot;Ragging Jagidsh&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
It was an amazing trip and it seems i&#039;ve taken several pictures that can make it to next year&#039;s calendar. The complete &lt;a href=&quot;http://www.flickr.com/photos/anuragp/sets/72157621032571296/&quot;&gt;pictures from trek to gorakhgad and malshej ghat&lt;/a&gt; are available in my &lt;a href=&quot;http://www.flickr.com/photos/anuragp/sets/&quot;&gt;flickr set&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Fri, 10 Jul 2009 11:24:15 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/92-guid.html</guid>
    
</item>
<item>
    <title>todo item ticked off!</title>
    <link>http://web.gnuer.org/blog/archives/91-todo-item-ticked-off!.html</link>
            <category>me</category>
    
    <comments>http://web.gnuer.org/blog/archives/91-todo-item-ticked-off!.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=91</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=91</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    Another TODO item ticked off a while back! It wasn&#039;t what I had originally planned, but the goal has been achieved nevertheless.&lt;br /&gt;
&lt;br /&gt;
I didn&#039;t know I made myself a &lt;a href=&quot;http://www.movieab.com/titles/83840-the-bucket-list&quot; title=&quot;The Bucket List&quot;&gt;bucket list&lt;/a&gt;, long before watching the movie.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;cbw snap_nopreview&quot;&gt;   &lt;div class=&quot;cbw_header&quot;&gt;     &lt;script src=&quot;http://www.movieab.com/javascripts/widget.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;     &lt;div class=&quot;cbw_header_text&quot;&gt;&lt;a href=&quot;http://www.movieab.com/&quot; rel=&quot;nofollow&quot;&gt;MovieAB movie summary&lt;/a&gt;&lt;/div&gt;   &lt;/div&gt;   &lt;div class=&quot;cbw_content&quot;&gt;     &lt;div class=&quot;cbw_subheader&quot;&gt;&lt;a href=&quot;http://www.movieab.com/titles/83840-the-bucket-list&quot;&gt;The Bucket List&lt;/a&gt;&lt;/div&gt;     &lt;div class=&quot;cbw_subcontent&quot;&gt;&lt;script src=&quot;http://www.movieab.com/titles/83840-the-bucket-list.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;/div&gt;     &lt;div class=&quot;cbw_footer&quot;&gt;Movie info by &lt;a href=&quot;http://www.movieab.com/&quot; rel=&quot;nofollow&quot;&gt;MovieAB&lt;/a&gt;&lt;/div&gt;   &lt;/div&gt; &lt;/div&gt; 
    </content:encoded>

    <pubDate>Fri, 26 Jun 2009 14:28:10 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/91-guid.html</guid>
    
</item>
<item>
    <title>the sixty one</title>
    <link>http://web.gnuer.org/blog/archives/89-the-sixty-one.html</link>
            <category>misc</category>
    
    <comments>http://web.gnuer.org/blog/archives/89-the-sixty-one.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=89</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=89</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    &lt;!-- s9ymdb:13 --&gt;&lt;img width=&quot;85&quot; height=&quot;25&quot; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://web.gnuer.org/blog/uploads/logos/thesixtyone_logo.png&quot; alt=&quot;&quot; /&gt;I&#039;m on love with &lt;a href=&quot;http://www.thesixtyone.com&quot; title=&quot;The Sixty One&quot;&gt;The Sixty One&lt;/a&gt; for the past one month. The layout &amp;amp; presentation, the indie music - its all very smooth and nicely done. No matter which section of site you visit or what link you click, the music keeps playing on. Give it a try! 
    </content:encoded>

    <pubDate>Mon, 20 Apr 2009 14:36:25 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/89-guid.html</guid>
    
</item>
<item>
    <title>MovieAB - A tiny movie mashup</title>
    <link>http://web.gnuer.org/blog/archives/88-MovieAB-A-tiny-movie-mashup.html</link>
            <category>utilities</category>
    
    <comments>http://web.gnuer.org/blog/archives/88-MovieAB-A-tiny-movie-mashup.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=88</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=88</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    &lt;!-- s9ymdb:12 --&gt;&lt;img width=&quot;110&quot; height=&quot;23&quot; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://web.gnuer.org/blog/uploads/logos/movieab_beta_130.serendipityThumb.gif&quot; alt=&quot;&quot; /&gt;Announcing &lt;a href=&quot;http://www.movieab.com&quot; title=&quot;MovieAB&quot;&gt;MovieAB&lt;/a&gt; -- a mashup of freely available movie data APIs from around the internet. A catalog of over 170000 movie titles, tv series, programs available on DVD, actors and directors is available at the moment, and keeps growing every day.&lt;br /&gt;
&lt;br /&gt;
Try a sample page for the movie &lt;a href=&quot;http://www.movieab.com/titles/12679-spiderman-2&quot; title=&quot;Spider Man 2&quot;&gt;Spider-Man 2&lt;/a&gt;. Every movie info page displays DVD box-art image, netflix user ratings, genres, a short summary, cast, awards and nominations and movie reviews from NYTimes if its available.&lt;br /&gt;
&lt;br /&gt;
MovieAB came up as an idea to implement &lt;a href=&quot;http://developer.netflix.com&quot;&gt;Netflix&#039;s API&lt;/a&gt;, after they decided to open up their vast catalog of movie data to third party developers. This was soon followed up with New York Times&#039; decision to open up their comprehensive &lt;a href=&quot;http://developer.nytimes.com&quot;&gt;movie reviews api&lt;/a&gt; to third party developers. I can&#039;t thank them enough.&lt;br /&gt;
&lt;br /&gt;
And, what&#039;s this AB? Well, I have no idea. This was the smallest domain name available. iMovie, gMovie, LiveMovie are all taken &lt;img src=&quot;http://web.gnuer.org/blog/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Many thanks to &lt;a href=&quot;http://www.eficacy.com/&quot; title=&quot;Eficacy.com&quot;&gt;Kamaleshwar&lt;/a&gt; for designing this clean and simplistic logo. More artwork requests from me are coming your way! If you liked the application, have suggestions for improvement, criticisms, bug reports or general feedback - write in to feedback (at) movieab.com.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;cbw snap_nopreview&quot;&gt;   &lt;div class=&quot;cbw_header&quot;&gt;     &lt;script src=&quot;http://www.movieab.com/javascripts/widget.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;     &lt;div class=&quot;cbw_header_text&quot;&gt;&lt;a href=&quot;http://www.movieab.com/&quot; rel=&quot;nofollow&quot;&gt;MovieAB movie summary&lt;/a&gt;&lt;/div&gt;   &lt;/div&gt;   &lt;div class=&quot;cbw_content&quot;&gt;     &lt;div class=&quot;cbw_subheader&quot;&gt;&lt;a href=&quot;http://www.movieab.com/titles/12679-spiderman-2&quot;&gt;Spider-Man 2&lt;/a&gt;&lt;/div&gt;     &lt;div class=&quot;cbw_subcontent&quot;&gt;&lt;script src=&quot;http://www.movieab.com/titles/12679-spiderman-2.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;/div&gt;     &lt;div class=&quot;cbw_footer&quot;&gt;Movie info by &lt;a href=&quot;http://www.movieab.com/&quot; rel=&quot;nofollow&quot;&gt;MovieAB&lt;/a&gt;&lt;/div&gt;   &lt;/div&gt; &lt;/div&gt; 
    </content:encoded>

    <pubDate>Mon, 23 Feb 2009 19:10:16 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/88-guid.html</guid>
    
</item>
<item>
    <title>USD INR exchange rates</title>
    <link>http://web.gnuer.org/blog/archives/87-USD-INR-exchange-rates.html</link>
            <category>utilities</category>
    
    <comments>http://web.gnuer.org/blog/archives/87-USD-INR-exchange-rates.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=87</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=87</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    I keep looking at stuff and try guessing its price in INR. Look around for calculator, check USD exchange rate and punch it in.&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;#!/usr/bin/env ruby&lt;br /&gt;
require &#039;rubygems&#039;&lt;br /&gt;
require &#039;hpricot&#039;&lt;br /&gt;
require &#039;open-uri&#039;&lt;br /&gt;
&lt;br /&gt;
FPAGE = &#039;http://finance.yahoo.com/q?s=USDINR=X&#039;&lt;br /&gt;
XPATH = &#039;/html/body/div/div[2]/div[4]/div[2]/div/div[2]/table/tr/td/big/b/span/&#039;&lt;br /&gt;
&lt;br /&gt;
amount = (ARGV.length == 1) ? ARGV[0].to_f : 1&lt;br /&gt;
amount = 1 if amount == 0&lt;br /&gt;
&lt;br /&gt;
doc = Hpricot(URI.parse( FPAGE ).read)&lt;br /&gt;
element = doc.search( XPATH )&lt;br /&gt;
exchange_rate = element[0].to_s.to_f&lt;br /&gt;
puts &quot;#{amount} USD = #{amount * exchange_rate} INR&quot;&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
Now i no longer have to. Just running &lt;strong&gt;$ usdinr 197.21&lt;/strong&gt; gives the amount in INR. Save this file in &lt;strong&gt;/usr/bin/usdinr&lt;/strong&gt; and give execute permissions.&lt;br /&gt;
&lt;br /&gt;
[Update 2009-02-19: Updated the script with new XPath]&lt;br /&gt;
[Update 2010-12-08: Updated the script with new Yahoo finance page and XPath] 
    </content:encoded>

    <pubDate>Mon, 05 Jan 2009 15:48:18 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/87-guid.html</guid>
    
</item>
<item>
    <title>Nominations</title>
    <link>http://web.gnuer.org/blog/archives/86-Nominations.html</link>
            <category>me</category>
            <category>travel</category>
            <category>trekking</category>
            <category>world</category>
    
    <comments>http://web.gnuer.org/blog/archives/86-Nominations.html#comments</comments>
    <wfw:comment>http://web.gnuer.org/blog/wfwcomment.php?cid=86</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://web.gnuer.org/blog/rss.php?version=2.0&amp;type=comments&amp;cid=86</wfw:commentRss>
    

    <author>nospam@example.com (Anurag)</author>
    <content:encoded>
    Your votes are invited for selecting the best photos from this collection of pictures i took in year 2008. Last year was very eventful and i ended up with filling my flickr account like its no one&#039;s business.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.flickr.com/photos/anuragp/sets/72157612011409991/&quot; title=&quot;Nominations by gnurag, on Flickr&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3090/3160371649_b79848fe9f_o.png&quot; width=&quot;465&quot; height=&quot;700&quot; alt=&quot;Nominations&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
To vote for the pictures you like, simply visit the &lt;a href=&quot;http://www.flickr.com/photos/anuragp/sets/72157612011409991/&quot;&gt;Nominees collection&lt;/a&gt; and vote for the photo by marking it as a favourite or leaving a comment there. I&#039;m biased, all food pictures got nominated automatically. 
    </content:encoded>

    <pubDate>Sat, 03 Jan 2009 03:00:44 +0530</pubDate>
    <guid isPermaLink="false">http://web.gnuer.org/blog/archives/86-guid.html</guid>
    
</item>

</channel>
</rss>
