<?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>kablooie</title>
	<atom:link href="http://sureshkk.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sureshkk.wordpress.com</link>
	<description>To share , learn and express my views. (mostly technical)</description>
	<lastBuildDate>Fri, 30 Sep 2011 12:48:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sureshkk.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>kablooie</title>
		<link>http://sureshkk.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sureshkk.wordpress.com/osd.xml" title="kablooie" />
	<atom:link rel='hub' href='http://sureshkk.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Methods for asynchronous communication over HTTP</title>
		<link>http://sureshkk.wordpress.com/2011/06/19/methods-for-asynchronous-communication-over-http/</link>
		<comments>http://sureshkk.wordpress.com/2011/06/19/methods-for-asynchronous-communication-over-http/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 04:18:54 +0000</pubDate>
		<dc:creator>sureshkk</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://sureshkk.wordpress.com/?p=103</guid>
		<description><![CDATA[This post was long overdue&#8230;.was in my draft folder for almost an year now&#8230; Following my post on WebSockets availability in Chrome, I looked around to see what are the options for asynchronous communication over HTTP without WebSockets. Below, I list the available approaches prior to WebSockets and I will also discuss the pros and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=103&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post was long overdue&#8230;.was in my draft folder for almost an year now&#8230;</p>
<p>Following my <a href="http://sureshkk.wordpress.com/2009/12/12/websockets-now-available-in-chrome/">post </a>on WebSockets availability in Chrome, I looked around to see what are the options for asynchronous communication over HTTP without WebSockets. Below, I list the available approaches prior to WebSockets and I will also discuss the pros and cons  of these approaches.</p>
<p>We know that HTTP is a synchronous request/response application protocol and in which a client always initiates a request and the server responds to the request; the server never initiates a request to the client. This communication pattern limits HTTP applications to synchronous “pull” only interaction pattern. However, there are several approaches that emulate asynchronous communication over a synchronous communication channel. I briefly explain each method with their pros and cons below:</p>
<p><strong>Polling ( also called <a href="http://en.wikipedia.org/wiki/Pull_technology">Pull Technology</a></strong><strong>)</strong></p>
<p>Polling requires the client to send request to the server at regular intervals to check if there are any updates. Server events can be queued and delivered to the client on each request from the client emulating server initiated communication.  The polling interval can be fixed and determined based on the application requirement or the server can indicate polling interval in its responses.</p>
<ul>
<li>Advantages
<ul>
<li>Simplifies server implementation by not requiring the server to maintain a list of subscribers and by shifting the responsibility of guaranteed delivery to consumers.</li>
<li>Stateless interaction</li>
</ul>
</li>
<li>Disadvantages
<ul>
<li>True real time communication not possible and is bound to the poll interval.</li>
<li>Uses up server resources unnecessarily</li>
<li>Will have to strike a balance between shorter and longer poll intervals to improve efficiency</li>
<li>Increased network traffic (can be reduced by using <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html">conditional GET</a></li>
</ul>
</li>
</ul>
<p><strong>Long Polling</strong></p>
<p>This is a variation of the polling approach in which a client sends a request to the server and the server sends a response only if there is information to be sent in the response. If the server determines the requested resource is not changed, it holds on to the request until the resource is changed or if the specified timeout expires. When the server sends out the response either due to updates in the requested resource or due to timeout, the client issues another request and whole cycle repeats i.e. the server always has a pending request from the client.</p>
<ul>
<li>Advantages
<ul>
<li>Better real time communication compared to normal polling because the information is sent as soon as it is available.</li>
</ul>
</li>
<li>Disadvantages
<ul>
<li>Open HTTP connections consume system resources.</li>
<li>Each request will a require thread that blocks the requests until data is available or till timeout. If there are multiple requests, this will result in large number of threads blocking for data.</li>
<li>Server side support for asynchronous request processing (Asynchronous I/O) is required for scalability.</li>
<li>No standard mechanism available. Each environment has its own mechanism to handle long polling<strong>.</strong></li>
</ul>
</li>
</ul>
<p><strong>Streaming</strong></p>
<p><strong><em><span style="font-style:normal;"><span style="font-weight:normal;">HTTP streaming is similar to long polling except that the connection is never closed even after the data is pushed to the client by the server.  In this approach, a client sends a request to the server and the server responds to the request by sending data back to the client. However, after the data is sent, the server does not close the connection but instead keeps the connection open and pushes data to the client whenever available over the same connection</span></span>.</em></strong></p>
<ul>
<li>Advantages
<ul>
<li>Allows sending multiple data transmission over single connection and results in fewer requests to the server.</li>
<li>No connection over head.</li>
<li>Real time updates possible.</li>
</ul>
</li>
<li>Disadvantages
<ul>
<li>No standard mechanism available. Each environment has its own mechanism to handle streaming.</li>
<li>Might not work through proxies/firewalls</li>
<li>Might result in large number of open connections when there are multiple requests.</li>
</ul>
</li>
</ul>
<p><strong>WebHook</strong></p>
<p><a href="http://webhooks.pbworks.com/">WebHook</a> provides a HTTP callback via HTTP POST when an event occurs.  A Web application implementing WebHook will POST a message to a specified URI as an event notification. It also allows clients to register custom URIs with Web application which then POST messages to these URIs to indicate state changes. The notification URI should point to HTTP server.</p>
<ul>
<li>Advantages
<ul>
<li>Provides near real time updates.</li>
<li>Standardization attempts via WebHook and <a href="http://code.google.com/p/pubsubhubbub/">PubHubSubHub</a> initiatives</li>
<li>Polling is eliminated.</li>
<li>Fully asynchronous</li>
</ul>
</li>
<li>Disadvantages
<ul>
<li>Might not work through proxies/firewalls</li>
<li>Requires the receiver to host a HTTP server.</li>
</ul>
</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshkk.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshkk.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshkk.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshkk.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sureshkk.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sureshkk.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sureshkk.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sureshkk.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshkk.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshkk.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshkk.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshkk.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshkk.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshkk.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=103&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sureshkk.wordpress.com/2011/06/19/methods-for-asynchronous-communication-over-http/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfc9549980dd92b01dd8ed7cda1f2c07?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sureshkk</media:title>
		</media:content>
	</item>
		<item>
		<title>Custom Media types in REST</title>
		<link>http://sureshkk.wordpress.com/2011/06/18/custom-media-types-in-rest/</link>
		<comments>http://sureshkk.wordpress.com/2011/06/18/custom-media-types-in-rest/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 08:44:45 +0000</pubDate>
		<dc:creator>sureshkk</dc:creator>
				<category><![CDATA[REST]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://sureshkk.wordpress.com/?p=143</guid>
		<description><![CDATA[Though most of REST was easy to grok, the HATEOAS constraint and the use of media types in REST posed a huge learning curve for me. So while deciding whether to use custom media type or stick with application/xml or use a standard media type, I had a hard time to choose. What I realized [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=143&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Though most of REST was easy to grok, the HATEOAS constraint and the use of media types in REST posed a huge learning curve for me. So while deciding whether to use custom media type or stick with application/xml or use a standard media type, I had a hard time to choose. What I realized after many months of wading through articles , posting questions in discussion forums, trying to write clients against different respresentations is that though there are standard media types out there (text/html, atom etc.) , there are cases where just standard media types won’t suffice to application’s requirements. In these scenarios, defining a custom media types to capture and convey a consistent vocabulary to suit an application domain is not only good but IMO, a necessity if we want to get all the benefits of REST.</p>
<p>For our RESTful application, we started off defining a domain specific XML vocabulary but ended with a generic XML vocubulary to describe resources. One of the major goal of vocabulary definition was to have the ability to describe all resources in uniform and consistent manner. Initially we started designing the vocabulary around the semantics of each resource and found out soon that it was harder to mantain. We then decided to make a generic &#8220;resource&#8221; vocabulary i.e. the vocabulary was aimed at to be applicable to a large set of resources as possible. We also based our design on the needs of the client rather than around the specific resource. The design considered that anything exposed by our application is a resource which can be linked and provides links to other relevant resources. We have also tried to follow the basic software engineering principle of <em>&#8220;Applying the software engineering principle of generality to the component interface&#8221;</em>.</p>
<p>As per REST, a Resource is defined as:</p>
<blockquote><p><strong><em>“The key abstraction of information in REST is a resource. Any information that can be named can be a resource: a document or image, a temporal service (e.g. &#8220;today&#8217;s weather in Los Angeles&#8221;), a collection of other resources, a non-virtual object (e.g. a person), and so on. In other words, any concept that might be the target of an author&#8217;s hypertext reference must fit within the definition of a resource”</em></strong></p></blockquote>
<p>Thus a resource is the fundamental building block in a RESTful system. A resource can have properties of any type (xsd: or custom) and can also contain resources. Based on these assumptions, we have come up with a generic XML vocabulary to describe all the resources in our system. I will post the vocabulary in my later posts.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshkk.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshkk.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshkk.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshkk.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sureshkk.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sureshkk.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sureshkk.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sureshkk.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshkk.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshkk.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshkk.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshkk.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshkk.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshkk.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=143&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sureshkk.wordpress.com/2011/06/18/custom-media-types-in-rest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfc9549980dd92b01dd8ed7cda1f2c07?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sureshkk</media:title>
		</media:content>
	</item>
		<item>
		<title>Science &amp; Technology 10K Run 2010 @ IISc</title>
		<link>http://sureshkk.wordpress.com/2010/04/21/science-technology-10k-run-2010-iisc/</link>
		<comments>http://sureshkk.wordpress.com/2010/04/21/science-technology-10k-run-2010-iisc/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 05:42:26 +0000</pubDate>
		<dc:creator>sureshkk</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sureshkk.wordpress.com/?p=138</guid>
		<description><![CDATA[I ran my first 10K run at the SnT 10K event organized in Indian Institute of Science. Though I didn&#8217;t come in the first 3 or even first 20, I was able to finish the entire 10K without stopping even to take a sip of water. I think I could have gone another 5K without [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=138&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I ran my first 10K run at the <a href="http://www.sntrun.org/">SnT 10K event organized in Indian Institute of Science</a>. Though I didn&#8217;t come in the first 3 or even first 20, I was able to finish the entire 10K without stopping even to take a sip of water. I think I could have gone another 5K without much effort. I ran the entire 10K following the <a href="http://www.best-running-tips.com/pose-running-technique.html">pose running method</a>. Though I didn&#8217;t feel the many benefits claimed by the method, I sure can confirm that it is very light on the knees and your calf gets really exercised and feels stronger. After the 10K run, I felt rejuvenated and and  I am looking forward to the <a href="http://sunfeastworld10k.indiatimes.com/">Sunfeast World 10K Bangalore</a> on 23rd May 2010.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshkk.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshkk.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshkk.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshkk.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sureshkk.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sureshkk.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sureshkk.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sureshkk.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshkk.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshkk.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshkk.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshkk.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshkk.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshkk.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=138&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sureshkk.wordpress.com/2010/04/21/science-technology-10k-run-2010-iisc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfc9549980dd92b01dd8ed7cda1f2c07?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sureshkk</media:title>
		</media:content>
	</item>
		<item>
		<title>Multi-Language online IDE</title>
		<link>http://sureshkk.wordpress.com/2009/12/25/multi-language-online-ide/</link>
		<comments>http://sureshkk.wordpress.com/2009/12/25/multi-language-online-ide/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 06:38:10 +0000</pubDate>
		<dc:creator>sureshkk</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://sureshkk.wordpress.com/?p=130</guid>
		<description><![CDATA[An online IDE (ideone.com) that supports compiling and running software programs written in various languages showcases the idea of SaaS where compilers and runtime environments are provided as a service. I think this is an extremely useful service and will be helpful for trying out snippets of programs without the need to find and install compilers and runtime [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=130&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>An online IDE (<a href="http://www.ideone.com/">ideone.com</a>) that supports compiling and running software programs written in various languages showcases the idea of SaaS where compilers and runtime environments are provided as a service. I think this is an extremely useful service and will be helpful for trying out snippets of programs without the need to find and install compilers and runtime for your particular environments. This, however doesn&#8217;t do away with the need for local development environment since I do not think we can use this service to develop software applications.  The service already supports many popular programming languages such as C++,C, Java, Python, C# etc with syntax highlighting. So if you find a sample code in a particular language and wish to compile and see the output, you just submit the code to the service and you see the results in a jiffy. Of course you cannot run code that needs the graphics environment. The service supports only programs that are command oriented or headless but nevertheless, a useful service I think.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshkk.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshkk.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshkk.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshkk.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sureshkk.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sureshkk.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sureshkk.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sureshkk.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshkk.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshkk.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshkk.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshkk.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshkk.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshkk.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=130&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sureshkk.wordpress.com/2009/12/25/multi-language-online-ide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfc9549980dd92b01dd8ed7cda1f2c07?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sureshkk</media:title>
		</media:content>
	</item>
		<item>
		<title>Guess + estimating = guesstimating</title>
		<link>http://sureshkk.wordpress.com/2009/12/24/guess-estimating-guesstimating/</link>
		<comments>http://sureshkk.wordpress.com/2009/12/24/guess-estimating-guesstimating/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 14:06:03 +0000</pubDate>
		<dc:creator>sureshkk</dc:creator>
				<category><![CDATA[Software Engineering]]></category>

		<guid isPermaLink="false">http://sureshkk.wordpress.com/?p=124</guid>
		<description><![CDATA[How many times have you guesstimated your software project? I think we all do it all the times though we tend to view and term it as a scientific process. Reading this article on Dr. Dobbs by Chuck Connell about the differences between software engineering and computer science, reiterates the common knowledge of how important [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=124&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">How many times have you guesstimated your software project? I think we all do it all the times though we tend to view and term it as a scientific process. Reading this <a href="http://www.ddj.com/architect/217701907">article</a> on Dr. Dobbs by Chuck Connell about the differences between software engineering and computer science, reiterates the common knowledge of how important people are in software development than the processes. This article just puts the thoughts in perspective and reminded me of a instance when one of my manager saying something like &#8221; we should lift the process bar up to such a level that people coming in and going out of the project shouldn&#8217;t matter to the outcome of the project&#8221;. I didn&#8217;t know how to react to this nonsense but then I thought maybe he knows something I do not and yet I see the same manager struggling with people issues more than process issues. I am tempted to send this link to the said manager, but I think I will let him learn the importance of people the hard way.</div>
<div id="_mcePaste">The article is very interesting though it doesn&#8217;t tell us anything that we do not already know. For me, the most important take away is the fact that people play a very important role in software development process and to come up with formal scientific methodology to predict software development is so hard that we can term it impossible. However, best practices like Agile , patterns etc. certainly help but it can only be continous improvment process but never a formal rigorous scientific process. I also liked the figure where Chuck draws a line between computer science and software engineering , maybe not accurate but comes very close in demarcating these two areas.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshkk.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshkk.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshkk.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshkk.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sureshkk.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sureshkk.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sureshkk.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sureshkk.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshkk.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshkk.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshkk.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshkk.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshkk.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshkk.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=124&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sureshkk.wordpress.com/2009/12/24/guess-estimating-guesstimating/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfc9549980dd92b01dd8ed7cda1f2c07?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sureshkk</media:title>
		</media:content>
	</item>
		<item>
		<title>Preparing for a Marathon</title>
		<link>http://sureshkk.wordpress.com/2009/12/19/preparing-for-a-marathon/</link>
		<comments>http://sureshkk.wordpress.com/2009/12/19/preparing-for-a-marathon/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 02:56:08 +0000</pubDate>
		<dc:creator>sureshkk</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sureshkk.wordpress.com/?p=114</guid>
		<description><![CDATA[From past 5-6 months, I have been training to run a Marathon, well actually a semi marathon. I started by running 10 minutes everyday and slowly increased the duration and now I am currently doing about 82 minutes. I am just training for sustenance rather than speed because I just want to complete the marathon [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=114&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">
<div id="_mcePaste">From past 5-6 months, I have been training to run a Marathon, well actually a semi marathon. I started by running 10 minutes everyday and slowly increased the duration and now I am currently doing about 82 minutes. I am just training for sustenance rather than speed because I just want to complete the marathon even if I come in the last place. However, I have tried to record my speed and distance through some rudimentary methods (I dont have any fancy gadgets to record the distance, time or speed). I just use the stop watch on my mobile phone and count the steps manually. Based on this, here is how I calculate the the numbers. (Note all number are rough approximates but gives me pretty good picture of my training status and also note that this is for those people like me who dont have or use gadgets such as a pedometer).</div>
<div id="_mcePaste">I take 65 seconds to complete 180 steps. why 180 steps? and not 100 or 1000? because I run in circles in a small park and I take 180 steps to complete one round. So considering my latest running duration of 82 minutes, in seconds it is <strong>82 * 60 = 4920 seconds</strong>. To calculate the number of rounds I go around the park I simply have to divide the total seconds by the number of seconds I take for a single round. So it is <strong>4920s/65s = 75 </strong> rounded [<em>sic</em>] circle round the park and the total number of steps is<strong> 75 * 180 = 13500</strong>. Now, according to the faq at <a href="http://www.stepscount.com/pedometerfaq.html">stepscounts.com</a>, 1 km equals 1320 steps for a person with average stride length of 76cm. Based on that, a run of 82 mins will result in me covering a distance of <strong>13500/1320 = 10.3 km at a speed of 7.6km/hr</strong>. So I still need to cover roughly another 12 km to match a semi marathon distance i.e roughly another 90 minutes more of running.</div>
<div id="_mcePaste">So this is were I stand or rather run. I will probably go for pedometer or some gadgets that will help me do a more precise calculation, but for now, this is working just fine for me.</div>
</div>
<div>And here is the graph I maintain at <a href="http://docs.google.com">Google docs</a> to record my daily running duration.</div>
<div id="attachment_115" class="wp-caption aligncenter" style="width: 310px"><a href="http://sureshkk.files.wordpress.com/2009/12/running.png"><img class="size-medium wp-image-115" title="Marathon training graph" src="http://sureshkk.files.wordpress.com/2009/12/running.png?w=300&#038;h=213" alt="" width="300" height="213" /></a><p class="wp-caption-text">Marathon training graph</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshkk.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshkk.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshkk.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshkk.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sureshkk.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sureshkk.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sureshkk.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sureshkk.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshkk.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshkk.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshkk.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshkk.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshkk.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshkk.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=114&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sureshkk.wordpress.com/2009/12/19/preparing-for-a-marathon/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfc9549980dd92b01dd8ed7cda1f2c07?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sureshkk</media:title>
		</media:content>

		<media:content url="http://sureshkk.files.wordpress.com/2009/12/running.png?w=300" medium="image">
			<media:title type="html">Marathon training graph</media:title>
		</media:content>
	</item>
		<item>
		<title>What happens when you delete a wave?</title>
		<link>http://sureshkk.wordpress.com/2009/12/12/what-happens-when-you-delete-a-wave/</link>
		<comments>http://sureshkk.wordpress.com/2009/12/12/what-happens-when-you-delete-a-wave/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 03:00:15 +0000</pubDate>
		<dc:creator>sureshkk</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://sureshkk.wordpress.com/?p=101</guid>
		<description><![CDATA[So what happens when you delete a wave in Google Wave? I tried it and found that it is almost impossible to do that even though you are the creator of the initial wave.  When you have created a wave and added participants to the wave, deleting just moves the wave to your trash bin [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=101&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So what happens when you delete a wave in Google Wave? I tried it and found that it is almost impossible to do that even though you are the creator of the initial wave.  When you have created a wave and added participants to the wave, deleting just moves the wave to your trash bin and it stay alive there!! i.e. it still gets updates when other participants of the wave interact with it. I haven&#8217;t found a way to remove the wave from the trash so far. This means that once a wave is created, it stays in the system forever?? I checked to see how long Google keeps my information?  and found the following at Google&#8217;s <a href="http://wave.google.com/help/wave/privacy.html">privacy policy</a> for wave and this what they have to say:</p>
<p><em>A Wave is queued for deletion from our system once all participants who have access to the Wave remove themselves from the Wave. Residual copies of deleted Waves may take up to 60 days to be purged from our servers and may remain in our offline backup.</em></p>
<p>Even though there is only one copy of a wave in the system and even though you are the creator of the wave, it is not easy to delete it. You got to remove all participants but there is no way you can do that except ask all participants to remove themselves (which is currently not implemented). So currently the only way is to ask all participants to delete the wave and wait for 60 days for it to be removed from system but still there is no guarantee that it will removed from Google&#8217;s backup store!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshkk.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshkk.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshkk.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshkk.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sureshkk.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sureshkk.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sureshkk.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sureshkk.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshkk.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshkk.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshkk.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshkk.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshkk.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshkk.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=101&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sureshkk.wordpress.com/2009/12/12/what-happens-when-you-delete-a-wave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfc9549980dd92b01dd8ed7cda1f2c07?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sureshkk</media:title>
		</media:content>
	</item>
		<item>
		<title>WebSockets now available in Chrome</title>
		<link>http://sureshkk.wordpress.com/2009/12/12/websockets-now-available-in-chrome/</link>
		<comments>http://sureshkk.wordpress.com/2009/12/12/websockets-now-available-in-chrome/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 02:42:20 +0000</pubDate>
		<dc:creator>sureshkk</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://sureshkk.wordpress.com/?p=98</guid>
		<description><![CDATA[The Google Chrome developer channel release 4.0.429.0 now supports HTML5 WebSockets. This is great news for people who want real time asynchronous communication on web and were till now relying on polling or other non standard mechanisms. WebSockets  is a new bi-directional communication channel that is part of HTML5 specification. WebSockets allows full duplex communication [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=98&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Google Chrome developer channel release 4.0.429.0 now <a href="http://blog.chromium.org/2009/12/web-sockets-now-available-in-google.html">supports </a>HTML5 <a href="http://dev.w3.org/html5/websockets/">WebSockets</a>. This is great news for people who want real time asynchronous communication on web and were till now relying on polling or other non standard mechanisms. WebSockets  is a new bi-directional communication channel that is part of HTML5 specification. WebSockets allows full duplex communication that operates over a single TCP/IP connection. The WebSockets API is exposed via JavaScript and built-in support exists in any HTML5 complaint Web browsers.  I hope more browsers start supporting this standard so we can finally say goodbye to non standard mechanisms such as <a href="http://en.wikipedia.org/wiki/Push_technology">long polling</a>, <a href="http://en.wikipedia.org/wiki/Comet_(programming)">COMET</a>, <a href="http://en.wikipedia.org/wiki/BOSH">BOSH </a>etc.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshkk.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshkk.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshkk.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshkk.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sureshkk.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sureshkk.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sureshkk.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sureshkk.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshkk.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshkk.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshkk.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshkk.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshkk.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshkk.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=98&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sureshkk.wordpress.com/2009/12/12/websockets-now-available-in-chrome/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfc9549980dd92b01dd8ed7cda1f2c07?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sureshkk</media:title>
		</media:content>
	</item>
		<item>
		<title>Straight from the horse&#8217;s mouth</title>
		<link>http://sureshkk.wordpress.com/2009/08/12/straight-from-the-horses-mouth/</link>
		<comments>http://sureshkk.wordpress.com/2009/08/12/straight-from-the-horses-mouth/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 14:05:51 +0000</pubDate>
		<dc:creator>sureshkk</dc:creator>
				<category><![CDATA[Software Engineering]]></category>

		<guid isPermaLink="false">http://sureshkk.wordpress.com/?p=94</guid>
		<description><![CDATA[Tom DeMarco, the author of the popular book titled Controlling Software Projects: Management, Measurement and Estimation reflects on Software engineering nearly 3 decades later and now has a totally different view on the subject. The article  &#8220;Software Engineering: An Idea whose time has come and gone?&#8221; is a interesting take on the subject based on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=94&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Tom_DeMarco">Tom DeMarco</a>, the author of the popular book titled<a href="http://www.amazon.com/Controlling-Software-Projects-Management-Measurement/dp/0131717111"> Controlling Software Projects: Management, Measurement and Estimation</a> reflects on Software engineering nearly 3 decades later and now has a totally different view on the subject. The article  <em>&#8220;Software Engineering: An Idea whose time has come and gone?</em>&#8221; is a interesting take on the subject based on practical experience. A must read for all those involved in Software development. You can find the article <a href="http://www2.computer.org/cms/Computer.org/ComputingNow/homepage/2009/0709/rW_SO_Viewpoints.pdf">here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshkk.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshkk.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshkk.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshkk.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sureshkk.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sureshkk.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sureshkk.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sureshkk.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshkk.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshkk.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshkk.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshkk.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshkk.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshkk.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=94&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sureshkk.wordpress.com/2009/08/12/straight-from-the-horses-mouth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfc9549980dd92b01dd8ed7cda1f2c07?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sureshkk</media:title>
		</media:content>
	</item>
		<item>
		<title>More good news</title>
		<link>http://sureshkk.wordpress.com/2009/07/11/more-good-news/</link>
		<comments>http://sureshkk.wordpress.com/2009/07/11/more-good-news/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 07:58:32 +0000</pubDate>
		<dc:creator>sureshkk</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sureshkk.wordpress.com/?p=91</guid>
		<description><![CDATA[The future of SaaS is getting brighter by the day. The following three news items are very encouraging and I hope will provide enough momemtum in diminishing the desktop and browser gap.  The day of Linux, Windows, Solaris as the main platform is going to be history and the new platforms will be the browser [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=91&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The future of SaaS is getting brighter by the day. The following three news items are very encouraging and I hope will provide enough momemtum in diminishing the desktop and browser gap.  The day of Linux, Windows, Solaris as the main platform is going to be history and the new platforms will be the browser and the desktop.</p>
<blockquote><p>#TARGET=desktop</p>
<p>TARGET=browser</p>
<p>./configure &#8211;target=$TARGET &#8230;.</p></blockquote>
<ol>
<li><a href="http://www.theregister.co.uk/2009/07/10/intel_google_chrome_os/"> Intel backs Google&#8217;s Chrome OS</a></li>
<li><a href="http://arstechnica.com/microsoft/news/2009/07/gazelle-microsofts-browser-os-is-not-actually-an-os.ars">Microsoft&#8217;s Gazelle</a></li>
<li><a href="http://techfragments.com/news/948/Software/Microsoft_To_Unveil_Office_2010_and_Office_Web_on_Monday.html">Microsoft to unveil Office web</a></li>
</ol>
<p>This is exactly what we need; a good competition to get the best out for the community.  I hope more players join in the competition.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshkk.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshkk.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshkk.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshkk.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sureshkk.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sureshkk.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sureshkk.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sureshkk.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshkk.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshkk.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshkk.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshkk.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshkk.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshkk.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshkk.wordpress.com&amp;blog=6540099&amp;post=91&amp;subd=sureshkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sureshkk.wordpress.com/2009/07/11/more-good-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bfc9549980dd92b01dd8ed7cda1f2c07?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sureshkk</media:title>
		</media:content>
	</item>
	</channel>
</rss>
