<?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>Overwhelmingly Geek™</title>
	<atom:link href="http://blog.shaon.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.shaon.net</link>
	<description>Bits, bytes and signal noise from Shaon Diwakar</description>
	<lastBuildDate>Sun, 28 Feb 2010 11:15:10 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='blog.shaon.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/eebf611485ff1a4fe4f0ad4713b63cbd?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Overwhelmingly Geek™</title>
		<link>http://blog.shaon.net</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.shaon.net/osd.xml" title="Overwhelmingly Geek™" />
	<atom:link rel='hub' href='http://blog.shaon.net/?pushpress=hub'/>
		<item>
		<title>Easy nginx + django (fastcgi) setup</title>
		<link>http://blog.shaon.net/2010/02/28/easy-nginx-django-fastcgi-setup/</link>
		<comments>http://blog.shaon.net/2010/02/28/easy-nginx-django-fastcgi-setup/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 11:04:48 +0000</pubDate>
		<dc:creator>Shaon Diwakar</dc:creator>
				<category><![CDATA[me::speak]]></category>

		<guid isPermaLink="false">http://blog.shaon.net/?p=188</guid>
		<description><![CDATA[A quick and dirty on getting nginx and django running through fastcgi. This assumes that you&#8217;ve gotten nginx, django and flup installed and running (I&#8217;ll only cover the configuration of the virtual host that hosts the django site).
The best way to get things up and running (while still being able to test the setup) is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=188&subd=overwhelminglygeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>A quick and dirty on getting nginx and django running through fastcgi. This assumes that you&#8217;ve gotten nginx, django and flup installed and running (I&#8217;ll only cover the configuration of the virtual host that hosts the django site).</p>
<p>The best way to get things up and running (while still being able to test the setup) is to run the django fastcgi process in non-daemonized mode.</p>
<p><code>python manage.py runfcgi socket=/home/www/mysite.example.com/run/mysite.sock pidfile=/home/www/mysite/run/mysite.pid method=threaded daemonize=false</code></p>
<p>Now configure an nginx virtual-host in <code>/usr/local/nginx/conf/nginx.conf</code> (or your config) like so:<br />
<code></p>
<pre>
# This serves the development site mysite.example.com.
    server {
        listen  80;
        server_name mysite.example.com;
        access_log  /home/www/mysite.example.com/log/access.log;
        error_log   /home/www/mysite.example.com/log/error.log;

        location / { 

            # Specifying the location of all the fastcgi parameters that are required to-
            # allow nginx to talk to the django fastcgi process.
            fastcgi_pass    unix:/home/www/mysite.example.com/run/moviedb.sock;
            fastcgi_param PATH_INFO         $fastcgi_script_name;
            fastcgi_param REQUEST_METHOD    $request_method;
            fastcgi_param QUERY_STRING      $query_string;
            fastcgi_param CONTENT_TYPE      $content_type;
            fastcgi_param CONTENT_LENGTH    $content_length;
            fastcgi_param SERVER_PORT       $server_port;
            fastcgi_param SERVER_PROTOCOL   $server_protocol;
            fastcgi_param SERVER_NAME       $server_name;

            # Pass authorisation requests through to the application.
            fastcgi_pass_header Authorization;
            fastcgi_intercept_errors off;
        }
    }
</pre>
<p></code></p>
<p>And that&#8217;s it &#8211; bring nginx up (which ever way you do on your OS) and away you go!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/overwhelminglygeek.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/overwhelminglygeek.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/overwhelminglygeek.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/overwhelminglygeek.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/overwhelminglygeek.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/overwhelminglygeek.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/overwhelminglygeek.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/overwhelminglygeek.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/overwhelminglygeek.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/overwhelminglygeek.wordpress.com/188/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=188&subd=overwhelminglygeek&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.shaon.net/2010/02/28/easy-nginx-django-fastcgi-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ad5569b2480cc23ddc7dd9f2d9518532?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sHz</media:title>
		</media:content>
	</item>
		<item>
		<title>Time-limited DRM</title>
		<link>http://blog.shaon.net/2009/04/13/time-limited-drm/</link>
		<comments>http://blog.shaon.net/2009/04/13/time-limited-drm/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 07:30:48 +0000</pubDate>
		<dc:creator>Shaon Diwakar</dc:creator>
				<category><![CDATA[me::speak]]></category>
		<category><![CDATA[digital rights]]></category>
		<category><![CDATA[digital rights management]]></category>
		<category><![CDATA[DRM]]></category>
		<category><![CDATA[licensing]]></category>
		<category><![CDATA[television]]></category>
		<category><![CDATA[tv shows]]></category>

		<guid isPermaLink="false">http://blog.shaon.net/?p=184</guid>
		<description><![CDATA[Over the last few months, I&#8217;ve been thinking about a way to justify the whole DRM (digital rights management) mantra, when non-DRM vendors such as Amazon.com are doing a fantastic job with sales of music online.
From a TV content providers perspective, it may be that the main problem is providing content to viewers which can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=184&subd=overwhelminglygeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Over the last few months, I&#8217;ve been thinking about a way to justify the whole DRM (digital rights management) mantra, when non-DRM vendors such as Amazon.com are doing a fantastic job with sales of music online.</p>
<p>From a TV content providers perspective, it may be that the main problem is providing content to viewers which can generate revenue. Now often TV shows are screened on cable or free to air TV stations at roughly the same time worldwide. My proposal is that television shows are DRM&#8217;d for a certain period of time i.e. 3 &#8211; 6 months after which the DRM restrictions are lifted and the content can be encoded for viewing on other hardware devices.</p>
<p>What do you think?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/overwhelminglygeek.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/overwhelminglygeek.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/overwhelminglygeek.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/overwhelminglygeek.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/overwhelminglygeek.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/overwhelminglygeek.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/overwhelminglygeek.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/overwhelminglygeek.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/overwhelminglygeek.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/overwhelminglygeek.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=184&subd=overwhelminglygeek&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.shaon.net/2009/04/13/time-limited-drm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ad5569b2480cc23ddc7dd9f2d9518532?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sHz</media:title>
		</media:content>
	</item>
		<item>
		<title>Sun Virtualbox + Ubuntu/Debian</title>
		<link>http://blog.shaon.net/2008/12/20/sun-virtualbox-ubuntudebian/</link>
		<comments>http://blog.shaon.net/2008/12/20/sun-virtualbox-ubuntudebian/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 00:35:46 +0000</pubDate>
		<dc:creator>Shaon Diwakar</dc:creator>
				<category><![CDATA['puter geex stuff]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[system administration]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.shaon.net/?p=177</guid>
		<description><![CDATA[I ran into some peculiar problems with Ubuntu Server 8.10 running under Virtualbox. First after installing Ubuntu Server 8.10 (Intrepid) the kernel failed to boot. It turns out that this was due to the fact that PAE/NX (Physical Address Extensions on the Host) are not enabled by default in the VM. To enable this you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=177&subd=overwhelminglygeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I ran into some peculiar problems with Ubuntu Server 8.10 running under Virtualbox. First after installing Ubuntu Server 8.10 (Intrepid) the kernel failed to boot. It turns out that this was due to the fact that <strong>PAE/NX</strong> (Physical Address Extensions on the Host) are not enabled by default in the VM. To enable this you need edit the settings of your VM: Settings &gt; General &gt; Advanced &gt; Extended features &gt; PAE/NX.</p>
<p>Secondly, even after installation and boot woes are sorted out &#8211; networking for whatever reason is busted. It took me forever to figure out why &#8211; first I installed Debian, then Ubuntu to no avail &#8211; APT would fail to resolve the mirrors even though I could ping (ICMP) the servers. I thought it could have been due to the firewall rules on the host machine, but these wheren&#8217;t the problem! It turned out that the fix was to change the network adapter from PCNET-FASTIII to <strong>Intel PRO/1000 T Server</strong>. After that, I had no trouble with DNS resolution and traffic issues. I&#8217;m lazy so I haven&#8217;t bothered to check what the underlying problem might have been &#8211; but hopefully this helps someone else out there!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/overwhelminglygeek.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/overwhelminglygeek.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/overwhelminglygeek.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/overwhelminglygeek.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/overwhelminglygeek.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/overwhelminglygeek.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/overwhelminglygeek.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/overwhelminglygeek.wordpress.com/177/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/overwhelminglygeek.wordpress.com/177/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/overwhelminglygeek.wordpress.com/177/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=177&subd=overwhelminglygeek&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.shaon.net/2008/12/20/sun-virtualbox-ubuntudebian/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ad5569b2480cc23ddc7dd9f2d9518532?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sHz</media:title>
		</media:content>
	</item>
		<item>
		<title>Terminal.app &#8211; Command Line Kung-Fu on MacOSX</title>
		<link>http://blog.shaon.net/2008/12/15/terminalapp-command-line-kung-fu-on-macosx/</link>
		<comments>http://blog.shaon.net/2008/12/15/terminalapp-command-line-kung-fu-on-macosx/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 08:32:42 +0000</pubDate>
		<dc:creator>Shaon Diwakar</dc:creator>
				<category><![CDATA['puter geex stuff]]></category>
		<category><![CDATA[alias]]></category>
		<category><![CDATA[alias command]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[shell scripting]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[terminal.app]]></category>

		<guid isPermaLink="false">http://blog.shaon.net/?p=162</guid>
		<description><![CDATA[Learn three dead simple ways to spruce up your time in Terminal.app!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=162&subd=overwhelminglygeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Since, I&#8217;ve been at home coding most of the day away, I&#8217;ve been bring across some old tricks I learnt while I was in GNU/Linux land during my university days to increase my daily productivity.</p>
<p><strong>Tip #1: Terminal.app 101</strong><br />
Getting to know Terminal.app not only increases your karma points a hundred fold, but can provide some marked gains in productivity. First things first, locate the application and run: <code>/Applications/Utilities/Terminal.app</code>.</p>
<p>Once you&#8217;ve got the Terminal running, we&#8217;re going to pimp out our colour-scheme to give our Terminal that awesome Matrix uber-hacker look!</p>
<p>With <code>Terminal.app</code> open navigate to the settings window, select Terminal &gt; Preferences &gt; Settings. Here you can pick from a number of built-in themes &#8211; so pick a style that fits you (I&#8217;ve always found the &#8216;Pro&#8217; theme the easiest to read and I love the retro green-screen look).</p>
<p>Next, you want to make sure that you&#8217;ve enabled &#8220;Antialias text&#8221; to help make the font legible under all conditions. If you prefer not to enable this feature, you may want to uncheck the &#8220;Use bright colors for bold text&#8221; option, since you may find some text difficult to read.</p>
<div class="wp-caption aligncenter" style="width: 510px"><a href="http://flickr.com/photos/shaondiwakar/"><img title="Setting the Terminals colour scheme and font settings." src="http://farm4.static.flickr.com/3064/3110228290_9699390761.jpg" alt="Setting the Terminals colour scheme and font settings." width="500" height="386" /></a><p class="wp-caption-text">Setting the Terminal&#39;s colour scheme and font settings.</p></div>
<p>Now if the plain black terminal background doesn&#8217;t cut it for you, try setting the background&#8217;s transparency in the Window tab to 90% (this allows you to keep reading the Terminal while the background windows are not terribly annoying).</p>
<div class="wp-caption aligncenter" style="width: 510px"><a href="http://flickr.com/photos/shaondiwakar/"><img title="Setting the Terminals background transparency." src="http://farm4.static.flickr.com/3235/3110228470_efc10b0d56.jpg" alt="Setting the Terminals background transparency." width="500" height="389" /></a><p class="wp-caption-text">Setting the Terminal&#39;s background transparency.</p></div>
<p><strong>NB</strong>: If you SSH frequently into boxes running GNU/Linux or Solaris via the Terminal, you&#8217;ll want to ensure that the DELETE key sends the CTRL+H keyboard sequence. To do this, simply check the option in Terminal &gt; Preferences &gt; Settings &gt; Advanced &gt; &#8220;Delete sends CTRL+H&#8221;. While you are in this tab, if you don&#8217;t like the Terminal beeping at your mistakes, simply uncheck the &#8220;Audible Bell&#8221; option &#8211; I recommend leaving the &#8220;Visible Bell&#8221; option enabled so that you know when you&#8217;ve made a mistake.</p>
<p>If you like your Terminal.app to be a certain fixed size every time its opened instead of the default size &#8211; create a window group. To do this, simply open up any number of windows and terminal tabs (just like in Safari!) and select Window &gt; &#8220;Save Windows as Group&#8230;&#8221; &#8211; give the group a name and ensure you&#8217;ve ticked the box &#8220;Use group when Terminal starts&#8221;.</p>
<p><strong>Tip #2: Nice directory listings</strong></p>
<p>One of the most frequently performed tasks in any shell is to list all files within a directory &#8211; the problem is that the <code>ls</code> command&#8217;s output is not very pretty at first sight. We&#8217;re going to fix this&#8230;</p>
<p>In a shell enter the following command:<br />
<code>pico ~/.bash_profile</code> &#8211; This creates a new file in your home directory which will store our shell&#8217;s extra properties.</p>
<p>Now in the editor window, enter the following strings:</p>
<pre>export LSCOLORS=Exfxcxdxahegedabagacad
export CLICOLOR=1</pre>
<p>What we&#8217;ve done above, is enabled colour highlighting for the <code>ls</code> shell command. If you don&#8217;t like my colour scheme feel free to explore the various colour combinations by viewing the appropriate man page (i.e. <code>man ls</code>).</p>
<p><strong>Tip #3: Alias this!</strong></p>
<p>The UNIX <code>alias</code> command is invaluable in creating quick shortcuts for frequently used commands like <code>ls</code>. I&#8217;m lazy and prefer to type a shortcut to list all the files in my current directory, rather than having to type: <code>ls -lhF</code> &#8211; so to make my life easier, I&#8217;m going to use the <code>alias</code> shortcut to assign a shorter keystroke for the same directory listing command.</p>
<p>In the same <code>~/.bash_profile</code> file that we edited previously, add the following line:</p>
<pre>alias ll='ls -lhF'</pre>
<p>This will give you a nice coloured listing of the files, folders and applications in your current working directory. Feel free to experiment and if you have any trouble &#8211; don&#8217;t hesitate to leave me a comment <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/overwhelminglygeek.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/overwhelminglygeek.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/overwhelminglygeek.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/overwhelminglygeek.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/overwhelminglygeek.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/overwhelminglygeek.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/overwhelminglygeek.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/overwhelminglygeek.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/overwhelminglygeek.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/overwhelminglygeek.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=162&subd=overwhelminglygeek&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.shaon.net/2008/12/15/terminalapp-command-line-kung-fu-on-macosx/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ad5569b2480cc23ddc7dd9f2d9518532?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sHz</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3064/3110228290_9699390761.jpg" medium="image">
			<media:title type="html">Setting the Terminals colour scheme and font settings.</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3235/3110228470_efc10b0d56.jpg" medium="image">
			<media:title type="html">Setting the Terminals background transparency.</media:title>
		</media:content>
	</item>
		<item>
		<title>Google AppEngine &#8211; Fuuqof</title>
		<link>http://blog.shaon.net/2008/11/10/google-appengine-fuuqof/</link>
		<comments>http://blog.shaon.net/2008/11/10/google-appengine-fuuqof/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 02:31:01 +0000</pubDate>
		<dc:creator>Shaon Diwakar</dc:creator>
				<category><![CDATA['puter geex stuff]]></category>
		<category><![CDATA[blood, sweat and those damn flies]]></category>
		<category><![CDATA[me::speak]]></category>
		<category><![CDATA[appengine]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[fuuqof]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google apps]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[yaml]]></category>

		<guid isPermaLink="false">http://overwhelminglygeek.wordpress.com/?p=157</guid>
		<description><![CDATA[I thought I&#8217;d post about my first foray into the whole cloud &#8216;computing&#8217;. I kicked off with a simple demo app I wrote for the Google AppEngine called &#8216;Fuuqof&#8216;. Its basically just a guest book type app where you can enter an anonymous message with some swear words being translated into more digestible colloquialisms  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=157&subd=overwhelminglygeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I thought I&#8217;d post about my first foray into the whole cloud &#8216;computing&#8217;. I kicked off with a simple demo app I wrote for the <a href="http://code.google.com/appengine/">Google AppEngine</a> called &#8216;<a title="Oi, Fuuqof!" href="http://fuuqof.appspot.com">Fuuqof</a>&#8216;. Its basically just a guest book type app where you can enter an anonymous message with some swear words being translated into more digestible colloquialisms <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>The whole process was really straight forward, the development turn around for such a simple app is of course ridiculously low, but what was great was the fact that there wasn&#8217;t too much &#8216;mind-bending&#8217;. In other words, you develop as though you would with <a href="http://www.djangoproject.com">django</a>, with some minor changes to your data models and the URL mapping (which is done by AppEngine using a Yaml file).</p>
<p>You can check out the 5 minute intro on YouTube to get a feel for how straightforward the whole process is:</p>
<p><span style="text-align:center; display: block;"><a href="http://blog.shaon.net/2008/11/10/google-appengine-fuuqof/"><img src="http://img.youtube.com/vi/bfgO-LXGpTM/2.jpg" alt="" /></a></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/overwhelminglygeek.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/overwhelminglygeek.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/overwhelminglygeek.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/overwhelminglygeek.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/overwhelminglygeek.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/overwhelminglygeek.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/overwhelminglygeek.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/overwhelminglygeek.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/overwhelminglygeek.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/overwhelminglygeek.wordpress.com/157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=157&subd=overwhelminglygeek&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.shaon.net/2008/11/10/google-appengine-fuuqof/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ad5569b2480cc23ddc7dd9f2d9518532?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sHz</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/bfgO-LXGpTM/2.jpg" medium="image" />
	</item>
		<item>
		<title>No Drugs and Nuclear Weapons Allowed!</title>
		<link>http://blog.shaon.net/2008/10/30/no-drugs-and-nuclear-weapons-allowed/</link>
		<comments>http://blog.shaon.net/2008/10/30/no-drugs-and-nuclear-weapons-allowed/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 23:38:31 +0000</pubDate>
		<dc:creator>Shaon Diwakar</dc:creator>
				<category><![CDATA[me::speak]]></category>

		<guid isPermaLink="false">http://blog.shaon.net/2008/10/30/no-drugs-and-nuclear-weapons-allowed/</guid>
		<description><![CDATA[
PC050110, Originally uploaded by cityhunter2196.

This awesome picture of Hard Rock Cafe in China, is from a good friend of mine Yi Wang.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=154&subd=overwhelminglygeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div style="float:right;margin-left:10px;margin-bottom:10px;"><a title="photo sharing" href="http://www.flickr.com/photos/cityhunter2196/446120619/"><img style="border:solid 2px #333;" src="http://farm1.static.flickr.com/230/446120619_d10fff9ccf_m.jpg" alt="" /></a><br />
<span style="font-size:.9em;margin-top:0;"><a href="http://www.flickr.com/photos/cityhunter2196/446120619/">PC050110</a>, Originally uploaded by <a href="http://www.flickr.com/people/cityhunter2196/">cityhunter2196</a>.<br />
</span></div>
<p>This awesome picture of Hard Rock Cafe in China, is from a good friend of mine Yi Wang.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/overwhelminglygeek.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/overwhelminglygeek.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/overwhelminglygeek.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/overwhelminglygeek.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/overwhelminglygeek.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/overwhelminglygeek.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/overwhelminglygeek.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/overwhelminglygeek.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/overwhelminglygeek.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/overwhelminglygeek.wordpress.com/154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=154&subd=overwhelminglygeek&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.shaon.net/2008/10/30/no-drugs-and-nuclear-weapons-allowed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ad5569b2480cc23ddc7dd9f2d9518532?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sHz</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/230/446120619_d10fff9ccf_m.jpg" medium="image" />
	</item>
		<item>
		<title>Blog Action Day (Oct 15th)</title>
		<link>http://blog.shaon.net/2008/10/15/blog-action-day-oct-15th/</link>
		<comments>http://blog.shaon.net/2008/10/15/blog-action-day-oct-15th/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 07:30:59 +0000</pubDate>
		<dc:creator>Shaon Diwakar</dc:creator>
				<category><![CDATA[blood, sweat and those damn flies]]></category>
		<category><![CDATA[blog action day]]></category>
		<category><![CDATA[blogactionday]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[causes]]></category>
		<category><![CDATA[democracy]]></category>
		<category><![CDATA[poverty]]></category>
		<category><![CDATA[un]]></category>
		<category><![CDATA[unicef]]></category>
		<category><![CDATA[world action]]></category>

		<guid isPermaLink="false">http://overwhelminglygeek.wordpress.com/?p=141</guid>
		<description><![CDATA[Today is blog action day, I&#8217;d try explaining the concept behind this, but the web site does a far better job!

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=141&subd=overwhelminglygeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Today is blog action day, I&#8217;d try explaining the concept behind this, but the <a title="Blog Action Day" href="http://www.blogactionday.org/">web site</a> does a far better job!</p>
<p><a href="http://blogactionday.org"><img src="http://blogactionday.org/img/585b301f499cc3ce56b675bd61f5f6f57e6f9058.jpg" border="0" alt="" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/overwhelminglygeek.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/overwhelminglygeek.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/overwhelminglygeek.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/overwhelminglygeek.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/overwhelminglygeek.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/overwhelminglygeek.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/overwhelminglygeek.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/overwhelminglygeek.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/overwhelminglygeek.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/overwhelminglygeek.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=141&subd=overwhelminglygeek&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.shaon.net/2008/10/15/blog-action-day-oct-15th/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ad5569b2480cc23ddc7dd9f2d9518532?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sHz</media:title>
		</media:content>

		<media:content url="http://blogactionday.org/img/585b301f499cc3ce56b675bd61f5f6f57e6f9058.jpg" medium="image" />
	</item>
		<item>
		<title>Cya Yahoo!</title>
		<link>http://blog.shaon.net/2008/09/28/cya-yahoo/</link>
		<comments>http://blog.shaon.net/2008/09/28/cya-yahoo/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 07:42:43 +0000</pubDate>
		<dc:creator>Shaon Diwakar</dc:creator>
				<category><![CDATA['puter geex stuff]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google apps]]></category>
		<category><![CDATA[yahoo]]></category>
		<category><![CDATA[yahoo business email]]></category>

		<guid isPermaLink="false">http://overwhelminglygeek.wordpress.com/?p=130</guid>
		<description><![CDATA[Following on from my previous post dishing Yahoo Inc. for crap customer service, I put my money where my mouth is and migrated to Google Apps ($US50 / person = cheap), so far so good!
After longing for product improvements at Yahoo; I decided that I&#8217;d not wait around any more &#8211; and finally ditched &#8216;em. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=130&subd=overwhelminglygeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Following on from my previous post dishing Yahoo Inc. for crap customer service, I put my money where my mouth is and migrated to Google Apps ($US50 / person = cheap), so far so good!</p>
<p>After longing for product improvements at Yahoo; I decided that I&#8217;d not wait around any more &#8211; and finally ditched &#8216;em. I don&#8217;t complain much (not that you could tell from this blog) but my experience with Yahoo over the last few years have been bittersweet.</p>
<p>So &#8211; cya Yahoo!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/overwhelminglygeek.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/overwhelminglygeek.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/overwhelminglygeek.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/overwhelminglygeek.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/overwhelminglygeek.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/overwhelminglygeek.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/overwhelminglygeek.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/overwhelminglygeek.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/overwhelminglygeek.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/overwhelminglygeek.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=130&subd=overwhelminglygeek&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.shaon.net/2008/09/28/cya-yahoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ad5569b2480cc23ddc7dd9f2d9518532?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sHz</media:title>
		</media:content>
	</item>
		<item>
		<title>Only communists don&#8217;t vote!</title>
		<link>http://blog.shaon.net/2008/09/15/only-communists-dont-vote/</link>
		<comments>http://blog.shaon.net/2008/09/15/only-communists-dont-vote/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 06:39:05 +0000</pubDate>
		<dc:creator>Shaon Diwakar</dc:creator>
				<category><![CDATA[me::speak]]></category>
		<category><![CDATA[capitalism]]></category>
		<category><![CDATA[communism]]></category>
		<category><![CDATA[communist]]></category>
		<category><![CDATA[democracy]]></category>
		<category><![CDATA[elections]]></category>
		<category><![CDATA[marxism]]></category>
		<category><![CDATA[micheal moore]]></category>
		<category><![CDATA[nationalism]]></category>
		<category><![CDATA[slacker nation]]></category>
		<category><![CDATA[voting]]></category>

		<guid isPermaLink="false">http://overwhelminglygeek.wordpress.com/?p=118</guid>
		<description><![CDATA[
In a funny twist of conversations over the weekend  &#8211; while discussing Micheal Moore&#8217;s latest movie &#8220;Slacker Uprising&#8221; (and our local government elections) &#8211; I realised that it was only in communist countries, or dictatorships where people don&#8217;t always have the right to vote (I do realise that this is a slight generalisation, but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=118&subd=overwhelminglygeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/shaondiwakar/2776238449/"><img class="alignright" title="Vietnamese Flag" src="http://farm4.static.flickr.com/3219/2776238449_b3a00e9c79_m.jpg" alt="" width="240" height="175" /></a></p>
<p>In a funny twist of conversations over the weekend  &#8211; while discussing <a href="http://en.wikipedia.org/wiki/Michael_Moore">Micheal Moore&#8217;s</a> latest movie &#8220;<a href="http://slackeruprising.com/">Slacker Uprising</a>&#8221; (and our local government elections) &#8211; I realised that it was only in communist countries, or dictatorships where people don&#8217;t always have the right to vote (I do realise that this is a slight generalisation, but heh &#8211; sue me).</p>
<p>In essence&#8230; <strong>if you don&#8217;t vote you&#8217;re a communist</strong>! How&#8217;s that for a poster?</p>
<p>Personally, I cherish my right to vote and can&#8217;t understand why people kick up a fuss that they have to vote (it takes a few minutes of one day every few years &#8211; get over it folks &#8211; and get out there to vote!).</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/overwhelminglygeek.wordpress.com/118/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/overwhelminglygeek.wordpress.com/118/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/overwhelminglygeek.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/overwhelminglygeek.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/overwhelminglygeek.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/overwhelminglygeek.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/overwhelminglygeek.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/overwhelminglygeek.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/overwhelminglygeek.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/overwhelminglygeek.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/overwhelminglygeek.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/overwhelminglygeek.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=118&subd=overwhelminglygeek&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.shaon.net/2008/09/15/only-communists-dont-vote/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ad5569b2480cc23ddc7dd9f2d9518532?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sHz</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3219/2776238449_b3a00e9c79_m.jpg" medium="image">
			<media:title type="html">Vietnamese Flag</media:title>
		</media:content>
	</item>
		<item>
		<title>Yahoo! &#8211; who? Predicting the death of a giant.</title>
		<link>http://blog.shaon.net/2008/09/08/yahoo-who-the-death-of-a-giant/</link>
		<comments>http://blog.shaon.net/2008/09/08/yahoo-who-the-death-of-a-giant/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 11:23:13 +0000</pubDate>
		<dc:creator>Shaon Diwakar</dc:creator>
				<category><![CDATA[me::speak]]></category>
		<category><![CDATA[business hosting]]></category>
		<category><![CDATA[customer service]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google apps]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[yahoo]]></category>
		<category><![CDATA[yahoo business email]]></category>
		<category><![CDATA[zimbra]]></category>

		<guid isPermaLink="false">http://overwhelminglygeek.wordpress.com/?p=102</guid>
		<description><![CDATA[I&#8217;ve been a very loyal Yahoo! fan from way back since 1999. I host a number of my essential business applications with Yahoo (DNS/MX records for this domain) and also have all my photos on the excellent Flickr web site; that aside from my daily usage of numerous other Yahoo services: Mail, Calendar, Pipes, My [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=102&subd=overwhelminglygeek&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a very loyal <a href="http://www.yahoo.com">Yahoo!</a> fan from way back since 1999. I host a number of my essential business applications with Yahoo (DNS/MX records for this domain) and also have all my photos on the excellent <a href="http://www.flickr.com/photos/shaondiwakar/">Flickr</a> web site; that aside from my daily usage of numerous other Yahoo services: Mail, Calendar, Pipes, My Yahoo, Buzz, Music, Video and others. What used to be a fantastic company with excellent customer service, has gone from being an innovator to the big bad dinosaur of the Internet. Surprisingly, <a href="http://www.microsoft.com">Microsoft</a> offered to purchase the company for a lot of cash, but they held out &#8211; I suspect Microsoft is better off (they seem to have numerous innovative applications coming out recently).</p>
<p>Over the last year, my frustrations with Yahoo&#8217;s ageing services have mounted. I&#8217;ve been hosting business email with Y! for almost 3 years &#8211; over which period the mail application has received one trivial update (still more needs to be done); however face-lifting one piece of software isn&#8217;t enough in the current Internet age &#8211; where fast moving competitors such as <a href="http://www.google.com">Google</a> are releasing products that iterate/evolve a lot faster that most of its competitors.</p>
<p>While mail received a facelift, the ancillary services, for example &#8211; calendaring and the account management control panel all look like they&#8217;re from the 90&#8217;s.</p>
<p>Additionally, the email application lacks proper POP3 support (when I say proper &#8211; I mean the ability for Yahoo to store email sent via POP3 in the &#8216;Sent&#8217; mail folder) and no IMAP support, making Yahoo&#8217;s Business email less and less useful compared to <a href="http://www.google.com/apps">Google&#8217;s offerings</a>. A migration for all business email customers was due in August 2008 (I&#8217;m still waiting &#8211; if the system is truly exceptional, I will consider staying&#8230; otherwise I&#8217;m switching to Google Apps as soon as my Y! contract is over).</p>
<p>The final nail in the coffin is their absolutely shit customer service &#8211; here&#8217;s the usual process:</p>
<ol>
<li>You have problem with X</li>
<li>You contact customer support</li>
<li>You get an automated email response saying that your problem will be dealt with within 24 hours</li>
<li>24 hours later, you receive ANOTHER email saying that your query was received, and that it will be dealt with in 24 hours</li>
<li>4 &#8211; 5 days later, when you&#8217;ve figured out workarounds for all the problems, you receive an unhelpful response from Yahoo customer support</li>
<li>You respond requesting further clarification</li>
<li>Receive second response saying that it will not be possible to help due to limitations/insert/other/excuse within the current system</li>
<li>??? Limitations WTF ???</li>
</ol>
<p>If Yahoo! doesn&#8217;t up its game soon, it&#8217;ll be the death of what was once a great company. This would be a real shame, especially considering how much I used to admire this company &amp; love the brand (and still do&#8230; somewhat).</p>
<p><strong>Update: The <a href="http://www.zimbra.com">Yahoo Zimbra</a> desktop looks like it could save Yahoo! Business email from being chucked into the digital dust-bin, although this will depend on their integration efforts.</strong></p>
<p><strong>Update No. 2: Heard back from customer support noting that my issues could not be solved and to call and discuss the problem with customer support in the US (yeah right!). </strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/overwhelminglygeek.wordpress.com/102/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/overwhelminglygeek.wordpress.com/102/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/overwhelminglygeek.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/overwhelminglygeek.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/overwhelminglygeek.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/overwhelminglygeek.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/overwhelminglygeek.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/overwhelminglygeek.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/overwhelminglygeek.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/overwhelminglygeek.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/overwhelminglygeek.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/overwhelminglygeek.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.shaon.net&blog=3951581&post=102&subd=overwhelminglygeek&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.shaon.net/2008/09/08/yahoo-who-the-death-of-a-giant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ad5569b2480cc23ddc7dd9f2d9518532?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sHz</media:title>
		</media:content>
	</item>
	</channel>
</rss>