<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.3" -->
<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/"
	>

<channel>
	<title>webforth</title>
	<link>http://www.webforth.com</link>
	<description>2.0 and counting</description>
	<pubDate>Tue, 29 Jan 2008 18:23:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>
	<language>en</language>
			<item>
		<title>Resolving TinyURLS to the desination URL</title>
		<link>http://www.webforth.com/2007/07/resolving-tinyurls-to-the-desination-url</link>
		<comments>http://www.webforth.com/2007/07/resolving-tinyurls-to-the-desination-url#comments</comments>
		<pubDate>Thu, 26 Jul 2007 23:44:06 +0000</pubDate>
		<dc:creator>Arun</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[hacks]]></category>

		<guid isPermaLink="false">http://www.webforth.com/2007/07/resolving-tinyurls-to-the-desination-url</guid>
		<description><![CDATA[After Twitter hugged TinyURL, there happens to be lots of talk about how to enhance TinyURL services. 
for example:
http://preview.tinyurl.com/37dz8l

redirects to
http://www.webforth.com/
But how do we understand that the first URL is going to get redirected to the second URL. It is pretty clear that the string 37dz8l does the magic. TinyURL folk has written a smart algorithm [...]]]></description>
			<content:encoded><![CDATA[<p>After <a href="http://twitter.com">Twitter</a> hugged <a href="http://tinyurl.com">TinyURL</a>, there happens to be lots of talk about how to enhance TinyURL services. </p>
<p>for example:</p>
<p><strong>http://preview.tinyurl.com/37dz8l<br />
</strong><br />
redirects to</p>
<p><strong>http://www.webforth.com/</strong></p>
<p>But how do we understand that the first URL is going to get redirected to the second URL. It is pretty clear that the string 37dz8l does the magic. TinyURL folk has written a smart algorithm to shrink bigger URLs to a hashed string (Anybody know how that works?). For the time being, I wrote a small snippet for resolving a tiny url to its original destination URL. The script will directly contact TinyURL server to see where the URL is getting redirected.</p>
<blockquote><p>< ?php</p>
<p>// tinyurl.php?c=<code here></p>
<p>$num = $_GET['c'];</p>
<p>if($fp = fsockopen ("tinyurl.com", 80, $errno, $errstr, 30))<br />
{<br />
	if ($fp) {<br />
		fputs ($fp, "HEAD /$num HTTP/1.0\r\nHost: tinyurl.com\r\n\r\n");<br />
		while (!feof($fp)) {$headers .= fgets ($fp,128);}<br />
		fclose ($fp);<br />
	}<br />
	$arr1=explode("Location:",$headers);<br />
	$arr=explode("\n",trim($arr1[1]));<br />
	echo trim($arr[0]);<br />
}<br />
?></p></blockquote>
<p>It is a simple code which plays with http headers rather than HTML. It processes shorter strings and string manipulation is done using non-regexp tricks. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webforth.com/2007/07/resolving-tinyurls-to-the-desination-url/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ripping audio cds to MP3 with VLC</title>
		<link>http://www.webforth.com/2007/05/ripping-audio-cds-to-mp3-with-vlc</link>
		<comments>http://www.webforth.com/2007/05/ripping-audio-cds-to-mp3-with-vlc#comments</comments>
		<pubDate>Mon, 14 May 2007 23:06:55 +0000</pubDate>
		<dc:creator>Arun</dc:creator>
		
		<category><![CDATA[hacks]]></category>

		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.webforth.com/2007/05/ripping-audio-cds-to-mp3-with-vlc</guid>
		<description><![CDATA[If you aware of, VLC(Video Lan Client) is one of the coolest media players available today. I recently digged out a way to rip Audio CDs to mp3 format using this cute little app. Honestly speaking, with VLC, you can convert CDA files to almost any audio format available.
This is how you can do it:
1) [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://static.zooomr.com/images/1105395_4556d5a1d5_t.jpg" class="noborder" align="right" height="100" hspace="3" vspace="3" width="77" />If you aware of, <strong><a href="http://www.videolan.org/vlc/">VLC</a></strong>(Video Lan Client) is one of the coolest media players available today. I recently digged out a way to rip Audio CDs to <strong>mp3 </strong>format using this cute little app. Honestly speaking, with VLC, you can convert <strong>CDA </strong>files to almost any audio format available.</p>
<p>This is how you can do it:</p>
<p><strong>1)</strong> Insert your CD into the drive and open VLC.<br />
<strong>2)</strong> Select <strong>File &gt; Open File</strong>. Browse and select the track from the CD.<br />
In the same window, look for <strong>Advanced Options<br />
<img src="http://farm1.static.flickr.com/223/498653973_6b65c2d68d.jpg" /><br />
</strong><br />
<strong>3)</strong> Check the <strong>Stream/Save</strong> checkbox. Click <strong>Settings </strong>to open the big settings window.<br />
<strong>4)</strong> In the Output section, check the <strong>File </strong>checkbox. Click Browse and select your <strong>new file name</strong>. Check settings I used.<br />
<img src="http://farm1.static.flickr.com/218/498653969_046f471c26.jpg" /><strong><br />
5)</strong> Click OK (OK again) to start the conversion<br />
<strong>6)</strong> Go back to step 1 for the next track (It is simple. You just have to change the filenames - keep the other settings as it is)</p>
<p>Sorry for the Microsoft style explanation; I am on a windows machine. You can always do all these using shell scripts in Linux, I guess. VLC won&#8217;t display any progress untill it finishes with the file. VLC supports conversion with upto 512Kbps stream with a maximum of 5 channels.</p>
<p>Don&#8217;t have VLC? <a href="http://www.videolan.org/vlc/download-windows.html">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webforth.com/2007/05/ripping-audio-cds-to-mp3-with-vlc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Is &#8216;C&#8217; suitable for this?</title>
		<link>http://www.webforth.com/2007/05/is-c-suitable-for-this</link>
		<comments>http://www.webforth.com/2007/05/is-c-suitable-for-this#comments</comments>
		<pubDate>Mon, 14 May 2007 11:47:01 +0000</pubDate>
		<dc:creator>Arun</dc:creator>
		
		<category><![CDATA[uncategorized]]></category>

		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.webforth.com/2007/05/is-c-suitable-for-this</guid>
		<description><![CDATA[
The correct title for this post would have been &#8216;Is C scalable enough for this?&#8217;. I was reading PHP scalability myth (one more time) and found that how people can be very partial about &#8216;their own&#8217; (Just like they created it) programming languages. I think just like the above strip, people should use apt languages [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm1.static.flickr.com/221/497799593_901cb0ac37.jpg" alt="" /><br />
The correct title for this post would have been &#8216;Is C scalable enough for this?&#8217;. I was reading <a href="http://www.onjava.com/pub/a/onjava/2003/10/15/php_scalability.html">PHP scalability myth</a> (one more time) and found that how people can be very partial about &#8216;their own&#8217; (Just like they created it) programming languages. I think just like the above strip, people should use apt languages they are comfortable with.<br />
(Thanks to Trisha for this strip.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webforth.com/2007/05/is-c-suitable-for-this/feed/</wfw:commentRss>
		</item>
		<item>
		<title>11 Most Beautiful &#8220;cloudy&#8221; Designs</title>
		<link>http://www.webforth.com/2007/05/11-most-beautiful-cloudy-designs</link>
		<comments>http://www.webforth.com/2007/05/11-most-beautiful-cloudy-designs#comments</comments>
		<pubDate>Wed, 09 May 2007 21:32:54 +0000</pubDate>
		<dc:creator>Arun</dc:creator>
		
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.webforth.com/2007/05/11-most-beautiful-cloudy-designs</guid>
		<description><![CDATA[After going through many CSS galleries, I observed a common feature - clouds and the beautiful sky. It simply adds gradients and informal, illustrative and vast look to the headers.   Some of the designs even went into details like mountains and flock of sheep in it.
But sometimes, the same objects; Sky and clouds [...]]]></description>
			<content:encoded><![CDATA[<p>After going through many CSS galleries, I observed a common feature - clouds and the beautiful sky. It simply adds gradients and informal, illustrative and vast look to the headers.   Some of the designs even went into details like mountains and flock of sheep in it.</p>
<p>But sometimes, the same objects; Sky and clouds have been used in a subtle way. See those effects inHopking Designs and Land Experts. Enough talk; See them.</p>
<p>#11) <a href="http://www.yourant.ca/">You Rant</a><br />
<a href="http://www.yourant.ca/"><img src="http://demostack.com/images/11topclouds/yourant.gif" /></a></p>
<p>#10) <a href="http://www.hopkingdesign.com/">Hopking Design</a><br />
<a href="http://www.hopkingdesign.com/"><img src="http://demostack.com/images/11topclouds/hopkingdesign.gif" height="310" width="450" /></a></p>
<p>#9) <a href="http://www.landexperts.ro/">Land Experts</a><br />
<a href="http://www.landexperts.ro/"><img src="http://demostack.com/images/11topclouds/landexperts.gif" height="310" width="450" /></a></p>
<p>#8) <a href="http://www.elpescadito.com.mx/">El Pescadito</a><br />
<a href="http://www.elpescadito.com.mx/"><img src="http://demostack.com/images/11topclouds/elpescadito.gif" height="310" width="450" /></a></p>
<p>#7) <a href="http://www.welikavillage.com/">Welika Villege</a><br />
<a href="http://www.welikavillage.com/"><img src="http://demostack.com/images/11topclouds/welikavillage.gif" /></a></p>
<p>#6) <a href="http://binslashbash.org">Bin Slash Bash</a><br />
<a href="http://binslashbash.org"><img src="http://demostack.com/images/11topclouds/binslashbash.gif" height="308" width="450" /></a></p>
<p>#5) <a href="http://www.globalzoo.de/">Global Zoo</a><br />
<a href="http://www.globalzoo.de/"><img src="http://demostack.com/images/11topclouds/globalzoo.gif" height="310" width="450" /></a></p>
<p>#4) <a href="http://joshuabryant.com/">Joshua Brayant</a><br />
<a href="http://joshuabryant.com/"><img src="http://demostack.com/images/11topclouds/joshuabrayant.gif" height="310" width="450" /></a></p>
<p>#3) <a href="http://www.wiredtree.com/">WiredTree Hosting</a><br />
<a href="http://wiredtree.com"><img src="http://demostack.com/images/11topclouds/wiredtree.gif" height="310" width="450" /></a></p>
<p>#2) <a href="http://www.artypapers.com/">Arty Papers</a><br />
<a href="http://wiredtree.com"><img src="http://demostack.com/images/11topclouds/artypapers.gif" height="310" width="450" /></a></p>
<p>#1)    <a href="http://uxmag.com">UX Magazine</a><br />
<a href="http://uxmag.com"><img src="http://demostack.com/images/11topclouds/uxmag.gif" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webforth.com/2007/05/11-most-beautiful-cloudy-designs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scaling Twitter to the maximum</title>
		<link>http://www.webforth.com/2007/04/scaling-twitter-to-the-maximum</link>
		<comments>http://www.webforth.com/2007/04/scaling-twitter-to-the-maximum#comments</comments>
		<pubDate>Mon, 23 Apr 2007 14:31:43 +0000</pubDate>
		<dc:creator>Arun</dc:creator>
		
		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[ruby]]></category>

		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://www.webforth.com/2007/04/scaling-twitter-to-the-maximum</guid>
		<description><![CDATA[Scaling Rails Applications has been a good topic over internet so far. From Jonathan Boutelle&#8217;s Barcamp Bangalore 2 session,  had a good overview of how folks at Slideshare did it. It has been wounderfully architected with use of Amazon S3. 
Twitter is Evan William&#8217;s newest product. Moreover, Twitter is this years success story. With [...]]]></description>
			<content:encoded><![CDATA[<p>Scaling Rails Applications has been a good topic over internet so far. From Jonathan Boutelle&#8217;s Barcamp Bangalore 2 session,  had a good overview of how folks at <a href="http://slideshare.net">Slideshare</a> did it. It has been wounderfully architected with use of Amazon S3. </p>
<p>Twitter is Evan William&#8217;s newest product. Moreover, Twitter is this years success story. With millions of twits from millions of users, it has been <a href="http://www.radicalbehavior.com/5-question-interview-with-twitter-developer-alex-payne/">reported</a> that is struggling to scale.  <a href="http://www.loudthinking.com/arc/000608.html">David</a> posted couple of thuoghts over this issues in general last week. </p>
<p>Today evening I stumbled upon this wonderful slideshow on scaling rails. It has been created by Blaine Cook who works for Twitter.</p>
<object type="application/x-shockwave-flash" data="https://s3.amazonaws.com:443/slideshare/ssplayer.swf?id=41197&#038;doc=scaling-twitter-12758" width="425" height="348">
<param name="movie" value="https://s3.amazonaws.com:443/slideshare/ssplayer.swf?id=41197&#038;doc=scaling-twitter-12758" /></object>
<p>Please find Slideshare scaling doc below</p>
<object type="application/x-shockwave-flash" data="https://s3.amazonaws.com:443/slideshare/ssplayer.swf?id=14894&#038;doc=scalable-web-architectures-w-ruby-and-amazon-s3-14894-23045" width="425" height="348">
<param name="movie" value="https://s3.amazonaws.com:443/slideshare/ssplayer.swf?id=14894&#038;doc=scalable-web-architectures-w-ruby-and-amazon-s3-14894-23045" /></object>
<p>The douments like this really helped me rearranging my thoughts a lot.  You guys rock!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webforth.com/2007/04/scaling-twitter-to-the-maximum/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Netscape enters videosharing arena</title>
		<link>http://www.webforth.com/2007/04/netscape-enters-videosharing-arena</link>
		<comments>http://www.webforth.com/2007/04/netscape-enters-videosharing-arena#comments</comments>
		<pubDate>Sun, 08 Apr 2007 16:05:25 +0000</pubDate>
		<dc:creator>Arun</dc:creator>
		
		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.webforth.com/2007/04/netscape-enters-videosharing-arena</guid>
		<description><![CDATA[I was trying to submit a story to Netscape and saw a link to upload videos. It was interesting. Netscape now allows you to upload your own videos to the portal. Netscape had already started  some syndicated video features back in 2006. 

Recently, many memediggers, including Digg had added video memedigging functionalities to their [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to submit a story to <a href="ttp://www.netscape.com/">Netscape</a> and saw a link to upload videos. It was interesting. Netscape now allows you to upload your own videos to the portal. Netscape <a href="http://http://tech.netscape.com/story/2006/09/13/netscape-video-launches/">had already started</a>  some syndicated video features back in 2006. </p>
<script type="text/javascript" src="http://design.netscape.com/embed/320/NBZMXLJHXZZGEEHMYDRO"></script>
<p>Recently, many memediggers, including Digg had added video memedigging functionalities to their sites. But netscape allows you to upload the entire video (max limit 150MB) to be uploaded.  Currently supported formarts are mpg, .mpeg, .mov, .avi, .mp4, .wmv *, or .m4v file. There is no limit on the number of videos you can upload. Just like YouTube, the format which the videos are displayed is flash. Netscape really want to build it&#8217;s own YouTube.</p>
<p>Till this moment I am not able find any open videos. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webforth.com/2007/04/netscape-enters-videosharing-arena/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Amazon blocks Statsaholic</title>
		<link>http://www.webforth.com/2007/03/amazon-blocks-statsaholic</link>
		<comments>http://www.webforth.com/2007/03/amazon-blocks-statsaholic#comments</comments>
		<pubDate>Fri, 23 Mar 2007 21:36:32 +0000</pubDate>
		<dc:creator>Arun</dc:creator>
		
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://www.webforth.com/2007/03/amazon-blocks-statsholic</guid>
		<description><![CDATA[  It is happening again - this time worse. Amazon/Alexa is trying to shut down Statsaholic (formerly Alexaholic) by blocking the Alexa graphs. Statsaholic is a multiple site traffic comparison service that became popular lately for Seth Godin&#8217;s web 2.0 picks. 
Statsholic responds in this way:

David vs. Goliath - On March 18, in response [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://statsaholic.com/"><img src="http://www.statsaholic.com/images/statsaholic-logo.jpg" alt="" /></a>  It is happening again - this time worse. Amazon/Alexa is trying to shut down <a href="http://statsaholic.com/">Statsaholic </a>(<a href="http://www.techcrunch.com/2007/03/19/amazon-forcing-name-change-at-alexaholic">formerly Alexaholic</a>) by blocking the Alexa graphs. Statsaholic is a multiple site traffic comparison service that became popular lately for <a href="http://www.statsaholic.com/sethgodin">Seth Godin&#8217;s web 2.0 picks</a>. </p>
<p>Statsholic responds in this way:</p>
<blockquote><p>
<strong>David vs. Goliath</strong> - On March 18, in response to legal action taken against me by Alexa over the use of their name in my domain alexaholic.com, I changed the name of this website to Statsaholic. Now, on March 23, Amazon/Alexa is still trying to shut this website down, this time by blocking their traffic graphs if you&#8217;re viewing them from this site (even though thousands of other websites, and Alexa&#8217;s own free widgets, serve their traffic graphs in exactly the same manner). I&#8217;m doing my best to keep the site up with some creative coding, but it&#8217;s not looking good for the little guy here. If you see a white box where the graph should be, that&#8217;s Alexa blocking us again. It appears that the decision makers at Amazon think mashups and creative use of their api is fine, unless you get successful with it.</p></blockquote>
<p>The last point seems very true. Statsholic had started the comprehensive trafic comparison features much before Alexa itself (using Alexa&#8217;s own data).  But it seems like Amazon&#8217;s API&#8217;s are not as open as they advertise it to be.</p>
<p>RIght now no clarification is available from Alexa / Amazon regarding this issue.</p>
<p><em><strong>Update:</strong> It seems like Statsaholic wants to switch to other traffic data providers. <a href="http://compete.com">Compete.com</a> and <a href="http://www.quantcast.com/">Quantcast.com</a> have already shown interest in providing their data.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webforth.com/2007/03/amazon-blocks-statsaholic/feed/</wfw:commentRss>
		</item>
		<item>
		<title>10 things your manager doesn&#8217;t want to hear</title>
		<link>http://www.webforth.com/2007/02/10-things-your-manager-doesnt-want-to-hear</link>
		<comments>http://www.webforth.com/2007/02/10-things-your-manager-doesnt-want-to-hear#comments</comments>
		<pubDate>Sat, 24 Feb 2007 10:22:52 +0000</pubDate>
		<dc:creator>Arun</dc:creator>
		
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.webforth.com/2007/02/10-things-your-manager-doesnt-want-to-hear</guid>
		<description><![CDATA[
digg_url =\'http://digg.com/programming/10_things_your_manager_doesn_t_want_to_hear_just_before_the_deadline\';


 Ten things your team manager doesn&#8217;t want to hear just before the deadline. 

 But it works on my machine.
 Done. Just testing is left.
 I am waiting for x to give me the code for integration.
 I think there is a bug in SVN (a.k.a &#8220;We messed up with checkout&#8221;)
 Next time [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">
digg_url =\'http://digg.com/programming/10_things_your_manager_doesn_t_want_to_hear_just_before_the_deadline\';
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
<p> Ten things your team manager doesn&#8217;t want to hear just before the deadline. </p>
<blockquote><ol>
<li> But it works on my machine.</li>
<li> Done. Just testing is left.</li>
<li> I am waiting for x to give me the code for integration.</li>
<li> I think there is a bug in SVN (a.k.a &#8220;We messed up with checkout&#8221;)</li>
<li> Next time we should promise deadlines more realistically.</li>
<li> UPS serviceman called up. It is raining outside his office.</li>
<li> Your father in law is sitting in the lounge. Shall I tell him you are not in the office?</li>
<li> Bug list has come: 7 showstoppers, 13 minor defects. </li>
<li> Our VP would love to have a minor documentation with this build. </li>
<li> Hi man. Hope everything is on track. </li>
</ol>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.webforth.com/2007/02/10-things-your-manager-doesnt-want-to-hear/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top programming jobs in 2006 - oDesk List</title>
		<link>http://www.webforth.com/2007/01/top-programming-jobs-in-2006-odesk-list</link>
		<comments>http://www.webforth.com/2007/01/top-programming-jobs-in-2006-odesk-list#comments</comments>
		<pubDate>Tue, 23 Jan 2007 07:49:30 +0000</pubDate>
		<dc:creator>Arun</dc:creator>
		
		<category><![CDATA[uncategorized]]></category>

		<guid isPermaLink="false">http://www.webforth.com/2007/01/top-programming-jobs-in-2006-odesk-list</guid>
		<description><![CDATA[Today I got an email from oDesk (Yes. I am getting it regularly) about their performance in the year 2006. They have served a total of 35000 manhours of work through around 8555 jobs posted. 


Skill Set
Job Openings
Average Expected Duration (hours)
Average Payout


PHP/MySQL

1632


187


$411



Flash/Macromedia

535


178


$174



ASP.NET+ADO

396


332


$488



PHP

387


151


$403



C#/.NET

338


483


$668



AJAX

299


340


$194



Graphics

283


176


$154



ASP

279


289


$608



HTML/DHTML/Javascript

251


263


$530



Interesting thing is that PHP/MySQL duo continues to excel in the job market with [...]]]></description>
			<content:encoded><![CDATA[<p>Today I got an email from oDesk (Yes. I am getting it regularly) about their performance in the year 2006. They have served a total of 35000 manhours of work through around 8555 jobs posted. </p>
<table width='100%' border='0' cellpadding='3' cellspacing="1" style="background:#d5d5d5">
<tr>
<th scope='col'>Skill Set</th>
<th scope='col'>Job Openings</th>
<th scope='col'>Average Expected Duration (hours)</th>
<th scope='col'>Average Payout</th>
</tr>
<tr>
<td>PHP/MySQL</td>
<td>
<p align='right'>1632</p>
</td>
<td>
<p align='right'>187</p>
</td>
<td>
<p align='right'>$411</p>
</td>
</tr>
<tr>
<td>Flash/Macromedia</td>
<td>
<p align="right">535</p>
</td>
<td>
<p align="right">178</p>
</td>
<td>
<p align="right">$174</p>
</td>
</tr>
<tr>
<td>ASP.NET+ADO</td>
<td>
<p align="right">396</p>
</td>
<td>
<p align="right">332</p>
</td>
<td>
<p align="right">$488</p>
</td>
</tr>
<tr>
<td>PHP</td>
<td>
<p align="right">387</p>
</td>
<td>
<p align="right">151</p>
</td>
<td>
<p align="right">$403</p>
</td>
</tr>
<tr>
<td>C#/.NET</td>
<td>
<p align="right">338</p>
</td>
<td>
<p align="right">483</p>
</td>
<td>
<p align="right">$668</p>
</td>
</tr>
<tr>
<td>AJAX</td>
<td>
<p align="right">299</p>
</td>
<td>
<p align="right">340</p>
</td>
<td>
<p align="right">$194</p>
</td>
</tr>
<tr>
<td>Graphics</td>
<td>
<p align="right">283</p>
</td>
<td>
<p align="right">176</p>
</td>
<td>
<p align="right">$154</p>
</td>
</tr>
<tr>
<td>ASP</td>
<td>
<p align="right">279</p>
</td>
<td>
<p align="right">289</p>
</td>
<td>
<p align="right">$608</p>
</td>
</tr>
<tr>
<td>HTML/DHTML/Javascript</td>
<td>
<p align="right">251</p>
</td>
<td>
<p align="right">263</p>
</td>
<td>
<p align="right">$530</p>
</td>
</tr>
</table>
<p>Interesting thing is that PHP/MySQL duo continues to excel in the job market with the largest number of projects posted.  But when it comes to payout, .Net with C\# gets an upper hand with ASP in the second (Never thought ASP is still alive?).  I love these kind of statistics. It gives a good direction to people where to go for his bread and butter. Of course, It will be interesting to watch what will happen this year.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webforth.com/2007/01/top-programming-jobs-in-2006-odesk-list/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gandhi video still available in YouTube</title>
		<link>http://www.webforth.com/2007/01/gandhi-viedo-still-available-in-youtube</link>
		<comments>http://www.webforth.com/2007/01/gandhi-viedo-still-available-in-youtube#comments</comments>
		<pubDate>Sun, 14 Jan 2007 08:27:30 +0000</pubDate>
		<dc:creator>Arun</dc:creator>
		
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.webforth.com/2007/01/gandhi-viedo-still-available-in-youtube</guid>
		<description><![CDATA[Even after indian newspapers reported that YouTube has taken down the disgraceful pole-dancing video portraying a Mahatma Gandhi look-alike, the video is still available in YouTube.




]]></description>
			<content:encoded><![CDATA[<p>Even after indian newspapers reported that YouTube has taken down the disgraceful pole-dancing video portraying a Mahatma Gandhi look-alike, the video is still available in YouTube.</p>
<object width="425" height="350">
<param name="movie" value="http://www.youtube.com/v/CE9_sBZHu1E"></param>
<param name="wmode" value="transparent"></param>
<p><embed src="http://www.youtube.com/v/CE9_sBZHu1E" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
]]></content:encoded>
			<wfw:commentRss>http://www.webforth.com/2007/01/gandhi-viedo-still-available-in-youtube/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
