<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Floating Sun &#187; google</title>
	<atom:link href="http://floatingsun.net/tag/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://floatingsun.net</link>
	<description></description>
	<lastBuildDate>Wed, 25 Jan 2012 07:47:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>gooLego: Google&#8217;s software building blocks</title>
		<link>http://floatingsun.net/2009/12/24/goolego-googles-software-building-blocks/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=goolego-googles-software-building-blocks</link>
		<comments>http://floatingsun.net/2009/12/24/goolego-googles-software-building-blocks/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 05:00:31 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Open source]]></category>

		<guid isPermaLink="false">http://floatingsun.net/?p=1161</guid>
		<description><![CDATA[Image via Wikipedia Over the past few years, Google has open sourced several projects that provide some commonly used building blocks in any large software project. Some of them I was aware of since when they were launched (like protobufs), &#8230; <a href="http://floatingsun.net/2009/12/24/goolego-googles-software-building-blocks/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://floatingsun.net/2006/07/17/india-blocks-blogs/' rel='bookmark' title='India blocks blogs?'>India blocks blogs?</a></li>
<li><a href='http://floatingsun.net/2006/01/22/best-web-20-software-of-2005/' rel='bookmark' title='Best Web 2.0 Software of 2005'>Best Web 2.0 Software of 2005</a></li>
<li><a href='http://floatingsun.net/2011/03/27/the-silent-victories-of-open-source/' rel='bookmark' title='The silent victories of open source'>The silent victories of open source</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignleft" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://en.wikipedia.org/wiki/Image:Google.png"><img title="Google Inc." src="http://upload.wikimedia.org/wikipedia/en/thumb/5/51/Google.png/300px-Google.png" alt="Google Inc." width="300" height="109" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://en.wikipedia.org/wiki/Image:Google.png">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>Over the past few years, <a class="zem_slink freebase/en/google" title="Google" rel="homepage" href="http://google.com">Google</a> has open sourced several projects that provide some commonly used building blocks in any large software project. Some of them I was aware of since when they were launched (like protobufs), while others I discovered only recently. I couldn&#8217;t find any location where all the projects were listed together and combing through Google Code looking for them was painful, so I&#8217;m putting together a list myself. Hope some of you find it useful.</p>
<ul>
<li><a href="http://code.google.com/p/protobuf/">protobufs</a>: Platform agnostic messages. Critical for any distributed system. Note that protobufs only provide message serialization/deserialization (for various languages). An important missing piece is an <a class="zem_slink freebase/en/remote_procedure_call" title="Remote procedure call" rel="wikipedia" href="http://en.wikipedia.org/wiki/Remote_procedure_call">RPC</a> framework built on top of them. There are several projects attempting to build one using protobufs, but none of them are robust or mature enough for production use.</li>
<li><a href="http://code.google.com/p/google-styleguide/">style guide</a>: The importance of a style guide is probably understated. It is not about what is the &#8220;right&#8221; style &#8212; it is about consistency. While people may have different opinions, if everyone follows the same style, the code becomes much more readable and maintainable. Google maintains style guides for C++ and <a class="zem_slink freebase/guid/9202a8c04000641f800000000002f83f" title="Python (programming language)" rel="homepage" href="http://www.python.org/">Python</a>.</li>
<li><a href="http://code.google.com/p/google-gflags/">config flags</a>: Another important building block for all command line programs.</li>
<li><a href="http://code.google.com/p/google-glog/">logging</a>: Self-evident. Google&#8217;s logging library supports various log levels and other useful macros.</li>
<li><a href="http://code.google.com/p/google-coredumper/">core dumper</a>: A very nifty library &#8212; it allows you to dump core from within a running application. Extremely useful for debugging production systems.</li>
<li><a href="http://code.google.com/p/google-perftools/">perftools</a>: An extremely useful library for measuring and monitoring performance of programs. By simply linking against perftools, your application gets a much better malloc, heap checking, visual CPU profile of various routines (via graphviz), visualization of memory usage etc.</li>
<li><a href="http://code.google.com/p/googlemock/">googlemock</a>: A framework to quickly build mock objects &#8212; useful for testing.</li>
<li><a href="http://code.google.com/p/googletest/">googletest</a>: Google&#8217;s C++ unit testing framework, built on top of xUnit. Integrates well with googlemock.</li>
</ul>
<p>Of course, this is not an exhaustive list. There are numerous other open source projects from Google, some of them probably much more bigger and visible than the ones listed above &#8212; such as Wave, Go, GWT etc. If there&#8217;s a project that is a software building block that I missed out, do chime in the comments below.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_a.png?x-id=ba9f4934-b701-41c3-8cfe-b9f147d507ee" alt="Enhanced by Zemanta" /></a><span class="zem-script more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p>Related posts:<ol>
<li><a href='http://floatingsun.net/2006/07/17/india-blocks-blogs/' rel='bookmark' title='India blocks blogs?'>India blocks blogs?</a></li>
<li><a href='http://floatingsun.net/2006/01/22/best-web-20-software-of-2005/' rel='bookmark' title='Best Web 2.0 Software of 2005'>Best Web 2.0 Software of 2005</a></li>
<li><a href='http://floatingsun.net/2011/03/27/the-silent-victories-of-open-source/' rel='bookmark' title='The silent victories of open source'>The silent victories of open source</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2009/12/24/goolego-googles-software-building-blocks/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google (Contacts, Mail, Talk) confusion</title>
		<link>http://floatingsun.net/2009/08/11/google-contacts-mail-talk-confusion/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-contacts-mail-talk-confusion</link>
		<comments>http://floatingsun.net/2009/08/11/google-contacts-mail-talk-confusion/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 22:07:08 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Google Contacts]]></category>
		<category><![CDATA[Google Talk]]></category>

		<guid isPermaLink="false">http://floatingsun.net/?p=1136</guid>
		<description><![CDATA[Image via CrunchBase When Gmail first introduced the ability to import Contacts, I prompty exported my addressbook from KAddressbook. And then I mostly forgot about it, until recently. In the meantime, Google happily kept adding &#8220;suggested&#8221; contacts to my addressbook. &#8230; <a href="http://floatingsun.net/2009/08/11/google-contacts-mail-talk-confusion/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://floatingsun.net/2005/08/24/google-talk/' rel='bookmark' title='Google Talk'>Google Talk</a></li>
<li><a href='http://floatingsun.net/2005/08/29/more-on-google-talk/' rel='bookmark' title='More on Google Talk'>More on Google Talk</a></li>
<li><a href='http://floatingsun.net/2007/07/02/why-isnt-google-killing-ringo-and-plaxo/' rel='bookmark' title='Why isn&#8217;t Google killing Ringo and Plaxo?'>Why isn&#8217;t Google killing Ringo and Plaxo?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 260px;">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/product/google-talk"><img title="Image representing Google Talk as depicted in ..." src="http://www.crunchbase.com/assets/images/resized/0001/2896/12896v2-max-250x250.jpg" alt="Image representing Google Talk as depicted in ..." width="250" height="118" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://www.crunchbase.com">CrunchBase</a></dd>
</dl>
</div>
</div>
<p>When Gmail first introduced the ability to import Contacts, I prompty exported my addressbook from KAddressbook. And then I mostly forgot about it, until recently. In the meantime, Google happily kept adding &#8220;suggested&#8221; contacts to my addressbook.</p>
<p>I decided to revisit my Google Contacts after reading some blog posts about <a class="zem_olink" title="Birthday Calendar for Google Contacts" href="http://www.thaibrother.com/blog/?p=15762">new functionality</a>. Sure enough, Contacts now even has its own URL (google.com/contacts). I figured this was a good time to clean out the contact and start from scratch with a clean list not polluted by the automatic suggested contacts. So I went ahead and deleted all the contacts and re-imported them from my desktop address book.</p>
<p>Surprisingly, there are weird interactions between my Google Contacts, and my <a class="zem_slink freebase/guid/9202a8c04000641f80000000005573ed" title="Google Talk" rel="homepage" href="http://www.google.com/talk/">Google Talk</a> buddy list. A lot of people on my buddy list silently disappeared, without any kind of message or confirmation from either GMail, Talk or Contacts. And since then, my attempts to add back all the deleted buddies has failed miserably. Every time I add someone to my list, they show up just fine, but if I log out and log back in, they are usually not there.</p>
<p>What is even worse, this behavior is non-determinstic. Some additions persist across multiple sessions, while others are more ephemeral. I still don&#8217;t know exactly what the interaction between these three properties is, but it is very confusing. Google should clarify this more &#8212; what exactly is the impact of modifying my Contacts on things like Google Talk etc?</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/cafa61c9-54cf-4a81-8482-65c07cb59e0d/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=cafa61c9-54cf-4a81-8482-65c07cb59e0d" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p>Related posts:<ol>
<li><a href='http://floatingsun.net/2005/08/24/google-talk/' rel='bookmark' title='Google Talk'>Google Talk</a></li>
<li><a href='http://floatingsun.net/2005/08/29/more-on-google-talk/' rel='bookmark' title='More on Google Talk'>More on Google Talk</a></li>
<li><a href='http://floatingsun.net/2007/07/02/why-isnt-google-killing-ringo-and-plaxo/' rel='bookmark' title='Why isn&#8217;t Google killing Ringo and Plaxo?'>Why isn&#8217;t Google killing Ringo and Plaxo?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2009/08/11/google-contacts-mail-talk-confusion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GAFYD slowness</title>
		<link>http://floatingsun.net/2009/03/30/gafyd-slowness/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gafyd-slowness</link>
		<comments>http://floatingsun.net/2009/03/30/gafyd-slowness/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 05:18:11 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[gafyd]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://floatingsun.net/?p=1089</guid>
		<description><![CDATA[I have been using Google Apps For Your Domain (GAFYD) for my floatingsun.net email for a while now (earlier I was using the email setup at my hosting provider, but moved away because of the lack of adequate spam filtering). &#8230; <a href="http://floatingsun.net/2009/03/30/gafyd-slowness/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://floatingsun.net/2004/06/15/email-wars/' rel='bookmark' title='Email wars'>Email wars</a></li>
<li><a href='http://floatingsun.net/2005/07/16/faking-from-address/' rel='bookmark' title='Faking from address'>Faking from address</a></li>
<li><a href='http://floatingsun.net/2005/04/14/using-gmail-to-backup-emails/' rel='bookmark' title='Using GMail to backup emails'>Using GMail to backup emails</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have been using <a href="http://www.google.com/apps/intl/en/business/index.html">Google Apps For Your Domain</a> (GAFYD) for my floatingsun.net email for a while now (earlier I was using the email setup at my hosting provider, but moved away because of the lack of adequate spam filtering). In the beginning, it was just a joy and everything was nice and peachy.</p>
<p><img src="http://www.google.com/apps/intl/en/images/150x55.gif" alt="Google Apps" width="150" height="55" /></p>
<p>However, over time, the service has been gradually deteriorating. Since the past few weeks I have noticed a significant increase in latency. Meaning that if I open mail.google.com side-by-side with mail.google.com/a/floatingsun.net, my &#8220;regular&#8221; gmail account loads up much, much faster than my floatingsun.net account. This despite the fact that my regular gmail account has at least 100x the messages on my floatingsun.net account. And in fact, there have been several occassions in the recent past where it doesn&#8217;t load at all, or fails with a server error.</p>
<p>Not to mention that IMAP access has been horrendous recently. Throughout the day, email takes forever to open in my IMAP client (it opens up relatively faster on the web interface) and I get frequent disconnections from the server.</p>
<p>I don&#8217;t mean to beat up on Google. I must admit that I am on the <strong>free</strong> plan, so I really have no reason to complain. But gmail is also free. I have a feeling Google is deliberately imposing some kind of quality-of-service differentiation between paid Google Apps accounts vs free ones. I am keeping an eye on the <a href="http://www.google.com/appsstatus#">status dashboard</a> &#8212; it says no issues but my IMAP is still flaky. Is anyone else seeing poor performance on free GAFYD accounts?</p>
<p>Related posts:<ol>
<li><a href='http://floatingsun.net/2004/06/15/email-wars/' rel='bookmark' title='Email wars'>Email wars</a></li>
<li><a href='http://floatingsun.net/2005/07/16/faking-from-address/' rel='bookmark' title='Faking from address'>Faking from address</a></li>
<li><a href='http://floatingsun.net/2005/04/14/using-gmail-to-backup-emails/' rel='bookmark' title='Using GMail to backup emails'>Using GMail to backup emails</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2009/03/30/gafyd-slowness/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Chrome</title>
		<link>http://floatingsun.net/2008/09/01/google-chrome/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-chrome</link>
		<comments>http://floatingsun.net/2008/09/01/google-chrome/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 17:52:44 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://floatingsun.net/?p=992</guid>
		<description><![CDATA[Its all over the blogosphere anyways: http://blogoscoped.com/google-chrome/ Related posts: Google in talks to buy YouTube Google Page Creator Google buys Writely!
Related posts:<ol>
<li><a href='http://floatingsun.net/2006/10/06/google-in-talks-to-buy-youtube/' rel='bookmark' title='Google in talks to buy YouTube'>Google in talks to buy YouTube</a></li>
<li><a href='http://floatingsun.net/2006/02/23/google-page-creator/' rel='bookmark' title='Google Page Creator'>Google Page Creator</a></li>
<li><a href='http://floatingsun.net/2006/03/09/google-buys-writely/' rel='bookmark' title='Google buys Writely!'>Google buys Writely!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Its all over the blogosphere anyways: http://blogoscoped.com/google-chrome/</p>
<p>Related posts:<ol>
<li><a href='http://floatingsun.net/2006/10/06/google-in-talks-to-buy-youtube/' rel='bookmark' title='Google in talks to buy YouTube'>Google in talks to buy YouTube</a></li>
<li><a href='http://floatingsun.net/2006/02/23/google-page-creator/' rel='bookmark' title='Google Page Creator'>Google Page Creator</a></li>
<li><a href='http://floatingsun.net/2006/03/09/google-buys-writely/' rel='bookmark' title='Google buys Writely!'>Google buys Writely!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2008/09/01/google-chrome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>uBoggle is a featured application!</title>
		<link>http://floatingsun.net/2008/08/15/uboggle-is-a-featured-application/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=uboggle-is-a-featured-application</link>
		<comments>http://floatingsun.net/2008/08/15/uboggle-is-a-featured-application/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 21:08:42 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[appengine]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[uboggle]]></category>

		<guid isPermaLink="false">http://floatingsun.net/?p=977</guid>
		<description><![CDATA[[[http://uboggle.appspot.com&#124;uBoggle]] is now appearing as the **featured application** on the [[http://appengine.google.com&#124;Google AppEngine]] [[http://appgallery.appspot.com&#124;Application Gallery]]. Thank you for your votes, and thanks to the appgallery editors! And I have a screenshot for proof and posterity :) Related posts: Introducing uBoggle! Experiences &#8230; <a href="http://floatingsun.net/2008/08/15/uboggle-is-a-featured-application/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://floatingsun.net/2008/07/23/introducing-uboggle/' rel='bookmark' title='Introducing uBoggle!'>Introducing uBoggle!</a></li>
<li><a href='http://floatingsun.net/2008/07/14/experiences-with-google-app-engine/' rel='bookmark' title='Experiences with Google App Engine'>Experiences with Google App Engine</a></li>
<li><a href='http://floatingsun.net/2005/06/13/new-look/' rel='bookmark' title='New look'>New look</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><wiki><br />
[[http://uboggle.appspot.com|uBoggle]] is now appearing as the **featured application** on the [[http://appengine.google.com|Google AppEngine]] [[http://appgallery.appspot.com|Application Gallery]]. Thank you for your votes, and thanks to the appgallery editors!</p>
<p>And I have a screenshot for proof and posterity :)<br />
</wiki></p>
<div id="attachment_978" class="wp-caption alignleft" style="width: 371px"><a href="http://appgallery.appspot.com"><img src="http://floatingsun.net/wordpress/wp-content/uploads/2008/08/screenshot12.png" alt="uBoggle is the featured application on App Gallery" title="uBoggle" width="361" height="339" class="size-full wp-image-978" /></a><p class="wp-caption-text">uBoggle is the featured application on App Gallery</p></div>
<p>Related posts:<ol>
<li><a href='http://floatingsun.net/2008/07/23/introducing-uboggle/' rel='bookmark' title='Introducing uBoggle!'>Introducing uBoggle!</a></li>
<li><a href='http://floatingsun.net/2008/07/14/experiences-with-google-app-engine/' rel='bookmark' title='Experiences with Google App Engine'>Experiences with Google App Engine</a></li>
<li><a href='http://floatingsun.net/2005/06/13/new-look/' rel='bookmark' title='New look'>New look</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2008/08/15/uboggle-is-a-featured-application/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Experiences with Google App Engine</title>
		<link>http://floatingsun.net/2008/07/14/experiences-with-google-app-engine/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=experiences-with-google-app-engine</link>
		<comments>http://floatingsun.net/2008/07/14/experiences-with-google-app-engine/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 01:53:36 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[appengine]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[webapp]]></category>

		<guid isPermaLink="false">http://floatingsun.net/?p=949</guid>
		<description><![CDATA[I&#8217;ve been playing around with [[http://appengine.google.com&#124;Google AppEngine]] for the past two weeks, and the experience has been mixed so far. First, the good: * really easy to build something simple and get started. * no need to worry about scaling, &#8230; <a href="http://floatingsun.net/2008/07/14/experiences-with-google-app-engine/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://floatingsun.net/2006/07/28/google-code-project-hosting/' rel='bookmark' title='Google Code &#8211; Project Hosting'>Google Code &#8211; Project Hosting</a></li>
<li><a href='http://floatingsun.net/2009/12/24/goolego-googles-software-building-blocks/' rel='bookmark' title='gooLego: Google&#8217;s software building blocks'>gooLego: Google&#8217;s software building blocks</a></li>
<li><a href='http://floatingsun.net/2004/08/04/interesting-google-links/' rel='bookmark' title='Interesting Google links'>Interesting Google links</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><wiki><br />
I&#8217;ve been playing around with [[http://appengine.google.com|Google AppEngine]] for the past two weeks, and the experience has been mixed so far. First, the good:</p>
<p>  * really easy to build something simple and get started.<br />
  * no need to worry about scaling, backup, replication etc. I haven&#8217;t verified this obviously, but at least thats the claim.<br />
  * the integration with Google accounts is nice.<br />
  * good documentation, lots of sample code available.<br />
  * dev server really helps with most of the development.<br />
  * the sort of restrictive resource usage limits (see below) forced us to think carefully about our code and heavily optimize certain operations to make them work on GAE.</p>
<p>{{ http://code.google.com/appengine/images/appengine_lowres.jpg}}</p>
<p>And now, the bad:<br />
  * too many limits: 1 million is their favorite number. No files over 1MB, no request should take more than 1 million CPU cycles (whatever that means) and who knows what other limits they impose internally. While developing, this was the biggest barrier for us. Things would randomly fail, and then our application would be disabled for several hours.<br />
  * The dev server doesn&#8217;t replicate the constraints in production. So everything would run fine and dandy locally, and the minute we upload, it would fail. Since we can only debug in production, and our application exceeded the quota every time we ran it, debugging was extremely slow and painful.<br />
  * local data store is excruciatingly slow. But this is not that critical, since it is only for testing anyways.<br />
  * even the remote data store is very flaky and slow at times. Any query involving more than a few hundred elements exceeds the quota.<br />
  * the bulk uploader is very useful, but again it is really really slow. If you want to upload anything in &#8220;bulk&#8221;, you&#8217;ll have a hard time. The parameters have to be chosen carefully as well. Even for very simple data models involving 3-5 fields (mostly strings), we had to reduce the batch size to 2-4 to make it work. And despite that we got a few HTTP 500 errors while uploading.</p>
<p>But its been fun so far. Hopefully most of these issues will get ironed out moving forward. As for what we are building? That will have to wait for another post ;-)<br />
</wiki></p>
<p>Related posts:<ol>
<li><a href='http://floatingsun.net/2006/07/28/google-code-project-hosting/' rel='bookmark' title='Google Code &#8211; Project Hosting'>Google Code &#8211; Project Hosting</a></li>
<li><a href='http://floatingsun.net/2009/12/24/goolego-googles-software-building-blocks/' rel='bookmark' title='gooLego: Google&#8217;s software building blocks'>gooLego: Google&#8217;s software building blocks</a></li>
<li><a href='http://floatingsun.net/2004/08/04/interesting-google-links/' rel='bookmark' title='Interesting Google links'>Interesting Google links</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2008/07/14/experiences-with-google-app-engine/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Google Reader auto sort</title>
		<link>http://floatingsun.net/2008/04/22/google-reader-auto-sort/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-reader-auto-sort</link>
		<comments>http://floatingsun.net/2008/04/22/google-reader-auto-sort/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 22:32:36 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[reader]]></category>

		<guid isPermaLink="false">http://floatingsun.net/?p=936</guid>
		<description><![CDATA[[[http://reader.google.com&#124;Google Reader]] offers several options for [[http://www.google.com/support/reader/bin/answer.py?answer=69980&#038;topic=12012&#124;sorting feed items]]. After having played around with the &#8220;auto-sort&#8221; for several months now, I am reverting back to &#8220;Sort by newest&#8221;. {{ http://www.google.com/googlereader/images/logo_reader.gif&#124;Google Reader}} The problem is that the auto-sort mode is a &#8230; <a href="http://floatingsun.net/2008/04/22/google-reader-auto-sort/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://floatingsun.net/2007/08/29/google-reader-dumbness/' rel='bookmark' title='Google Reader dumbness'>Google Reader dumbness</a></li>
<li><a href='http://floatingsun.net/2008/01/08/google-reader-archiving-less/' rel='bookmark' title='Google Reader archiving less?'>Google Reader archiving less?</a></li>
<li><a href='http://floatingsun.net/2006/12/08/google-reader-needs-rename-tags/' rel='bookmark' title='Google Reader needs rename tags'>Google Reader needs rename tags</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><wiki><br />
[[http://reader.google.com|Google Reader]] offers several options for [[http://www.google.com/support/reader/bin/answer.py?answer=69980&#038;topic=12012|sorting feed items]]. After having played around with the &#8220;auto-sort&#8221; for several months now, I am reverting back to &#8220;Sort by newest&#8221;.</p>
<p>{{ http://www.google.com/googlereader/images/logo_reader.gif|Google Reader}}</p>
<p>The problem is that the auto-sort mode is a little too simplistic. Here&#8217;s what it does in their own words:</p>
<p><box orange><br />
//This works by prioritizing subscriptions with fewer items. So, with this setting, your friend&#8217;s blog with one item a month will not be drowned out by higher volume sites such as the New York Times because we&#8217;ll raise the blog to the top.//<br />
</box></p>
<p>The general idea behind auto-sort is good, but unfortunately the execution hasn&#8217;t evolved at all to become smarter. For instance, some blogs I read haven&#8217;t been updated in a while. And I&#8217;m really not interested in the stuff they wrote some months back. So I never read those few old posts and yet they continue to hang around at the top of my feeds, which gets annoying quickly.</p>
<p>Ideally, the auto-sort should also take into account my reading trends (they obviously collect all this data, so might as well use it). In my case, what I really want the auto-sort to do is this: if there are some old posts and I&#8217;m consistently choosing not to read them, then perhaps they don&#8217;t need to be raised to the top any more. If I need to find them, I can always do so. In fact, I wouldn&#8217;t even mind if the old posts were raised to the top of the list once in a while.</p>
<p>An even smarter auto-sort will also take into account my reading habits. If there&#8217;s an infrequently updated blog that I read religiously, then I definitely don&#8217;t want to miss even an old post, no matter what. Similarly, old posts from an inactive blog that I have stopped following should be given less weight.</p>
<p>How do you sort your feeds?<br />
</wiki></p>
<p>Related posts:<ol>
<li><a href='http://floatingsun.net/2007/08/29/google-reader-dumbness/' rel='bookmark' title='Google Reader dumbness'>Google Reader dumbness</a></li>
<li><a href='http://floatingsun.net/2008/01/08/google-reader-archiving-less/' rel='bookmark' title='Google Reader archiving less?'>Google Reader archiving less?</a></li>
<li><a href='http://floatingsun.net/2006/12/08/google-reader-needs-rename-tags/' rel='bookmark' title='Google Reader needs rename tags'>Google Reader needs rename tags</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2008/04/22/google-reader-auto-sort/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Come on Yahoo! dikha de!!</title>
		<link>http://floatingsun.net/2008/02/25/come-on-yahoo-dikha-de/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=come-on-yahoo-dikha-de</link>
		<comments>http://floatingsun.net/2008/02/25/come-on-yahoo-dikha-de/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 04:34:27 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://floatingsun.net/2008/02/25/come-on-yahoo-dikha-de/</guid>
		<description><![CDATA[I&#8217;ve always felt a little sorry for [[http://yahoo.com&#124;Yahoo!]] (and I find it ironic that even for such a statement, I need to use the exclamation point). They always seem to be living in the shadow of Google, some times to &#8230; <a href="http://floatingsun.net/2008/02/25/come-on-yahoo-dikha-de/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://floatingsun.net/2005/08/15/yahoo-lied/' rel='bookmark' title='Yahoo lied?'>Yahoo lied?</a></li>
<li><a href='http://floatingsun.net/2006/12/14/yahoo-shopping-india-uses-ebay/' rel='bookmark' title='Yahoo Shopping India uses eBay!'>Yahoo Shopping India uses eBay!</a></li>
<li><a href='http://floatingsun.net/2006/01/24/yahoo-gives-up-on-search/' rel='bookmark' title='Yahoo gives up on search'>Yahoo gives up on search</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><wiki><br />
I&#8217;ve always felt a little sorry for [[http://yahoo.com|Yahoo!]] (and I find it ironic that even for such a statement, I need to use the exclamation point). They always seem to be living in the shadow of Google, some times to no fault of theirs. Sure, they have made their share of mistakes, but I think the tech circles, and particularly the media give Y! much less credit than it deserves. And thus I&#8217;ve been following the Microhoo saga with some interest, and with a feeling of resignation ([[http://news.yahoo.com/fc/Business/Microsoft_Yahoo|full coverage]]).</p>
<p>{{ http://farm3.static.flickr.com/2214/2234037367_2a77f57641_m.jpg|Microsoft&#8217;s hostile takeover bid}}</p>
<p>It would be sad if the merger/acquisition does go through (which I think it will, eventually). Meanwhile, while the long drawn battle plays itself out, I can&#8217;t help but wonder why Y! failed to leverage some of its really valuable assets. Honestly, some of their assets have incredible value in them. To some extent I do blame the media (or Yahoo&#8217;s PR). I don&#8217;t believe that Google does //all// the innovation, nor that all their products are superior to the competition. But still, even if someone in Google sneezes, it gets Dugg and Slashdotted and every one just goes hyper. In this post I&#8217;ll discuss some of these issues.</p>
<p>First off, some of the good stuff (I&#8217;m not going to mention the usual suspects like Y&#8217;s traffic numbers or their share in the web-mail and IM markets):</p>
<p>  * Yahoo! is a major supporter and contributor in [[http://hadoop.apache.org|Hadoop]]: an open source implementation of [[http://google.com|Google's]] [[wp>MapReduce|MapReduce]]. Complaints of Yahoo playing catch up and &#8220;too little too late&#8221; apart (I will address them in another post), I do think this is a timely and much needed development, both for Yahoo and the industry in general. A cursory look at the [[http://wiki.apache.org/hadoop/PoweredBy|list of places using Hadoop]] is enough to give an idea of the kind of enabler this platform is. An entire community and several other projects are mushrooming around Hadoop including [[http://hadoop.apache.org/hbase/|HBase]], [[http://incubator.apache.org/pig/|Pig]] (bad name if you ask me) and [[http://hypertable.org/|Hypertable]]. Google might have the largest, most efficient MapReduce and BigTable implementations, but their implementations are just that &#8212; theirs, and extremely closely coupled to their infrastructure. Opening up such a platform for others and building a healthy community around it is I think a Good Thing.<br />
  * Yahoo! Developer Network: This crew has churned out some remarkable products (such as [[http://developer.yahoo.com/yui/|YUI]] and [[http://developer.yahoo.com/yslow/|YSlow]]) as well as some really well organized guidelines (such as [[http://developer.yahoo.com/ypatterns/|the Design Pattern library]]).<br />
  * [[http://finance.yahoo.com/|Finance]]: the [[http://finance.google.com|competition]] is not even close.<br />
  * Flickr and Del.icio.us<br />
  * [[http://mobile.yahoo.com|Yahoo! Mobile]]: I have yet to get on the mobile Internet bandwagon, so I really have no first hand experience here. But I&#8217;ve heard that Yahoo products have much better support across a wide variety of devices compared to the competition. In fact, until the Java based GMail reader came out, the mobile version of GMail&#8217;s web interface was quite lacking.</p>
<p>That said, I feel there are two main areas Y! needs to work on if they want to get back in the game:<br />
  * Brand image: Y! needs to work on how they are perceived //externally// as well as //internally//. I feel that people who work at Y! themselves don&#8217;t believe in the company, or have the feeling it is somehow not as good as or not as cool as other companies. A lot of Google&#8217;s brand image comes from the attitude of its employees, and the work culture. Ditto for Microsoft.<br />
  * Streamlined products: Yahoo! Maps and Mail are good applications, but they are far too bloated. Even on my reasonably powerful dual-core desktop, these applications feel sluggish and drive the CPU to saturation which is just not acceptable. In comparison, offerings from Google feel much leaner, load quicker and are more responsive.</p>
<p>In the end, the company that remains competitive and offers the best value to its customers and shareholders will prevail. And I feel that a combined Microsoft-Yahoo entity will not make the space any more interesting. On the other hand (as many fear) I think it might kill and certainly slow down innovation that might otherwise have happened. If Yahoo! can somehow manage to stay afloat on its own, it will at least be a little more exciting. So come on Yahoo! dikha de (translates to &#8220;show us&#8221;)!!<br />
</wiki></p>
<p>Related posts:<ol>
<li><a href='http://floatingsun.net/2005/08/15/yahoo-lied/' rel='bookmark' title='Yahoo lied?'>Yahoo lied?</a></li>
<li><a href='http://floatingsun.net/2006/12/14/yahoo-shopping-india-uses-ebay/' rel='bookmark' title='Yahoo Shopping India uses eBay!'>Yahoo Shopping India uses eBay!</a></li>
<li><a href='http://floatingsun.net/2006/01/24/yahoo-gives-up-on-search/' rel='bookmark' title='Yahoo gives up on search'>Yahoo gives up on search</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2008/02/25/come-on-yahoo-dikha-de/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How gTalk pushed jabber</title>
		<link>http://floatingsun.net/2008/02/24/how-gtalk-pushed-jabber/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-gtalk-pushed-jabber</link>
		<comments>http://floatingsun.net/2008/02/24/how-gtalk-pushed-jabber/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 07:10:57 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[gtalk]]></category>
		<category><![CDATA[jabber]]></category>
		<category><![CDATA[xmpp]]></category>

		<guid isPermaLink="false">http://floatingsun.net/2008/02/24/how-gtalk-pushed-jabber/</guid>
		<description><![CDATA[I remember signing up for a Jabber account several years back. Since there were a lot of Jabber servers to choose from, and really no &#8220;canonical&#8221; choice, I ended up trying out a few different ones, until I finally settled &#8230; <a href="http://floatingsun.net/2008/02/24/how-gtalk-pushed-jabber/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://floatingsun.net/2005/07/28/call-for-jabber/' rel='bookmark' title='Call for Jabber'>Call for Jabber</a></li>
<li><a href='http://floatingsun.net/2005/08/24/google-talk/' rel='bookmark' title='Google Talk'>Google Talk</a></li>
<li><a href='http://floatingsun.net/2006/02/09/gmail-chat/' rel='bookmark' title='GMail Chat'>GMail Chat</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><wiki><br />
I remember signing up for a Jabber account several years back. Since there were a lot of Jabber servers to choose from, and really no &#8220;canonical&#8221; choice, I ended up trying out a few different ones, until I finally settled on the jabber.org server. Of course, since hardly any one I knew was using Jabber at that time, that account was rarely used.</p>
<p>{{ http://floatingsun.net/wordpress/wp-content/uploads/2008/02/screenshot6.png|Jabber}}</p>
<p>I subsequently tried to convince my friends to start using Jabber, even issuing a [[http://floatingsun.net/2005/07/28/call-for-jabber/|call for Jabber]] on my blog. Suffice to say that in all I added perhaps three friends to my Jabber buddy list. So much for technological merit driving adoption!</p>
<p>Somewhat naively, in that post I said:</p>
<p><box blue round><br />
//I should point out that Jabber is meant for (and only for) instant messaging. This means that there is protocol bloat for supporting webcams or voice chats. Use video conferencing or VoIP if you want those. Lets keep IM simple.//<br />
</box></p>
<p>Oh, how wrong I was. There are now official [[http://xmpp.org|XMPP]] extensions for [[http://www.xmpp.org/extensions/xep-0167.html|audio]], [[http://www.xmpp.org/extensions/xep-0180.html|video]] and [[http://www.xmpp.org/extensions/xep-0096.html|file transfer]]! Nevertheless, the basic premise of Jabber remains the same: open, free standard, distributed implementation and rich functonality.</p>
<p>However, it wasn&#8217;t really until Google embraced XMPP for Google Talk that Jabber really took off. Even now most end users are not familiar with the technological underpinnings of Google Talk. When Google Talk launched, it was a closed network. That is, though it used Jabber as the communication protocol, non Google Talk Jabber users could not communicate with Google Talk users. After some initial resistance, Google finally gave in, making Google Talk an open Jabber network.</p>
<p>It is kind of unfortunate that one of the main &#8220;features&#8221; of Jabber &#8212; a distributed implementation much like that of email &#8212; has essentially been nullified by Google Talk, since the vast majority of Jabber users //are// Google Talk users. Of course, it has been a boon to Jabber as well, since it piqued interest in Jabber from all kinds of commercial interests, leading to the significant increase in interest in the XMPP protocol stack. The extensions I mentioned earlier are just a small sampling of the [[http://www.xmpp.org/extensions/|total extensions available]].</p>
<p>It is interesting, as well as a little disappointing, that good ideas often get ignored not due to lack of technical merit, and some how endorsement by a powerful and recognized brand suddenly lends credibility to them.<br />
</wiki></p>
<p>Related posts:<ol>
<li><a href='http://floatingsun.net/2005/07/28/call-for-jabber/' rel='bookmark' title='Call for Jabber'>Call for Jabber</a></li>
<li><a href='http://floatingsun.net/2005/08/24/google-talk/' rel='bookmark' title='Google Talk'>Google Talk</a></li>
<li><a href='http://floatingsun.net/2006/02/09/gmail-chat/' rel='bookmark' title='GMail Chat'>GMail Chat</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2008/02/24/how-gtalk-pushed-jabber/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New MapReduce article in CACM</title>
		<link>http://floatingsun.net/2008/01/11/new-mapreduce-article-in-cacm/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-mapreduce-article-in-cacm</link>
		<comments>http://floatingsun.net/2008/01/11/new-mapreduce-article-in-cacm/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 00:03:51 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mapreduce]]></category>

		<guid isPermaLink="false">http://floatingsun.net/2008/01/11/new-mapreduce-article-in-cacm/</guid>
		<description><![CDATA[Several people have already [[http://googlesystem.blogspot.com/2008/01/google-reveals-more-mapreduce-stats.html&#124;noted]] that Google has published updated statistics on [[http://labs.google.com/papers/mapreduce.html&#124;MapReduce]] in a [[http://doi.acm.org/10.1145/1327452.1327492&#124;recent article]] published in the Communications of the ACM. While numbers from Google are certainly always interesting, what struck me was the **absolutely pathetic** quality &#8230; <a href="http://floatingsun.net/2008/01/11/new-mapreduce-article-in-cacm/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://floatingsun.net/2008/02/26/lousy-reporting-at-techcrunch/' rel='bookmark' title='Lousy reporting at TechCrunch'>Lousy reporting at TechCrunch</a></li>
<li><a href='http://floatingsun.net/2008/02/25/come-on-yahoo-dikha-de/' rel='bookmark' title='Come on Yahoo! dikha de!!'>Come on Yahoo! dikha de!!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><wiki><br />
Several people have already [[http://googlesystem.blogspot.com/2008/01/google-reveals-more-mapreduce-stats.html|noted]] that Google has published updated statistics on [[http://labs.google.com/papers/mapreduce.html|MapReduce]] in a [[http://doi.acm.org/10.1145/1327452.1327492|recent article]] published in the Communications of the ACM.</p>
<p>While numbers from Google are certainly always interesting, what struck me was the **absolutely pathetic** quality of the graphs in the article. To see what I mean, check out the graphs on Page 5 (you need an ACM account to get the PDF I think). They are hardly readable, both in print and on screen (zooming in doesn&#8217;t help). Here is a screenshot (I have included some of the surrounding text to give you an idea of the resolution):</p>
<p>{{ http://floatingsun.net/wordpress/wp-content/uploads/2008/01/screenshot15.png|MapReduce graph}}</p>
<p>As a member of the academic community, I&#8217;m quite disappointed and surprised that neither the authors, nor the editors took note of such an obvious shortcoming. MapReduce is great work, and a publication like CACM reaches out to a much broader audience than the conference proceedings of OSDI (where MapReduce was originally published) so I would expect the presentation to be top-notch (and remember, this is Google we&#8217;re talking about). Besides, what irks me most is that these are the //exact// same graphs (or at least some of them are) from the original MapReduce paper ({{http://labs.google.com/papers/mapreduce-osdi04.pdf|pdf here}}). Was is so hard to just copy paste or import the figures without messing up the resolution so bad?<br />
</wiki></p>
<p>Related posts:<ol>
<li><a href='http://floatingsun.net/2008/02/26/lousy-reporting-at-techcrunch/' rel='bookmark' title='Lousy reporting at TechCrunch'>Lousy reporting at TechCrunch</a></li>
<li><a href='http://floatingsun.net/2008/02/25/come-on-yahoo-dikha-de/' rel='bookmark' title='Come on Yahoo! dikha de!!'>Come on Yahoo! dikha de!!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2008/01/11/new-mapreduce-article-in-cacm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

