<?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>Raveen Vijayan</title>
	<atom:link href="http://raveen.in/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://raveen.in/blog</link>
	<description>Hello World!</description>
	<lastBuildDate>Fri, 14 May 2010 09:32:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<atom:link rel="next" href="http://raveen.in/blog/?feed=rss2&amp;page=2" />

		<item>
		<title>Presentation on XMPP</title>
		<link>http://raveen.in/blog/?p=140</link>
		<comments>http://raveen.in/blog/?p=140#comments</comments>
		<pubDate>Fri, 14 May 2010 09:29:49 +0000</pubDate>
		<dc:creator>raveen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[realtime internet]]></category>
		<category><![CDATA[xmpp]]></category>

		<guid isPermaLink="false">http://raveen.in/blog/?p=140</guid>
		<description><![CDATA[XMPP 101 View more presentations from Remko Tronçon.]]></description>
			<content:encoded><![CDATA[<div id="__ss_1097174" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="XMPP 101" href="http://www.slideshare.net/remko.troncon/xmpp-101">XMPP 101</a></strong><object id="__sse1097174" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=xmpp101-key-090303164623-phpapp01&amp;rel=0&amp;stripped_title=xmpp-101" /><param name="name" value="__sse1097174" /><param name="allowfullscreen" value="true" /><embed id="__sse1097174" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=xmpp101-key-090303164623-phpapp01&amp;rel=0&amp;stripped_title=xmpp-101" name="__sse1097174" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/remko.troncon">Remko Tronçon</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://raveen.in/blog/?feed=rss2&amp;p=140</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gearman &#8211; Job Queuing Library for PHP</title>
		<link>http://raveen.in/blog/?p=127</link>
		<comments>http://raveen.in/blog/?p=127#comments</comments>
		<pubDate>Wed, 23 Dec 2009 19:04:05 +0000</pubDate>
		<dc:creator>raveen</dc:creator>
				<category><![CDATA[See It First]]></category>
		<category><![CDATA[distributed systems]]></category>
		<category><![CDATA[gearman]]></category>
		<category><![CDATA[job queues]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://raveen.in/blog/?p=127</guid>
		<description><![CDATA[A Job queue is a list jobs that need to be processed and executed asynchronously. Job queues are an  integral part of distributed system which scales everyday. The big advantage of using job queues are running tasks in parallel thereby minimizing load on web server. Gearman, an open source , distributed job queuing library is [...]]]></description>
			<content:encoded><![CDATA[<p>A Job queue is a list jobs that need to be processed and executed asynchronously. Job queues are an  integral part of distributed system which scales everyday. The big advantage of using job queues are running tasks in parallel thereby minimizing load on web server. Gearman, an open source , distributed job queuing library is originally developed by Livejournal to balance their load. Now it is used by many other organizations like Yahoo, Digg for queuing and executing millions of jobs everyday successfully.</p>
<p><strong>Features:</strong></p>
<ul>
<li>Opensource: Gearman is free and is supported by a strong developer community.</li>
<li>Supports various programming languages and platforms( eg: Java, PHP, Perl, Python, Mysql UDFs etc)</li>
<li>Multi lingual support.</li>
<li>Flexible: Gearman is much compatible with other distributed computing architectures like Map/Reduce.</li>
<li>Fast and lightweight.</li>
<li>Embeddable: Gearman can be accommodated in any kind of application in spite of their size. It can be integrated to existing systems without much pain.</li>
<li>Fault tolerance:</li>
<li>persistent message queues: Gearman guarantees the delivery of messages. An acknowledgment will be received after the delivery.</li>
<li>queue replication and improved statistics are available.</li>
</ul>
<p><strong>Installation:</strong></p>
<p>Job server<br />
Gearmand : It is written is C and is well suited for threading, persistent queues, and pluggable protocols.</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">http://launchpad.net/gearmand/trunk/0.9/+download/gearmand-0.9.tar.gz</pre></div></div>

<p>Client &amp; Worker APIs:</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">libgearman C http://launchpad.net/gearmand/trunk/0.9/+download/gearmand-0.9.tar.gz
Gearman::Client-Worker Perl http://search.cpan.org/~bradfitz/
Gearman::XS  Perl http://launchpad.net/gearmanxs/trunk/0.4/+download/Gearman-XS-0.4.tar.gz
Gearman PHP Extension PHP http://pecl.php.net/get/gearman-0.5.0.tgz
Net_Gearman (PHP) http://pear.php.net/package/Net_Gearman/
gearman-jms (Java) https://launchpad.net/gearman-jms/trunk/0.1/+download/gearman-jms-0.1.tar.gz</pre></div></div>

<p>Gearman installation steps in Ubuntu:</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">Install gearmand:
tar zxvf gearmand-0.9.tar.gz
./configure
make
make install</pre></div></div>

<p>Install Gearman PHP Extension:</p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">pecl install gearman-0.5.0</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://raveen.in/blog/?feed=rss2&amp;p=127</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting Posts on Real Time Web</title>
		<link>http://raveen.in/blog/?p=117</link>
		<comments>http://raveen.in/blog/?p=117#comments</comments>
		<pubDate>Wed, 12 Aug 2009 04:40:56 +0000</pubDate>
		<dc:creator>raveen</dc:creator>
				<category><![CDATA[Real Time Web]]></category>
		<category><![CDATA[See It First]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[realtime web]]></category>

		<guid isPermaLink="false">http://raveen.in/blog/?p=117</guid>
		<description><![CDATA[These are some posts I found interesting about real time web. The Pushbutton Web: Realtime Becomes Real Open data is the future of web discovery Web Hooks]]></description>
			<content:encoded><![CDATA[<p>These are some posts I found interesting about real time web.</p>
<ul>
<li> <a href="http://dashes.com/anil/2009/07/the-pushbutton-web-realtime-becomes-real.html" target="_blank">The Pushbutton Web: Realtime Becomes Real</a></li>
<li><a href="http://digital.venturebeat.com/2009/07/31/open-data-is-the-future-of-web-discovery/" target="_blank">Open data is the future of web discovery</a></li>
<li><a href="http://webhooks.pbworks.com/" target="_blank">Web Hooks</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://raveen.in/blog/?feed=rss2&amp;p=117</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Wishlist for the rest of the year</title>
		<link>http://raveen.in/blog/?p=93</link>
		<comments>http://raveen.in/blog/?p=93#comments</comments>
		<pubDate>Wed, 10 Jun 2009 11:21:47 +0000</pubDate>
		<dc:creator>raveen</dc:creator>
				<category><![CDATA[See It First]]></category>

		<guid isPermaLink="false">http://neevar.wordpress.com/?p=87</guid>
		<description><![CDATA[Blogs : Write at least two blog posts in every month. Books : Read at least two books in every month. Start something new : Spend a few hours every day on learning new things and trying out them. Spend a few hours in a week to learn more about web scalability, performance, architectures etc. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-medium wp-image-92" title="Untitled" src="http://neevar.files.wordpress.com/2009/06/untitled.gif?w=300" alt="Untitled" width="300" height="101" /></p>
<ul>
<li>Blogs : Write at least two blog posts in every month.</li>
<li>Books : Read at least two books in every month.</li>
<li>Start something new : Spend a few hours every day on learning new things and trying out them.</li>
<li>Spend a few hours in a week to learn more about web scalability, performance, architectures etc.</li>
<li>Plan a train journey to a place far from home.</li>
<li>Learn Violin: This one is too ambitious and nearly impossible. Yet, It&#8217;s an entry in my list <img src='http://raveen.in/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://raveen.in/blog/?feed=rss2&amp;p=93</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Postwitt</title>
		<link>http://raveen.in/blog/?p=81</link>
		<comments>http://raveen.in/blog/?p=81#comments</comments>
		<pubDate>Tue, 28 Oct 2008 12:51:47 +0000</pubDate>
		<dc:creator>raveen</dc:creator>
				<category><![CDATA[See It First]]></category>
		<category><![CDATA[Postwitt]]></category>
		<category><![CDATA[TinyUrl]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://neevar.wordpress.com/?p=81</guid>
		<description><![CDATA[Postwitt is a simple utility built on Twitter api and Tinyurl . We can click on the Postwitt button on a site/blog and tweet the link to twitter. The utility comes handy when a quick post to twitter is needed for a blog post or a web page . I cant add the button to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://neevar.files.wordpress.com/2008/10/post-witt-bird.gif"><img class="alignleft size-full wp-image-82" title="post-witt-bird" src="http://neevar.files.wordpress.com/2008/10/post-witt-bird.gif" alt="" width="75" height="67" /></a><a href="http://www.postwitt.com/" target="_blank">Postwitt</a> is a simple utility built on <a href="http://www.twitter.com/" target="_blank">Twitter</a> api and <a href="http://tinyurl.com/" target="_blank">Tinyurl</a> . We can click on the Postwitt button on a site/blog and tweet the link to twitter. The utility comes handy when a quick post to twitter is needed for a blog post or a web page . I cant add the button to sidebar of this blog because the WordPress hosted blog does not support javascript addons <img src='http://raveen.in/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> .</p>
<p>Here&#8217;s the button<br />
<img src="http://www.postwitt.com/images/twitt.gif" alt="" /></p>
<p>Hope Postwitt will create buzz among the twitter users.</p>
]]></content:encoded>
			<wfw:commentRss>http://raveen.in/blog/?feed=rss2&amp;p=81</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Rise</title>
		<link>http://raveen.in/blog/?p=72</link>
		<comments>http://raveen.in/blog/?p=72#comments</comments>
		<pubDate>Tue, 07 Oct 2008 04:32:37 +0000</pubDate>
		<dc:creator>raveen</dc:creator>
				<category><![CDATA[See It First]]></category>
		<category><![CDATA[Christopher McCandless]]></category>
		<category><![CDATA[Eddie Vedder]]></category>
		<category><![CDATA[Into the Wild]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[Rise]]></category>

		<guid isPermaLink="false">http://neevar.wordpress.com/?p=72</guid>
		<description><![CDATA[Such is the way of the world You can never know Just where to put all your faith And how will it grow Gonna rise up Burning back holes in dark memories Gonna rise up Turning mistakes into gold Such is the passage of time Too fast to fold And suddenly swallowed by signs Low [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://neevar.files.wordpress.com/2008/10/2339507032_2174662f76_o.jpg"><img class="aligncenter size-medium wp-image-78" title="2339507032_2174662f76_o" src="http://neevar.files.wordpress.com/2008/10/2339507032_2174662f76_o.jpg?w=300" alt="" width="366" height="147" /></a>Such is the way of the world<br />
You can never know<br />
Just where to put all your faith<br />
And how will it grow</p>
<p>Gonna rise up<br />
Burning back holes in dark memories<br />
Gonna rise up<br />
Turning mistakes into gold</p>
<p>Such is the passage of time<br />
Too fast to fold<br />
And suddenly swallowed by signs<br />
Low and behold</p>
<p>Gonna rise up<br />
Find my direction magnetically<br />
Gonna rise up<br />
Throw down my ace in the hole</p></blockquote>
<p>I love this  <a href="http://en.wikipedia.org/wiki/Eddie_Vedder" target="_blank">Eddie Vedder</a> song. This is from the soundtrack of <a href="http://www.imdb.com/title/tt0758758/" target="_blank">Into the Wild</a>. Infact i like all the songs from the album.  Its a wonderful movie too. Its a real life story. <a href="http://en.wikipedia.org/wiki/Christopher_McCandless" target="_blank">One man</a>, after destroying all his assets and burning cash,documents like credit cards, degree certificates, leaves for Alaska alone. Sounds interesting, right? <img src='http://raveen.in/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://raveen.in/blog/?feed=rss2&amp;p=72</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SayTweet</title>
		<link>http://raveen.in/blog/?p=74</link>
		<comments>http://raveen.in/blog/?p=74#comments</comments>
		<pubDate>Wed, 01 Oct 2008 06:10:33 +0000</pubDate>
		<dc:creator>raveen</dc:creator>
				<category><![CDATA[See It First]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://neevar.wordpress.com/?p=74</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href='http://saytweet.com/canvases/pic/338.jpg'><img src='http://saytweet.com/canvases/pic/338.jpg' alt='SayTweet badge' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://raveen.in/blog/?feed=rss2&amp;p=74</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anoop&#039;s Birthday Party and Mohito</title>
		<link>http://raveen.in/blog/?p=65</link>
		<comments>http://raveen.in/blog/?p=65#comments</comments>
		<pubDate>Fri, 19 Sep 2008 11:52:20 +0000</pubDate>
		<dc:creator>raveen</dc:creator>
				<category><![CDATA[See It First]]></category>
		<category><![CDATA[Anoop]]></category>
		<category><![CDATA[birthday]]></category>
		<category><![CDATA[cocktail]]></category>
		<category><![CDATA[Jerry]]></category>
		<category><![CDATA[mohito]]></category>

		<guid isPermaLink="false">http://neevar.wordpress.com/?p=65</guid>
		<description><![CDATA[Yesterday, we had a cocktail party at Anoop&#8217;s home. We celebrated Anoop&#8217;s birthday with Mohito ( Mojito). Jerry made the drink in his sophisticated style. I think he&#8217;s a professional in this business too . Photos are unavailable due to bad light Here&#8217;s the recipe:- ingredients: Mint leaves Lemon Vodka/White rum (We used vodka) Club [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, we had a cocktail party at<a href="http://www.orkut.co.in/Main#Profile.aspx?uid=7478032806083227033" target="_blank"> Anoop&#8217;s</a> home. We celebrated Anoop&#8217;s birthday with Mohito ( Mojito). <a href="http://www.jacksonjerry.com/" target="_blank">Jerry</a> made the drink in his sophisticated style. I think he&#8217;s a professional in this business too <img src='http://raveen.in/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .  Photos are unavailable due to bad light <img src='http://raveen.in/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<h4><strong>Here&#8217;s the recipe:-</strong></h4>
<p><strong>ingredients:</strong></p>
<h4><a href="http://neevar.files.wordpress.com/2008/09/mohito.png"><img class="size-medium wp-image-66 alignleft" title="mohito" src="http://neevar.files.wordpress.com/2008/09/mohito.png?w=216" alt="" width="112" height="155" /></a></h4>
<blockquote><p>Mint leaves<br />
Lemon<br />
Vodka/White rum (We used vodka)<br />
Club soda<br />
Sugar<br />
Salt.<br />
and ice cubes.</p></blockquote>
<p style="text-align:left;">
<p style="text-align:left;">For each drink, add the following into cocktail shaker. Since we don&#8217;t have a cocktail shaker, we used glass. <img src='http://raveen.in/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<ul>10-12 fresh leaves of mint<br />
One fresh lime squeezed<br />
2 table spoon of sugar.<br />
4 pieces of lemon</ul>
<p>Crush these ingredients along with club soda and some ice cubes. Add vodka and put some salt. Later we can add more ice cubes.<br />
Now the drink is ready. Enjoy!! <img src='http://raveen.in/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://raveen.in/blog/?feed=rss2&amp;p=65</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Roommate and Recession 2.0</title>
		<link>http://raveen.in/blog/?p=61</link>
		<comments>http://raveen.in/blog/?p=61#comments</comments>
		<pubDate>Wed, 17 Sep 2008 12:15:30 +0000</pubDate>
		<dc:creator>raveen</dc:creator>
				<category><![CDATA[See It First]]></category>
		<category><![CDATA[IT industry Recession]]></category>

		<guid isPermaLink="false">http://neevar.wordpress.com/?p=61</guid>
		<description><![CDATA[My room mate lost his job 3 weeks ago. He was working as a trainee software tester in a MNC in Technopark, Trivandrum .It was expected that they will absorb him along with 6 six other people joined with him. He got the job through a IT finishing school exclusively for software testing. They are [...]]]></description>
			<content:encoded><![CDATA[<p>My room mate lost his job 3 weeks ago.<br />
He was working as a trainee software tester in a MNC in Technopark, Trivandrum .It was expected that they will absorb him along with 6 six other people joined with him. He got the job through a IT finishing school exclusively for software testing. They are supposed to provide placements as well as placement assistance for the students. They will teach the students the various software testing methodologies and tools and will arrange industry internship in various software companies. They might be charging money for each trainee from the software firms. So this could be the revenue model for these kind of finishing schools. The software companies might also benefit , because they don&#8217;t have to worry more about the employee privileges since they trainees can be fired at any time without any questions. My friend was also getting a meager salary from the parent institution.</p>
<p>The trainees are told that the contract is valid for more than 6 months. During this period, they should not try for another job. But suddenly things turned upside down. The company had asked them to leave their position within one week.</p>
<h3><strong>Then comes recession:</strong></h3>
<p><a href="http://neevar.files.wordpress.com/2008/09/recession.gif"><img class="alignleft size-medium wp-image-62" title="recession" src="http://neevar.files.wordpress.com/2008/09/recession.gif?w=300" alt="" width="97" height="72" /></a>The recent collapse of US financial giants &#8211; Lehman brothers and AIG (<a href="http://news.google.com/news/url?sa=t&amp;ct=:ePkh8BM9EyLJjsw8AIdzBpM/1-0&amp;fp=48d0ebacc346fb01&amp;ei=QfLQSNT9CI3W6gPltOzMAQ&amp;url=http%3A//money.cnn.com/2008/09/16/news/companies/AIG/%3Fpostversion%3D2008091700&amp;cid=1247252081&amp;sig2=pFbPQphQt1DoJ9AFHRJy1w&amp;usg=AFQjCNFxtIoStIsFlQUZxEob8RgRKoDyVQ" target="_blank">AIG recoverd after Federal reserve bank of US helped it to r</a><a href="http://news.google.com/news/url?sa=t&amp;ct=:ePkh8BM9EyLJjsw8AIdzBpM/1-0&amp;fp=48d0ebacc346fb01&amp;ei=QfLQSNT9CI3W6gPltOzMAQ&amp;url=http%3A//money.cnn.com/2008/09/16/news/companies/AIG/%3Fpostversion%3D2008091700&amp;cid=1247252081&amp;sig2=pFbPQphQt1DoJ9AFHRJy1w&amp;usg=AFQjCNFxtIoStIsFlQUZxEob8RgRKoDyVQ" target="_blank">esove the crisis by acquiring around 80% stake</a>) has hit the IT industry badly. These scenarios could lead the industry to another possible slowdown. The job market is also dull.<br />
Thus my friend is worried about a comeback. He is now losing confidence of getting a better paying job.</p>
]]></content:encoded>
			<wfw:commentRss>http://raveen.in/blog/?feed=rss2&amp;p=61</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Thirst</title>
		<link>http://raveen.in/blog/?p=59</link>
		<comments>http://raveen.in/blog/?p=59#comments</comments>
		<pubDate>Fri, 05 Sep 2008 12:40:42 +0000</pubDate>
		<dc:creator>raveen</dc:creator>
				<category><![CDATA[See It First]]></category>
		<category><![CDATA[Slideshare]]></category>
		<category><![CDATA[water]]></category>

		<guid isPermaLink="false">http://neevar.wordpress.com/?p=59</guid>
		<description><![CDATA[Here&#8217;s the winner of World&#8217;s best presentation contest run by SlideShare [slideshare id=504408&#38;doc=thirst-upload-800x600-1215534320518707-8&#38;w=425]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the winner of World&#8217;s best presentation contest run by <a href="http://www.slideshare.net/contest/results-2008" target="_blank">SlideShare</a></p>
<p>[slideshare id=504408&amp;doc=thirst-upload-800x600-1215534320518707-8&amp;w=425]</p>
]]></content:encoded>
			<wfw:commentRss>http://raveen.in/blog/?feed=rss2&amp;p=59</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
