<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ajo Paul</title>
	<atom:link href="http://ajopaul.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ajopaul.com</link>
	<description>Not Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 29 Sep 2009 12:14:17 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ajopaul.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/3a8717abe9a50c87f7ee91a257896383?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Ajo Paul</title>
		<link>http://ajopaul.com</link>
	</image>
			<item>
		<title>Search and replace text in multiple files.</title>
		<link>http://ajopaul.com/2009/09/23/search-and-replace-text-in-multiple-files/</link>
		<comments>http://ajopaul.com/2009/09/23/search-and-replace-text-in-multiple-files/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 07:26:28 +0000</pubDate>
		<dc:creator>Ajo Paul</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[search&replace]]></category>

		<guid isPermaLink="false">http://ajopaul.com/?p=78</guid>
		<description><![CDATA[I had a bunch of html files where a particular style sheet inclusion had to be removed from about 500 odd html files.
Knew this could be done through an sed script , but found a better one using perl from here.
export OLD_TEXT=&#8217;&#60;link rel=\&#8221;stylesheet\&#8221; type=\&#8221;text\/css\&#8221; href=\&#8221;style.css\&#8221;&#62;&#8217;
export NEW_TEXT=&#8217;some new text&#8217;
and use it in the perl command as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=78&subd=ajopaul&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I had a bunch of html files where a particular style sheet inclusion had to be removed from about 500 odd html files.</p>
<p>Knew this could be done through an sed script , but found a better one using perl from <a href="http://crazytoon.com/2007/10/29/linux-how-do-i-mass-find-and-replace-text-in-files-under-linux-using-perl/">here.</a></p>
<blockquote><p>export OLD_TEXT=&#8217;&lt;link rel=\&#8221;stylesheet\&#8221; type=\&#8221;text\/css\&#8221; href=\&#8221;style.css\&#8221;&gt;&#8217;</p>
<p>export NEW_TEXT=&#8217;some new text&#8217;</p></blockquote>
<p>and use it in the <em>perl</em> command as follows.</p>
<blockquote><p>perl -w -i -p -e &#8220;s/$OLD_TEXT/$NEW_TEXT/g&#8221; *.html</p></blockquote>
<p>or use it against all .html files from the current directory using <em>find</em> and <em>xargs</em></p>
<blockquote><p>find . -name &#8220;*.html&#8221; | xargs -i perl -w -i -p -e &#8220;s/$OLD_TEXT/$NEW_TEXT/g&#8221; {}</p></blockquote>
<p class="getsocial" style="text-align:left;"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1002.png" alt="" /><a title="Add to Facebook" rel="nofollow" href="http://www.facebook.com/sharer.php?u=http://ajopaul.com/2009/09/23/search-and-replace-text-in-multiple-files" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1012.png" alt="Add to Facebook" /></a><a title="Add to Digg" rel="nofollow" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajopaul.com%2F2009%2F09%2F23%2Fsearch-and-replace-text-in-multiple-files&amp;title=Search%20and%20replace%20text%20in%20multiple%20files." target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1022.png" alt="Add to Digg" /></a><a title="Add to Del.icio.us" rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fajopaul.com%2F2009%2F09%2F23%2Fsearch-and-replace-text-in-multiple-files&amp;title=Search%20and%20replace%20text%20in%20multiple%20files." target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1032.png" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" rel="nofollow" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajopaul.com%2F2009%2F09%2F23%2Fsearch-and-replace-text-in-multiple-files&amp;title=Search%20and%20replace%20text%20in%20multiple%20files." target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1042.png" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" rel="nofollow" href="http://reddit.com/submit?url=http%3A%2F%2Fajopaul.com%2F2009%2F09%2F23%2Fsearch-and-replace-text-in-multiple-files&amp;title=Search%20and%20replace%20text%20in%20multiple%20files." target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1052.png" alt="Add to Reddit" /></a><a title="Add to Blinklist" rel="nofollow" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fajopaul.com%2F2009%2F09%2F23%2Fsearch-and-replace-text-in-multiple-files&amp;Title=Search%20and%20replace%20text%20in%20multiple%20files." target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1062.png" alt="Add to Blinklist" /></a><a title="Add to Twitter" rel="nofollow" href="http://twitter.com/home/?status=Search%20and%20replace%20text%20in%20multiple%20files.+%40+http%3A%2F%2Fajopaul.com%2F2009%2F09%2F23%2Fsearch-and-replace-text-in-multiple-files" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1072.png" alt="Add to Twitter" /></a><a title="Add to Technorati" rel="nofollow" href="http://www.technorati.com/faves?add=http://ajopaul.com/2009/09/23/search-and-replace-text-in-multiple-files" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1082.png" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" rel="nofollow" href="http://www.addtoany.com/add_to/Yahoo_Buzz?linkurl=http%3A%2F%2Fajopaul.com%2F2009%2F09%2F23%2Fsearch-and-replace-text-in-multiple-files&amp;type=page&amp;linkname=Search%20and%20replace%20text%20in%20multiple%20files." target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1092.png" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fajopaul.com%2F2009%2F09%2F23%2Fsearch-and-replace-text-in-multiple-files&amp;h=Search%20and%20replace%20text%20in%20multiple%20files." target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1102.png" alt="Add to Newsvine" /></a><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1112.png" alt="" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajopaul.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajopaul.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajopaul.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajopaul.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajopaul.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajopaul.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajopaul.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajopaul.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajopaul.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajopaul.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=78&subd=ajopaul&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajopaul.com/2009/09/23/search-and-replace-text-in-multiple-files/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e3ca4e695830a39e965d34d15e3b05f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ajopaul</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1002.png" medium="image" />

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1012.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1022.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1032.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1042.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1052.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1062.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1072.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1082.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1092.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1102.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1112.png" medium="image" />
	</item>
		<item>
		<title>Get PNR status on your mobile sms. Powered by Google</title>
		<link>http://ajopaul.com/2009/09/23/get-pnr-status-on-your-mobile-sms-powered-by-google/</link>
		<comments>http://ajopaul.com/2009/09/23/get-pnr-status-on-your-mobile-sms-powered-by-google/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 06:04:43 +0000</pubDate>
		<dc:creator>Ajo Paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://ajopaul.com/?p=75</guid>
		<description><![CDATA[Google has a host of mobile products for the Indian market, the full list can be seen here. Among them, the pick of the lot is the SMS product, using which one can get instant PNR status for your Indian railway ticket reservation.
Excerpts from the page here.

Get cricket scores, Indian Railways train schedules &#38; ticket [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=75&subd=ajopaul&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Google has a host of mobile products for the Indian market, the full list can be seen <a href="http://www.google.co.in/intl/en_in/mobile/default/">here</a>. Among them, the pick of the lot is the SMS product, using which one can get instant PNR status for your Indian railway ticket reservation.</p>
<p>Excerpts from the page <a href="http://www.google.co.in/intl/en_in/mobile/default/sms.html">here</a>.</p>
<blockquote>
<blockquote><p><strong>Get cricket scores, Indian Railways train schedules &amp; ticket status, horoscopes, movie showtimes, restaurant information and more &#8230;all through SMS on your phone.</strong></p>
<p>Best of all, you don&#8217;t pay a premium charge for any of this, just the price of a standard SMS.</p>
<p><strong>Try it out!</strong> Simply send your search query by SMS to 9-77-33-00000 and we&#8217;ll send you results back by SMS immediately.</p>
<p>Of course, don&#8217;t forget to save 9-77-33-00000 to your phonebook for quick and easy access to Google SMS in the future!</p>
<p>There are no premium charges for this service, only the cost of sending a standard SMS. Incoming messages from Google are not charged.</p></blockquote>
</blockquote>
<p>Also there are host of other services we can use too. Found them useful. Like movies, news, train fare, local business etc.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajopaul.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajopaul.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajopaul.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajopaul.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajopaul.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajopaul.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajopaul.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajopaul.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajopaul.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajopaul.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=75&subd=ajopaul&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajopaul.com/2009/09/23/get-pnr-status-on-your-mobile-sms-powered-by-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e3ca4e695830a39e965d34d15e3b05f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ajopaul</media:title>
		</media:content>
	</item>
		<item>
		<title>Duplicate tab for firefox 3.5</title>
		<link>http://ajopaul.com/2009/08/28/duplicate-tab-for-firefox-3-5/</link>
		<comments>http://ajopaul.com/2009/08/28/duplicate-tab-for-firefox-3-5/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 06:48:51 +0000</pubDate>
		<dc:creator>Ajo Paul</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[duplicate tab]]></category>
		<category><![CDATA[firefox3]]></category>

		<guid isPermaLink="false">http://ajopaul.com/?p=72</guid>
		<description><![CDATA[Until I saw this post , I was sorely missing the duplicate tab for firefox. It was near the top of my most loved firefox extensions till firefox 2.x. The addons page for this extension said it does not support 3.5. Well, and then I learnt 3.5 has a built in duplicate tab feature.
Just press [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=72&subd=ajopaul&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Until I saw this <a href="http://www.techpinas.com/2009/08/how-to-duplicate-tabs-in-firefox-3-and.html">post</a> , I was sorely missing the duplicate tab for firefox. It was near the top of my most loved firefox extensions till firefox 2.x. The addons page for <a href="https://addons.mozilla.org/en-US/firefox/addon/28">this extension</a> said it does not support 3.5. Well, and then I learnt 3.5 has a built in duplicate tab feature.</p>
<p>Just press the <strong>ctrl</strong> key and hold the tab you want to duplicate, drag and drop it to the place/area you want the new duplicate tab to appear. And thats it!!..</p>
<p>Life is simple now <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align:left;font-size:8pt;">Add to: <a title="Add to Facebook" rel="nofollow" href="http://www.facebook.com/sharer.php?u=http://ajopaul.com/2009/08/28/duplicate-tab-for-firefox-3-5" target="_blank">Facebook</a> | <a title="Add to Digg" rel="nofollow" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajopaul.com%2F2009%2F08%2F28%2Fduplicate-tab-for-firefox-3-5&amp;title=Duplicate%20tab%20for%20firefox%203.5" target="_blank">Digg</a> | <a title="Add to Del.icio.us" rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fajopaul.com%2F2009%2F08%2F28%2Fduplicate-tab-for-firefox-3-5&amp;title=Duplicate%20tab%20for%20firefox%203.5" target="_blank">Del.icio.us</a> | <a title="Add to Stumbleupon" rel="nofollow" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajopaul.com%2F2009%2F08%2F28%2Fduplicate-tab-for-firefox-3-5&amp;title=Duplicate%20tab%20for%20firefox%203.5" target="_blank">Stumbleupon</a> | <a title="Add to Reddit" rel="nofollow" href="http://reddit.com/submit?url=http%3A%2F%2Fajopaul.com%2F2009%2F08%2F28%2Fduplicate-tab-for-firefox-3-5&amp;title=Duplicate%20tab%20for%20firefox%203.5" target="_blank">Reddit</a> | <a title="Add to Blinklist" rel="nofollow" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fajopaul.com%2F2009%2F08%2F28%2Fduplicate-tab-for-firefox-3-5&amp;Title=Duplicate%20tab%20for%20firefox%203.5" target="_blank">Blinklist</a> | <a title="Add to Twitter" rel="nofollow" href="http://twitter.com/home/?status=Duplicate%20tab%20for%20firefox%203.5+%40+http%3A%2F%2Fajopaul.com%2F2009%2F08%2F28%2Fduplicate-tab-for-firefox-3-5" target="_blank">Twitter</a> | <a title="Add to Technorati" rel="nofollow" href="http://www.technorati.com/faves?add=http://ajopaul.com/2009/08/28/duplicate-tab-for-firefox-3-5" target="_blank">Technorati</a> | <a title="Add to Yahoo Buzz" rel="nofollow" href="http://www.addtoany.com/add_to/Yahoo_Buzz?linkurl=http%3A%2F%2Fajopaul.com%2F2009%2F08%2F28%2Fduplicate-tab-for-firefox-3-5&amp;type=page&amp;linkname=Duplicate%20tab%20for%20firefox%203.5" target="_blank">Yahoo Buzz</a> | <a title="Add to Newsvine" rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fajopaul.com%2F2009%2F08%2F28%2Fduplicate-tab-for-firefox-3-5&amp;h=Duplicate%20tab%20for%20firefox%203.5" target="_blank">Newsvine</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajopaul.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajopaul.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajopaul.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajopaul.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajopaul.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajopaul.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajopaul.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajopaul.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajopaul.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajopaul.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=72&subd=ajopaul&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajopaul.com/2009/08/28/duplicate-tab-for-firefox-3-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e3ca4e695830a39e965d34d15e3b05f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ajopaul</media:title>
		</media:content>
	</item>
		<item>
		<title>Undo SVN merge from a Collabnet eclipse merge client</title>
		<link>http://ajopaul.com/2009/08/24/undo-svn-merge-from-a-collabnet-eclipse-merge-client/</link>
		<comments>http://ajopaul.com/2009/08/24/undo-svn-merge-from-a-collabnet-eclipse-merge-client/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 14:54:19 +0000</pubDate>
		<dc:creator>Ajo Paul</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[subclipse]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://ajopaul.com/?p=66</guid>
		<description><![CDATA[Collabnet has added a enhanced merge client to work on top of Eclipse and subclipse. While it replaces the existing merge client given by default in subclipse, it adds quite few features for the merge process.
Every body knows the pain surrounded in an svn merge. No matter how you do it, there&#8217;s always a &#8220;merge [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=66&subd=ajopaul&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Collabnet has added a enhanced merge client to work on top of Eclipse and subclipse. While it replaces the existing merge client given by default in subclipse, it adds quite few features for the merge process.</p>
<p>Every body knows the pain surrounded in an svn merge. No matter how you do it, there&#8217;s always a &#8220;merge related bug&#8221; that props up post a merge. The intention of this client was to simplify the merge process in a wizard fashion. While it does so, a very important feature was done away with: the <strong>dry-run</strong> feature.</p>
<p>Instead, it expects you to go ahead with the merge type you choose to, and then preview the conflicts and results in the<em> Merge Results</em> view. There is a menu option a called &#8220;<strong>Undo Merge&#8221; </strong>given there to let you undo your actions. So all these are done post a actual merge but before you commit the changes back to the server tree.</p>
<p>I got little nervous and uninstalled the feature coz I wanted to preview my merge before i &#8220;actually do it&#8221;.  And then I bumped into <a href="http://www.open.collab.net/community/integrations/articles/mergeclient.html" target="_blank">this article </a>on the new merge client, which clarifies the reasons for removing dry-run feature.</p>
<p>Happy merging <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajopaul.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajopaul.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajopaul.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajopaul.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajopaul.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajopaul.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajopaul.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajopaul.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajopaul.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajopaul.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=66&subd=ajopaul&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajopaul.com/2009/08/24/undo-svn-merge-from-a-collabnet-eclipse-merge-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e3ca4e695830a39e965d34d15e3b05f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ajopaul</media:title>
		</media:content>
	</item>
		<item>
		<title>Enable sound for 3gp videos in ubuntu using mplayer</title>
		<link>http://ajopaul.com/2009/07/15/enable-sound-for-3gp-videos-in-ubuntu-using-mplayer/</link>
		<comments>http://ajopaul.com/2009/07/15/enable-sound-for-3gp-videos-in-ubuntu-using-mplayer/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 19:16:11 +0000</pubDate>
		<dc:creator>Ajo Paul</dc:creator>
				<category><![CDATA[3gp]]></category>
		<category><![CDATA[mplayer]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[amr]]></category>

		<guid isPermaLink="false">http://ajopaul.com/?p=62</guid>
		<description><![CDATA[To play 3gp videos with audio using mplayer in Ubuntu Jaunty, add the following line to your /etc/apt/sources.list file
sudo wget http://www.medibuntu.org/sources.list.d/jaunty.list --output-document=/etc/apt/sources.list.d/medibuntu.list
You need the GPG key for medibuntu packages. Get it the following way.
sudo apt-get update
sudo apt-get install medibuntu-keyring
sudo apt-get update
now install the following packages
w32codecs mplayer mencoder amrnb amrwb
You should be able to hear the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=62&subd=ajopaul&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To play 3gp videos with audio using mplayer in Ubuntu Jaunty, add the following line to your /etc/apt/sources.list file</p>
<p><code>sudo wget http://www.medibuntu.org/sources.list.d/jaunty.list --output-document=/etc/apt/sources.list.d/medibuntu.list</code></p>
<p>You need the GPG key for medibuntu packages. Get it the following way.</p>
<p><code>sudo apt-get update</code></p>
<p>sudo apt-get install medibuntu-keyring</p>
<p>sudo apt-get update</p>
<p>now install the following packages</p>
<p><code>w32codecs mplayer mencoder amrnb amrwb</code></p>
<p>You should be able to hear the sound in mplayer now.</p>
<p><a href="http://ubuntuforums.org/archive/index.php/t-1043415.html">Source</a></p>
<p class="getsocial" style="text-align:left;"><a title="Add to Facebook" rel="nofollow" href="http://www.facebook.com/sharer.php?u=http://ajopaul.com/2009/07/15/enable-sound-for-3gp-videos" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3012.png" alt="Add to Facebook" /></a><a title="Add to Digg" rel="nofollow" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F15%2Fenable-sound-for-3gp-videos&amp;title=Enable%20sound%20for%203gp%20videos%20in%20ubuntu%20using%20mplayer" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3022.png" alt="Add to Digg" /></a><a title="Add to Del.icio.us" rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F15%2Fenable-sound-for-3gp-videos&amp;title=Enable%20sound%20for%203gp%20videos%20in%20ubuntu%20using%20mplayer" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3032.png" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" rel="nofollow" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F15%2Fenable-sound-for-3gp-videos&amp;title=Enable%20sound%20for%203gp%20videos%20in%20ubuntu%20using%20mplayer" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3042.png" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" rel="nofollow" href="http://reddit.com/submit?url=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F15%2Fenable-sound-for-3gp-videos&amp;title=Enable%20sound%20for%203gp%20videos%20in%20ubuntu%20using%20mplayer" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3052.png" alt="Add to Reddit" /></a><a title="Add to Blinklist" rel="nofollow" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F15%2Fenable-sound-for-3gp-videos&amp;Title=Enable%20sound%20for%203gp%20videos%20in%20ubuntu%20using%20mplayer" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3062.png" alt="Add to Blinklist" /></a><a title="Add to Twitter" rel="nofollow" href="http://twitter.com/home/?status=Enable%20sound%20for%203gp%20videos%20in%20ubuntu%20using%20mplayer+%40+http%3A%2F%2Fajopaul.com%2F2009%2F07%2F15%2Fenable-sound-for-3gp-videos" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3072.png" alt="Add to Twitter" /></a><a title="Add to Technorati" rel="nofollow" href="http://www.technorati.com/faves?add=http://ajopaul.com/2009/07/15/enable-sound-for-3gp-videos" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3082.png" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" rel="nofollow" href="http://www.addtoany.com/add_to/Yahoo_Buzz?linkurl=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F15%2Fenable-sound-for-3gp-videos&amp;type=page&amp;linkname=Enable%20sound%20for%203gp%20videos%20in%20ubuntu%20using%20mplayer" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3092.png" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F15%2Fenable-sound-for-3gp-videos&amp;h=Enable%20sound%20for%203gp%20videos%20in%20ubuntu%20using%20mplayer" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3102.png" alt="Add to Newsvine" /></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajopaul.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajopaul.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajopaul.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajopaul.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajopaul.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajopaul.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajopaul.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajopaul.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajopaul.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajopaul.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=62&subd=ajopaul&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajopaul.com/2009/07/15/enable-sound-for-3gp-videos-in-ubuntu-using-mplayer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e3ca4e695830a39e965d34d15e3b05f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ajopaul</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3012.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3022.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3032.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3042.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3052.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3062.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3072.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3082.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3092.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3102.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>
	</item>
		<item>
		<title>Unable to connect Yahoo messenger in Kopete?</title>
		<link>http://ajopaul.com/2009/07/12/unable-to-connect-yahoo-messenger-in-kopete/</link>
		<comments>http://ajopaul.com/2009/07/12/unable-to-connect-yahoo-messenger-in-kopete/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 10:42:42 +0000</pubDate>
		<dc:creator>Ajo Paul</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[kopete]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://ajopaul.com/?p=60</guid>
		<description><![CDATA[[UPDATE] As of now the latest update on jaunty for the kopete package, the problem is fixed in the version 4:4.2.2-0ubuntu2.
It seems Yahoo! is changing their protocols for client connection. Heard somewhere this is done to disallow 3rd party clients like pidgin and trillian access yahoo&#8217;s messenger service. On my Ubuntu Jaunty, this has not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=60&subd=ajopaul&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>[UPDATE] As of now the latest update on jaunty for the kopete package, the problem is fixed in the version 4:4.2.2-0ubuntu2.</p>
<p>It seems Yahoo! is changing their protocols for client connection. Heard somewhere this is done to disallow 3rd party clients like pidgin and trillian access yahoo&#8217;s messenger service. On my Ubuntu Jaunty, this has not affected pidgin yet! (looks like it auto adjusted) , but for Kopete I had to override the server connection to <strong>cn.scs.msg.yahoo.com </strong>and now its working fine.</p>
<p>Got the workaround from <a href="http://www.andlinux.org/forum/viewtopic.php?t=512&amp;sid=036920571509a39328b721103a85307d">here</a>.</p>
<p>Kopete is the only yahoo client on linux, AFAIK that allows video chat. Not sure if anything else has surfaced up yet. Haven&#8217;t been able to use Gyache yet with my webcam.</p>
<p class="getsocial" style="text-align:left;"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2002.png" alt="" /><a title="Add to Facebook" rel="nofollow" href="http://www.facebook.com/sharer.php?u=http://ajopaul.com/2009/07/12/unable-to-connect-yahoo-messenger-in-kopete" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2012.png" alt="Add to Facebook" /></a><a title="Add to Digg" rel="nofollow" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F12%2Funable-to-connect-yahoo-messenger-in-kopete&amp;title=Unable%20to%20connect%20Yahoo%20messenger%20in%20Kopete%3F" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2022.png" alt="Add to Digg" /></a><a title="Add to Del.icio.us" rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F12%2Funable-to-connect-yahoo-messenger-in-kopete&amp;title=Unable%20to%20connect%20Yahoo%20messenger%20in%20Kopete%3F" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2032.png" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" rel="nofollow" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F12%2Funable-to-connect-yahoo-messenger-in-kopete&amp;title=Unable%20to%20connect%20Yahoo%20messenger%20in%20Kopete%3F" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2042.png" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" rel="nofollow" href="http://reddit.com/submit?url=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F12%2Funable-to-connect-yahoo-messenger-in-kopete&amp;title=Unable%20to%20connect%20Yahoo%20messenger%20in%20Kopete%3F" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2052.png" alt="Add to Reddit" /></a><a title="Add to Blinklist" rel="nofollow" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F12%2Funable-to-connect-yahoo-messenger-in-kopete&amp;Title=Unable%20to%20connect%20Yahoo%20messenger%20in%20Kopete%3F" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2062.png" alt="Add to Blinklist" /></a><a title="Add to Twitter" rel="nofollow" href="http://twitter.com/home/?status=Unable%20to%20connect%20Yahoo%20messenger%20in%20Kopete%3F+%40+http%3A%2F%2Fajopaul.com%2F2009%2F07%2F12%2Funable-to-connect-yahoo-messenger-in-kopete" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2072.png" alt="Add to Twitter" /></a><a title="Add to Technorati" rel="nofollow" href="http://www.technorati.com/faves?add=http://ajopaul.com/2009/07/12/unable-to-connect-yahoo-messenger-in-kopete" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2082.png" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" rel="nofollow" href="http://www.addtoany.com/add_to/Yahoo_Buzz?linkurl=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F12%2Funable-to-connect-yahoo-messenger-in-kopete&amp;type=page&amp;linkname=Unable%20to%20connect%20Yahoo%20messenger%20in%20Kopete%3F" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2092.png" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fajopaul.com%2F2009%2F07%2F12%2Funable-to-connect-yahoo-messenger-in-kopete&amp;h=Unable%20to%20connect%20Yahoo%20messenger%20in%20Kopete%3F" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2102.png" alt="Add to Newsvine" /></a><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2112.png" alt="" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajopaul.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajopaul.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajopaul.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajopaul.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajopaul.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajopaul.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajopaul.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajopaul.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajopaul.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajopaul.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=60&subd=ajopaul&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajopaul.com/2009/07/12/unable-to-connect-yahoo-messenger-in-kopete/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e3ca4e695830a39e965d34d15e3b05f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ajopaul</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2002.png" medium="image" />

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2012.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2022.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2032.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2042.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2052.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2062.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2072.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2082.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2092.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2102.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2112.png" medium="image" />
	</item>
		<item>
		<title>Flex builder on Linux kept on Hold?</title>
		<link>http://ajopaul.com/2009/06/12/flex-builder-on-linux-kept-on-hold/</link>
		<comments>http://ajopaul.com/2009/06/12/flex-builder-on-linux-kept-on-hold/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 10:54:28 +0000</pubDate>
		<dc:creator>Ajo Paul</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[foss]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[flexbuilder]]></category>

		<guid isPermaLink="false">http://ajopaul.com/?p=57</guid>
		<description><![CDATA[This post has reported that the flex builder work on linux has been put on hold.  Noted Adobe techie has said &#8220;there is not enough requisition for the product to continue its development&#8221;
Well, that&#8217;s not a great news to hear.. considering the open sourced SDK of adobe flex,  good amount of interest was generated in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=57&subd=ajopaul&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This <a href="http://gruchalski.com/2009/04/22/flex-builder-3-for-linux-on-hold/">post</a> has reported that the flex builder work on linux has been put on hold.  Noted Adobe techie has said <em>&#8220;there is not enough requisition for the product to continue its development&#8221;</em></p>
<p>Well, that&#8217;s not a great news to hear.. considering the open sourced SDK of adobe flex,  good amount of interest was generated in the FOSS developer community. To help it revive again, use this link to vote on the adobe site.</p>
<p><a href="http://">http://bugs.adobe.com/jira/browse/FB-19053</a></p>
<p>From the current builder available on <a href="http://labs.adobe.com/downloads/flexbuilder_linux.html">linux</a> ,which is infact a eclipse plugin, the main feature I missed was, the design view in it. Hopefully, when the development continues design view is also ported to linux.</p>
<p><em><br />
</em></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajopaul.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajopaul.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajopaul.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajopaul.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajopaul.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajopaul.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajopaul.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajopaul.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajopaul.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajopaul.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=57&subd=ajopaul&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajopaul.com/2009/06/12/flex-builder-on-linux-kept-on-hold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e3ca4e695830a39e965d34d15e3b05f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ajopaul</media:title>
		</media:content>
	</item>
		<item>
		<title>Gmail Inbox preview while gmail is loading</title>
		<link>http://ajopaul.com/2009/05/27/gmail-inbox-preview-while-gmail-is-loading/</link>
		<comments>http://ajopaul.com/2009/05/27/gmail-inbox-preview-while-gmail-is-loading/#comments</comments>
		<pubDate>Wed, 27 May 2009 12:15:51 +0000</pubDate>
		<dc:creator>Ajo Paul</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://ajopaul.wordpress.com/?p=54</guid>
		<description><![CDATA[New in gmail labs allows you to preview your inbox when gmail is loading. Useful, if you have a little slow connection. Your anxiety of which mails you are about to open will be served too.:) Just goto gmail -&#62; settings &#8211; &#62; labs look for inbox preview enable it, close the browser and relogin [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=54&subd=ajopaul&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>New in gmail labs allows you to preview your inbox when gmail is loading. Useful, if you have a little slow connection. Your anxiety of which mails you are about to open will be served too.:) Just goto gmail -&gt; settings &#8211; &gt; labs look for inbox preview enable it, close the browser and relogin again.</p>
<p><a href="http://gmailblog.blogspot.com/2009/05/new-in-labs-inbox-preview.html">http://gmailblog.blogspot.com/2009/05/new-in-labs-inbox-preview.html</a></p>
<p><img class="aligncenter size-full wp-image-55" title="gmailinbox" src="http://ajopaul.files.wordpress.com/2009/05/gmailinbox.jpg?w=450&#038;h=150" alt="gmailinbox" width="450" height="150" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajopaul.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajopaul.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajopaul.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajopaul.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajopaul.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajopaul.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajopaul.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajopaul.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajopaul.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajopaul.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=54&subd=ajopaul&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajopaul.com/2009/05/27/gmail-inbox-preview-while-gmail-is-loading/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e3ca4e695830a39e965d34d15e3b05f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ajopaul</media:title>
		</media:content>

		<media:content url="http://ajopaul.files.wordpress.com/2009/05/gmailinbox.jpg" medium="image">
			<media:title type="html">gmailinbox</media:title>
		</media:content>
	</item>
		<item>
		<title>Patch for Flex builder 3 with Eclipse 3.4 Ganymede</title>
		<link>http://ajopaul.com/2009/05/26/patch-for-flex-builder-3-with-eclipse-3-4-ganymede/</link>
		<comments>http://ajopaul.com/2009/05/26/patch-for-flex-builder-3-with-eclipse-3-4-ganymede/#comments</comments>
		<pubDate>Tue, 26 May 2009 05:50:43 +0000</pubDate>
		<dc:creator>Ajo Paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[flex]]></category>

		<guid isPermaLink="false">http://ajopaul.wordpress.com/?p=51</guid>
		<description><![CDATA[If you have been working with Eclipse 3.2 or 3.3 with flex builder 3, and if the upgrade to 3.4 broke the builder, try the following patch http://www.tekool.net/blog/2008/06/28/flex-builder-3-plugin-dont-work-with-eclipse-34/
Just download the patch from here unzip it somewhere on your desktop and copy the plugins content ( 2 jar files) to your eclipse&#8217;s plugins folder. If you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=51&subd=ajopaul&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you have been working with Eclipse 3.2 or 3.3 with flex builder 3, and if the upgrade to 3.4 broke the builder, try the following patch <a href="http://www.tekool.net/blog/2008/06/28/flex-builder-3-plugin-dont-work-with-eclipse-34/">http://www.tekool.net/blog/2008/06/28/flex-builder-3-plugin-dont-work-with-eclipse-34/</a></p>
<p>Just download the patch from <a href="http://www.tekool.net/blogfiles/flex-builder-3-plugin-dont-work-with-eclipse-34/FB3_Eclipse34_patch.zip">here</a> unzip it somewhere on your desktop and copy the plugins content ( 2 jar files) to your eclipse&#8217;s plugins folder. If you have any existing files while copying good idea would be to take a backup before doing so.</p>
<p>Now restart eclipse with -clean option. Your flex builder should work as it used to before.</p>
<p class="getsocial" style="text-align:left;"><a title="Add to Facebook" rel="nofollow" href="http://www.facebook.com/sharer.php?u=http://ajopaul.com/2009/05/26/patch-for-flex-builder-3-with-eclipse-3-4-ganymede" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4012.png" alt="Add to Facebook" /></a><a title="Add to Digg" rel="nofollow" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fajopaul.com%2F2009%2F05%2F26%2Fpatch-for-flex-builder-3-with-eclipse-3-4-ganymede&amp;title=Patch%20for%20Flex%20builder%203%20with%20Eclipse%203.4%20Ganymede" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4022.png" alt="Add to Digg" /></a><a title="Add to Del.icio.us" rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fajopaul.com%2F2009%2F05%2F26%2Fpatch-for-flex-builder-3-with-eclipse-3-4-ganymede&amp;title=Patch%20for%20Flex%20builder%203%20with%20Eclipse%203.4%20Ganymede" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4032.png" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" rel="nofollow" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fajopaul.com%2F2009%2F05%2F26%2Fpatch-for-flex-builder-3-with-eclipse-3-4-ganymede&amp;title=Patch%20for%20Flex%20builder%203%20with%20Eclipse%203.4%20Ganymede" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4042.png" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" rel="nofollow" href="http://reddit.com/submit?url=http%3A%2F%2Fajopaul.com%2F2009%2F05%2F26%2Fpatch-for-flex-builder-3-with-eclipse-3-4-ganymede&amp;title=Patch%20for%20Flex%20builder%203%20with%20Eclipse%203.4%20Ganymede" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4052.png" alt="Add to Reddit" /></a><a title="Add to Blinklist" rel="nofollow" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fajopaul.com%2F2009%2F05%2F26%2Fpatch-for-flex-builder-3-with-eclipse-3-4-ganymede&amp;Title=Patch%20for%20Flex%20builder%203%20with%20Eclipse%203.4%20Ganymede" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4062.png" alt="Add to Blinklist" /></a><a title="Add to Twitter" rel="nofollow" href="http://twitter.com/home/?status=Patch%20for%20Flex%20builder%203%20with%20Eclipse%203.4%20Ganymede+%40+http%3A%2F%2Fajopaul.com%2F2009%2F05%2F26%2Fpatch-for-flex-builder-3-with-eclipse-3-4-ganymede" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4072.png" alt="Add to Twitter" /></a><a title="Add to Technorati" rel="nofollow" href="http://www.technorati.com/faves?add=http://ajopaul.com/2009/05/26/patch-for-flex-builder-3-with-eclipse-3-4-ganymede" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4082.png" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" rel="nofollow" href="http://www.addtoany.com/add_to/Yahoo_Buzz?linkurl=http%3A%2F%2Fajopaul.com%2F2009%2F05%2F26%2Fpatch-for-flex-builder-3-with-eclipse-3-4-ganymede&amp;type=page&amp;linkname=Patch%20for%20Flex%20builder%203%20with%20Eclipse%203.4%20Ganymede" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4092.png" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fajopaul.com%2F2009%2F05%2F26%2Fpatch-for-flex-builder-3-with-eclipse-3-4-ganymede&amp;h=Patch%20for%20Flex%20builder%203%20with%20Eclipse%203.4%20Ganymede" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4102.png" alt="Add to Newsvine" /></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajopaul.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajopaul.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajopaul.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajopaul.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajopaul.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajopaul.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajopaul.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajopaul.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajopaul.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajopaul.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=51&subd=ajopaul&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajopaul.com/2009/05/26/patch-for-flex-builder-3-with-eclipse-3-4-ganymede/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e3ca4e695830a39e965d34d15e3b05f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ajopaul</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4012.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4022.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4032.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4042.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4052.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4062.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4072.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4082.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4092.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4102.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>
	</item>
		<item>
		<title>FOSS.in 2008 announced.</title>
		<link>http://ajopaul.com/2008/11/02/fossin-2008-announced/</link>
		<comments>http://ajopaul.com/2008/11/02/fossin-2008-announced/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 07:36:10 +0000</pubDate>
		<dc:creator>Ajo Paul</dc:creator>
				<category><![CDATA[foss]]></category>
		<category><![CDATA[foss.in]]></category>
		<category><![CDATA[fossdotin]]></category>

		<guid isPermaLink="false">http://ajopaul.wordpress.com/?p=36</guid>
		<description><![CDATA[India&#8217;s only and premiere foss event has been announced. It is to be held at its traditional home, IISC Bangalore between 25th November and 29th Novemeber 2008.

Register now http://foss.in/register/delegate-registration
or visit http://foss.in for more info.
Happy FOSSing!
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=36&subd=ajopaul&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>India&#8217;s only and premiere foss event has been announced. It is to be held at its traditional home, IISC Bangalore between 25th November and 29th Novemeber 2008.</p>
<p><a href="http://ajopaul.files.wordpress.com/2008/11/headerbg4.jpg"><img class="alignnone" title="Foss.in" src="http://ajopaul.files.wordpress.com/2008/11/headerbg4.jpg?w=840&#038;h=100" alt="" width="840" height="100" /></a></p>
<p>Register now <a href="http://foss.in/register/delegate-registration" target="_blank">http://foss.in/register/delegate-registration</a></p>
<p>or visit <a href="http://foss.in" target="_blank">http://foss.in</a> for more info.</p>
<p>Happy FOSSing!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajopaul.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajopaul.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajopaul.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajopaul.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajopaul.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajopaul.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajopaul.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajopaul.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajopaul.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajopaul.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajopaul.com&blog=603873&post=36&subd=ajopaul&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajopaul.com/2008/11/02/fossin-2008-announced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e3ca4e695830a39e965d34d15e3b05f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ajopaul</media:title>
		</media:content>

		<media:content url="http://ajopaul.files.wordpress.com/2008/11/headerbg4.jpg" medium="image">
			<media:title type="html">Foss.in</media:title>
		</media:content>
	</item>
	</channel>
</rss>