<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Mehul's wordpress blog</title>
	<atom:link href="http://mehul.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mehul.wordpress.com</link>
	<description>Just another techie weblog</description>
	<lastBuildDate>Wed, 27 Oct 2010 22:04:48 +0000</lastBuildDate>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mehul.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Mehul's wordpress blog</title>
		<link>http://mehul.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mehul.wordpress.com/osd.xml" title="Mehul&#039;s wordpress blog" />
	<atom:link rel='hub' href='http://mehul.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Chromium Nightly Updater Script Change</title>
		<link>http://mehul.wordpress.com/2010/10/27/chromium-nightly-updater-script-change/</link>
		<comments>http://mehul.wordpress.com/2010/10/27/chromium-nightly-updater-script-change/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 22:04:48 +0000</pubDate>
		<dc:creator>mehul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mehul.wordpress.com/?p=50</guid>
		<description><![CDATA[I always test the latest chromium nightlies. You get the latest goodies and it is stable most of the time. On Mac, I use the really neat and simply applescript by Dominic Barnes. Recently, Chromium nightly locations changed. So, here is the updated script. --Developed by Dominic Barnes --Email: dom@dombarnes.com --http://dombarnes.com --Version 0.3 --find latest [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=50&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I always test the latest chromium nightlies. You get the latest goodies and it is stable most of the time. </p>
<p>On Mac, I use the really neat and simply applescript by Dominic Barnes. Recently, Chromium nightly locations changed. So, here is the updated script. </p>
<p><code><br />
--Developed by Dominic Barnes<br />
--Email: dom@dombarnes.com<br />
--http://dombarnes.com<br />
--Version 0.3</p>
<p>--find latest build number<br />
--set the_source to do shell script "curl http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/LATEST"</p>
<p>set the_source to do shell script "curl http://build.chromium.org/f/chromium/snapshots/chromium-rel-mac/LATEST"</p>
<p>--set local directory info<br />
set remFile to "chrome-mac.zip"<br />
set locDir to "~/"<br />
set locFile to "chrome-mac.zip"</p>
<p>--download latest build using build number in the_source<br />
--do shell script "curl http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/" &amp; the_source &amp; "/" &amp; remFile &amp; " -o " &amp; locDir &amp; locFile<br />
do shell script "curl http://build.chromium.org/f/chromium/snapshots/chromium-rel-mac/" &amp; the_source &amp; "/" &amp; remFile &amp; " -o " &amp; locDir &amp; locFile</p>
<p>--unpack and copy<br />
do shell script "unzip -o " &amp; locDir &amp; locFile &amp; " -d " &amp; locDir</p>
<p>--move existing Chromium and copy new<br />
try<br />
	do shell script "cp -pR /Applications/Chromium.app /Applications/Chromium.old.app"<br />
	do shell script "rm -R /Applications/Chromium.app"<br />
end try</p>
<p>do shell script "mkdir -p /Applications/Chromium.app"<br />
do shell script "mkdir -p /Applications/Chromium.app/Contents"<br />
do shell script "cp -pR " &amp; locDir &amp; "chrome-mac/Chromium.app/Contents /Applications/Chromium.app"</p>
<p>--Cleanup folders and files<br />
do shell script "rm -R " &amp; locDir &amp; "chrome*"<br />
try<br />
	do shell script "rm -R /Applications/Chromium.old.app"<br />
end try<br />
display dialog "Chromium build " &amp; the_source &amp; " has been installed"<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mehul.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mehul.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mehul.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mehul.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mehul.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mehul.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mehul.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mehul.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mehul.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mehul.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mehul.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mehul.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mehul.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mehul.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=50&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mehul.wordpress.com/2010/10/27/chromium-nightly-updater-script-change/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2bee32fe78a22d221ac0829ba0c56156?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mehul</media:title>
		</media:content>
	</item>
		<item>
		<title>Writers Almanac</title>
		<link>http://mehul.wordpress.com/2010/08/04/writers-almanac/</link>
		<comments>http://mehul.wordpress.com/2010/08/04/writers-almanac/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 21:19:28 +0000</pubDate>
		<dc:creator>mehul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mehul.wordpress.com/?p=45</guid>
		<description><![CDATA[Garrison Keillor&#8217;s Writer Almanac makes my morning. Today&#8217;s one talks about poor early risers, louis armstrong, scat singing, poet shelley, beatles. Here is a gem: When asked to define jazz, Pops said: &#8220;Man, if you have to ask what it is, you&#8217;ll never know.&#8221; http://writersalmanac.publicradio.org/index.php?date=2010/08/04<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=45&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Garrison Keillor&#8217;s Writer Almanac makes my morning. Today&#8217;s one talks about poor early risers, louis armstrong, scat singing, poet shelley, beatles. Here is a gem: When asked to define jazz, Pops said: &#8220;Man, if you have to ask what it is, you&#8217;ll never know.&#8221;</p>
<p><a href="http://writersalmanac.publicradio.org/index.php?date=2010/08/04">http://writersalmanac.publicradio.org/index.php?date=2010/08/04 </a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mehul.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mehul.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mehul.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mehul.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mehul.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mehul.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mehul.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mehul.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mehul.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mehul.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mehul.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mehul.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mehul.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mehul.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=45&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mehul.wordpress.com/2010/08/04/writers-almanac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2bee32fe78a22d221ac0829ba0c56156?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mehul</media:title>
		</media:content>
	</item>
		<item>
		<title>The Gervais Principle, Or The Office According to “The Office”</title>
		<link>http://mehul.wordpress.com/2009/10/15/the-gervais-principle-or-the-office-according-to-%e2%80%9cthe-office%e2%80%9d/</link>
		<comments>http://mehul.wordpress.com/2009/10/15/the-gervais-principle-or-the-office-according-to-%e2%80%9cthe-office%e2%80%9d/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 18:07:40 +0000</pubDate>
		<dc:creator>mehul</dc:creator>
				<category><![CDATA[Economy & Business]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[office]]></category>

		<guid isPermaLink="false">http://mehul.wordpress.com/?p=43</guid>
		<description><![CDATA[The Gervais Principle is this: Sociopaths, in their own best interests, knowingly promote over-performing losers into middle-management, groom under-performing losers into sociopaths, and leave the average bare-minimum-effort losers to fend for themselves. via The Gervais Principle, Or The Office According to “The Office”.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=43&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Gervais Principle is this:</p>
<p>Sociopaths, in their own best interests, knowingly promote over-performing losers into middle-management, groom under-performing losers into sociopaths, and leave the average bare-minimum-effort losers to fend for themselves.</p>
<p>via <a href='http://www.ribbonfarm.com/2009/10/07/the-gervais-principle-or-the-office-according-to-the-office/'>The Gervais Principle, Or The Office According to “The Office”</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mehul.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mehul.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mehul.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mehul.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mehul.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mehul.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mehul.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mehul.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mehul.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mehul.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mehul.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mehul.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mehul.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mehul.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=43&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mehul.wordpress.com/2009/10/15/the-gervais-principle-or-the-office-according-to-%e2%80%9cthe-office%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2bee32fe78a22d221ac0829ba0c56156?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mehul</media:title>
		</media:content>
	</item>
		<item>
		<title>No Sequitur</title>
		<link>http://mehul.wordpress.com/2008/12/15/no-sequitur/</link>
		<comments>http://mehul.wordpress.com/2008/12/15/no-sequitur/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 20:22:40 +0000</pubDate>
		<dc:creator>mehul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mehul.wordpress.com/2008/12/15/no-sequitur/</guid>
		<description><![CDATA[&#8220;Non sequitur is Latin for &#8220;it does not follow.&#8221; It is most often used to indicate something which does not follow logically, such as a stated conclusion that is not supported by the facts.&#8221;From Wikipedia<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=38&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8220;Non sequitur is Latin for &#8220;it does not follow.&#8221; It is most often used to indicate something which does not follow logically, such as a stated conclusion that is not supported by the facts.&#8221;<a href="http://en.wikipedia.org/wiki/Nonsequitur">From Wikipedia</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mehul.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mehul.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mehul.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mehul.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mehul.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mehul.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mehul.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mehul.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mehul.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mehul.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mehul.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mehul.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mehul.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mehul.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=38&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mehul.wordpress.com/2008/12/15/no-sequitur/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2bee32fe78a22d221ac0829ba0c56156?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mehul</media:title>
		</media:content>
	</item>
		<item>
		<title>links for 2008-05-09</title>
		<link>http://mehul.wordpress.com/2008/05/09/links-for-2008-05-09/</link>
		<comments>http://mehul.wordpress.com/2008/05/09/links-for-2008-05-09/#comments</comments>
		<pubDate>Fri, 09 May 2008 07:33:31 +0000</pubDate>
		<dc:creator>mehul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mehul.wordpress.com/2008/05/09/links-for-2008-05-09/</guid>
		<description><![CDATA[IPv6 Day &#8211; Windows Vista (tags: vista ipv6)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=33&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.ipv6day.org/action.php?n=En.Configuration-WindowsVista">IPv6 Day &#8211; Windows Vista</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/mehulk/vista">vista</a> <a href="http://del.icio.us/mehulk/ipv6">ipv6</a>)</div>
</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mehul.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mehul.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mehul.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mehul.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mehul.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mehul.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mehul.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mehul.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mehul.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mehul.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mehul.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mehul.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mehul.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mehul.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mehul.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mehul.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=33&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mehul.wordpress.com/2008/05/09/links-for-2008-05-09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2bee32fe78a22d221ac0829ba0c56156?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mehul</media:title>
		</media:content>
	</item>
		<item>
		<title>links for 2008-05-06</title>
		<link>http://mehul.wordpress.com/2008/05/06/links-for-2008-05-06/</link>
		<comments>http://mehul.wordpress.com/2008/05/06/links-for-2008-05-06/#comments</comments>
		<pubDate>Tue, 06 May 2008 07:38:02 +0000</pubDate>
		<dc:creator>mehul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mehul.wordpress.com/2008/05/06/links-for-2008-05-06/</guid>
		<description><![CDATA[Pixels Go Mad &#8211; The Celebration Of Pixel Art &#124; Monday Inspiration &#124; Smashing Magazine (tags: art pixel graphics)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=32&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.smashingmagazine.com/2008/05/05/pixels-go-mad-the-celebration-of-pixel-art/">Pixels Go Mad &#8211; The Celebration Of Pixel Art | Monday Inspiration | Smashing Magazine</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/mehulk/art">art</a> <a href="http://del.icio.us/mehulk/pixel">pixel</a> <a href="http://del.icio.us/mehulk/graphics">graphics</a>)</div>
</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mehul.wordpress.com/32/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mehul.wordpress.com/32/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mehul.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mehul.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mehul.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mehul.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mehul.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mehul.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mehul.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mehul.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mehul.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mehul.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mehul.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mehul.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mehul.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mehul.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=32&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mehul.wordpress.com/2008/05/06/links-for-2008-05-06/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2bee32fe78a22d221ac0829ba0c56156?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mehul</media:title>
		</media:content>
	</item>
		<item>
		<title>links for 2008-05-04</title>
		<link>http://mehul.wordpress.com/2008/05/04/links-for-2008-05-04/</link>
		<comments>http://mehul.wordpress.com/2008/05/04/links-for-2008-05-04/#comments</comments>
		<pubDate>Sun, 04 May 2008 07:33:01 +0000</pubDate>
		<dc:creator>mehul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mehul.wordpress.com/2008/05/04/links-for-2008-05-04/</guid>
		<description><![CDATA[pixar&#8217;s brad bird on innovation culture. all good to hear from the pros (tags: business creativity innovation leadership culture)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=31&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://gigaom.com/2008/04/17/pixars-brad-bird-on-fostering-innovation/">pixar&#8217;s brad bird on innovation culture.</a></div>
<div class="delicious-extended">all good to hear from the pros</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/mehulk/business">business</a> <a href="http://del.icio.us/mehulk/creativity">creativity</a> <a href="http://del.icio.us/mehulk/innovation">innovation</a> <a href="http://del.icio.us/mehulk/leadership">leadership</a> <a href="http://del.icio.us/mehulk/culture">culture</a>)</div>
</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mehul.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mehul.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mehul.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mehul.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mehul.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mehul.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mehul.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mehul.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mehul.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mehul.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mehul.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mehul.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mehul.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mehul.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mehul.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mehul.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=31&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mehul.wordpress.com/2008/05/04/links-for-2008-05-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2bee32fe78a22d221ac0829ba0c56156?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mehul</media:title>
		</media:content>
	</item>
		<item>
		<title>links for 2008-04-04</title>
		<link>http://mehul.wordpress.com/2008/04/04/links-for-2008-04-04/</link>
		<comments>http://mehul.wordpress.com/2008/04/04/links-for-2008-04-04/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 07:36:31 +0000</pubDate>
		<dc:creator>mehul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mehul.wordpress.com/2008/04/04/links-for-2008-04-04/</guid>
		<description><![CDATA[16 Things I Wish They Had Taught Me in School at Personal Development with The Positivity Blog good old tips rehashed &#8211; yet handy reminder (tags: productivity)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=30&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.positivityblog.com/index.php/2008/04/02/16-things-i-wish-they-had-taught-me-in-school/">16 Things I Wish They Had Taught Me in School at Personal Development with The Positivity Blog</a></div>
<div class="delicious-extended">good old tips rehashed &#8211; yet handy reminder</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/mehulk/productivity">productivity</a>)</div>
</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mehul.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mehul.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mehul.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mehul.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mehul.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mehul.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mehul.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mehul.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mehul.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mehul.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mehul.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mehul.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mehul.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mehul.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mehul.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mehul.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=30&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mehul.wordpress.com/2008/04/04/links-for-2008-04-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2bee32fe78a22d221ac0829ba0c56156?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mehul</media:title>
		</media:content>
	</item>
		<item>
		<title>links for 2008-03-17</title>
		<link>http://mehul.wordpress.com/2008/03/17/links-for-2008-03-17/</link>
		<comments>http://mehul.wordpress.com/2008/03/17/links-for-2008-03-17/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 07:24:00 +0000</pubDate>
		<dc:creator>mehul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mehul.wordpress.com/2008/03/17/links-for-2008-03-17/</guid>
		<description><![CDATA[A masterclass with the adventure capitalist jim rogers One, buy the renminbi. Two, buy commodities. Three, buy stocks that will grow despite the slowdown — such as water, power generation, agriculture and tourism. (tags: investing)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=29&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.spectator.co.uk/print/the-magazine/business/552581/a-masterclass-with-the-adventure-capitalist.thtml">A masterclass with the adventure capitalist jim rogers</a></div>
<div class="delicious-extended">One, buy the renminbi. Two, buy commodities. Three, buy stocks that will grow despite the slowdown — such as water, power generation, agriculture and tourism.</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/mehulk/investing">investing</a>)</div>
</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mehul.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mehul.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mehul.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mehul.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mehul.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mehul.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mehul.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mehul.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mehul.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mehul.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mehul.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mehul.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mehul.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mehul.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mehul.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mehul.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=29&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mehul.wordpress.com/2008/03/17/links-for-2008-03-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2bee32fe78a22d221ac0829ba0c56156?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mehul</media:title>
		</media:content>
	</item>
		<item>
		<title>links for 2008-03-16</title>
		<link>http://mehul.wordpress.com/2008/03/16/links-for-2008-03-16/</link>
		<comments>http://mehul.wordpress.com/2008/03/16/links-for-2008-03-16/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 07:27:47 +0000</pubDate>
		<dc:creator>mehul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mehul.wordpress.com/2008/03/16/links-for-2008-03-16/</guid>
		<description><![CDATA[Learn Cool Microsoft Excel Conditional Formatting Tricks &#8211; Be a Rock star (Tips &#124; How tos &#8211; Save time, impress everyone) &#124; Pointy Haired Dilbert &#8211; Chandoo.org (tags: excel howto business) GOOD 009 &#8211; Features &#8211; Buying Organic which big brand food company is behind that organic label (tags: food marketing business)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=28&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://chandoo.org/wp/2008/03/13/want-to-be-an-excel-conditional-formatting-rock-star-read-this/">Learn Cool Microsoft Excel Conditional Formatting Tricks &#8211; Be a Rock star (Tips | How tos &#8211; Save time, impress everyone) | Pointy Haired Dilbert &#8211; Chandoo.org</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/mehulk/excel">excel</a> <a href="http://del.icio.us/mehulk/howto">howto</a> <a href="http://del.icio.us/mehulk/business">business</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://awesome.goodmagazine.com/features/009/009buyingorganic.html">GOOD 009 &#8211; Features &#8211; Buying Organic</a></div>
<div class="delicious-extended">which big brand food company is behind that organic label</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/mehulk/food">food</a> <a href="http://del.icio.us/mehulk/marketing">marketing</a> <a href="http://del.icio.us/mehulk/business">business</a>)</div>
</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mehul.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mehul.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mehul.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mehul.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mehul.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mehul.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mehul.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mehul.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mehul.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mehul.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mehul.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mehul.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mehul.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mehul.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mehul.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mehul.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mehul.wordpress.com&amp;blog=7046&amp;post=28&amp;subd=mehul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mehul.wordpress.com/2008/03/16/links-for-2008-03-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2bee32fe78a22d221ac0829ba0c56156?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mehul</media:title>
		</media:content>
	</item>
	</channel>
</rss>
