<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>ppant&#039;s blog</title>
	<atom:link href="http://pradeeppant.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pradeeppant.com</link>
	<description>Software Engineering, Programming, Modern Physics Enthusiast, Trekking, Photography</description>
	<lastBuildDate>Mon, 21 May 2012 05:12:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pradeeppant.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>ppant&#039;s blog</title>
		<link>http://pradeeppant.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pradeeppant.com/osd.xml" title="ppant&#039;s blog" />
	<atom:link rel='hub' href='http://pradeeppant.com/?pushpress=hub'/>
		<item>
		<title>Solving authentication problem while opening Office documents hosted on Apache in IE8/IE9 on Windows 7</title>
		<link>http://pradeeppant.com/2012/05/18/solving-authentication-problem-while-opening-office-documents-hosted-on-apache-in-ie8ie9-on-windows-7/</link>
		<comments>http://pradeeppant.com/2012/05/18/solving-authentication-problem-while-opening-office-documents-hosted-on-apache-in-ie8ie9-on-windows-7/#comments</comments>
		<pubDate>Fri, 18 May 2012 18:17:58 +0000</pubDate>
		<dc:creator>Pradeep Pant</dc:creator>
				<category><![CDATA[Client Side (HTML/XHTML, Javascript, XML, Jquery, Ajax, JSON)]]></category>
		<category><![CDATA[Linux Based Development]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[authentication screen]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[msoffice]]></category>
		<category><![CDATA[webdav]]></category>

		<guid isPermaLink="false">http://pradeeppant.com/?p=903</guid>
		<description><![CDATA[We were facing a problem in IE 8/9 on Windows 7 while accessing  Office 2007/ Office 2010 documents hosted on apache/Cent OS 4.6. After some analysis I found the reason and finally ended in a fix. See below my findings and solution. Hope this helps: The main issue is with the Microsoft&#8217;s way of implementing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=903&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We were facing a problem in IE 8/9 on Windows 7 while accessing  Office 2007/ Office 2010 documents hosted on apache/Cent OS 4.6. After some analysis I found the reason and finally ended in a fix. See below my findings and solution. Hope this helps:</p>
<p>The main issue is with the Microsoft&#8217;s way of implementing Webdav protocol for accessing web content through Microsoft Web Client. When we click on a Office document then web client  sends HTTP /1.1 OPTIONS Request header to server to check the WebDav communication (My server doesn&#8217;t have WebDav). In response Apache return 200 OK Response header to Web Client which results in prompting the authentication screen by Windows 7.  Well you have option in IE to pass the authentication login automatically but that would be security breach as you will be exposing your machine authentication to internet so I would not prefer that. Best way is to configure Apache to reject these request. This is how i have solved. These changes needs to be done in <span style="color:#993300;">httpd.conf</span> file in <span style="color:#993300;">/etc/httpd/conf</span> folder (Cent OS 4.6)</p>
<p><span style="color:#0000ff;"># One way to doing it &#8211; Deny access based on request method</span></p>
<p><span style="color:#993300;">RewriteEngine On</span></p>
<p><span style="color:#993300;">RewriteCond %{REQUEST_METHOD} ^(OPTIONS|PROPFIND)$ [NC]</span></p>
<p><span style="color:#993300;">RewriteRule ^.*$ &#8211; [F,L]</span></p>
<p><span style="color:#0000ff;"># Another way to implementing &#8211; Deny acess based on user agent (Vista and Windows 7 used same user agent with different version so this Regx shall work for both</span></p>
<p><span style="color:#993300;">RewriteEngine On</span></p>
<p><span style="color:#993300;">RewriteCond %{HTTP_USER_AGENT} ^Microsoft-WebDAV-MiniRedir</span></p>
<p><span style="color:#993300;">RewriteRule ^.*$ &#8211; [F,L]</span></p>
<p><span style="color:#0000ff;">Explanation on Flags:</span></p>
<p>1. [F] flag causes the server to return a 403 Forbidden status code to the client.</p>
<p>2. Use of the [NC] flag causes the RewriteRule to be matched in a case-insensitive manner. That is, it doesn&#8217;t care whether letters appear as upper-case or lower-case in the matched URI.</p>
<p>3. The [L] flag causes mod_rewrite to stop processing the rule set. In most contexts, this means that if the rule matches, no further rules will be processed. This corresponds to the last command in Perl.</p>
<p><span style="color:#0000ff;"> Some References:</span></p>
<p><a href="http://support.microsoft.com/kb/2019105">Microsoft knowledge article on authentication requests from office documents </a></p>
<p><a href="http://httpd.apache.org/docs/current/mod/mod_rewrite.html">Apache mod_rewrite rule documentaion</a></p>
<p><a href="http://www.fiddler2.com/fiddler2/">fiddler tool for debugging HTTP requests</a></p>
<br />Filed under: <a href='http://pradeeppant.com/category/programming/web-development/client-side-htmlxhtml-javascript-xml-jquery-ajax-json/'>Client Side (HTML/XHTML, Javascript, XML, Jquery, Ajax, JSON)</a>, <a href='http://pradeeppant.com/category/programming/linux-based-development/'>Linux Based Development</a>, <a href='http://pradeeppant.com/category/programming/'>Programming</a>, <a href='http://pradeeppant.com/category/programming/web-development/'>Web development</a> Tagged: <a href='http://pradeeppant.com/tag/apache/'>apache</a>, <a href='http://pradeeppant.com/tag/authentication-screen/'>authentication screen</a>, <a href='http://pradeeppant.com/tag/linkedin/'>linkedin</a>, <a href='http://pradeeppant.com/tag/msoffice/'>msoffice</a>, <a href='http://pradeeppant.com/tag/webdav/'>webdav</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ppant.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ppant.wordpress.com/903/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ppant.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ppant.wordpress.com/903/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ppant.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ppant.wordpress.com/903/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ppant.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ppant.wordpress.com/903/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ppant.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ppant.wordpress.com/903/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ppant.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ppant.wordpress.com/903/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ppant.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ppant.wordpress.com/903/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=903&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeeppant.com/2012/05/18/solving-authentication-problem-while-opening-office-documents-hosted-on-apache-in-ie8ie9-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3fdcda91b3cdc0705957b480881ff1be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ppant</media:title>
		</media:content>
	</item>
		<item>
		<title>Switching from Perl to Python: Speed</title>
		<link>http://pradeeppant.com/2012/03/29/899/</link>
		<comments>http://pradeeppant.com/2012/03/29/899/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 16:45:59 +0000</pubDate>
		<dc:creator>Pradeep Pant</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[linked]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[scientific_computing]]></category>

		<guid isPermaLink="false">http://pradeeppant.com/2012/03/29/899/</guid>
		<description><![CDATA[Reblogged from Silica in Silico: The job listings in scientific computing these days seem to show a mild preference for applicants with backgrounds in Python over Perl. It has high-profile (or just highly visible?) packages like NumPy and Python&#8217;s MPI bindings for scientific computing, and some molecular dynamics packages (e.g., LAMMPS) include analysis routines written [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=899&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="reblog-post"><p class="reblog-from"><img alt='' src='http://1.gravatar.com/avatar/9aa4dd4848a91bbb9e1857d5063cadcf?s=25&amp;d=identicon&amp;r=G' class='avatar avatar-25' height='25' width='25' /> <a href="http://silicainsilico.wordpress.com/2012/03/26/switching-from-perl-to-python-speed/">Reblogged from Silica in Silico:</a></p><div class="wpcom-enhanced-excerpt">
<p>The job listings in scientific computing these days seem to show a mild preference for applicants with backgrounds in Python over Perl. It has high-profile (or just highly visible?) packages like NumPy and Python&#8217;s MPI bindings for scientific computing, and some molecular dynamics packages (e.g., LAMMPS) include analysis routines written in Python. Although I&#8217;ve invested a few years into Perl, I&#8217;ve decided to not pigeonhole myself and start picking up Python.</p>
 <p class="read-more"><a href="http://silicainsilico.wordpress.com/2012/03/26/switching-from-perl-to-python-speed/" target="_self"><span>Read more&hellip;</span> 475 more words</a></p></div></div><div class="reblogger-note"><img alt='' src='http://1.gravatar.com/avatar/3fdcda91b3cdc0705957b480881ff1be?s=25&amp;d=identicon&amp;r=G' class='avatar avatar-25' height='25' width='25' /><div class='reblogger-note-content'>
A real time comparison. Long live Perl.
</div></div>]]></content:encoded>
			<wfw:commentRss>http://pradeeppant.com/2012/03/29/899/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3fdcda91b3cdc0705957b480881ff1be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ppant</media:title>
		</media:content>
	</item>
		<item>
		<title>Web platform video for developers</title>
		<link>http://pradeeppant.com/2012/03/28/web-platform-video-for-developers/</link>
		<comments>http://pradeeppant.com/2012/03/28/web-platform-video-for-developers/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 03:32:33 +0000</pubDate>
		<dc:creator>Pradeep Pant</dc:creator>
				<category><![CDATA[Client Side (HTML/XHTML, Javascript, XML, Jquery, Ajax, JSON)]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[chromium]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[web platform]]></category>

		<guid isPermaLink="false">http://pradeeppant.com/?p=890</guid>
		<description><![CDATA[http://www.youtube.com/watch?v=3i4dtgh3ym0
<p>I liked the video.. for more visit you can visit https://sites.google.com/a/chromium.org/dev/developers/meet-the-web-platform-companion</p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=890&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="text-align:center; display: block;"><a href="http://pradeeppant.com/2012/03/28/web-platform-video-for-developers/"><img src="http://img.youtube.com/vi/3i4dtgh3ym0/2.jpg" alt="" /></a></span></p>
<p><span style="color:#000000;">I liked the video.. guy is showing some of the cutting edge capabilities of the web platform for developers. For more visit you can visit <a href="https://sites.google.com/a/chromium.org/dev/developers/meet-the-web-platform-companion"><span style="color:#000000;">this link</span></a></span></p>
<p><span style="color:#000000;">Enjoy!</span></p>
<p>&nbsp;</p>
<br />Filed under: <a href='http://pradeeppant.com/category/programming/web-development/client-side-htmlxhtml-javascript-xml-jquery-ajax-json/'>Client Side (HTML/XHTML, Javascript, XML, Jquery, Ajax, JSON)</a>, <a href='http://pradeeppant.com/category/programming/'>Programming</a>, <a href='http://pradeeppant.com/category/programming/web-development/'>Web development</a> Tagged: <a href='http://pradeeppant.com/tag/chromium/'>chromium</a>, <a href='http://pradeeppant.com/tag/html/'>html</a>, <a href='http://pradeeppant.com/tag/linkedin/'>linkedin</a>, <a href='http://pradeeppant.com/tag/web-platform/'>web platform</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ppant.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ppant.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ppant.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ppant.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ppant.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ppant.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ppant.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ppant.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ppant.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ppant.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ppant.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ppant.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ppant.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ppant.wordpress.com/890/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=890&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeeppant.com/2012/03/28/web-platform-video-for-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3fdcda91b3cdc0705957b480881ff1be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ppant</media:title>
		</media:content>
	</item>
		<item>
		<title>Rakudo Star 2012.02 out - and the focus for 2012.03</title>
		<link>http://pradeeppant.com/2012/02/29/885/</link>
		<comments>http://pradeeppant.com/2012/02/29/885/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 12:04:20 +0000</pubDate>
		<dc:creator>Pradeep Pant</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://pradeeppant.com/2012/02/29/885/</guid>
		<description><![CDATA[Reblogged from 6guts: I&#8217;ve just cut the February 2012 release of Rakudo Star. The good news is that we got a bunch of nice improvements into the release. More typed exceptions, and better backtraces. This work has been done by moritz++; I&#8217;ll simply point you to his excellent blog post on that topic today. I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=885&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="reblog-post"><p class="reblog-from"><img alt='' src='http://1.gravatar.com/avatar/5999d5d26089eb4019867dc7705c41a9?s=25&amp;d=identicon&amp;r=G' class='avatar avatar-25' height='25' width='25' /> <a href="http://6guts.wordpress.com/2012/02/29/rakudo-star-2012-02-out-and-the-focus-for-2012-03/">Reblogged from 6guts:</a></p><div class="wpcom-enhanced-excerpt"><p dir='auto'>

</p><p>I&#8217;ve just cut the <a href="http://rakudo.org/2012/02/28/rakudo-star-2012-02-released/">February 2012 release of Rakudo Star</a>. The good news is that we got a bunch of nice improvements into the release.</p>
<ul>
<li>More typed exceptions, and better backtraces. This work has been done by moritz++; I&#8217;ll simply point you to his <a href="http://perlgeek.de/blog-en/perl-6/2011-02-exceptions.html">excellent blog post</a> on that topic today. I think everyone working with Rakudo will appreciate the new backtraces, which cut out a lot of the uninformative details and are thus much more focused.</li></ul>

 <p class="read-more"><a href="http://6guts.wordpress.com/2012/02/29/rakudo-star-2012-02-out-and-the-focus-for-2012-03/" target="_self"><span>Read more&hellip;</span> 673 more words</a></p></div></div><div class="reblogger-note"><img alt='' src='http://1.gravatar.com/avatar/3fdcda91b3cdc0705957b480881ff1be?s=25&amp;d=identicon&amp;r=G' class='avatar avatar-25' height='25' width='25' /><div class='reblogger-note-content'>
Release is available on <a href="https://github.com/rakudo/star/downloads">github</a>

<a href="https://github.com/rakudo/star/downloads">https://github.com/rakudo/star/downloads</a>
</div></div>]]></content:encoded>
			<wfw:commentRss>http://pradeeppant.com/2012/02/29/885/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3fdcda91b3cdc0705957b480881ff1be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ppant</media:title>
		</media:content>
	</item>
		<item>
		<title>Delhi.pm Perl Monger user group: Need suggestions</title>
		<link>http://pradeeppant.com/2012/02/20/delhi-pm-perl-monger-user-group-need-suggestions/</link>
		<comments>http://pradeeppant.com/2012/02/20/delhi-pm-perl-monger-user-group-need-suggestions/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 14:43:39 +0000</pubDate>
		<dc:creator>Pradeep Pant</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[perl monger group]]></category>

		<guid isPermaLink="false">http://pradeeppant.com/?p=877</guid>
		<description><![CDATA[Hello We have a Delhi.pm Perl Monger Group in New Delhi, India. The group is almost  inactive for some years (except monthly mail of mailing list membership detail). I am trying to revive Delhi.pm and need suggestions from community. I have already created a Google + page to spread the word. Actually, we have a mailing list [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=877&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello</p>
<p>We have a Delhi.pm Perl Monger Group in New Delhi, India. The group is almost  inactive for some years (except monthly mail of mailing list membership detail). I am trying to revive Delhi.pm and need suggestions from community.</p>
<p>I have already created a <a href="https://plus.google.com/u/0/b/113017661589594992511/113017661589594992511/about">Google + page</a> to spread the word. Actually, we have a <a href="http://mail.pm.org/mailman/listinfo/delhi-pm/">mailing list</a> but I assume that most of the members are either inactive or not working in Perl anymore.  I know many active Perl programmers in Delhi but they are not connected.</p>
<p>Do let me know your thoughts to make Delhi.pm active? Comments/advice are most welcome.</p>
<p>Thanks,</p>
<br />Filed under: <a href='http://pradeeppant.com/category/perl/'>Perl</a> Tagged: <a href='http://pradeeppant.com/tag/linkedin/'>linkedin</a>, <a href='http://pradeeppant.com/tag/perl/'>Perl</a>, <a href='http://pradeeppant.com/tag/perl-monger-group/'>perl monger group</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ppant.wordpress.com/877/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ppant.wordpress.com/877/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ppant.wordpress.com/877/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ppant.wordpress.com/877/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ppant.wordpress.com/877/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ppant.wordpress.com/877/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ppant.wordpress.com/877/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ppant.wordpress.com/877/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ppant.wordpress.com/877/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ppant.wordpress.com/877/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ppant.wordpress.com/877/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ppant.wordpress.com/877/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ppant.wordpress.com/877/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ppant.wordpress.com/877/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=877&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeeppant.com/2012/02/20/delhi-pm-perl-monger-user-group-need-suggestions/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3fdcda91b3cdc0705957b480881ff1be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ppant</media:title>
		</media:content>
	</item>
		<item>
		<title>Resource on debugging, profiling and benchmarking in Perl</title>
		<link>http://pradeeppant.com/2012/02/18/resource-on-debugging-profiling-and-benchmarking-in-perl/</link>
		<comments>http://pradeeppant.com/2012/02/18/resource-on-debugging-profiling-and-benchmarking-in-perl/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 16:34:26 +0000</pubDate>
		<dc:creator>Pradeep Pant</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Server side (Perl 5, Perl 6)]]></category>
		<category><![CDATA[benchmarking]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://pradeeppant.com/?p=862</guid>
		<description><![CDATA[I am listing some of the online resource which really helped me to understand the debugging and profiling in Perl. Profiling Perl by Simon Cozens Dr. Dobbs Journel by brian d foy Wasting time thinking about wasted time by brian d foy Randal L. Schwartz column on Unix Review Benchmarking your code by turnstep Debugging and Profiling [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=862&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am listing some of the online resource which really helped me to understand the debugging and profiling in Perl.</p>
<p><a href="http://www.perl.com/pub/2004/06/25/profiling.html">Profiling Perl by Simon Cozens</a></p>
<p><a href="http://drdobbs.com/184404580">Dr. Dobbs Journel by brian d foy</a></p>
<p><a href="http://www.perlmonks.org/index.pl?node=393128">Wasting time thinking about wasted time by brian d foy</a></p>
<p><a href="http://www.stonehenge.com/merlyn/UnixReview/col49.html">Randal L. Schwartz column on Unix Review</a></p>
<p><a href="http://perlmonks.org/?node_id=8745">Benchmarking your code by turnstep</a></p>
<p><a href="http://www.perl.com/pub/2006/02/09/debug_mod_perl.html">Debugging and Profiling mod_perl Applications by Frank Wiles </a></p>
<p>also do not forget to check chapter 4, 5, 6 of <a href="http://www.amazon.com/Mastering-Perl-brian-d-foy/dp/0596527241">Mastering Perl Book</a> and documentation on<a href="http://search.cpan.org/~timb/Devel-NYTProf-4.06/lib/Devel/NYTProf.pm"> CPAN</a> and <a href="http://perldoc.perl.org/Benchmark.html">perldoc</a>.</p>
<p>Any Addition to this list is welcome.</p>
<p>Enjoy Perl.</p>
<p>&nbsp;</p>
<p>Added:</p>
<p><a href="http://blog.timbunce.org/2009/12/24/nytprof-v3-worth-the-wait/">Devel::Nytprof </a></p>
<p><a href="http://www.slideshare.net/Tim.Bunce/develnytprof-v4-at-yapceu-201008-4906467"> </a><a href="http://www.slideshare.net/Tim.Bunce/develnytprof-v4-at-yapceu-201008-4906467">Slides of Tim Bunce talk on Devel::NYTProf YAPC::EU August 2010</a></p>
<p>&nbsp;</p>
<br />Filed under: <a href='http://pradeeppant.com/category/programming/'>Programming</a>, <a href='http://pradeeppant.com/category/programming/web-development/server-side-perl-5-perl-6/'>Server side (Perl 5, Perl 6)</a> Tagged: <a href='http://pradeeppant.com/tag/benchmarking/'>benchmarking</a>, <a href='http://pradeeppant.com/tag/debugging/'>debugging</a>, <a href='http://pradeeppant.com/tag/linkedin/'>linkedin</a>, <a href='http://pradeeppant.com/tag/perl/'>Perl</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ppant.wordpress.com/862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ppant.wordpress.com/862/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ppant.wordpress.com/862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ppant.wordpress.com/862/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ppant.wordpress.com/862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ppant.wordpress.com/862/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ppant.wordpress.com/862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ppant.wordpress.com/862/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ppant.wordpress.com/862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ppant.wordpress.com/862/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ppant.wordpress.com/862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ppant.wordpress.com/862/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ppant.wordpress.com/862/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ppant.wordpress.com/862/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=862&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeeppant.com/2012/02/18/resource-on-debugging-profiling-and-benchmarking-in-perl/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3fdcda91b3cdc0705957b480881ff1be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ppant</media:title>
		</media:content>
	</item>
		<item>
		<title>Perl Data Language (PDL) Release News</title>
		<link>http://pradeeppant.com/2012/02/07/perl-data-language-pdl-release-news/</link>
		<comments>http://pradeeppant.com/2012/02/07/perl-data-language-pdl-release-news/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 14:00:03 +0000</pubDate>
		<dc:creator>Pradeep Pant</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Server side (Perl 5, Perl 6)]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[pdl]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://pradeeppant.com/?p=851</guid>
		<description><![CDATA[PDL 2.4.10 is released. Another great work from Chris Marshall and PDL Development Team. See this link for official announcement. You can also checkout the first draft of the PDL book. For existing MATLAB users there is a very good guide which can help in migrating from MATLAB to PDL. &#160; Enjoy the new PDL release and unleash the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=851&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://pdl.perl.org/?page=install">PDL 2.4.10</a> is released. Another great work from <a href="http://search.cpan.org/~chm/">Chris Marshall</a> and<a href="http://pdl.perl.org/"> PDL Development Team</a>. See this link for <a href="http://blogs.perl.org/users/joel_berger/2012/02/perl-data-language-pdl-2410-release.html">official announcement</a>.</p>
<p>You can also checkout the first draft of the <a href="http://pdl.perl.org/content/pdl-book-toc.html">PDL book</a>. For existing MATLAB users there is a very good guide which can help in migrating from <a href="http://www.mathworks.in/products/matlab/">MATLAB </a>to <a href="http://pdl.perl.org/">PDL</a>.</p>
<p>&nbsp;</p>
<p>Enjoy the new PDL release and unleash the power of Perl for solving mathematical problems.</p>
<p>Good Luck!</p>
<br />Filed under: <a href='http://pradeeppant.com/category/programming/'>Programming</a>, <a href='http://pradeeppant.com/category/programming/web-development/server-side-perl-5-perl-6/'>Server side (Perl 5, Perl 6)</a> Tagged: <a href='http://pradeeppant.com/tag/linkedin/'>linkedin</a>, <a href='http://pradeeppant.com/tag/pdl/'>pdl</a>, <a href='http://pradeeppant.com/tag/perl/'>Perl</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ppant.wordpress.com/851/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ppant.wordpress.com/851/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ppant.wordpress.com/851/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ppant.wordpress.com/851/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ppant.wordpress.com/851/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ppant.wordpress.com/851/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ppant.wordpress.com/851/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ppant.wordpress.com/851/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ppant.wordpress.com/851/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ppant.wordpress.com/851/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ppant.wordpress.com/851/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ppant.wordpress.com/851/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ppant.wordpress.com/851/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ppant.wordpress.com/851/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=851&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeeppant.com/2012/02/07/perl-data-language-pdl-release-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3fdcda91b3cdc0705957b480881ff1be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ppant</media:title>
		</media:content>
	</item>
		<item>
		<title>Rakudo Star Jan 2012 Released</title>
		<link>http://pradeeppant.com/2012/01/31/rakudo-star-jan-2012-released/</link>
		<comments>http://pradeeppant.com/2012/01/31/rakudo-star-jan-2012-released/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 15:25:49 +0000</pubDate>
		<dc:creator>Pradeep Pant</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Server side (Perl 5, Perl 6)]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[perl6]]></category>
		<category><![CDATA[Rakudo]]></category>

		<guid isPermaLink="false">http://pradeeppant.com/?p=849</guid>
		<description><![CDATA[Rakudo Perl, a Perl 6 compiler for the Parrot virtual machine is released . The tarball for the January 2012 release is available from http://github.com/rakudo/star/downloads. See this link for official announcement. Filed under: Perl, Programming, Server side (Perl 5, Perl 6) Tagged: linkedin, perl6, Rakudo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=849&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Rakudo Perl, a <a href="http://perl6.org/">Perl 6</a> compiler for the <a href="http://parrot.org/">Parrot virtual machine</a> is released .<br />
The tarball for the January 2012 release is available from <a href="http://github.com/rakudo/star/downloads">http://github.com/rakudo/star/downloads</a>.</p>
<p>See<a href="http://rakudo.org/2012/01/28/rakudo-star-2012-01-released/"> this link</a> for official announcement.</p>
<br />Filed under: <a href='http://pradeeppant.com/category/perl/'>Perl</a>, <a href='http://pradeeppant.com/category/programming/'>Programming</a>, <a href='http://pradeeppant.com/category/programming/web-development/server-side-perl-5-perl-6/'>Server side (Perl 5, Perl 6)</a> Tagged: <a href='http://pradeeppant.com/tag/linkedin/'>linkedin</a>, <a href='http://pradeeppant.com/tag/perl6/'>perl6</a>, <a href='http://pradeeppant.com/tag/rakudo/'>Rakudo</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ppant.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ppant.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ppant.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ppant.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ppant.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ppant.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ppant.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ppant.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ppant.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ppant.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ppant.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ppant.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ppant.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ppant.wordpress.com/849/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=849&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeeppant.com/2012/01/31/rakudo-star-jan-2012-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3fdcda91b3cdc0705957b480881ff1be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ppant</media:title>
		</media:content>
	</item>
		<item>
		<title>Philosophy and Software Design patterns</title>
		<link>http://pradeeppant.com/2012/01/18/philosophy-and-software-design-patterns/</link>
		<comments>http://pradeeppant.com/2012/01/18/philosophy-and-software-design-patterns/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 16:37:39 +0000</pubDate>
		<dc:creator>Pradeep Pant</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[design methodology]]></category>
		<category><![CDATA[design-pattern]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[object oriented]]></category>

		<guid isPermaLink="false">http://pradeeppant.com/?p=586</guid>
		<description><![CDATA[A very good site to understand the Philosophical connection to Object Oriented Design methodology. http://www.philosoftware.com/home &#160; Enjoy! Filed under: Programming Tagged: design methodology, design-pattern, linkedin, object oriented<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=586&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A very good <a href="http://www.philosoftware.com/home">site</a> to understand the Philosophical connection to Object Oriented Design methodology.</p>
<p><span style="color:#993300;"><strong>http://www.philosoftware.com/home</strong></span></p>
<p>&nbsp;</p>
<p>Enjoy!</p>
<br />Filed under: <a href='http://pradeeppant.com/category/programming/'>Programming</a> Tagged: <a href='http://pradeeppant.com/tag/design-methodology/'>design methodology</a>, <a href='http://pradeeppant.com/tag/design-pattern/'>design-pattern</a>, <a href='http://pradeeppant.com/tag/linkedin/'>linkedin</a>, <a href='http://pradeeppant.com/tag/object-oriented/'>object oriented</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ppant.wordpress.com/586/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ppant.wordpress.com/586/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ppant.wordpress.com/586/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ppant.wordpress.com/586/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ppant.wordpress.com/586/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ppant.wordpress.com/586/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ppant.wordpress.com/586/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ppant.wordpress.com/586/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ppant.wordpress.com/586/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ppant.wordpress.com/586/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ppant.wordpress.com/586/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ppant.wordpress.com/586/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ppant.wordpress.com/586/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ppant.wordpress.com/586/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=586&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeeppant.com/2012/01/18/philosophy-and-software-design-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3fdcda91b3cdc0705957b480881ff1be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ppant</media:title>
		</media:content>
	</item>
		<item>
		<title>Map Reduce using Perl</title>
		<link>http://pradeeppant.com/2012/01/04/map-reduce-using-perl/</link>
		<comments>http://pradeeppant.com/2012/01/04/map-reduce-using-perl/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 14:02:35 +0000</pubDate>
		<dc:creator>Pradeep Pant</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Server side (Perl 5, Perl 6)]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[hadoop]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://pradeeppant.com/?p=827</guid>
		<description><![CDATA[Filed under: Perl, Programming, Server side (Perl 5, Perl 6) Tagged: grep, hadoop, linkedin, Perl<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=827&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<iframe src='http://www.slideshare.net/slideshow/embed_code/1858080' width='640' height='525'></iframe>
<br />Filed under: <a href='http://pradeeppant.com/category/perl/'>Perl</a>, <a href='http://pradeeppant.com/category/programming/'>Programming</a>, <a href='http://pradeeppant.com/category/programming/web-development/server-side-perl-5-perl-6/'>Server side (Perl 5, Perl 6)</a> Tagged: <a href='http://pradeeppant.com/tag/grep/'>grep</a>, <a href='http://pradeeppant.com/tag/hadoop/'>hadoop</a>, <a href='http://pradeeppant.com/tag/linkedin/'>linkedin</a>, <a href='http://pradeeppant.com/tag/perl/'>Perl</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ppant.wordpress.com/827/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ppant.wordpress.com/827/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ppant.wordpress.com/827/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ppant.wordpress.com/827/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ppant.wordpress.com/827/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ppant.wordpress.com/827/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ppant.wordpress.com/827/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ppant.wordpress.com/827/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ppant.wordpress.com/827/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ppant.wordpress.com/827/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ppant.wordpress.com/827/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ppant.wordpress.com/827/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ppant.wordpress.com/827/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ppant.wordpress.com/827/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeeppant.com&#038;blog=1919664&#038;post=827&#038;subd=ppant&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeeppant.com/2012/01/04/map-reduce-using-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3fdcda91b3cdc0705957b480881ff1be?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ppant</media:title>
		</media:content>
	</item>
	</channel>
</rss>
