<?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>Naveen&#039;s Journal &#187; Perl</title>
	<atom:link href="http://journal.naveeng.com/category/perl/feed/" rel="self" type="application/rss+xml" />
	<link>http://journal.naveeng.com</link>
	<description>I Come In Peace.</description>
	<lastBuildDate>Sun, 18 Sep 2011 13:27:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>AJAX Picture Gallery using jQuery</title>
		<link>http://journal.naveeng.com/2007/10/23/ajax-picture-gallery-using-jquery/</link>
		<comments>http://journal.naveeng.com/2007/10/23/ajax-picture-gallery-using-jquery/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 08:26:58 +0000</pubDate>
		<dc:creator>Naveen</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://journal.naveeng.com/2007/10/23/ajax-picture-gallery-using-jquery/</guid>
		<description><![CDATA[I have been longing for a custom picture gallery for quite some time, to showcase my pictures, but did not want to go for a ready made solution like Coppermine or Gallery. Sure these are great products with endless features, but would not give me that MADE BY MYSELF feeling So I decided to tinker [...]]]></description>
			<content:encoded><![CDATA[<p>I have been longing for a custom picture gallery for quite some time, to showcase my pictures, but did not want to go for a ready made solution like <a href="http://coppermine-gallery.net/" target="_blank">Coppermine </a>or <a href="http://www.gallery2.org/" target="_blank">Gallery</a>. Sure these are great products with endless features, but would not give me that <strong>MADE BY MYSELF</strong> feeling <img src='http://journal.naveeng.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  So I decided to tinker with <a href="http://www.prototypejs.org" target="_blank">Prototype</a> and <a href="http://script.aculo.us" target="_blank">Script.aculo.us</a> , to see if any good carousel is available which I can use as an image slider. I had previously used <a href="http://billwscott.com/carousel/" target="_blank">YUI Carousel</a> by <strong>Bill Scott</strong> of <strong>Yahoo</strong>! but did not want to use it because it was way too heavy and hence slow to load initially. So I decided to take a look into <a href="http://sorgalla.com/jcarousel/" target="_blank">jCarousel by Sorgalla</a> which is based on the excellent <a href="http://www.jquery.com" target="_blank">jQuery Javascript framework</a>. Both <strong>jQuery </strong>and <strong>jCarousel </strong>are very lightweight, feature packed, customisable, and contain almost all, if not all, the features of prototype and scriptaculous.</p>
<p>So after a little toying with the carousel and learning a few cool effects of <strong>jQuery </strong>, I made up <a href="http://gallery.naveeng.com" target="_blank">http://gallery.naveeng.com</a> . Right now it is very very basic and it&#8217;s development is still under progress. I will be adding a lot more features to it, which include:</p>
<ul>
<li>Multiple Albums</li>
<li> Admin Panel</li>
<li>User Comments</li>
<li>Ratings</li>
<li>Last Added Pictures</li>
<li>Random Pictures</li>
<li>Tags</li>
</ul>
<p>It may take a lot of time but one day all the above features (<em>plus a lot more!</em>) will be there for sure! The gallery has a lot of <strong>jQuery </strong>JS code, with the image details stored in <strong>XML </strong>format on the server. The server side scripting and image manipulation are done in <strong>Perl </strong>using the fantastic <a href="http://www.imagemagick.org/script/perl-magick.php" target="_blank">PerlMagick API</a> of <a href="http://www.imagemagick.org/" target="_blank">ImageMagick</a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://journal.naveeng.com/2007/10/23/ajax-picture-gallery-using-jquery/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Perl one-liner to sort a hash and return the top most key/value</title>
		<link>http://journal.naveeng.com/2007/10/17/perl-one-liner-to-sort-and-hash-and-return-the-top-most-keyvalue/</link>
		<comments>http://journal.naveeng.com/2007/10/17/perl-one-liner-to-sort-and-hash-and-return-the-top-most-keyvalue/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 10:14:01 +0000</pubDate>
		<dc:creator>Naveen</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://journal.naveeng.com/2007/10/17/perl-one-liner-to-sort-and-hash-and-return-the-top-most-keyvalue/</guid>
		<description><![CDATA[A while ago Deepz asked me whether we can sort a hash and print the top most key or value or both in a single line, in PERL. After a little permutation &#38; combination, I wrote the following piece. I&#8217;m sure there must be a more elegant and efficient way of doing it, but this [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago <a href="http://blog.pradeep.net.in" target="_blank">Deepz </a>asked me whether we can sort a hash and print the top most key or value or both in a single line, in <a href="http://en.wikipedia.org/wiki/Perl" target="_blank">PERL</a>. After a little permutation &amp; combination, I wrote the following piece. I&#8217;m sure there must be a more elegant and efficient way of doing it, but this will also serve the purpose on most occasions and with a little tweaking can be applied to almost all hashes.</p>
<ul>
<li>The code needs to be  modified if the hash keys contain any digits</li>
<li>The sort algorithm can be changed as per the requirement, by default I&#8217;m sorting by hash values which are digits</li>
</ul>
<p><font face="courier new">print grep {s/\d//g} grep {/1/}  map { $i+=1 , $_.=$i ,  &#8220;\n&#8221;} sort {$hash{$a} &lt;=&gt; $hash{$b}} keys %hash;</font></p>
]]></content:encoded>
			<wfw:commentRss>http://journal.naveeng.com/2007/10/17/perl-one-liner-to-sort-and-hash-and-return-the-top-most-keyvalue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Perl Modules without root</title>
		<link>http://journal.naveeng.com/2007/10/16/install-perl-modules-without-root/</link>
		<comments>http://journal.naveeng.com/2007/10/16/install-perl-modules-without-root/#comments</comments>
		<pubDate>Tue, 16 Oct 2007 18:40:16 +0000</pubDate>
		<dc:creator>Naveen</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[modules]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://journal.naveeng.com/2007/10/16/install-perl-modules-without-root/</guid>
		<description><![CDATA[How many times Perl developers have to scratch their heads when they find that there is a module dependency which is breaking their code. Worse, they do not have sufficient privileges to install the required modules on the system. And the worst &#8211; there is no immediate way to get the module installed and the [...]]]></description>
			<content:encoded><![CDATA[<p>How many times <a href="http://en.wikipedia.org/wiki/Perl" target="_blank">Perl </a>developers have to scratch their heads when they find that there is a module dependency which is breaking their code. Worse, they do not have sufficient privileges to install the required modules on the system.  And the worst &#8211; there is no immediate way to get the module installed and the application needs to be tested/deployed ASAP! Well, I faced a similar situation during my experience in deploying a website on a shared hosting account, where I was on the mercy of the Hosting Service Provider to decide which modules I&#8217;m going to use and which not. But this is hardly the way a programmer works, and more so for a Perl programmer! I came across a few wonderful workarounds (hacks!) to overcome the above.</p>
<p>Download the module from <a href="http://search.cpan.org" target="_blank">CPAN</a> or elsewhere. Place it in any directory, where you have permissions. Preferably, create a directory called</p>
<pre>lib</pre>
<p>in the application directory and place your module there. Untar it, you will see a few files and folders &#8211; <strong>Makefile.pl</strong> (to install the module, we don&#8217;t need this) , <strong>Readme.txt </strong>(this either), <strong>Examples </strong>(not required), lib directory &#8211; this is the only thing we are concerned with. It contains the main module files. Go inside the lib directory, and copy all the folders (if any) and all <strong>.pm </strong>files and place them directly inside the lib directory you just created. Remove all other files and folders.</p>
<p>The next thing which you need to do is go to the Perl code where you want to use that module and write the following:</p>
<pre>BEGIN { unshift @INC, "./lib"; }</pre>
<pre>use Module::Name;</pre>
<p>And voila!! Your code works like a charm with all the functionalities of the module included.</p>
<p><strong>How it works? </strong>- When you use a module in a program, like</p>
<pre>use CGI::Ajax;</pre>
<p><strong>perl</strong> searches for it in a predefined library search path on the system. You can determine which directories are in the path by executing</p>
<pre>perl -e 'print for @INC;'</pre>
<p>Any module in order to be usable in the program needs to be in any of the directories above, which is where the modules get installed if installed via</p>
<pre>cpan or ppm</pre>
<p>command or using <strong>Makefile.pl</strong>.</p>
<p>But in the situation discussed, it is not the case, as we cannot install a module as it should be. Instead what we do is place the modules in a directory of our choice (lib) and then insert the path of that directory in the</p>
<pre>@INC</pre>
<p>so that later when the perl interpreter tries to do</p>
<pre>use Module::Name;</pre>
<p>it finds its path in</p>
<pre>@INC</pre>
<p><strong>Why BEGIN { } ? -</strong></p>
<pre>use Module::Name</pre>
<p>happens at compile time, when the interpreter reads the program while</p>
<pre>unshift @INC, "./lib"</pre>
<p>happens at run-time, after the compilation, i.e, attempt to load the module, even if the latter is placed above the former in the program. So in order to force the program to modify</p>
<pre>@INC</pre>
<p>before trying to use the module, we use</p>
<pre>BEGIN { }</pre>
<p>block. Any code which is written within</p>
<pre>BEGIN { }</pre>
<p>block is executed at compile-time as opposed to other code which is executed at run-time.</p>
<p><strong>Note: </strong>Remember that  many modules have further dependencies, i.e. modules which are required for the former to work. And if these dependencies are not on the system, the code won&#8217;t work. You need to perform the above operations for each of those dependencies as well. For example, if <a href="http://search.cpan.org/~bct/CGI-Ajax-0.701/lib/CGI/Ajax.pm" target="_blank">CGI::Ajax</a> requires <a href="http://search.cpan.org/~kasei/Class-Accessor-0.31/lib/Class/Accessor.pm" target="_blank">Class::Accessor </a>to work, you need to</p>
<p>a) create the directory <strong>CGI</strong> and place <strong>Ajax.pm</strong> within it</p>
<p>b) create the directory <strong>Class </strong>and place <strong>Accessor.pm </strong>and the directory <strong>Accessor </strong>within it and</p>
<p>c) <strong>unshift/push </strong>the path of the directory which contains these 2 directories <strong>CGI </strong>and <strong>Class,</strong> into <strong>@INC.</strong></p>
<p>I have used this method to use more than 30 odd modules and have faced no difficulty whatsoever. However it will not work if the module&#8217;s <strong>Makefile.pl </strong>does more than just copying the <strong>.pm </strong>files in the right place and do some other work such as using external C libraries etc.</p>
<p>Another method of extending</p>
<pre>@INC</pre>
<p>is setting the</p>
<pre>PERL5LIB</pre>
<p>environment variable on your system to include the path of the manually placed modules.</p>
<p>In Bourne Shell do something like-</p>
<pre>PERL5LIB=/path/to/module/directory; export PERL5LIB</pre>
<p>It is useful when you do no want to write the <strong>BEGIN </strong>blocks in all the files where you use the module. But only users who are setting the</p>
<pre>PERL5LIB</pre>
<p>environment variable can only use it and other users can&#8217;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://journal.naveeng.com/2007/10/16/install-perl-modules-without-root/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>My First JAPH!</title>
		<link>http://journal.naveeng.com/2007/10/15/my-first-japh/</link>
		<comments>http://journal.naveeng.com/2007/10/15/my-first-japh/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 18:05:53 +0000</pubDate>
		<dc:creator>Naveen</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[japh]]></category>

		<guid isPermaLink="false">http://journal.naveeng.com/2007/10/15/my-first-japh/</guid>
		<description><![CDATA[Finally after procrastinating for long, I decided to tread the path traversed only by the GODs of PERL &#8211; writing JAPHs!! And my brain storming for about 6 hours finally ended with a JAPH, not too bad for a debut, albeit a little amateur. For those of who are still wondering what the heck is [...]]]></description>
			<content:encoded><![CDATA[<p>Finally after procrastinating for long, I decided to tread the path traversed only by the <strong>GODs</strong> of <a href="http://en.wikipedia.org/wiki/PERL" target="_blank">PERL</a> &#8211; writing <a href="http://en.wikipedia.org/wiki/JAPH" target="_blank">JAPH</a>s!! And my brain storming for about 6 hours finally ended with a JAPH, not too bad for a debut, albeit a little amateur. For those of who are still wondering what the heck is a JAPH &#8211; it refers to a PERL program which prints the phrase <strong>JUST ANOTHER PERL HACKER. </strong>It is an art initiated by <a href="http://en.wikipedia.org/wiki/Randal_L._Schwartz" target="_blank">Randal Schwartz</a> and further mastered by the likes of Abigail. My piece of code is as follows:<br />
<font face="courier new"><br />
#!/usr/bin/perl</font></p>
<p><font face="courier new">@b=map +{keys %$_} , map +{chr}, grep {!/6[68]|7[0137]|81/} (65..85);</font></p>
<p><font face="courier new">%hs1=(74,1,85,2,83,3,84,4);<br />
%hs2=(65,1,78,2,79,3,84,4,72,5,69,6,82,7);<br />
%hs3=(80,1,69,2,82,3,76,4);<br />
%hs4=(72,1,65,2,67,3,75,4,69,5,82,6);</font></p>
<p><font face="courier new">for $i(1..4) { $n=&#8221;h2&#8243;.$i;for (0..13) {@abc=keys %{$b[$_]};$k=pop @abc;map { ${$n}{$_}++ } keys %{$b[$_]} if ((($i==1) &amp;&amp; ($k=~m![tsuj]!i)) || (($i==2) &amp;&amp; ($k=~m![rehtona]!i)) || (($i==3) &amp;&amp; ($k=~m![lrep]!i)) || (($i==4) &amp;&amp; ($k=~m![rekcah]!i))); }}</font></p>
<p><font face="courier new">for (1..4){$m=&#8221;h2&#8243;.$_;$ms=&#8221;hs&#8221;.$_; print sort {${$ms}{ord $a} &lt;=&gt; ${$ms}{ord $b}} keys %{$m}, &#8221; &#8220;;}</font></p>
<p>I particularly don&#8217;t like two parts of the above code -</p>
<p>1) The 4 hashes at the top &#8211; they are used to sort the letters in the words (It took most of my time)</p>
<p>2) The big if ( ) {  } block &#8211; it kinda gives the code a very amateurish look.</p>
<p>So while I work on improving myself, do give in some suggestions if you may please <img src='http://journal.naveeng.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>And if you think that was smart, then have a look at  <a href="http://www.cpan.org/misc/japh" target="_blank">http://www.cpan.org/misc/japh</a> or <a href="http://en.wikipedia.org/wiki/JAPH" target="_blank">http://en.wikipedia.org/wiki/JAPH</a> for some of the most astonishing piece of coding across any language on this planet.</p>
]]></content:encoded>
			<wfw:commentRss>http://journal.naveeng.com/2007/10/15/my-first-japh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WebOSS &#8217;07 &#8211; Web and Open Source Conference in Kolkata</title>
		<link>http://journal.naveeng.com/2007/10/15/weboss-07-web-and-open-source-conference-in-kolkata/</link>
		<comments>http://journal.naveeng.com/2007/10/15/weboss-07-web-and-open-source-conference-in-kolkata/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 07:56:24 +0000</pubDate>
		<dc:creator>Naveen</dc:creator>
				<category><![CDATA[Kolkata]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://journal.naveeng.com/2007/10/15/weboss-07-web-and-open-source-conference-in-kolkata/</guid>
		<description><![CDATA[Finally, the day arrived this Saturday, October the 13th, when the first Web &#38; Open Source Technology Conference took place in Kolkata. It was a great initiative to bring like-minded people on the same platform and share our views on all things Web, OSS and Technology. Since the venue host was WBUT , a large [...]]]></description>
			<content:encoded><![CDATA[<p>Finally, the day arrived this <strong>Saturday, October the 13th</strong>, when the first <a href="http://journal.naveeng.com/2007/10/09/im-speaking-weboss-07/" target="_blank">Web &amp; Open Source Technology Conference</a> took place in <a href="http://en.wikipedia.org/wiki/Kolkata" target="_blank">Kolkata</a>. It was a great initiative to bring like-minded people on the same platform and share our views on all things Web, OSS and Technology. Since the venue host was <a href="http://www.wbut.net" target="_blank">WBUT</a> , a large percentage of the audience were IT and Comp. Sci. students of the university  who were eager to get a peek into the <strong>REAL </strong>things, and learn the tricks of the trade from the people in the Industry.</p>
<p><a title="Pradeep, Myself and Shabbir Bhai" href="http://journal.naveeng.com/wp-content/uploads/2007/10/32.jpg"><img src="http://journal.naveeng.com/wp-content/uploads/2007/10/32.jpg" alt="Pradeep, Myself and Shabbir Bhai" width="431" height="325" align="middle" /></a></p>
<p>The auditorium was good enough with a capacity of around 150, well-airconditioned and the stage space more than enough. The LCD projector could have been more to the center of the stage, rather than just behind the dais, with speaker coming right in between the screen and audience. The only and a very big disappointment from the arrangements point of view was the absence of microphone!! Huh! A seminar without a microphone! Well, the equipments were there but the keys to them were with a gentleman who preferred skipping the college that day and was untraceable!</p>
<p>So after lot of failed efforts  by the volunteers to get the microphone working &#8211; they even brought another one, but it didn&#8217;t work &#8211; the event got underway at 11:30 AM, 1 hour behind schedule. <a href="http://hussulinux.blogspot.com" target="_blank">Hussain </a>was the first one to start off on <a href="http://www.go4expert.com/forums/showthread.php?t=6814" target="_blank"><strong>RIA &#8211; Rich Internet Applications</strong></a>. It was a great insight on the <a href="http://en.wikipedia.org/wiki/Web_2.0" target="_blank">Web 2.0</a> client side technologies which are riding most of the snazzy websites today and threw light on <a href="http://en.wikipedia.org/wiki/Ajax_framework" target="_blank">AJAX</a>, <a href="http://en.wikipedia.org/wiki/Adobe_Flex" target="_blank">Flex</a>, <a href="http://en.wikipedia.org/wiki/Adobe_Flash" target="_blank">Flash </a>, <a href="http://www.openlaszlo.org/" target="_blank">OpenLaszlo</a> among others. His thoughts were well received by the audience with quite a few questions popping up on the subjects.</p>
<p><a title="Hussain on RIA" href="http://journal.naveeng.com/wp-content/uploads/2007/10/huss1.jpg"><img src="http://journal.naveeng.com/wp-content/uploads/2007/10/huss1.jpg" alt="Hussain on RIA" width="431" height="325" align="middle" /></a></p>
<p>Next came <a href="http://blog.pradeep.net.in/2007/10/weboss-07-web-and-open-source.html" target="_blank">Pradeep</a> with  a talk on what is <a href="http://en.wikipedia.org/wiki/Ajax_(programming)" target="_blank">AJAX</a> and how to implement it in Web Apps. He showed some nifty piece of code on how to create <a href="http://en.wikipedia.org/wiki/Xmlhttprequest" target="_blank">xmlHTTPRequest </a>and fetch data from the server in asynchronous mode. Also included were examples on how to use <a href="http://en.wikipedia.org/wiki/JSON" target="_blank">JSON </a>instead of xmlHTTPRequest to implement AJAX. The content of his presentation is available at <a href="http://www.go4expert.com/forums/showthread.php?t=6829&amp;referrerid=146" target="_blank">http://www.go4expert.com/forums/showthread.php?t=6829&amp;referrerid=146</a> and can be downloaded from <a href="http://www.slideshare.net/s_pradeep/building-applications-using-ajax" target="_blank">http://www.slideshare.net/s_pradeep/building-applications-using-ajax</a></p>
<p><a title="Pradeep on AJAX" href="http://journal.naveeng.com/wp-content/uploads/2007/10/deepz.jpg"><img src="http://journal.naveeng.com/wp-content/uploads/2007/10/deepz.jpg" alt="Pradeep on AJAX" align="middle" /></a></p>
<p><a href="http://www.go4expert.com/" target="_blank">Shabbir bhai </a>resumed the proceedings after a well deserved lunch break with his expertise on optimising web pages, and gave a lengthy (detailed) talk on <strong><a href="http://www.go4expert.com/forums/showthread.php?t=6814" target="_blank">Speeding up your Web Pages</a>. </strong>He covered topics such as Database Design, Query Optimization, Web Server &amp; Programming tips and tweaks among others.Although his soft voice was finding it hard to make up for the lack of mic, he too put up a great show.</p>
<p><a title="Shabbir Bhai on ‘Speeding up your Web Pages’" href="http://journal.naveeng.com/wp-content/uploads/2007/10/sb.jpg"><img src="http://journal.naveeng.com/wp-content/uploads/2007/10/sb.jpg" alt="Shabbir Bhai on ‘Speeding up your Web Pages’" align="middle" /></a></p>
<p>I was next on the block. With fears of rushing too fast and getting over with my stuff in 10-15 minutes, I started off on <strong>Web Development in Perl. </strong>Since most of the audience were students with little or no previous exposure to Web Development, Programming and <a href="http://en.wikipedia.org/wiki/PERL" target="_blank">Perl</a>, added to the fact that previous sessions were a bit too technical for most of them, I had to make it as simplistic as possible. So I stressed most on the introduction part which dealt with explaining the Web Development cycle, internet in general and programming. Yet, technicalities about <strong>Perl </strong>needed to be covered as they were a part of my presentation and most importantly, were the focal point of the show! After around 30 minutes Hussu started prompting me that we were running out of time and I needed to pack up fast!  So I hurried with the last part of the presentation by going through the points of difference between Perl and <a href="http://en.wikipedia.org/wiki/PHP" target="_blank">PHP</a>.</p>
<p><a title="Myself in Action!" href="http://journal.naveeng.com/wp-content/uploads/2007/10/nav1.jpg"><img src="http://journal.naveeng.com/wp-content/uploads/2007/10/nav1.jpg" alt="Myself in Action!" width="431" height="325" align="middle" /></a></p>
<p><a title="Ab to samjah jao bhai!! :P" href="http://journal.naveeng.com/wp-content/uploads/2007/10/nav3.jpg"><img src="http://journal.naveeng.com/wp-content/uploads/2007/10/nav3.jpg" alt="Ab to samjah jao bhai!! :P" width="431" height="325" align="middle" /></a></p>
<p><a href="http://journal.naveeng.com/wp-content/uploads/2007/10/nav4.jpg"><img src="http://journal.naveeng.com/wp-content/uploads/2007/10/nav4.jpg" alt="" width="431" height="325" align="middle" /></a></p>
<p>The presentation can be downloaded from <a href="http://www.slideshare.net/naveeng/web-development-in-perl/" target="_blank">http://www.slideshare.net/naveeng/web-development-in-perl/</a><br />
<code>
<object	type="application/x-shockwave-flash"
			data="http://s3.amazonaws.com/slideshare/ssplayer.swf?id=134603&amp;doc=web-development-in-perl4460"
			width="425"
			height="348">
	<param name="movie" value="http://s3.amazonaws.com/slideshare/ssplayer.swf?id=134603&amp;doc=web-development-in-perl4460" />
	<param name=wmode" value="transparent" />
</object></code></p>
]]></content:encoded>
			<wfw:commentRss>http://journal.naveeng.com/2007/10/15/weboss-07-web-and-open-source-conference-in-kolkata/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

