<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;D0ABQH0_fip7ImA9WhRWFUk.&quot;"><id>tag:blogger.com,1999:blog-7652253</id><updated>2012-01-02T18:09:11.346-05:00</updated><category term="mobile" /><category term="cooking" /><category term="poem" /><category term="web etiquette" /><category term="eco-friendly" /><category term="apple" /><category term="comics" /><category term="immigration" /><category term="IT" /><category term="ideation" /><category term="buying" /><category term="USA" /><category term="eulogy" /><category term="presentation" /><category term="travel" /><category term="snacks" /><category term="cms" /><category term="thoughts" /><category term="sports" /><category term="computer" /><category term="Hinduism" /><category term="windows" /><category term="mindmap" /><category term="developer" /><category term="branding" /><category term="visa" /><category term="laptop" /><category term="hardware" /><category term="Web 3.0" /><category term="science" /><category term="humor" /><category term="java" /><category term="english" /><category term="politics" /><category term="music" /><category term="brain" /><category term="e-books" /><category term="dream" /><category term="philosophy" /><category term="india" /><category term="ted" /><category term="blog" /><category term="spirituality" /><category term="gaming" /><category term="Business" /><category term="software architecture" /><category term="plone" /><category term="recipe" /><category term="blackberry" /><category term="plagiarism" /><category term="software" /><category term="healthcare" /><category term="abstraction" /><category term="religion" /><category term="indexed" /><category term="vegetarian" /><category term="microsoft" /><category term="design" /><category term="blame" /><category term="project management" /><category term="stories" /><category term="ubuntu" /><category term="sanskrit" /><category term="writing" /><category term="google" /><title>Sathya Srinivasan's Blog</title><subtitle type="html">Experiences. Thoughts. Ideas.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://cssathya.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>83</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/SathyaSrinivasansBlog" /><feedburner:info uri="sathyasrinivasansblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;D0ABQH0-fSp7ImA9WhRWFUk.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-289423729337859379</id><published>2011-11-07T14:10:00.004-05:00</published><updated>2012-01-02T18:09:11.355-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-02T18:09:11.355-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="software" /><category scheme="http://www.blogger.com/atom/ns#" term="design" /><title>Coupling and Cohesion in Software and Business</title><content type="html">One of the important topics in Object Oriented Programming that is often overlooked or not even considered is that of Coupling and Cohesion. A sound understanding of these concepts can make a huge difference in how you package functionality within your program and how flexible your program can become for enhancements.&lt;br /&gt;
&lt;br /&gt;
When performing source code review, keep coupling and cohesion in mind and ensure that the classes within a package all perform same or closely related activities (high cohesion) and that classes within different packages don't refer each other too much or at least in a well-defined manner (low coupling).&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Definitions&lt;/b&gt;&lt;br /&gt;
&lt;b&gt; &lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Coupling&lt;/b&gt; is how inter-dependent two functional components are within your program. High coupling is bad, because if you change one function, you might end up affecting all the dependent functions as well.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;
Cohesion &lt;/b&gt;is how closely the parts within a function work together to make the function as one single, well-defined unit. High cohesion is good, since you can treat the whole function as a black box, thereby abstracting your system for better clarity.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Coupling Types&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;table border="1" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
 &lt;th&gt;Type (worst to best)&lt;/th&gt;
 &lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Content/Pathological Coupling&lt;/td&gt;
 &lt;td&gt;When a module uses/alters data in another&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Control Coupling&lt;/td&gt;
 &lt;td&gt;2 modules communicating with a control flag (first tells second what to do via flag)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Common/Global-data Coupling&lt;/td&gt;
 &lt;td&gt;2 modules communicating via global data&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Stamp/Data-structure Coupling&lt;/td&gt;
 &lt;td&gt;Communicating via a data structure passed as a parameter. The data structure holds more information than the recipient needs.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Data Coupling&lt;/td&gt;
 &lt;td&gt;Communicating via parameter passing. The parameters passed are only those that the recipient needs. No data coupling : independent modules.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
&lt;b&gt;Cohesion Types&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;table border="1" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
 &lt;th&gt;Type (worst to best)&lt;/th&gt;
 &lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Coincidental Cohesion&lt;/td&gt;
 &lt;td&gt;Module elements are unrelated&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Logical Cohesion&lt;/td&gt;
 &lt;td&gt;Elements perform similar activities as selected from outside module, i.e. by a flag that selects operation to perform. That is, body of function is one huge if-else/ switch on operation flag&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Temporal Cohesion&lt;/td&gt;
 &lt;td&gt;Operations related only by general time performed&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Procedural Cohesion&lt;/td&gt;
 &lt;td&gt;Elements involved in different but sequential activities, each on different data (usually could be trivially split into multiple modules along linear sequence boundaries)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Communicational Cohesion&lt;/td&gt;
 &lt;td&gt;Unrelated operations except need same data or input&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Sequential Cohesion&lt;/td&gt;
 &lt;td&gt;Operations on same data in significant order; output from one function is input to next (pipeline)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Informational Cohesion&lt;/td&gt;
 &lt;td&gt;A module performs a number of actions, each with its own entry point, with independent code for each action, all performed on the same data structure. Essentially an implementation of an abstract data type&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
 &lt;td&gt;Functional Cohesion&lt;/td&gt;
 &lt;td&gt;All elements contribute to a single, well-defined task, i.e. a function that performs exactly one operation&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-289423729337859379?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Bu_mH5KO_YgQODAkXtSmiokkWGk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Bu_mH5KO_YgQODAkXtSmiokkWGk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Bu_mH5KO_YgQODAkXtSmiokkWGk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Bu_mH5KO_YgQODAkXtSmiokkWGk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/MywqXI3W7e4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/289423729337859379/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=289423729337859379" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/289423729337859379?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/289423729337859379?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/MywqXI3W7e4/coupling-and-cohesion-in-software-and.html" title="Coupling and Cohesion in Software and Business" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2011/11/coupling-and-cohesion-in-software-and.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0EBSX8_cSp7ImA9WhdaGEQ.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-387417689953894667</id><published>2011-10-23T09:56:00.002-04:00</published><updated>2011-10-29T09:40:58.149-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-10-29T09:40:58.149-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="eulogy" /><title>Goodbye World!</title><content type="html">I am glad to have seen him in person even if in passing - he was a great inspiration to a C of developers.&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;#include &amp;lt;stdio.h&amp;gt; 

int main()
{
&amp;nbsp;&amp;nbsp; /** Author: Dennis Ritchie */ 
&amp;nbsp;&amp;nbsp; /** You are expected to understand this */
&amp;nbsp;&amp;nbsp;&amp;nbsp;printf("Goodbye World\n");
&amp;nbsp;&amp;nbsp;&amp;nbsp;return 0;
}
&lt;/pre&gt;
RIP Dennis Ritchie!&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Dennis_MacAlistair_Ritchie_.jpg/225px-Dennis_MacAlistair_Ritchie_.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Dennis_MacAlistair_Ritchie_.jpg/225px-Dennis_MacAlistair_Ritchie_.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-387417689953894667?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9YcYJd_Q7ILXWvZFcU_4WiHdeqE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9YcYJd_Q7ILXWvZFcU_4WiHdeqE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9YcYJd_Q7ILXWvZFcU_4WiHdeqE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9YcYJd_Q7ILXWvZFcU_4WiHdeqE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/7Og9KS0ikvk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/387417689953894667/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=387417689953894667" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/387417689953894667?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/387417689953894667?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/7Og9KS0ikvk/goodbye-world.html" title="Goodbye World!" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2011/10/goodbye-world.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkUFRnk-cCp7ImA9WhdaE0o.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-2932126585451465197</id><published>2011-10-05T21:29:00.001-04:00</published><updated>2011-10-23T09:56:57.758-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-10-23T09:56:57.758-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="eulogy" /><title>Rest In Peace Steve Jobs!</title><content type="html">&lt;blockquote&gt;
Almost everything--all external expectations, all pride, all fear of embarrassment or failure--these things just fall away in the face of death, leaving only what is truly important. Remembering that you are going to die is the best way I know to avoid the trap of thinking you have something to lose. You are already naked. There is no reason not to follow your heart.&amp;nbsp; &lt;br /&gt;
&lt;b&gt;&lt;/b&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;b&gt;Steve Jobs

&lt;/b&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-G1Vz_ibfupA/To0ET8driGI/AAAAAAAAB7M/GX3159vwgdo/s1600/SteveJobs.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="467" src="http://2.bp.blogspot.com/-G1Vz_ibfupA/To0ET8driGI/AAAAAAAAB7M/GX3159vwgdo/s640/SteveJobs.png" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
It's a sad day for American innovation and the Tech World - an icon has passed away - an icon who was a phoenix in the Tech world, who rose out of the ashes to become more powerful than what he was before.&lt;br /&gt;
&lt;br /&gt;
Much as I am not an iFan, I admire the creative genius and charisma that is Steve Jobs. It is rare to see charisma and genius combined into one package, and Steve Jobs was one of them. He was the man with the Midas touch over the last couple of decades with both Pixar and Apple - creating products and films that were blockbusters every single time.&lt;br /&gt;
&lt;br /&gt;
We salute you, Steve!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-2932126585451465197?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/dCQooSx9_GYHjBz1HfsrqcZU2nM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dCQooSx9_GYHjBz1HfsrqcZU2nM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/dCQooSx9_GYHjBz1HfsrqcZU2nM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dCQooSx9_GYHjBz1HfsrqcZU2nM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/4DUvmV0QFmM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/2932126585451465197/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=2932126585451465197" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/2932126585451465197?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/2932126585451465197?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/4DUvmV0QFmM/rest-in-peace-steve-jobs.html" title="Rest In Peace Steve Jobs!" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-G1Vz_ibfupA/To0ET8driGI/AAAAAAAAB7M/GX3159vwgdo/s72-c/SteveJobs.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2011/10/rest-in-peace-steve-jobs.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkUMR3wzeSp7ImA9WhdVFUo.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-5059815929310335640</id><published>2011-09-19T22:53:00.002-04:00</published><updated>2011-09-21T00:11:26.281-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-09-21T00:11:26.281-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ideation" /><title>Curse of Knowledge</title><content type="html">It's been a while since the last post - unfortunately blog updates is the first victim in a busy schedule.&lt;br /&gt;
&lt;br /&gt;
A few years back, I read the book &lt;a href="http://www.amazon.com/Made-Stick-Ideas-Survive-Others/dp/1400064287/"&gt;Made to Stick by Chip and Dan Heath&lt;/a&gt;.  It's a very interesting book and the authors talk about how to make  ideas stick in people's minds. The crux of the book is that in order for  an idea to stick, it must have 6 elements - Simplicity, Unexpectedness,  Concreteness, Credibility, Emotions, and Stories. More on that at a  later date. In the course of the book, the authors also make a reference  to something called the "Curse of Knowledge". While the idea has been  around a while, this name stuck in my head.&lt;br /&gt;
&lt;br /&gt;
&lt;iframe frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?lt1=_blank&amp;amp;bc1=000000&amp;amp;IS2=1&amp;amp;bg1=FFFFFF&amp;amp;fc1=000000&amp;amp;lc1=0000FF&amp;amp;t=sathswebs-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=as4&amp;amp;m=amazon&amp;amp;f=ifr&amp;amp;ref=ss_til&amp;amp;asins=1400064287" style="height: 240px; width: 120px;"&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
You might wonder - why is knowledge a curse? Isn't knowledge what every person and every organization trying to achieve? Wouldn't having more knowledge make one wiser and more blessed? Why would it be a curse then? Does it even make sense in a knowledge-oriented world?&lt;br /&gt;
&lt;br /&gt;
In this case, the reason why knowledge is a curse because once you learn something, it is difficult and in many cases, impossible to unlearn it, thereby making it harder for a knowledgeable person to explain how he/she gained the knowledge to a layman.&lt;br /&gt;
&lt;br /&gt;
If you think about it, this is a very profound issue and happens everyday in our lives. Once you know how to do something it's harder to explain it to others who have not yet been enlightened by the knowledge.&lt;br /&gt;
&lt;br /&gt;
Imagine trying to explain how a particular piece of code you've developed works to another developer, or how you came up with a specific design to a manager in non-technical terms. Remember the crappy documentation you've complained about time and again. Some cane be traced to laziness, but others can indeed be traced to the curse. It's very difficult for us to let go of the knowledge gain and revert back to a previous position - there is no "undo" button in life. &lt;br /&gt;
&lt;br /&gt;
Apart from making it difficult to communicate to others, the curse of knowledge has a number of other side effects as well. It fosters preconceived notions and sometimes makes it harder to see the facts as they are. As Sherlock Holmes said, "It is a capital mistake to theorize before one has facts. Inevitably, one tends to twist facts to suit theories instead of theories to suit facts" and sometimes having too much knowledge can make one do just that.&lt;br /&gt;
&lt;br /&gt;
Every curse typically has a remedy in stories. So, is there a remedy to break this curse? Not really because of the above mentioned lack of "undo" button! However, I feel there are a few ways in which the curse can be relaxed a bit - enough to carry on with our lives. Here's my quick list.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Put yourself in a child's shoes&lt;/b&gt;&lt;br /&gt;
One of my favorite comic strips is Calvin and Hobbes - a true American classic. While each piece is a gem, my favorite is when &lt;a href="http://www.s-anand.net/blog/calvin-and-hobbes-dad-explains-science/"&gt;Calvin's dad explains science&lt;/a&gt; to him. Before you create a presentation or a document especially to a manager or a non-technical person, imagine how it would read from a child's perspective. In most cases, out will go all the acronyms, jargon, and assumptions you've made. This can be a great way to help simplify the message. This works even better on simpler things like email as well.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Imagine you are making a move out of it&lt;/b&gt;&lt;br /&gt;
When directing a movie, you have to make sure it reaches all forms of audience - both elite and the non-elite (if you want to make big money, at least). That means your story has to be simple, crisp, and easy to digest. It can have a complex story as long as you are able to explain in a way the viewer can comprehend. Imagining that you are directing a movie on the message you want to tell can help you simplify your message and remove a lot of fluff that you'd have otherwise added because you just don't want to miss out on any detail and want to say anything and everything.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Develop an analogy from a completely different domain&lt;/b&gt;&lt;br /&gt;
I have found this to be helpful in many places - try equating what you are trying to convey in a completely different field like say, music, or arts, or something seemingly unrelated. This is something that can come closest to the reversal of the curse. By trying to translate your known knowledge into an unknown domain, you are essentially putting yourself in the layman's shoe - in essence, reliving your lack of knowledge, which can be a great way to understand how the other person might perceive your information.&lt;br /&gt;
&lt;br /&gt;
One very pronounced area where the curse of knowledge is prevalent is in the blogosphere. After all, blogs are about sharing knowledge one has gained - be it a tip on a software, a book you've read, or a issue you faced. Providing enough context before conveying the message and easing the viewer into the message can go a long way in them empathizing with your view.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;PS: A personal appeal &lt;/b&gt;&lt;br /&gt;
I have seen this especially pronounced in blogs on Sanskrit or Hinduism, where in many cases, it's not a curse of knowledge but rather a 'brag' of knowledge. Eager viewers are turned off by generously sprinkled Sanskrit with no explanation whatsoever, breaking the flow of the message and distracting readers. It only takes a few more minutes to add an explanation - even in a footnote - on what the phrases mean to demystify the message. If you go through all the trouble to write a post, why not go just that extra mile to add some additional detail? After all, these messages are intended to last beyond the time when it's written - might as well make it stand-alone! I hope they break or at least relax the clutches of the curse and shed some more light.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-5059815929310335640?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/x7XCiGB0GzHdprZylFk1BFFWGuE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/x7XCiGB0GzHdprZylFk1BFFWGuE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/x7XCiGB0GzHdprZylFk1BFFWGuE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/x7XCiGB0GzHdprZylFk1BFFWGuE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/k3Yb64lQTAk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/5059815929310335640/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=5059815929310335640" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/5059815929310335640?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/5059815929310335640?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/k3Yb64lQTAk/curse-of-knowledge.html" title="Curse of Knowledge" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>3</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2011/09/curse-of-knowledge.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0AHSHk9eyp7ImA9Wx9bFUQ.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-7064029346178327987</id><published>2011-02-24T18:55:00.000-05:00</published><updated>2011-02-24T18:55:39.763-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-02-24T18:55:39.763-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="comics" /><category scheme="http://www.blogger.com/atom/ns#" term="eulogy" /><title>Illustrated stories and an illustrious writer</title><content type="html">No sooner than three days since I wrote my last post about the start of the 'death march' of my emotional relatives, the news came today of the demise of another illustrious member of that group - Mr. Anant Pai.&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/commons/5/59/Ananta_Pai.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" src="http://upload.wikimedia.org/wikipedia/commons/5/59/Ananta_Pai.jpg" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Source: http://en.wikipedia.org/wiki/Anant_Pai&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;Most outside India (and sadly most inside either) may not have heard of Mr. Pai but he has been a driving force in the life of children in India over the last few decades. You see, Pai was the creator of a number of comic books in India, the most popular series of them being the &lt;span id="goog_1065792803"&gt;&lt;/span&gt;&lt;a href="http://en.wikipedia.org/wiki/Amar_Chitra_Katha"&gt;Amar Chitra Katha&lt;span id="goog_1065792804"&gt;&lt;/span&gt;&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Tinkle"&gt;Tinkle&lt;/a&gt;. The books were aimed at the 8 to 14 year old group, the key age where children start understanding the world and start shaping their moral character.&lt;br /&gt;
&lt;br /&gt;
The story of how Mr. Pai started his career in this field itself is fairly interesting. The story goes that &lt;i&gt;the idea behind starting a comic book series devoted to Indian culture and history came to Pai from a quiz contest aired on &lt;a href="http://en.wikipedia.org/wiki/Doordarshan"&gt;Doordarshan&lt;/a&gt;  in February 1967, in which participants could easily answer questions  pertaining to Greek mythology, but were unable to reply to the question  "In the &lt;a href="http://en.wikipedia.org/wiki/Ramayana"&gt;Ramayana&lt;/a&gt;, who was Rama's mother?&lt;/i&gt;" Pai actually did something about this. He dipped into this huge  treasure trove of the folklore both in India and elsewhere and converted the gems into pictorial stories in a way  that could be easily digested by kids. His significant work in this field is probably the single biggest contribution in converting the traditional oral tradition of India into the more modern written format.&lt;br /&gt;
&lt;br /&gt;
I have spent countless hours during my childhood days devouring many of these stories. I was happy to see that after a lull these comics are being reprinted in India and are selling like hotcakes. It is not easy to convert a story into a pictorial form without losing its integrity. Pai was a master in doing this and his creations have been cherished over the years and am sure will remain in readers' memories for years to come.&lt;br /&gt;
Interestingly, I am seeing the trend of visualization crossing the boundaries of 'kid magazines' and into the business world. Recent books like &lt;a href="http://www.amazon.com/Back-Napkin-Expanded-Problems-Pictures/dp/1591843065?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Back of the Napkin&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=1591843065" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt; and &lt;a href="http://www.amazon.com/Visual-Meetings-Graphics-Transform-Productivity/dp/0470601787?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Visual Meetings&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0470601787" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt; are bringing this concept into the business world. It takes a lot of effort to simplify a complex concept and explain it elegantly. Being visual beings, we understand and process pictures much better than words, as we are naturally born to do so. One of my hopes is to master my visual craft further and do something in this space. If you have enjoyed reading comics - be it by Pai or others - and love the simplicity and expressive nature of the medium, I encourage you to read &lt;a href="http://www.amazon.com/Making-Comics-Storytelling-Secrets-Graphic/dp/0060780940?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Scott McCloud's Making Comics&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0060780940" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;, where he describes the art and science of this beautiful medium.&lt;br /&gt;
&lt;br /&gt;
In the meanwhile, the death march continues... My prayers for Mr. Pai and his family - for boldly going where no one dared to go and for preserving the treasures of the past for generations to come.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-7064029346178327987?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/oQc5_7mLFPvcAnkuCpjNn4dYR68/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/oQc5_7mLFPvcAnkuCpjNn4dYR68/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/oQc5_7mLFPvcAnkuCpjNn4dYR68/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/oQc5_7mLFPvcAnkuCpjNn4dYR68/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/68Tn5w_yQto" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/7064029346178327987/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=7064029346178327987" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/7064029346178327987?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/7064029346178327987?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/68Tn5w_yQto/illustrated-stories-and-illustrious.html" title="Illustrated stories and an illustrious writer" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2011/02/illustrated-stories-and-illustrious.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkYHRXc-fyp7ImA9Wx9bFUQ.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-5757872684831840601</id><published>2011-02-21T23:47:00.002-05:00</published><updated>2011-02-24T18:28:54.957-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-02-24T18:28:54.957-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="philosophy" /><category scheme="http://www.blogger.com/atom/ns#" term="eulogy" /><title>The 'Emotional' Death March</title><content type="html">No - this has nothing to do with holocaust or any such historic event. Rather, this is something a lot more personal and something that I am sure each of us will experience at some point in time - typically coinciding with our mid-life crisis (give or take a few years).&lt;br /&gt;
&lt;br /&gt;
While what I am about to share with you is very topical, but I am sure you can relate with your own equivalent memories. With that in mind, read on.&lt;br /&gt;
&lt;br /&gt;
You probably have heard of Buddha's life story in one form or the other. The gist of the story is that he was a royal prince with all the riches in the world and shielded from the miseries of life. One day he steps out of his palace and sees people at varied stages in their life and comfort - the poor, the ill, and the dead. At this transformational moment, he leaves his worldly attachments in search for the meaning of life and eventually attains englightenment.&lt;br /&gt;
&lt;br /&gt;
While everyone is not necessarily a Buddha, I feel that we end up going through at least the first part of the story in our own way - the only difference being the Buddha and the rest is that we don't follow through - much like an amateur golfer and Phil Mickelson!&lt;br /&gt;
&lt;br /&gt;
Many of us start our lives in a fairly well shielded environment. We experience illness and death here and there, but most are distant enough that we are not too emotionally affected by those events. As we grow up, we build our own memories during school and college and eventually culminating at our work lives. However, it is during our mid-life (well mid to late thirties anyways) that we come face to face with transformational moments - and in most cases, they are not related to 'blood' relatives but rather 'emotional' relatives - ones that we grew up with emotionally.&lt;br /&gt;
&lt;br /&gt;
A classic case of such an emotional relative is John Lennon for those who grew up in the sixties and seventies listening to the Beatles and the impact that his death had on them.&lt;br /&gt;
&lt;br /&gt;
My transformational moment happened a few months back on hearing the news of the death of 'Sujatha' (aka Rangarajan) a well-known and well-respected author / script writer in India (especially Tamilnadu).&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/en/7/7e/Writer_Sujatha.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" src="http://upload.wikimedia.org/wikipedia/en/7/7e/Writer_Sujatha.png" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Source: &lt;a href="http://en.wikipedia.org/wiki/Sujatha_Rangarajan"&gt;http://en.wikipedia.org/wiki/Sujatha_Rangarajan&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;Sujatha, an engineer by work and author by hobby was an amazing influence on those who grew up during the eighties and nineties in Madras (now Chennai) in India. He had an amazing knack of making science fun and in writing O.Henry-esque stories with ease. He was extremely versatile in writing and had an amazing range of interests which he willingly and eagerly shared with his readers.&lt;br /&gt;
&lt;br /&gt;
He was one of the first 'emotional' relative that I lost and it was hard. I felt the inexplicable sinking, knot-in-the-stomach feeling when I read the news. It's when the reality of death struck me fairly strongly. I feel that these are the times when we come face to face with our own temporal existence and take a hard look at ourselves and what we have accomplished so far - probably the onset of mid-life crisis!&lt;br /&gt;
&lt;br /&gt;
Recently, there was another such incident. While this 'emotional' relative - Malaysia Vasudevan, a popular singer in Tamil films in the eighties - was not as impactful as Sujatha, it did prompt me to write this article. It was not really due to my attachment with his songs but rather more due to one of the songs he sang and how it intersected with my life. You see, one of the more popular songs he sang (shown below), was shot in the auditorium of the school where I was studying during my junior high school days.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://2.gvt0.com/vi/CQXmGk4x-bo/0.jpg" height="266" width="320"&gt;&lt;param name="movie" value="http://www.youtube.com/v/CQXmGk4x-bo&amp;fs=1&amp;source=uds" /&gt;&lt;param name="bgcolor" value="#FFFFFF" /&gt;&lt;embed width="320" height="266" src="http://www.youtube.com/v/CQXmGk4x-bo&amp;fs=1&amp;source=uds" type="application/x-shockwave-flash"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;br /&gt;
My class was adjacent to the auditorium so much so that the auditorium air-vent-window was on one of the walls. As any kid would, we crowded around the window and peeped into the auditorium and watched the set being constructed and shot being taken with curiosity and awe!&lt;br /&gt;
&lt;br /&gt;
I am sure this is just the beginning and there are many more 'emotional' relatives who are going to go beyond the horizon over the next few decades. The question is whether I will go in search of the truth like Buddha or let the events numb me and go back to getting immersed in TV - what do you think?!&lt;br /&gt;
&lt;br /&gt;
If you have a moment, share your first 'emotional' relative whose passing affected you personally via a comment. If you don't have one yet, stop reading this blog and go on collecting more 'emotional' relatives - you still have time!&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Update: &lt;/b&gt;After I published the post, I have been corrected rightly that the singer for the song above is K J Yesudas and not Malaysia Vasudevan. Interestingly, I ended up viewing the song as a 'related song' after listening to one of &lt;a href="http://www.youtube.com/watch?v=b9-7_rW9H28"&gt;Malaysia Vasudevan's songs&lt;/a&gt; shared by my friend Bala - I guess my mind generalized the singers by then and just kept the emotional content :) &lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://3.gvt0.com/vi/b9-7_rW9H28/0.jpg" height="266" width="320"&gt;&lt;param name="movie" value="http://www.youtube.com/v/b9-7_rW9H28&amp;fs=1&amp;source=uds" /&gt;&lt;param name="bgcolor" value="#FFFFFF" /&gt;&lt;embed width="320" height="266" src="http://www.youtube.com/v/b9-7_rW9H28&amp;fs=1&amp;source=uds" type="application/x-shockwave-flash"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-5757872684831840601?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/xazBs7J4U8Ycc3DsnR3cfAjkYHM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xazBs7J4U8Ycc3DsnR3cfAjkYHM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/xazBs7J4U8Ycc3DsnR3cfAjkYHM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xazBs7J4U8Ycc3DsnR3cfAjkYHM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/9H21YoxiPCg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/5757872684831840601/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=5757872684831840601" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/5757872684831840601?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/5757872684831840601?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/9H21YoxiPCg/emotional-death-march.html" title="The 'Emotional' Death March" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>3</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2011/02/emotional-death-march.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkUFQ388cCp7ImA9Wx9UFkw.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-1207616889711120040</id><published>2011-02-13T10:16:00.000-05:00</published><updated>2011-02-13T10:16:52.178-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-02-13T10:16:52.178-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="abstraction" /><title>The Power of Abstraction</title><content type="html">Abstraction is a fairly powerful concept and one that is most used and abused pretty much everywhere, especially within the IT industry. It is difficult, if not impossible to sit in a meeting without hearing the word being used at least ones, mostly incorrectly. The usage is normally more incorrect as the level of the meeting attendees goes up ('pointy-haired boss' anyone?!)&lt;br /&gt;
&lt;br /&gt;
Surprisingly, abstraction is something our brains seem to be happy to handle. In fact, many a research has shown that the brain actually prefers abstraction a lot and uses it as a tool to reduce the amount of information that it needs to hold. One classic example is the Gestaldt diagram you might have seen elsewhere.&lt;br /&gt;
&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_nvWgMkmFQCE/R2oHth7sFbI/AAAAAAAAAxY/jaGY3VHfSUM/s400/Gestalt+dog.gif" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_nvWgMkmFQCE/R2oHth7sFbI/AAAAAAAAAxY/jaGY3VHfSUM/s400/Gestalt+dog.gif" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Source: http://www.freshbrainz.com/2007_06_01_archive.html &lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;Sometimes it does not have to be complicated. Just a couple of strokes should be sufficient to recognize something, however abstract it may be.&lt;br /&gt;
&lt;br /&gt;
&lt;table cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/commons/4/4c/Gandhi-icon.jpg" imageanchor="1" style="clear: left; margin-bottom: 1em; margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="169" src="http://upload.wikimedia.org/wikipedia/commons/4/4c/Gandhi-icon.jpg" width="200" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Source: &lt;a href="http://commons.wikimedia.org/wiki/File:Gandhi-icon.jpg"&gt;Wiki Commons&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;Like any concept, abstraction can be used for the good or the bad, &lt;i&gt;or even something in between&lt;/i&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://www.premisemarketing.com/images/uploads/ad_apple-ipod-advertisment.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="320" src="http://www.premisemarketing.com/images/uploads/ad_apple-ipod-advertisment.jpg" width="254" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Source: http://www.premisemarketing.com/blog/post/got-to-be-real1/&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;I feel abstraction is quite helpful - it helps simplify things and help me understand the larger picture without having to know everything.&lt;br /&gt;
&lt;br /&gt;
Abstraction has also been used for a long time. Ancient Hindu scriptures used a form of literary abstraction named sutras (or aphorisms) that condensed the meaning of a complex philosophical concept into a few words. Most likely such a mechanism was utilized due to the oral tradition that existed back then - necessitating a condensed format that was easy to remember and pass on to future generations, with the explanation left to the teacher. Such abstractions are similar to some architecture diagrams that I see on a daily basis, generic, somewhat useful, but does not make much sense without someone being available to explain it properly (on the flip side, this has been conveniently been used by business analysts and architects to reuse generic frameworks or concepts pretty much everywhere without much thought to whether it makes sense or not). Proverbs and fables are other forms of literary abstractions that you might have heard in your childhood from your grandmother.&lt;br /&gt;
&lt;br /&gt;
However, abstractions cannot live alone. A good abstraction typically requires a supporting framework - a generic structure that can hold specifics. A classic example of a framework is the periodic table. Having a framework such as the table helped Mendelev find elements that had not even been discovered yet. A good framework - be it an architecture diagram or a process flow or a mind map can help identify gaps and help us move towards the 'right' state. &lt;br /&gt;
&lt;br /&gt;
However, increasingly of late I have been seeing the darker side of abstraction - abstraction used as a means for confusing people or even simplifying things to an extent where the abstraction does not even make sense. &lt;br /&gt;
&lt;br /&gt;
One of the greatest and most recent examples of abstraction being used in the most evil manner is the near collapse of the US financial market. The financial elements that were involved in the financial collapse were highly abstract in nature - most involving three or four levels of abstraction, so much so that the investor had no clue what he was investing in.&lt;br /&gt;
&lt;br /&gt;
Other similar examples can be found in politics elsewhere, such as the Spectrum Scandal in India where the amount of money involved is so huge and so far removed from the common man that people are numb to the extent of the scam or the seriousness of it all.&lt;br /&gt;
&lt;br /&gt;
On the other side, non-abstraction can also be equally bad. A great example is the US news media (which of late, is sadly being copied in emerging nations as well). This situation, perpetrated by the 24x7 news media, is where a simple concept that can be explained in 2 sentences is stretched out across the entire day or multiple days, providing so much redundant detail that the core issue is lost on the user. In most cases, even those who report the news get so bored that you hear them repeating the same questions over and over again, sometimes without even expecting an answer ("How do you feel about this?" "I am sure this is traumatic for you." "Did you feel bad?").&lt;br /&gt;
&lt;br /&gt;
Hope this post was not too abstract for you to grab the idea - "Abstraction can be good or evil - use it for good."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-1207616889711120040?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/50oqdbz_GzWim7sQv_7VG88OvXM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/50oqdbz_GzWim7sQv_7VG88OvXM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/50oqdbz_GzWim7sQv_7VG88OvXM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/50oqdbz_GzWim7sQv_7VG88OvXM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/k-YE8SPw2NA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/1207616889711120040/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=1207616889711120040" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/1207616889711120040?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/1207616889711120040?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/k-YE8SPw2NA/power-of-abstraction.html" title="The Power of Abstraction" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_nvWgMkmFQCE/R2oHth7sFbI/AAAAAAAAAxY/jaGY3VHfSUM/s72-c/Gestalt+dog.gif" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2011/02/power-of-abstraction.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUQGRHs8fip7ImA9Wx5bEUk.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-298765405107518534</id><published>2010-10-26T20:40:00.001-04:00</published><updated>2010-10-26T21:35:25.576-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-26T21:35:25.576-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="e-books" /><title>Book Clubs taken to a new level?</title><content type="html">With relatively little fanfare, Barnes &amp;amp; Noble, one of the largest bookstores in USA, released its new version of e-reader - Nook Color today. In the last post, I had mentioned how an e-reader experience does not come close to the real deal. At the same time, I mentioned that there are some areas (such as manuals and reference books) where an e-book can come in handy instead of having to lug around huge tomes. This is where the sweet spot for an e-reader to me is.&lt;br /&gt;
&lt;br /&gt;
As an avid reader, one of the biggest attractions to me after I came to USA was Barnes &amp;amp; Noble - the wide selection of books, resident coffee shop, and more importantly, the freedom to sit down and thumb through books at leisure. During my bachelor days, I used to sit down for hours over weekend (and at times during weeknights) in the company of books (geeky, I agree). As an IT professional, this was very helpful since I couldn't afford the breadth of books required to keep myself up to date. I used to do my bit of paying back by buying coffee, snacks, their yearly membership, and occasional bargain books I could afford.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_9RdnraXdpU8/S_rU3BOX5QI/AAAAAAAADiI/1j0q3n3X1w0/s1600/barnes-and-noble-booksellers.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="156" src="http://4.bp.blogspot.com/_9RdnraXdpU8/S_rU3BOX5QI/AAAAAAAADiI/1j0q3n3X1w0/s200/barnes-and-noble-booksellers.jpg" width="200" /&gt;&lt;/a&gt;&lt;a href="http://topnews.us/images/Barnes-Noble_2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="150" src="http://topnews.us/images/Barnes-Noble_2.jpg" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;Eventually, Amazon came into being and B&amp;amp;N popularity declined, leading it to think about &lt;a href="http://www.thestreet.com/story/10826084/1/barnes-noble-may-sell-company.html"&gt;putting itself on sale&lt;/a&gt;. I have always felt that B&amp;amp;N missed a good opportunity by not capitalizing its brick and mortar stores and augmenting it with its online presence. In this era of instant gratification, it would have been nice to be able to order the book online at a price competitive with Amazon and be able to pick it up at the nearest store. I am sure that there are some pricing issues involved here, but it couldn't be any worse than losing the sale to Amazon!&lt;br /&gt;
&lt;br /&gt;
Similar opportunities were missed when Amazon introduced Kindle and it took a while for B&amp;amp;N to get in the bandwagon with the Nook. Now, almost a year after the old Nook, B&amp;amp;N has announced the release of &lt;a href="http://www.barnesandnoble.com/nookcolor/index.asp?cds2Pid=35607"&gt;Nook Color&lt;/a&gt;, the successor to Nook. At the outset, this does not sound like a good idea - Nook Color is customized version of an Android Tablet. So, it does not have the advantages of an e-reader (e-ink) or that of a tablet (app store and flexible OS).&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://img1.imagesbn.com/pImages/nook/encore/overview/nookcolor/Meet_Nook_4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://img1.imagesbn.com/pImages/nook/encore/overview/nookcolor/Meet_Nook_4.jpg" width="138" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
However, I think they do have two great ideas that compensates for the disadvantages - the Kids Store and the Social Networking angle. I personally am not a fan of putting kids books on an e-reader for the same reasons I had mentioned earlier - it does not carry the same emotions as that of a nice picture book held by you and your child. However, after having seen my nephews and nieces take to electronic gadgets so easily, I have reluctantly started accepting the harsher realities of life that the level of emotion attached to material things diminish as generations pass by. So, I think it is a clever move on B&amp;amp;N's part to introduce kiddie books on the Nook, something the Kindle and iPad have failed to capitalize.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://img1.imagesbn.com/pImages/nook/encore/features/details-e/encore_feature_details_kids_pod2_1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="131" src="http://img1.imagesbn.com/pImages/nook/encore/features/details-e/encore_feature_details_kids_pod2_1.jpg" width="200" /&gt;&lt;/a&gt;&lt;a href="http://img1.imagesbn.com/pImages/nook/encore/features/details-e/encore_feature_details_lendme_pod3_1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="131" src="http://img1.imagesbn.com/pImages/nook/encore/features/details-e/encore_feature_details_lendme_pod3_1.jpg" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;&amp;nbsp;The other major idea is bringing social networking to reading, at least more seamlessly. I love the idea that you can 'lend' books to other 'Nook'ies. Many a times I have read a nice book that I wanted to share with others but also know that they may not really want to buy it - lending is perfect in these situations. Not only it builds a nice community, but also promotes the purchase of Nooks within these circles - it gives a whole new dimension to a book club. I can envision Oprah giving out Nooks in her next Book Club meeting!&lt;br /&gt;
&lt;br /&gt;
In addition, the Nook Color also seems to have the qualities that I personally look for in an e-reader / tablet: &lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Display color&lt;/li&gt;
&lt;li&gt;Render PDF files&lt;/li&gt;
&lt;li&gt;Expandable memory via SD cards or equivalent&lt;/li&gt;
&lt;li&gt;Additional features like music/video playback, a few games, and a web browser&lt;/li&gt;
&lt;/ol&gt;There is still a question of execution. As of this writing, Nook Color is still a few weeks away from being available and I am not sure how good the device itself is. Assuming that it is decent, I hope for Barnes &amp;amp; Noble's sake that this causes a real revolution and evolves e-reading beyond what Kindle and iPad have been able to do.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-298765405107518534?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/R5Ph6ofSgnJzaj_5etDIKZK49Vw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/R5Ph6ofSgnJzaj_5etDIKZK49Vw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/R5Ph6ofSgnJzaj_5etDIKZK49Vw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/R5Ph6ofSgnJzaj_5etDIKZK49Vw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/vvA5RK_sPyo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/298765405107518534/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=298765405107518534" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/298765405107518534?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/298765405107518534?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/vvA5RK_sPyo/book-clubs-taken-to-new-level.html" title="Book Clubs taken to a new level?" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_9RdnraXdpU8/S_rU3BOX5QI/AAAAAAAADiI/1j0q3n3X1w0/s72-c/barnes-and-noble-booksellers.jpg" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/10/book-clubs-taken-to-new-level.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0IGQXw4fCp7ImA9Wx5VE0Q.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-5299936037837653643</id><published>2010-10-04T22:44:00.001-04:00</published><updated>2010-10-06T16:05:20.234-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-06T16:05:20.234-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="e-books" /><title>Ponniyin Selvan and the pleasure of reading non-ebooks</title><content type="html">&lt;a href="http://en.wikipedia.org/wiki/Ponniyin_Selvan"&gt;Ponniyin Selvan&lt;/a&gt; (The son of Ponni) is a historic fiction novel created around King Raja Raja Chola, one of the most prominent and arguably the greatest kings of South India (circa 1000 AD) by R Krishnamurthi (aka Kalki), a very well known author/publisher/freedom fighter. The novel is considered a masterpiece and is an immense pleasure to read, all 1000 and odd pages of it.&lt;br /&gt;
&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;img border="0" height="238" src="http://2.bp.blogspot.com/_rdImYiTkVII/Smfqg28dSTI/AAAAAAAAFAE/Vzs7OJ7-E8Y/s320/kalki.JPG" style="margin-left: auto; margin-right: auto;" width="320" /&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;&lt;br /&gt;
&lt;b&gt;Kalki (middle) shown in a depiction with the key characters of the novel&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_rdImYiTkVII/Smfqg28dSTI/AAAAAAAAFAE/Vzs7OJ7-E8Y/s400/kalki.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;/a&gt;&lt;/div&gt;Krishnamurthi was also known for his &lt;a href="http://www.kalkiweekly.com/"&gt;weekly magazine Kalki&lt;/a&gt; that he started in 1941, which ended up becoming his nickname as well. One of the huge selling points of the magazine was in fact, his novels that were published as a continuing story that would last for a few years. The magazine is still keeping that format in tact, even after seven decades in print.&lt;br /&gt;
&lt;br /&gt;
One big pastime for subscribers of the magazine was to rip the pages containing the story to make the whole novel. This was before even buying books were a common occurrence. My grandfather had such a compilation of the story when it was published around 1970. As a kid, I read the story multiple times (all 1000 and odd pages) during my summer vacations at his house, mostly on the front porch on idyllic summer afternoons. Such was the simplicity of Kalki's writing that even a teen like me could easily understand such a complex story. The novel was so powerful that after I finished reading it, I would still be stuck in the eleventh century for a few days, and even wish that I were born then! &lt;br /&gt;
&lt;br /&gt;
What was equally fun for me was not just the story itself but all the additional snippets that were captured as part of the compilation - tidbits, jokes, even advertisements from 30 years back - it was kind of Norman Rockwellesque in some sense in that they were temporal snapshots and took me back in time, most appropriate given I was reading a period novel. The faded and aged look of the pages added to the authenticity. To make things sweeter, the print was also accompanied by the original drawings of Maniam, Kalki's favorite artist, which were exquisite. &lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://kavirimainthan.files.wordpress.com/2008/09/ponniyin_selvan_volume_1.jpg?w=180&amp;amp;h=250" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://kavirimainthan.files.wordpress.com/2008/09/ponniyin_selvan_volume_1.jpg?w=180&amp;amp;h=250" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
I could never bring myself to read the book in a published novel form, even though the story was the same. Somehow, the charm of reading that battered compilation of magazine articles was more authentic than reading a crisp, neatly printed novel, even if it had all other elements. I missed the ads, the 70s humor of &lt;i&gt;rettaival rangudu&lt;/i&gt;, an impish boy and his antics scattered around in some of the pages, and occasional and completely outdated "&lt;i&gt;Did you know&lt;/i&gt;" articles that were amusing.&lt;br /&gt;
&lt;br /&gt;
As we progress in the publishing media and try to replace a mechanism that has stood strong for 400 odd years by e-books, I wonder if we will lose some of that authenticity and the ability of books to transfer us back in time not just by words, but also by the look and feel. After all, emotions are triggered by the senses and not just by the mind alone. The same novel in an e-book feels even more fake to me and I don't feel the attachment I felt when I read those bound pages. Somehow our books are becoming less personal and more mechanical - and I don't know if it's such a good idea.&lt;br /&gt;
&lt;br /&gt;
I would love to have an e-reader for a host of other reasons (for reading impersonal manuals, for example), but I feel that a printed book still has its rightful place - to cozy up to in bed, while on a porch, on a sandy beach, and for so many other places - it just feels right.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-5299936037837653643?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fjSXvAcPIm3NLrr06enRVC2hAPc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fjSXvAcPIm3NLrr06enRVC2hAPc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/fjSXvAcPIm3NLrr06enRVC2hAPc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fjSXvAcPIm3NLrr06enRVC2hAPc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/VVZYXXGuXrw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/5299936037837653643/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=5299936037837653643" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/5299936037837653643?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/5299936037837653643?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/VVZYXXGuXrw/ponniyin-selvan-and-pleasure-of-reading.html" title="Ponniyin Selvan and the pleasure of reading non-ebooks" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_rdImYiTkVII/Smfqg28dSTI/AAAAAAAAFAE/Vzs7OJ7-E8Y/s72-c/kalki.JPG" height="72" width="72" /><thr:total>2</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/10/ponniyin-selvan-and-pleasure-of-reading.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkIHRnk_eCp7ImA9Wx5XGUk.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-524282529410552618</id><published>2010-09-19T19:55:00.000-04:00</published><updated>2010-09-19T19:55:37.740-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-19T19:55:37.740-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="comics" /><category scheme="http://www.blogger.com/atom/ns#" term="presentation" /><title>Comics and Presentation</title><content type="html">&lt;iframe align="right" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=sathswebs-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0060780940&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;In the last post, I mentioned how I felt the concepts behind a comic  (strip or book) to be very similar to those behind a business  presentation, when I read &lt;a href="http://www.amazon.com/Making-Comics-Storytelling-Secrets-Graphic/dp/0060780940?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Scott McCloud's Making Comics&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0060780940" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt; book. I would like to expand on that.&lt;br /&gt;
&lt;br /&gt;
In his previous book &lt;a href="http://www.amazon.com/Understanding-Comics-Invisible-Scott-Mccloud/dp/006097625X?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Understanding Comics&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=006097625X" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt; - now a classic pertaining to field of comics, Scott McCloud defines the term comics as &lt;i&gt;"Juxtaposed pictorial and other images in deliberate sequence,  intended to convey information and/or produce an aesthetic response in  the reader"&lt;/i&gt;. It sounds a little academic. The crux of the definition is that comics is sequential art, where each frame is made of pictures and words to convey a message both individually and over the entire span. This definition fits equally well for presentations as well. After all, a presentation is nothing but a series of frames where each frame is normally made of words and pictures and conveys some information to the viewer.&lt;br /&gt;
&lt;br /&gt;
It looks like I was not alone in seeing the similarity. When I did a bit of research before penning this blog, I found an &lt;a href="http://www.sociablemedia.com/articles_mccloud.htm"&gt;interview by Scott McCloud&lt;/a&gt; himself talking about this, as well as &lt;a href="http://www.austinkleon.com/2008/05/13/for-successful-powerpoint-presentations-look-to-cartoonists/"&gt;others&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;img border="0" height="292" src="http://farm3.static.flickr.com/2074/2490043869_2693cc8000_o.gif" style="margin-left: auto; margin-right: auto;" width="400" /&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;&lt;b&gt;Source: &lt;/b&gt;&lt;a href="http://www.austinkleon.com/2008/05/13/for-successful-powerpoint-presentations-look-to-cartoonists/"&gt;Austin Kleon&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://farm3.static.flickr.com/2074/2490043869_2693cc8000_o.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;/a&gt;&lt;/div&gt;So, "What is the benefit?", you might ask. After all, comics is not necessarily associated with serious stuff - like pitch decks or lunch and learn sessions. It's supposed to be read &amp;amp; throw, right? Wrong. Think about this - which one have you felt is more engaging - comics or presentations? Which one has kept you on your toes, completely engaged, immersed? If the two share a number of common traits, then how come a comic is so interesting and a presentation is not? Is it just because of the relatively dry content of a presentation or is it something beyond that? After all, when we write a presentation, we don't start with the intent of boring people to do death, do we? What can we learn from the comic art that we have loved and apply to our presentations as well?&lt;br /&gt;
&lt;br /&gt;
One easy and most common mistake that has been made over the years is the lack of pictures. And on occasions where there are indeed pictures, the compelling urge to drown it with words describing what the picture means.&lt;br /&gt;
&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;img border="0" height="400" src="http://www.toothpastefordinner.com/113004/time-for-the-presentation.gif" style="margin-left: auto; margin-right: auto;" width="323" /&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;&lt;b&gt;Source: &lt;/b&gt;&lt;a href="http://blogs.uct.ac.za/blog/call-me-cassandra/2008/12/13/death-by-powerpoint-contd."&gt;Call me Cassandra - Death by PowerPoint&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.toothpastefordinner.com/113004/time-for-the-presentation.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;/a&gt;&lt;/div&gt;Let's take a look at what Scott says on things that makes a comic and things that makes it work. A clear, persuasive, and intense comic (and from here on, you can freely replace the word 'comic' with the word 'presentation') has the following components.&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;&lt;b&gt;Choice of moment: &lt;/b&gt;Picking what moments in a story to include and what not to&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Choice of frame: &lt;/b&gt;Picking the right angle and distance. In short, the right viewpoint to provide the right emphasis&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Choice of image: &lt;/b&gt;Picking the right image at the right level of detail&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Choice of words: &lt;/b&gt;Picking the words that go with the image&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Choice of flow: &lt;/b&gt;Picking the order of the frames that guides the readers from start to end&lt;/li&gt;
&lt;/ol&gt;The same rules govern a presentation as well. I have seen numerous instances (and in early days, I have fallen prey to this as well), where the writer tends to include a few slides either because it looks cool, or because they spent hours searching the Internet to get it and just didn't want the effort to go to waste, even though it does not add to the story. This is where the Slide Sorter mode in PowerPoint comes in. It lets you take a look at all the slides at slightly higher level and let you figure which ones to keep and which to remove. Comic writers (or any writer for that matter) go through this phase, and so should a presenter, if the aim is to make the presentation crisp and to the point. &lt;br /&gt;
&lt;br /&gt;
Similarly, the other aspects are equally important - picking the right bullets or emphasizing the right bullets to convey the message, picking the right images to add clarity to the text (or vice versa), and ordering the slides in such a way that it flows end to end in a cohesive manner.&lt;br /&gt;
&lt;br /&gt;
Comic writers can tell you how much work goes to creating a newspaper comic strip or a full-fledged novel. It takes weeks of preparation and work to produce a comic that is typically devoured in 30 minutes or so. The same unfortunately, applies to a presentation as well. While it may not take a few weeks, it will at least take a few hours if not, a couple of days to refine a deck - but at the end of the day, if it gives the same level of immersion as a comic strip or a graphic novel, I think the effort spent is worth it. &lt;br /&gt;
&lt;br /&gt;
He goes into a number of other details too long to mention in a simple blog entry, but definitely worth reading. Here's another example that pertains to the interaction between the words and pictures. Scott classifies the interaction into seven categories.&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;&lt;b&gt;Word-Specific: &lt;/b&gt;Words provide the information with pictures accentuating what the words say&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Picture-Specific: &lt;/b&gt;Pictures provide the information with words accentuating what the pictures say&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Duo-Specific: &lt;/b&gt;Both words and pictures say the same thing (added emphasis)&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Intersecting:&lt;/b&gt; Both work together, but also provide information independently&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Interdependent:&lt;/b&gt; Both work to provide meaning, but neither will provide the information alone&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Parallel: &lt;/b&gt;Each provide seemingly differing message that do not seem to converge&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Montage: &lt;/b&gt;Words conveyed as pictures&lt;/li&gt;
&lt;/ol&gt;In your next presentation, see if you can spot these variations. While each has its own purpose in life, most often we tend to overuse a few of the categories and more often than not, use one in place of another, thereby resulting in a poor presentation as a whole. &lt;br /&gt;
&lt;br /&gt;
I feel that a little extra effort and some understanding of the basics, even if not from the same field, can go a long way in making one's craft far more superior than where it currently is. I know I myself am not there yet, but hope to get there soon. After all, how awesome it will be if we can immerse our PowerPoint-viewing audience in the same way as a comics immerses a kid?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-524282529410552618?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/cA3q62SrWv3QO6geLWLytqtaIhE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cA3q62SrWv3QO6geLWLytqtaIhE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/cA3q62SrWv3QO6geLWLytqtaIhE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cA3q62SrWv3QO6geLWLytqtaIhE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/l7RX-klD9WM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/524282529410552618/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=524282529410552618" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/524282529410552618?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/524282529410552618?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/l7RX-klD9WM/comics-and-presentation.html" title="Comics and Presentation" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/09/comics-and-presentation.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkAAR3gzfSp7ImA9Wx5XGUw.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-5094995081225907745</id><published>2010-09-19T12:45:00.000-04:00</published><updated>2010-09-19T12:45:46.685-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-19T12:45:46.685-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="comics" /><category scheme="http://www.blogger.com/atom/ns#" term="presentation" /><title>Making Comics - A Review and a Teaser</title><content type="html">Last week, I read a very interesting book - &lt;a href="http://www.amazon.com/Making-Comics-Storytelling-Secrets-Graphic/dp/0060780940?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Making Comics by Scott McCloud&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0060780940" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;.&lt;iframe align="right" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=sathswebs-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0060780940&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt; The author, I later came to know, is also the one behind the &lt;a href="http://www.google.com/googlebooks/chrome/"&gt;Google Chrome manual&lt;/a&gt;, which caused quite a sensation when it came out. The book itself is written in a comic format, true to the message it conveyed. Like any typical comic book, this was very easy to read and to understand, even though it covered much heavier concepts.&lt;br /&gt;
&lt;br /&gt;
As a kid, and probably like any other kid of my time, I enjoyed reading comics, and still do. In India, the concept of a 'lending library' is quite popular - it's akin to a video library (such as Blockbuster) but for books. You become a member by paying a nominal fee and can borrow books - anywhere from a few days to a couple of weeks depending on the nature of the book - for a fraction of the actual price of the book. I am still not exactly sure if it violated copyrights of the book (although the model is similar to video libraries - so I guess it's OK) but it did expose me to a wide range of books to which I would otherwise have not had access.&lt;br /&gt;
&lt;br /&gt;
In fact, so much was my craze that whenever our family moved to a new city, the first thing I would do is become a member of the nearest lending library (sometimes three or four). The comics available in India were primarily European (Tintin, Asterix, and the like), American (Archie, Disney, and a few such as Mandrake and Phantom imported via Indrajal comics) and local flavors like Tinkle and Amar Chitra Katha (ACK).&lt;br /&gt;
&lt;br /&gt;
Comics were always an interesting read, primarily because of the mix of visuals and text, which suited my level of concentration as a tween. It was short, to the point, and fun. When I came to US, I was disappointed to find that most European comics were simply not available. I don't know if it was because of the tendency in USA to distinguish themselves from Europe (manifested in a number of ways) or just plain preference, but all I could find in bookshelves were either Marvel Comics (---man, fill the blanks for any word) or super-contemporary ones that I did not get. Recently, Japanese comics (Manga) seems to be the only non-US genre that has broken this barrier, and that too in a big way.&lt;br /&gt;
&lt;br /&gt;
Of late, I have been wondering why Indian comics has not blossomed beyond Tinkle and ACK despite access to a rich treasure of stories from generations past. One thing led to another, and I started exploring the world of comics - to understand what makes a comic instead of just reading them, which led me to the book in question.&lt;br /&gt;
&lt;br /&gt;
One of the general dilemmas one has when looking for a book about writing is the credibility of the author. If I want to read a book about comics, I expect the book to be written by an established comic writer. Same for a book on movie direction or story writing. However, I feel that this is wrong. Not all teachers of an art are accomplished in their area of expertise or vice versa (accomplished persons may not be good teachers). Barring a few (like Richard Feynman on teaching itself, or Stephen King and Ray Bradbury on writing), these two don't tend to meet and that is no reason to discredit a person's work.&lt;br /&gt;
&lt;br /&gt;
Frankly, I had not heard of Scott McCloud till I read this book. Regardless of whether he is an accomplished comic writer himself, he seems to have an excellent grasp of the theory behind writing comics. He breaks down the concepts behind a comic in a simple yet profound manner. My only pet peeve with this book, probably due to my background as mentioned earlier, is that the book focuses primarily on the genre of comics sold in USA (graphic novels, manga, and contemporary comics) and skips almost entirely the European style of comics. I wish he had at least dedicated a chapter on it, given that it shaped the thoughts of the world outside USA.&lt;br /&gt;
&lt;br /&gt;
Interestingly, as I got deeper into the book, I found myself increasingly comparing the concepts behind a comic book to those behind developing business presentations. Stretching it a little, I feel that some may even extend to the area of User Interface and User Experience.&lt;br /&gt;
&lt;br /&gt;
I will expand on this correlation between comics and presentations in my next blog (hence the teaser part). In the meanwhile, if you are curious enough, I would definitely recommend picking up the book from your friendly neighborhood bookstore. It's an easy, fun, and thought provoking read. If you are more interested in knowing Scott McCloud a bit more, you can also view &lt;a href="http://www.ted.com/talks/scott_mccloud_on_comics.html"&gt;his TED presentation on comics&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-5094995081225907745?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/NLcgptYyAnBuH6_4XoVw8hS3GEk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NLcgptYyAnBuH6_4XoVw8hS3GEk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/NLcgptYyAnBuH6_4XoVw8hS3GEk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NLcgptYyAnBuH6_4XoVw8hS3GEk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/FiC2hBO1d5s" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/5094995081225907745/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=5094995081225907745" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/5094995081225907745?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/5094995081225907745?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/FiC2hBO1d5s/making-comics-review-and-teaser.html" title="Making Comics - A Review and a Teaser" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/09/making-comics-review-and-teaser.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE4ESHw-cCp7ImA9Wx5XFEo.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-9057695786368870831</id><published>2010-09-13T23:10:00.001-04:00</published><updated>2010-09-14T10:01:49.258-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-14T10:01:49.258-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Hinduism" /><category scheme="http://www.blogger.com/atom/ns#" term="sanskrit" /><title>Sandhi Ganesha</title><content type="html">Yesterday was Lord Ganesha (Elephant God in Hinduism)'s day. In India, Ganesha is also known as a knowledge provider. He is purported to have written the Mahabharata under Saint Vyasa's direction.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://triangulations.files.wordpress.com/2010/01/ganesh_vyasa.jpg?w=350&amp;amp;h=307vvvvvv" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="280" src="http://triangulations.files.wordpress.com/2010/01/ganesh_vyasa.jpg?w=350&amp;amp;h=307vvvvvv" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
As kids, it was absolutely crucial for us to worship Ganesha before any exam and most importantly Mathematics (not really sure why). The more devout, such as those who desperately need to pass the exam, would break anywhere from 1 to 108 coconuts (Ganesha's favorite) depending on the strength of their hand and wallet.&lt;br /&gt;
&lt;br /&gt;
Unlike most Gods, it is never too difficult to find a Ganesha idol for worship in India - especially South India. There is pretty much an unwritten rule that if there is a 'T' junction, there MUST be a small Ganesha statue in that corner facing the street. In most cases, the house forming the broader side of the T ensures this. Some such Ganeshas tend to become more popular and eventually transform into a bigger shrine with proper worship. There used to be one on the way to school which I used to visit regularly. I don't know if it helped me study better, but it at least improved my confidence!&lt;br /&gt;
&lt;br /&gt;
The Sanskrit word for junction is 'sandhi'. While sandhis refer to street junctions, they also refer to conjunctions within the language such as one that is formed by combining two words together.&lt;br /&gt;
&lt;br /&gt;
While English does not have too many sandhis (may with the exception of I'd, We'd, aren't, etc.), I believe the underlying Latin does use it liberally, giving rise to many English terms. In Sanskrit, sandhis are used all over the place - for poetic, aesthetic, and probably egoistic reasons as well (for the poet to show his language prowess).&lt;br /&gt;
&lt;br /&gt;
The downside with sandhis in Sanskrit is that depending on how the word is split by the reader, it can give a completely different meaning, which has led to a number of interpretations for almost every Sanskrit text ever created!&lt;br /&gt;
&lt;br /&gt;
My grandfather used to give us a very hilarious example to highlight the importance of understanding the rules of splitting the terms to get the right meaning, and interestingly, it involves a verse praising Ganesha, the king of sandhis.&lt;br /&gt;
&lt;br /&gt;
गजाननं भूतगणादि सेवितं कपित्व जम्बू फलसारभक्षितं ।&lt;br /&gt;
उमासुतं शोकविनासकारणं नमामि विघ्नेश्वर पाद पङ्कजं ॥&lt;br /&gt;
It translates as follows:&lt;br /&gt;
GajAnanam: O Elephant Lord&lt;br /&gt;
Bhootaganaathi Sevitham: Worshipped by the disciples of Shiva (bhoota ganas)&lt;br /&gt;
Kapitva Jambu PalasAra Bhakshitam: Likes fruits such as Elephant Apple (&lt;a href="http://en.wikipedia.org/wiki/Dillenia_indica"&gt;Kapit&lt;/a&gt;) and Black Plum (&lt;a href="http://en.wikipedia.org/wiki/Jambul"&gt;Jambul&lt;/a&gt;)&lt;br /&gt;
Umasutam: Is with Uma (Parvati) - wife of Shiva and mother of Ganesha&lt;br /&gt;
Shoka vinAsha kAranam: Reason for destroying all sadness for his devotees&lt;br /&gt;
Namami vigneshwara pAda pankajam: I surrender to your feet soft as lotus petals&lt;br /&gt;
&lt;br /&gt;
Now, my grandfather's version is slightly different - the words are the same but they are just split differently&lt;br /&gt;
&lt;br /&gt;
गजानानाम्बू&amp;nbsp; धगनादी सेवितं&lt;br /&gt;
कपित्वजम्बू पलासराबक्षितम&lt;br /&gt;
उमासु तमसो कविनाशाकारानाम&lt;br /&gt;
नमामि विग्नेश्वर पाद पंकजम&lt;br /&gt;
&lt;br /&gt;
The translation now becomes this:&lt;br /&gt;
gajAnanambu: One who wears an elephant flower (bu -&amp;gt; phoo -&amp;gt; flower in Tamil)&lt;br /&gt;
daganAdi sevitam: Burns all those who worship him&lt;br /&gt;
kapitva jambu: Jumps like a monkey (kapi = monkey)&lt;br /&gt;
palasAra bakshitam: Devours all snacks given to him&lt;br /&gt;
umAsu: Brought bad name to Uma (Parvati)&lt;br /&gt;
tamSo: (I forgot what this one was - nothing pleasant I can assure you!)&lt;br /&gt;
kavinAshakAranam: Responsible for the demise of all poets who sing his praise&lt;br /&gt;
namami vigneshwara pAda pankajam: I worship one with such qualities!&lt;br /&gt;
&lt;br /&gt;
Same words, but completely different meaning! It goes to show the importance of learning something properly and understanding the intended meaning and not a screwed up interpretation - something current religious scholars who (mis)interpret the original intention of various religious texts without putting it in context need to desperately learn!&lt;br /&gt;
&lt;br /&gt;
Hope Lord Ganesha gives them such strength :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-9057695786368870831?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/f8RIdaC9516VzLW4wQza94Xtl0I/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/f8RIdaC9516VzLW4wQza94Xtl0I/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/f8RIdaC9516VzLW4wQza94Xtl0I/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/f8RIdaC9516VzLW4wQza94Xtl0I/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/CObYO1kjRyg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/9057695786368870831/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=9057695786368870831" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/9057695786368870831?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/9057695786368870831?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/CObYO1kjRyg/sandhi-ganesha.html" title="Sandhi Ganesha" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/09/sandhi-ganesha.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak8ERnY4fip7ImA9Wx5XFE8.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-3712402874493295092</id><published>2010-09-13T21:46:00.000-04:00</published><updated>2010-09-13T21:46:47.836-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-13T21:46:47.836-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu" /><title>Having your cake ... and eating it too! 3 Operating Systems in 1</title><content type="html">It's very hard to have your cake and eat it too, so to speak - but not in the case of Operating Systems! A while back, I had blogged about Ubuntu and how it is as good, if not better than Windows for everyday use.&lt;br /&gt;
&lt;br /&gt;
While Ubuntu (10.04) has served me well as a server, it still had its issues in terms of general user acceptability. After all, everyone is so used to the Windows look and feel that it is hard for them to see a slimmer version with better functionality. Mac as always has its fans for its cool docking bar at the bottom and the jumping icons, but the rest of the OS is not necessarily useful, save for the artistically inclined.&lt;br /&gt;
&lt;br /&gt;
But what if there is something that has the best of all three worlds? Wouldn't it be cool? For years, Mac users on Windows have used different themes to make Windows look like a Mac. I don't think the reverse is true - for that matter, I am not even sure if there are themes for Mac. In any case, beauty is only skin deep and what counts is the stuff within. However, no one said no to a good looking skin on a good looking body, right?!&lt;br /&gt;
&lt;br /&gt;
Enter a few additions to Ubuntu that makes it not only look like Mac but also like Windows, at the same time! And you can do this three simple steps.&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Install the latest Ubuntu (10.04)&lt;/li&gt;
&lt;li&gt;Install Awn (Avant Window Navigator) via Ubuntu Software Center. This will add the very nice Mac Dockbar with all its features&lt;/li&gt;
&lt;li&gt;Install &lt;a href="http://gnome-look.org/content/show.php?content=113264&amp;amp;forumpage=43&amp;amp;PHPSESSID=0afb44c3f8f23c23144363d0ff2afb96"&gt;Win2-7 pack from Gnomelook.org&lt;/a&gt;. This will completely change the theme of Ubuntu to make it look exactly like Windows 7!&lt;/li&gt;
&lt;/ol&gt;Normally with Windows, most themes hog memory like crazy and slow the system down, but thanks to Ubuntu's underlying sound architecture, there seems to be barely an effect on the system performance with this theme.&lt;br /&gt;
&lt;br /&gt;
Who says I can't have my cake and eat it too?!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-3712402874493295092?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/yfFVNII0nnhmwBpRwObyVMms2so/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yfFVNII0nnhmwBpRwObyVMms2so/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/yfFVNII0nnhmwBpRwObyVMms2so/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yfFVNII0nnhmwBpRwObyVMms2so/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/pwmOCxQhGBo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/3712402874493295092/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=3712402874493295092" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/3712402874493295092?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/3712402874493295092?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/pwmOCxQhGBo/having-your-cake-and-eating-it-too-3.html" title="Having your cake ... and eating it too! 3 Operating Systems in 1" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/09/having-your-cake-and-eating-it-too-3.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0ADR38yfip7ImA9Wx5SGUo.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-3733551325692521341</id><published>2010-08-15T10:30:00.002-04:00</published><updated>2010-08-16T11:16:16.196-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-16T11:16:16.196-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="india" /><title>Independence from our actions</title><content type="html">Today is India's day of independence from the British rule in 1947, paving way for India to become the largest democracy in the world. News sites and TV channels in India have been running 'specials' about the Independence a few days before things get back to status quo. While India has achieved independence from external influences, I don't think we can achieve full independence till we are free of our own actions and behaviors. Let me explain.&lt;br /&gt;
&lt;br /&gt;
Yesterday, I attended a function in a temple here in USA. The preparation for the function was excellent complete with a very artistically done &lt;i&gt;rangoli&lt;/i&gt; (an art made of colored powder, typically made of rice flour, turmeric, or other such ingredients). As with many other temples, photography and videography using any device is prohibited in the main area and numerous warning signs/requests are posted all around.&lt;br /&gt;
&lt;br /&gt;
Even with all this, I still saw one person (at least) who was busy taking pictures of both the art as well as the rest of the temple (including the main deity). While she did stop taking the pictures when the signs (that were quite obvious) were pointed out to her, it made me wonder why she did it in the first place.&lt;br /&gt;
&lt;br /&gt;
The argument I can imagine coming from her is - "The art is very beautiful. I may not be coming here any time soon. So I want to capture it for my personal reference" - the argument is not unlike one made when downloading a song from a file share site. "What is the harm if I do something just for my own sake?"&lt;br /&gt;
&lt;br /&gt;
In the book &lt;a href="http://www.amazon.com/Diffusion-Innovations-5th-Everett-Rogers/dp/0743222091?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Diffusion of Innovations&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0743222091" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;, the author refers to this argument as the &lt;a href="http://en.wikipedia.org/wiki/Tragedy_of_the_commons"&gt;"Tragedy of Commons", attributed to Garrett Hardin&lt;/a&gt;. The core of the dilemma is "Each individual pursuing a rational course of behavior that ironically drives the entire system to disaster", which to me, is what is ailing India at this point - the notion that our small actions will not have an impact on the greater system. Such behavior is obvious in various strata of life - be it giving a small bribe to the traffic cop when making an illegal move, not adhering to the posted rules, or improperly disposing trash, and so on. While it is true that the tragedy of commons is a complex solution that involves both system-level corrective actions as well as individual, there are some steps that can be taken without resorting to a system blame.&lt;br /&gt;
&lt;br /&gt;
To me, when someone violates simple rules that can otherwise be observed without significant ramnifications for purely selfish reasons, they lose all rights to complain about the larger system, since they are effectively contributing to the larger system's downfall in their own capacity. &lt;a href="http://www.amazon.com/Tipping-Point-Little-Things-Difference/dp/0316346624?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Malcolm Gladwell in his book Tipping Point&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0316346624" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;, refers to the &lt;a href="http://en.wikipedia.org/wiki/Broken_windows_theory"&gt;broken windows theory&lt;/a&gt; - if a window is broken in a house and not repaired, it slowly propagates a level of carelessness or apathy within the system that eventually makes the whole neighborhood look rundown. This is especially very visible in India in the form of street litter, to take one example.&lt;br /&gt;
&lt;br /&gt;
What it seems is required is not just freedom from external influences, but really freedom from our own internal actions - be it adhering to a "No Photography" sign in a temple or doing what it takes to get our work done without succumbing to bribery. The "Tragedy of Commons" can also be turned around in its head to become &lt;a href="http://www.amazon.com/Wisdom-Crowds-James-Surowiecki/dp/0385721706?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;"Wisdom of Crowds"&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0385721706" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt; - if each of us adhere to rules as much as we can (and as much as it makes sense), we can help make the system better - eventually. &lt;br /&gt;
&lt;br /&gt;
As they say, "charity begins at home". &lt;br /&gt;
&lt;br /&gt;
Independence is about hope - hope for a better life and a better world - let's hope that we achieve independence, not just from external actions, but also those of our own that are not desirable.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-3733551325692521341?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/orkJsIU8s7-flWE4YNpbsnjs34I/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/orkJsIU8s7-flWE4YNpbsnjs34I/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/orkJsIU8s7-flWE4YNpbsnjs34I/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/orkJsIU8s7-flWE4YNpbsnjs34I/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/-UpXGjRP2GQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/3733551325692521341/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=3733551325692521341" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/3733551325692521341?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/3733551325692521341?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/-UpXGjRP2GQ/independence-from-our-actions.html" title="Independence from our actions" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/08/independence-from-our-actions.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0ANQXs6cCp7ImA9Wx5SFk8.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-7407455268851033180</id><published>2010-08-09T22:18:00.002-04:00</published><updated>2010-08-12T11:09:50.518-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-12T11:09:50.518-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="thoughts" /><category scheme="http://www.blogger.com/atom/ns#" term="blog" /><title>Will we ever be alone with our thoughts again?</title><content type="html">For the last few weeks, I have been heads-down reading a book I had abandoned half way through a few years back. A classic in its field, the book is called &lt;a href="http://www.amazon.com/Diffusion-Innovations-5th-Everett-Rogers/dp/0743222091?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Diffusion of Innovations&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0743222091" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;, a book that I think I came across through a citation in the more popular &lt;a href="http://www.amazon.com/Tipping-Point-Little-Things-Difference/dp/0316346624?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Tipping Point by Malcolm Gladwell&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0316346624" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;. I am glad I picked up the book and more importantly, was able to finally finish reading it! I gained some very interesting insights which I hope to share with you in the upcoming posts.&lt;br /&gt;
&lt;br /&gt;
In the meanwhile, as part of my daily browsing ritual, I came across &lt;a href="http://gizmodo.com/5608458/im-blogging-from-my-shower"&gt;this interesting article in Gizmodo&lt;/a&gt;. Needless to say, the picture was a huge incentive for me to click through the article although it had very little to do with the post itself (clever marketing ploy, I must admit!) What kept me reading through the article however, like any movie with a flashy promotion, the content itself, which resonated strongly with me.&lt;br /&gt;
&lt;br /&gt;
Back in the days when technology was a luxury rather than part of life, I used to spend (and probably so did you) generally daydreaming or just plain lost in thoughts. Some of my fond memories of childhood involved creating stuff out of clay with my cousin, inventing new games, or just lying down under the shade of a tree for hours. However, of late, my every spare minute is mostly consumed with checking Facebook, Blackberry, or browsing aimlessly though I know that there is nothing to check and there is no new message that is life-threatening.&lt;br /&gt;
&lt;br /&gt;
While I don't think I have degraded to the extremes mentioned in the article, I have been guilty of sneaking a glance at my Blackberry while at a signal, walking from the car to the store, or checking for messages that are not there when the person I am with is on another call or simply stepped out for a minute.&lt;br /&gt;
&lt;br /&gt;
As much as the new age of connectivity is trying to bring people together, I think it is also prying us apart from our inner thoughts, which I don't think is a good thing. As &lt;a href="http://www.ted.com/talks/lang/eng/elizabeth_gilbert_on_genius.html"&gt;Elizabeth Gilbert said in her TED talk&lt;/a&gt;, sometimes inspiration comes in waves and to me it's many times when you are lost in thought or even just alone. By letting the waves pass us by because we are already consumed with the Pavlovian pings of the Blackberry, I think we lose golden opportunities to get innovative and get in touch with ourselves and wonder if we, or our future generations will slowly start losing this process of thinking long term and instead get lost in the then and the now. &lt;br /&gt;
&lt;br /&gt;
While I can hear my wife saying "I told you so" behind my back, I think it is important to take some time out and just be lost in our thoughts so that we can find ourselves once again.&lt;br /&gt;
&lt;br /&gt;
In the end, I want to leave you with one image from my favorite artist, that sums up the feeling.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://24.media.tumblr.com/AZbZfR2uZpy4u598twVTjzlAo1_500.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="372" src="http://24.media.tumblr.com/AZbZfR2uZpy4u598twVTjzlAo1_500.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-7407455268851033180?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/yG42v7nF6mg-VoKWF1O4Z8AFUyM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yG42v7nF6mg-VoKWF1O4Z8AFUyM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/yG42v7nF6mg-VoKWF1O4Z8AFUyM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yG42v7nF6mg-VoKWF1O4Z8AFUyM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/Pdgx-ivulfw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/7407455268851033180/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=7407455268851033180" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/7407455268851033180?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/7407455268851033180?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/Pdgx-ivulfw/will-we-ever-be-alone-with-our-thoughts.html" title="Will we ever be alone with our thoughts again?" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/08/will-we-ever-be-alone-with-our-thoughts.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUANQns9eCp7ImA9WxFaEUs.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-8324803605652033478</id><published>2010-07-14T23:16:00.003-04:00</published><updated>2010-07-14T23:16:33.560-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-14T23:16:33.560-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="design" /><title>Tweaking thought-less designs</title><content type="html">Bad design usually sticks like a sore thumb. By design, I am not talking about IT-centric designs such as user interfaces for Blackberry, iPhone, etc. I am talking about design that is a part of what we interact with in our everyday lives - beds, sofas, doors, streets, and so on. Every element that we interact was designed by someone, for good for bad. Bad designs are easy to find, such as narrow streets, buildings with only one exit, etc.&lt;br /&gt;
&lt;br /&gt;
However, design that is not so bad but at the same time could be better is not easy to find. It is more like an irritant. We know that something is wrong, but we can't quite place it. It may gnaw our minds for the few minutes before and after we interact with it and goes away till we interact with the same piece again. Recently, I came across such a design that prompted me to write this post. Now, I am not really ranting about the design (although blogs are rants in most cases). Instead, I am posting this to see if any of you who come over here have experienced such nagging as well and hopefully knowing that the nag has a reason may help you be more at peach - a noble goal indeed!&lt;br /&gt;
&lt;br /&gt;
The design in question is simple - a restroom. Rather, the sign to a restroom. The picture below is the corridor in my office building that I rarely visit. By looking at it (the viewpoint from when you get into the corridor), can you figure out where the restroom is?&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.cssathya.com/images/blog/corridor-restroom.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="400" src="http://www.cssathya.com/images/blog/corridor-restroom.jpg" width="300" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
I had the same issue. While thankfully I was not in a hurry to reach the said destination, it did take me a wrong turn and some careful looking on either side to find the right place (the different gender rooms are on either side of the entrance).&amp;nbsp; Of course, there is a nice little universal sign in front of the door that indicates my destination. However, I could not see it until I was right in front of the door.&lt;br /&gt;
&lt;br /&gt;
While this design is in general adequate and acceptable, it could have been made a lot better with just a simple tweak - make the sign perpendicular to the door so that it sticks out in the corridor (probably near the ceiling so that it does not hit someone in the face). This way, it will be fairly easy for someone to know where the restroom is without having to look at each and every door! It does not really cost much to make this change, but can make a difference in simple comfort.&lt;br /&gt;
&lt;br /&gt;
Another example I have seen is the way doors swing in a cafeteria. For example, it's probably more useful to set up the doors such that you push when getting out of the cafeteria and pull when you are going in. This way, if you have your hands full with food, you just push the door. However, I have seen this being done the other way.&lt;br /&gt;
&lt;br /&gt;
I am sure if we look into the software we write or use everyday, such simple to fix issues can be found in many places that only required a little extra effort to make a difference. Some good books to read in this regard are &lt;a href="http://www.amazon.com/Universal-Principles-Design-William-Lidwell/dp/1592530079?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;The Universal Principles of Design&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=1592530079" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt; and &lt;a href="http://www.amazon.com/Design-Everyday-Things-Donald-Norman/dp/0465067107?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;The Design of Everyday Things&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0465067107" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;. Hopefully it helps in increasing your attention to detail. It definitely helped for me.&lt;br /&gt;
&lt;br /&gt;
Can you think of such minor annoyances for which you could see some simple fixes that would make just the difference required? Please post a comment.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-8324803605652033478?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/BpTMjtgTpzkO8M5YFfTH-mGi5Sc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BpTMjtgTpzkO8M5YFfTH-mGi5Sc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/BpTMjtgTpzkO8M5YFfTH-mGi5Sc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BpTMjtgTpzkO8M5YFfTH-mGi5Sc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/1PbnNDV5QyE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/8324803605652033478/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=8324803605652033478" title="4 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/8324803605652033478?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/8324803605652033478?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/1PbnNDV5QyE/tweaking-thought-less-designs.html" title="Tweaking thought-less designs" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>4</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/07/tweaking-thought-less-designs.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0ICSHczeSp7ImA9WxFbGUU.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-7236583600219104092</id><published>2010-07-12T22:51:00.001-04:00</published><updated>2010-07-12T22:52:49.981-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-12T22:52:49.981-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="recipe" /><title>Eggless Date Cake Recipe</title><content type="html">It's rare to have a fairly large family event for me, especially when away from my home country and when most of my relatives are spread far and wide here. So, I was quite enthusiastic when we (my wife and I) invited a few of our relatives along with their parents for a nice family time. Since all of us were reasonable food enthusiasts, we wanted to make some good food for all. The appetizers (veggie shish kebab, Bombay Chaats - Sev, Bhel, and Pani puris, Watermelon Juice), and entree (mixed veg pilaf, mint-coriander-cucumber raita, and lemon rasam, and yogurt with flattened rice) were all sorted out. The issue came when we tried to come up with a good dessert. Most in the group did not eat egg, and we were finding it difficult to come up with one that did not have any.&lt;br /&gt;
&lt;br /&gt;
Cookies were an option, but we had a kid in the group who was not too keen on it. I thought of making some cupcakes that I had tried earlier, but finding a good eggless cupcake proved more complicated than I realized. There were quite a few vegan cupcake recipes, but somehow they were not appealing. &lt;br /&gt;
&lt;br /&gt;
So, while looking around in the Internet in the last minute, I came across, &lt;a href="http://www.egglesscooking.com/2009/09/14/vegan-date-cake/"&gt;Madhuram's Eggless Cooking&lt;/a&gt; website.The site had a Date Cake which looked quite interesting, especially since we had a bunch of Mejdool Dates my wife had brought from Dubai on her stopover from India a month back. Upon reading the recipe, I found that the cake was based on a recipe from Shilpa, the author of &lt;a href="http://www.aayisrecipes.com/2006/05/27/date-cake-eggless/"&gt;Aayi's Recipes&lt;/a&gt;. I have tried a few recipes from this site a while back, especially the &lt;a href="http://www.aayisrecipes.com/2007/12/24/eggless-fruit-cake/"&gt;fruit cake&lt;/a&gt;, for pretty much the same reason (eggless dessert) earlier. The fruit cake was a huge hit and I was wondering if I can repeat the success again.&lt;br /&gt;
&lt;br /&gt;
The recipe is quite simple. I slightly increased the quantity of the recipe mentioned in order to fit a large French White pan as follows.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Ingredients&lt;/b&gt;&lt;br /&gt;
24 - 30 Mejdool Dates (any other dates, preferably soft)&lt;br /&gt;
1 cup 2% milk (any other milk would technically work, including Soy, as Madhuram had tried)&lt;br /&gt;
1 cup sugar &lt;br /&gt;
1 1/2 cup all-purpose flour&lt;br /&gt;
1 1/2 tsp baking soda&lt;br /&gt;
1/2 cup vegetable oil (I used Wesson Canola Oil)&lt;br /&gt;
2 tbsp chopped cashews&lt;br /&gt;
2 tbsp chopped walnuts&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Directions&lt;/b&gt;&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Soak the dates in milk for an hour or two. If the dates or milk is cold or still hard, microwave it for a minute. The original recipe called for an overnight or at least 3-4 hours of soaking, but I did not have the time and the dates were quite soggy within an hour itself.&lt;/li&gt;
&lt;li&gt;Blend the dates with sugar in a blender till the dates are thoroughly mixed within the milk. Although I reduced the sugar compared to the original recipe, I found the final cake to be a bit sweet for my taste. If your dates are quite sweet, you might want to reduce the sugar by a tablespoon or two.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Transfer to a mixing bowl&lt;/li&gt;
&lt;li&gt;Add the vegetable oil and mix thoroughly. In the original recipe, Shilpa mentions that the cake comes out fine without the vegetable oil. Since this was my first attempt, I didn't play around too much with the low-fat version, although I did reduce the quantity relative to the original recipe. You might want to reduce it further (probably in the second attempt!)&lt;/li&gt;
&lt;li&gt;Mix the flour and baking soda separately and slowly add the combined ingredients to the wet ingredients in the mixing bowl. Add slowly and stir constantly to ensure no lumps are formed during the process&lt;/li&gt;
&lt;li&gt;Add the chopped nuts to the mix&lt;/li&gt;
&lt;li&gt;Grease a baking dish with oil and pour in the mixture.&lt;/li&gt;
&lt;li&gt;Pre-heat the oven to 350F and bake for 30 - 40 minutes until a knife or toothpick inserted at the center of the cake comes out clean.&lt;/li&gt;
&lt;li&gt;Cool in a cooling rack for an hour or so before attempting to take the cake out of the dish.&lt;/li&gt;
&lt;/ol&gt;My relative gave a useful tip. Instead of greasing the dish, you can line the dish with aluminum foil and pour the mix on top. This way, you can simply remove the foil once the cake cools, enabling it to come off easily. I haven't tried this yet, but can see the logic in it.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.cssathya.com/images/blog/EgglessDateCake-WithoutFrosting.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="396" src="http://www.cssathya.com/images/blog/EgglessDateCake-WithoutFrosting.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
For decorating the cake, I did a combination of both the recipes. I roasted some almonds in a skillet and placed it on top of each piece. In addition, I also prepared a frosting to go with the cake, especially for the kid. However, I chose an orange frosting instead of a butter cream frosting, since orange goes well with dates, as per my trusted &lt;a href="http://www.amazon.com/Flavor-Bible-Essential-Creativity-Imaginative/dp/0316118400?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Flavor Bible&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0316118400" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;.&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
Here's my recipe for the Orange frosting modified from &lt;a href="http://www.finecooking.com/recipes/vanilla-whipped-cream-frosting.aspx"&gt;this frosting recipe&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Ingredients&lt;/b&gt;&lt;br /&gt;
1 cup heavy whipping cream&lt;br /&gt;
2 tbsp sugar&lt;br /&gt;
1 tsp orange zest&lt;br /&gt;
1/4 cup orange juice, preferably freshly squeezed (might as well, since you need a fresh orange for the zest!)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Directions&lt;/b&gt;&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Pour the whipping cream in a bowl. Keep the bowl along with the whisk (or the blades of an egg beater) in the fridge for 20 minutes or so (or 5 minutes in the freezer if you are short of time)&lt;/li&gt;
&lt;li&gt;Whip the cream to form soft peak (the cream should form a semi-thick consistency). This will take about 5-10 minutes of vigorous whisking&lt;/li&gt;
&lt;li&gt;Add in the orange juice, sugar, and zest, and whisk further for a few more minutes till the mixture forms hard peaks (or thickens)&lt;/li&gt;
&lt;/ol&gt;Initially I misread the instructions and added the juice and sugar before keeping in the fridge. While this didn't ruin anything, the frosting was not too thick, either because of this or because I didn't whisk long enough. In addition, once the frosting is done, either use it immediately or keep in fridge until further use. This is especially crucial for this frosting since orange juice is acidic in nature and if left at room temperature, will curdle the milk (which happened for my first batch!).&lt;br /&gt;
&lt;br /&gt;
Finally decorate the cake with the frosting any which way you like. You can see the final creation below (thanks to Shruthi for the design). Needless to say, the kid was quite happy to see his name on the cake and more importantly, the cake turned out to be delicious.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.cssathya.com/images/blog/EgglessDateCake-WithFrosting.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="409" src="http://www.cssathya.com/images/blog/EgglessDateCake-WithFrosting.JPG" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
So, one big thanks to &lt;a href="http://www.aayisrecipes.com/"&gt;Shilpa&lt;/a&gt; and &lt;a href="http://www.egglesscooking.com/"&gt;Madhuram&lt;/a&gt; for sharing and re-sharing this recipe. Even if you are an eggitarian, this is still a great recipe to try and I can assure you that it will be loved by kids, and they won't even know that it's healthy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-7236583600219104092?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Lgm4as4r7_0S2Q2v7g89HZ7tZcM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Lgm4as4r7_0S2Q2v7g89HZ7tZcM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Lgm4as4r7_0S2Q2v7g89HZ7tZcM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Lgm4as4r7_0S2Q2v7g89HZ7tZcM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/r5QtwB2IUZc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/7236583600219104092/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=7236583600219104092" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/7236583600219104092?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/7236583600219104092?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/r5QtwB2IUZc/eggless-date-cake-recipe.html" title="Eggless Date Cake Recipe" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>2</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/07/eggless-date-cake-recipe.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck4HSH07eyp7ImA9WxFVEUQ.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-2213513570302756281</id><published>2010-06-10T13:28:00.000-04:00</published><updated>2010-06-10T13:28:59.303-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-10T13:28:59.303-04:00</app:edited><title>SCMAD Book available in Amazon</title><content type="html">After a long wait, my book on Sun Certified Mobile Application  Development (SCMAD) is finally available in Amazon! It took a while, but  it's there. If you had purchased this book earlier and (hopefully)  benefited from it, it would be great if you can write a review.&lt;br /&gt;
&lt;iframe align="left" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=sathswebs-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=bpl&amp;amp;asins=0070704538&amp;amp;fc1=000000&amp;amp;IS2=1&amp;amp;lt1=_blank&amp;amp;m=amazon&amp;amp;lc1=0000FF&amp;amp;bc1=000000&amp;amp;bg1=FFFFFF&amp;amp;f=ifr" style="height: 245px; padding-right: 10px; padding-top: 5px; width: 131px;"&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-2213513570302756281?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/sCdlYJhiENw0eac6hS-UineEa68/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sCdlYJhiENw0eac6hS-UineEa68/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/sCdlYJhiENw0eac6hS-UineEa68/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sCdlYJhiENw0eac6hS-UineEa68/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/AqN_XKHUbO8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/2213513570302756281/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=2213513570302756281" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/2213513570302756281?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/2213513570302756281?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/AqN_XKHUbO8/scmad-book-available-in-amazon.html" title="SCMAD Book available in Amazon" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/06/scmad-book-available-in-amazon.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEUHRX4_eyp7ImA9WxFVEE0.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-1614344956493834748</id><published>2010-06-08T10:09:00.001-04:00</published><updated>2010-06-08T10:10:34.043-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-08T10:10:34.043-04:00</app:edited><title>Wake up call to Bollywood</title><content type="html">Over the weekend, I watched the newly released Hindi movie Rajneeti (Politics) by the veteran director Prakash Jha. The film is a re-interpretation of the great Indian epic, the Mahabharata, with a liberal sprinkling of Mario Puzo's Godfather and references to current Indian politics thrown in for good measure. Jha makes no bones about it being a re-interpretation of the epic. While in TV interviews he tries to underplay the story adaptation, there are a number of subtle and not-so-subtle references to the characters in the epic that would let anyone who is familiar with the epic make the connection.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/en/d/d2/Ranbir_Kapoor_snapshot_-_Rajneeti.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://upload.wikimedia.org/wikipedia/en/d/d2/Ranbir_Kapoor_snapshot_-_Rajneeti.jpg" width="223" /&gt;&lt;/a&gt;&lt;a href="http://www.nautis.com/wp-content/uploads/2008/11/mahabharata-kurukshetra.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://www.nautis.com/wp-content/uploads/2008/11/mahabharata-kurukshetra.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
However, what I felt interesting was not the storyline, actors, or the direction, but the way in which the epic has been adapted to modern times and more importantly, how relevant the story still is in current times. Re-interpreting an older story is not something new. It has happened over the years and even Mahabharata has been re-created at least once (Mani Ratnam's Dhalapati) along with several others (Mani Ratnam's yet-to-be-released Raavan is another example, which is based on the other Indian epic, the Ramayana). Many other attempts have also been made in re-creating the stories as-is (historical epics) without any modification, although they have typically been successful only in parts.&lt;br /&gt;
&lt;br /&gt;
As any grandmother in India will tell you, Indian mythology is stuffed with stories, either due to the long heritage dating back to thousands of years, or because the wise sages in the past understood &lt;a href="http://cssathya.blogspot.com/2010/06/what-your-grandma-knew-but-you-dont.html"&gt;the power of stories&lt;/a&gt;. Unfortunately, even with such a treasure trove of stories to pick from, the Indian film industry has always confined itself to a number of formulas that somehow is considered to be what the audience needs. This sad state of affairs has extended even to the TV soaps and serials that either fall into the slapstick or sob-story categories, that is, if they are not reality shows.&lt;br /&gt;
&lt;br /&gt;
The argument that is typically made is that the stories of the past are not relevant anymore. When I was a kid, I used to be an avid reader of the kid magazine Chandamama and Amar Chitra Katha, both of which typically used to contain stories from past Indian texts. Recently, I read an article where the director of Chandamama was attempting to revamp the magazine to be more relevant. When asked why the magazine has declined in sales over the years, he said that the kids of recent times, especially engulfed in all the Disney and Nick cartoons, cannot relate to the characters of the past. They prefer Miley Cyrus over Yagnavalkya. He is right.&lt;br /&gt;
&lt;br /&gt;
What tends to get lost in translation is that while the context in which the stories were created (kings and kingdoms) may not be relevant today, the stories themselves are immortal, as Jha's re-interpretation of Mahabharata shows. If only the directors and producers of the mass media today take time to re-read the stories of the past and analyze the crux of the stories than take them at face value, they will realize that they have a never-ending spring of stories that will last for centuries that can potentially make them rich along the way, while providing a wide variety to the audience than the narrow formulas that are spewed out today.&lt;br /&gt;
&lt;br /&gt;
Beyond the selfish goal of making money, they would also do a favour to the masses by exposing them to the morals and values such stories embed in them, either knowingly or unknowingly.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-1614344956493834748?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/1Xa1Q5S0b5Ww17b2ult15kM3ioQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1Xa1Q5S0b5Ww17b2ult15kM3ioQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/1Xa1Q5S0b5Ww17b2ult15kM3ioQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1Xa1Q5S0b5Ww17b2ult15kM3ioQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/IlNYs_jufkE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/1614344956493834748/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=1614344956493834748" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/1614344956493834748?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/1614344956493834748?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/IlNYs_jufkE/wake-up-call-to-bollywood.html" title="Wake up call to Bollywood" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/06/wake-up-call-to-bollywood.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0YMRXY7eSp7ImA9WxFWGU8.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-5093018254177336086</id><published>2010-06-07T10:33:00.000-04:00</published><updated>2010-06-07T10:33:04.801-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-07T10:33:04.801-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Business" /><category scheme="http://www.blogger.com/atom/ns#" term="IT" /><category scheme="http://www.blogger.com/atom/ns#" term="stories" /><title>What your grandma knew but you don't - The power of stories</title><content type="html">Stories are an incredible form of communication and probably the most powerful. Numerous studies have re-affirmed the fact that our brain can understand visuals better than words. Stories are unique in that they are words portrayed visually, thereby bridging the gap between the two. &lt;br /&gt;
&lt;br /&gt;
Since our brain has to process numerous things every second of the day and it is impossible and inefficient to record everything verbatim, it has chosen to record things in an abstract manner such that the gist is preserved without the entire content. Simple examples such as Gestaldt images as you see below are examples that our brain is excellent in forming the whole using incomplete parts.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://ebbolles.typepad.com/photos/uncategorized/2008/08/12/gestalt_dog.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://ebbolles.typepad.com/photos/uncategorized/2008/08/12/gestalt_dog.jpg" width="307" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;&amp;nbsp;Can you see the dog in the picture?&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
Obviously, such condensation of information is not without its disadvantages. The first one is misinterpretation which occurs when the brain tries to create the reality from its gist but does so in a way that is different from the original reality. An example of this is the classic game that shows how rumors are created. The second and more subtle issue is that of creating a non-existent reality. The power of stories is so strong that when the brain is given a bunch of data points that do not necessarily fit together, it still tries to make up a story that makes it fit somehow, kind of like pushing a square peg in a round hole. This has been demonstrated by neuroscientists like Oliver Sacks in his book "&lt;a href="http://www.amazon.com/Man-Who-Mistook-His-Wife/dp/0684853949?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;The man who mistook his wife for a hat&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0684853949" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;" and V S Ramachandran in his book "&lt;a href="http://www.amazon.com/Phantoms-Brain-Probing-Mysteries-Human/dp/0688172172?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Phantoms in the Brain&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0688172172" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;". Even so, such issues are overlooked by the brain in favor of the efficiency it gains by condensing information as stories. &lt;br /&gt;
&lt;br /&gt;
Maybe realizing this tremendous power of stories, our ancestors across the world have chosen fables, parables, stories, dramas, and epics as the means to capture the wisdom gathered over the years in lieu of raw facts - or maybe it was the most natural form of information storage. Over the last few decades however, we seem to have ignored this idea of storing information within stories in favour of storing real facts. With increasingly cheaper storage mediums, it is probably logical for us to conclude that we should be storing raw data as opposed to processed information to avoid the fallacies of condensed information. However, we are overlooking the fact that even though the raw data is stored as is, our brain still processes information in a more abstract story format. Thus every person who reads the raw data has to create a story within his brain to make sense, which can still lead to misinterpretation. Moreover, such storage of raw data is typically done without the context in which it existed, thereby robbing crucial information that would be required for the reader to process the data later. This is where the story overpowers raw data in that it can also codify the context within which the data was created.&lt;br /&gt;
&lt;br /&gt;
Such zeal in trying to store raw data in favour of stories can be seen everywhere. Presentations stuffed with bullet points are one such example. As many of the visual presenters such as Garr Reynolds in his "&lt;a href="http://www.amazon.com/Presentation-Zen-Simple-Design-Delivery/dp/0321525655?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Presentation Zen&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0321525655" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;" and more recently Carmine Gallo in "&lt;a href="http://www.amazon.com/Presentation-Secrets-Steve-Jobs-Insanely/dp/0071636080?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Presentation Secrets of Steve Jobs&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0071636080" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;" will tell you, slides with a single "story line" coupled with a visual is far more appealing and impactful than a slide full of bullet points. The underlying principle however, is in trying to give raw facts as opposed to a story. You can see which one is more powerful. For example, here are two slides that summarizes this blog. Which one sticks in your mind better?&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.cssathya.com/images/blog/PowerOfStories-Bullets.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://www.cssathya.com/images/blog/PowerOfStories-Bullets.jpg" width="320" /&gt;&lt;/a&gt;&lt;a href="http://www.cssathya.com/images/blog/PowerOfStories-Story.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://www.cssathya.com/images/blog/PowerOfStories-Story.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;(You can purchase the image at http://www.istockphoto.com/stock-photo-3201212-amusement.php)&lt;br /&gt;
&lt;br /&gt;
Google's philosophy is somewhat similar. It encourages users to store all the raw data in the world so that it can be retrieved easily at a future date. While one can argue that the 'more than 200 parameters' it uses to rank the results is equivalent of processing the data, it still does not come close to the effectiveness of a story, primarily because the context is lost along the way.&lt;br /&gt;
&lt;br /&gt;
Recently, there seems to realization in the IT/Business sector of the power of stories. Books such as "&lt;a href="http://www.amazon.com/Story-Factor-2nd-Revised/dp/0465078079?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;The Story Factor&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0465078079" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;" and "&lt;a href="http://www.amazon.com/Made-Stick-Ideas-Survive-Others/dp/1400064287?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Made to Stick&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=1400064287" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt;" are good examples. Even with such compelling evidence in favor of using stories as a medium of communication as opposed to raw data, we still tend to choose the latter, probably because it is the easy way out. It is far less time consuming to dump information in bullet points than to hunt for a visual and try to condense your message into a single line. However, we are making the mistake of allowing the users to create their own interpretation instead of providing ours to them. &lt;br /&gt;
&lt;br /&gt;
The problem seems more intense in the IT industry compared to other areas. The whole movie industry thrives on stories. Industries related to arts such as cooking rely on apprenticeship, which is in effect, creating your personal story by observing data in context. Another known attempt was done a decade or so back by Peter Naur (famous for his Backus-Naur Form notation) in his article '&lt;a href="http://alistair.cockburn.us/ASD+book+extract%3A+%22Naur,+Ehn,+Musashi%22"&gt;Programming as Theory Building&lt;/a&gt;' where he touched upon the notion that software design is in some sense akin to building a story.&lt;br /&gt;
&lt;br /&gt;
However, when it comes to IT or even Business in general, we seem to ignore this powerful medium in favor of the much less efficient raw data. Those who break away from this mould such as Steve Jobs are seen as charismatic and visionary. I wonder if we can take a cue from our past and focus more on creating better stories than trying to deluge people with information.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-5093018254177336086?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/gFDukxdqCQC3yNcl0GuK_rv5B8E/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/gFDukxdqCQC3yNcl0GuK_rv5B8E/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/gFDukxdqCQC3yNcl0GuK_rv5B8E/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/gFDukxdqCQC3yNcl0GuK_rv5B8E/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/-2K0FpAZZrE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/5093018254177336086/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=5093018254177336086" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/5093018254177336086?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/5093018254177336086?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/-2K0FpAZZrE/what-your-grandma-knew-but-you-dont.html" title="What your grandma knew but you don't - The power of stories" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/06/what-your-grandma-knew-but-you-dont.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEEFSH44fyp7ImA9WxFXFkk.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-5326621704219053929</id><published>2010-05-23T16:15:00.001-04:00</published><updated>2010-05-23T16:30:19.037-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-23T16:30:19.037-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="java" /><category scheme="http://www.blogger.com/atom/ns#" term="USA" /><category scheme="http://www.blogger.com/atom/ns#" term="mobile" /><category scheme="http://www.blogger.com/atom/ns#" term="india" /><category scheme="http://www.blogger.com/atom/ns#" term="google" /><category scheme="http://www.blogger.com/atom/ns#" term="microsoft" /><category scheme="http://www.blogger.com/atom/ns#" term="politics" /><category scheme="http://www.blogger.com/atom/ns#" term="apple" /><title>Mobile companies and their analogous countries</title><content type="html">&lt;span id="goog_1005126277"&gt;&lt;/span&gt;&lt;span id="goog_1005126278"&gt;&lt;/span&gt;Sometimes when a problem is too big or too abstract to grasp, we tend to equate it to something we can grasp better. We call it an analogy. Dictionary.com gives this definition:&lt;br /&gt;
&lt;blockquote&gt;A similarity between like features of two things, on which a comparison  may be based: &lt;i&gt;the analogy between the heart  and a pump. &lt;/i&gt;&lt;/blockquote&gt;There is also a different application to an analogy. You can use it to compare a new concept to a mature concept to get a sense of how the new idea might mature in future. While this of course is not perfect, it is a reasonable approximation.&lt;br /&gt;
&lt;br /&gt;
Recently, I came across an article in Engadget called &lt;a href="http://www.engadget.com/2010/05/22/entelligence-is-android-fragmented-or-is-this-the-new-rate-of-i/"&gt;Is Android fragmented or is this the new rate of innovation?&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
The article led me to think beyond just Android and more about the mobile market in general, and even the companies that are responsible for the primary mobile platforms. I saw some interesting similarities between these platforms and how they are modeled and some of the leading countries in the world and how they operate. I felt it was a reasonable assumption as, after all, we are seeing the mobile platform spawn the world effortlessly. So, here's my analogy of the mobile platforms (and the companies) to some of the countries of the world.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;iPhone / Apple : China&lt;/b&gt;&lt;br /&gt;
The first one of course, is the most popular mobile platform at the  moment, the iPhone.&amp;nbsp;&lt;b&gt; &lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/en/thumb/8/88/IPhone_3GS_with_home_screen.png/150px-IPhone_3GS_with_home_screen.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://upload.wikimedia.org/wikipedia/en/thumb/8/88/IPhone_3GS_with_home_screen.png/150px-IPhone_3GS_with_home_screen.png" width="114" /&gt;&lt;/a&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Flag_of_the_People%27s_Republic_of_China.svg/125px-Flag_of_the_People%27s_Republic_of_China.svg.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="132" src="http://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Flag_of_the_People%27s_Republic_of_China.svg/125px-Flag_of_the_People%27s_Republic_of_China.svg.png" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
The success of iPhone as come about due to the  following factors.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Hundreds of applications at a relatively cheap price point&lt;/li&gt;
&lt;li&gt; One single platform and phone model (with minor variations)&lt;/li&gt;
&lt;li&gt;Tight grip over the user and developer base&lt;/li&gt;
&lt;li&gt;Tight control / censorship over how information is disseminated over its platform&lt;/li&gt;
&lt;/ul&gt;While you might argue that its design innovation is what made it the leader in the space, I would argue that the factors above are what has made it sustainable beyond the initial shock and awe. As you can see, the tenets are not too dissimilar from how China operates as well.&lt;br /&gt;
&lt;br /&gt;
While China is the envy of the world and is fast gaining economic power, there is also resentment about the practices it has used to get there. The point of this blog is not to argue whether such practices are ethical or not - it is up to the larger population to figure out. Rather, to me, what is striking is the similarity in itself.&lt;br /&gt;
&lt;br /&gt;
Interestingly, like China, while people grudgingly complain about the non-openness of the platform and authoritarian practices, they nevertheless go ahead and buy iPhones.&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Android / Google : USA&lt;/b&gt;&lt;br /&gt;
Google is fast becoming a major competitor in the mobile space. Already a world leader in the search space, the Android OS has positioned Google well to compete in the mobile area, which to Google, is another feed for its search domination.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Android-2.2.png/250px-Android-2.2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Android-2.2.png/250px-Android-2.2.png" width="133" /&gt;&lt;/a&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Flag_of_the_United_States.svg/125px-Flag_of_the_United_States.svg.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="105" src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Flag_of_the_United_States.svg/125px-Flag_of_the_United_States.svg.png" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Android (and hence, Google) has the following features.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;It is based on a 'relatively' open platform&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Everyone is welcome to develop in the modified Java system, but the platform retains control over its future&lt;/li&gt;
&lt;li&gt;It has an 'open' market although with a slant towards it's own powers (search)&lt;/li&gt;
&lt;li&gt;It attempts to corral the rest of the industry towards standardization &lt;/li&gt;
&lt;li&gt;The company promises to do 'no evil' (but may not be acting on it or perceived to be acting on it)&lt;/li&gt;
&lt;/ul&gt;A lot of the fundamental principles to me seem to resonate with how the US Government operates. While in general, it tries to do more good than harm, there is general skepticism that it maybe doing it the other way around. People are cautiously optimistic about the new platform.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;RIM / Blackberry : Canada&lt;/b&gt;&lt;br /&gt;
Research In Motion's Blackberry OS has become the de facto standard in business mobile usage. In that aspect, maybe it is not that similar to Canada, however there do seem to be some similarities.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://chibichan86.files.wordpress.com/2009/11/300_blackberry_bold.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://chibichan86.files.wordpress.com/2009/11/300_blackberry_bold.jpg" width="134" /&gt;&lt;/a&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Flag_of_Canada.svg/200px-Flag_of_Canada.svg.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Flag_of_Canada.svg/200px-Flag_of_Canada.svg.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;The platform is loosely based on a more standardized platform (J2ME)&lt;/li&gt;
&lt;li&gt;Even though the platform is quite open, it is still not as popular as it was expected to be&lt;/li&gt;
&lt;li&gt;It is happy to be in its own space, without trying to influence others&lt;/li&gt;
&lt;/ul&gt;I am always surprised at how the platform has really not tried to expand to other markets, even after other players such as iPhone have come in and at the same time also maintain its hold on what it does best. May be they follow the words of&amp;nbsp; &lt;a href="http://www.amazon.com/Good-Great-Companies-Leap-Others/dp/0066620996?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Jim Collins in his book Good to Great&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0066620996" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt; to the dot, which is not to say that it's a bad thing.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Microsoft / Windows Mobile : European Union&lt;/b&gt;&lt;br /&gt;
The article I had mentioned earlier differentiates Windows and Android in the way they see the device and software partners. Since the beginning, Microsoft has always thrived on a license-and-partner relationship, which has worked to its advantage over the years.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/en/6/64/Screenshot_of_Windows_Mobile_6.5.3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://upload.wikimedia.org/wikipedia/en/6/64/Screenshot_of_Windows_Mobile_6.5.3.jpg" width="150" /&gt;&lt;/a&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Flag_of_Europe.svg/200px-Flag_of_Europe.svg.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Flag_of_Europe.svg/200px-Flag_of_Europe.svg.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Windows Platform has the following characteristics.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;It works on a partnership model. Everyone pays a license to develop on the platform&lt;/li&gt;
&lt;li&gt;The platform heeds to the needs of the partners and waits till everyone is on board&lt;/li&gt;
&lt;li&gt;The overall fee structure is more expensive compared to other similar platforms&lt;/li&gt;
&lt;li&gt;Change is hard to make and it takes a while to happen as well&lt;/li&gt;
&lt;/ul&gt;It's also ironic that Windows platform is similar to EU, given its recent problems with EU! However, the partner model (and problems thereof) does seem to resonate well.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Oracle / J2ME : India&lt;/b&gt;&lt;br /&gt;
Finally, we have the Operating System that most platforms other than those mentioned above, are based on - the Java Micro Edition. I would potentially put Symbian in the same category as well.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Wave.svg/200px-Wave.svg.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Wave.svg/200px-Wave.svg.png" width="110" /&gt;&lt;/a&gt;&lt;a href="http://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Flag_of_India.svg/200px-Flag_of_India.svg.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Flag_of_India.svg/200px-Flag_of_India.svg.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Let us look at the defining characteristics and the similarities.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;It's the most open platform compared to all others&lt;/li&gt;
&lt;li&gt;It tries to please everyone and sometimes ends up pleasing no one&lt;/li&gt;
&lt;li&gt;By trying to find a common minimum that will satisfy all devices, it tends to fall short of user expectations, leading users to create their own variant platforms&lt;/li&gt;
&lt;li&gt;Being a 'democratic' system, it has little control over the devices where it is used, leading to significant fragmentation, which in turn, compounds the problem of trying to find a common minimum.&lt;/li&gt;
&lt;li&gt;Even though it is a credible and viable platform, it is outdated and is fast losing its market relevance&lt;/li&gt;
&lt;/ul&gt;To me, the J2ME platform's similarity to India is probably as striking as Apple's similarity to China. Interestingly enough, while both are hailed as leaders in their own way (largest democracy vs economic super power), they have their own differences.&lt;br /&gt;
&lt;br /&gt;
While it may take a while for the countries to play out their roles, may be it will be interesting to see how the market reaction is to these mobile platforms, which in turn, may give a good indication of how the world will shape up - and I am not sure if the results we may see in future is something we may like to see ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-5326621704219053929?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ddTLR-ZP5D0Beld5XrN_1Hw5nQY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ddTLR-ZP5D0Beld5XrN_1Hw5nQY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ddTLR-ZP5D0Beld5XrN_1Hw5nQY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ddTLR-ZP5D0Beld5XrN_1Hw5nQY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/Ch_7YCIg8Gk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/5326621704219053929/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=5326621704219053929" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/5326621704219053929?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/5326621704219053929?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/Ch_7YCIg8Gk/mobile-companies-and-their-analogous.html" title="Mobile companies and their analogous countries" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/05/mobile-companies-and-their-analogous.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0IFSH89eip7ImA9WxFXEU0.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-7234551559668960020</id><published>2010-05-17T10:09:00.002-04:00</published><updated>2010-05-17T10:11:59.162-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-17T10:11:59.162-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="blackberry" /><title>"I am suing my company over Blackberry!"</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i.zdnet.com/blogs/top5smartphones_1q2009.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://i.zdnet.com/blogs/top5smartphones_1q2009.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;If you own any of the smart phones that can receive emails such as a Blackberry or an iPhone, you are probably addicted to it by now. Jokes have been written about the wife divorcing the husband (or vice versa) due to excessive Blackberry usage. Personally, I can recall more than a few occasions where my wife has chided, scolded, yelled, and screamed at me for looking at my Blackberry on inappropriate moments - say, when she's talking excitedly about her new earrings or when I am at a red light in traffic. &lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.dilbert.com/dyn/str_strip/000000000/00000000/0000000/000000/40000/4000/400/44412/44412.strip.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="198" src="http://www.dilbert.com/dyn/str_strip/000000000/00000000/0000000/000000/40000/4000/400/44412/44412.strip.gif" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
While many talk about this phenomenon as yet another necessary evil, right after the Internet, is it really that unavoidable after all? As many of you would swear by it, Blackberry increases your productivity by making you more mobile and allowing you to work on your terms. One of my colleagues used to go on world-wide trips quite frequently. When I asked him how he got so much time to make those trips, he said it was because of his Blackberry. As a management consultant, his work was flexible and did not require him to be on a specific location 9 to 5. So, he used to get most of his work done at various times of the day, thereby giving him more flexibility in planning his vacation. Not everyone is as lucky. &lt;br /&gt;
&lt;br /&gt;
As a downside, I end up working well beyond my normal working hours due to the emails that pop up in the evening or sometimes even at night - apparently there are a number of others like me who send the emails in the first place - and I don't get to go on vacations either! While you can argue that it is all about time management, the reality is probably close to mine than my friend's.&lt;br /&gt;
&lt;br /&gt;
The other downside of the addiction is our diminishing value of etiquette. More often than not, you can see your colleague busily checking the new email that just arrived and potentially responding to it hurriedly in the middle of a conversation or more commonly, while at a meeting. To me, it is kind of equivalent to someone sitting and reading a newspaper or talking to someone else when you are talking to them. Our sense of priority has shifted. The email, even if it is spam, tends to get a higher priority over an active conversation just because the device beeped. Surprisingly, doing the same thing with a laptop is considered more offensive than with a Blackberry. Somehow, the diminutive nature of the device makes it more forgiving. I am guessing that when we get smart systems that are embedded near our ears and just read out our emails, it will become even less annoying, while being even more inappropriate.&lt;br /&gt;
&lt;br /&gt;
The dangers of being addicted are not necessarily concerning only to the individuals who use such devices. I came across an interesting article in ACM Communications that implied that such addiction may actually prove legal grounds for an employee to sue his or her employer. Intrigued?&lt;br /&gt;
&lt;br /&gt;
Nowadays, most smart phones are sponsored by the company (like mine) with the intention of creating the ideal scenario - giving more flexibility and making the employee more productive. However, if the organization also promotes either implicitly or explicitly, working beyond normal working hours, the employee can potentially argue that the company made him addicted to the phone. While there are a number of arguments that can be made for and against (flexibility vs. addiction), a plausible case may still exist, especially if the employee can go further and prove that such addiction caused physical or psychological problems (divorce, for example).&lt;br /&gt;
&lt;br /&gt;
So, if the addiction is so disruptive is there anything we can do about it? How can we have a healthy obsession over our Blackberry while still not succumbing to its temptations at inappropriate moments? To answer this, we need to look at the reason why we are so addicted.&lt;br /&gt;
&lt;br /&gt;
The concept behind Blackberry addiction is not new. The fundamental principle was proven by Pavlov a few decades back, in what is now famously known as the Pavlovian Effect. &lt;br /&gt;
&lt;br /&gt;
Pavlov is most famous for "Pavlov's dogs." At the same time each day, Ivan Pavlov, would ring a bell to summon his dogs to eat. Pavlov noticed that the dogs would salivate at the ring of the bell, before they had begun to eat. This is called "Classic Conditioning". When provided a consistent stimulus, our brain reconditions itself to the stimulus so that it is tuned to that stimulus all the time. In the case of smart phones, from the original stimulus where the 'chime' meant an important email or message, the situation changes to an uncontrollable response for the 'chime' regardless of whether the message that follows is important or not.&lt;br /&gt;
&lt;br /&gt;
Our smart phones are no different than the bell that the dogs responded to. We respond to them as soon as they vibrate, chime, or ring. We are conditioned to the tone. Much as the phones are "smart" and we are smarter, in the end, our primitive instincts have kicked in and have relegated us to the past centuries. However, maybe we can take a few steps to curb the instincts. This can be done by just two simple steps.&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Create a new profile in your phone, say "Home", where it will ring when it is a phone call and will be silent for all other reasons - meetings (hopefully not), emails, SMS, etc. Essentially, convert your "smart" phone to just a phone outside work.&lt;/li&gt;
&lt;li&gt;Once you reach home, keep your phone face down and away from the couch such that you have to get up in order to check it.&lt;/li&gt;
&lt;/ol&gt;These two steps rob us of the three senses that are activated when a new email comes in (hear, see, and feel) - I am assuming that your phone does not taste yummy or smell great (or nasty)! As with any addiction, de-addiction does not happen in one fell swoop - you might find yourself checking the Blackberry whenever you cross it, and that's ok. At least it'll not be as instantaneous as you do now. Eventually you'll realize that the new frequency has not disrupted your routine as much as you were afraid of and it will become the new norm.&lt;br /&gt;
&lt;br /&gt;
That's it. See if that makes a difference. Let me know by posting a comment.&lt;br /&gt;
&lt;br /&gt;
Finally, remember one thing: years from now, you will not remember the countless times you responded promptly to an email during dinner or the times when your boss was mad at you because you did not respond late at night. However, you will remember the time when your wife didn't speak to you for three days because you responded to an email while having dinner and more importantly, your wife will remember the time when you complemented her new earrings ignoring the Blackberry chimes!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-7234551559668960020?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/M-qq9aIQo5QNXP3XIwqlt6Bo-lw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/M-qq9aIQo5QNXP3XIwqlt6Bo-lw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/M-qq9aIQo5QNXP3XIwqlt6Bo-lw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/M-qq9aIQo5QNXP3XIwqlt6Bo-lw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/Gqucc62QtCM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/7234551559668960020/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=7234551559668960020" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/7234551559668960020?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/7234551559668960020?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/Gqucc62QtCM/i-am-suing-my-company-over-blackberry.html" title="&quot;I am suing my company over Blackberry!&quot;" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>2</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/05/i-am-suing-my-company-over-blackberry.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0AAQHY4fyp7ImA9WxFQEEs.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-438756863949133891</id><published>2010-05-05T09:22:00.000-04:00</published><updated>2010-05-05T09:22:21.837-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-05T09:22:21.837-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="USA" /><category scheme="http://www.blogger.com/atom/ns#" term="healthcare" /><title>Parking Spots and Obama Healthcare Plan</title><content type="html">Recently, I moved to a new apartment. The house is bigger and better, but with one flaw - there are no reserved parking spots. There are plenty of parking spots and they are all on a first-come-first-serve basis. &lt;br /&gt;
&lt;br /&gt;
In my old apartment complex, there is one reserved parking spot per apartment and a bunch of 'floating' spots that can be used by visitors or even extra cars. This arrangement was quite good for me, as I have only one car and so I could park it quite close to my apartment.&lt;br /&gt;
&lt;br /&gt;
The new apartment complex also seems to be relatively more affluent than my old one, and as a result, it looks like many of the residents have two cars on an average. These two factors - relative affluence and lack of reserved spaces - have combined together and typically result in lack of spots close to my apartment especially late in the night, such as when I get back from shopping. While there are still plenty of spots available in general, they are no more close to my apartment.&lt;br /&gt;
&lt;br /&gt;
While I can look at it as a mandatory exercise that's probably good for my body, it gets a little frustrating to not have it close to home (maybe I am becoming too American - I can visualize my Dad giving a story about how he walked for a mile to school in the old days!). Overall, I felt that my previous apartment had a much better arrangement. &lt;br /&gt;
&lt;br /&gt;
This led me to thinking about some of the 'socialistic' plans of the Obama administration.&lt;br /&gt;
&lt;br /&gt;
A market-driven economy seems to be equivalent to my new apartment complex. It's purely democratic and whoever can meet the demand (empty parking space), get to supply (park the car). In general, this is great - it's purely meritocratic. However, as in the case of my new apartment, the trouble comes when there is an imbalance in the economy, such as when some people have more cars than average, and some less (rich vs middle-class vs poor). In this scenario, the ones who have more and are at the right place at the right time (reasonably affluent and gainfully employed) get to park all their cars at the prime spots (good healthcare at good hospitals). At the outset, this looks great - purely meritocratic, right? But what about the average Joe who has one single car and works late? He cannot park his car because someone with two cars took his place! Now would that be considered fair? Shouldn't Joe be assured at least one spot so he can park comfortably?&lt;br /&gt;
&lt;br /&gt;
To me, this seems very similar to the ideal goal of partial Government intervention, a la Obama healthcare plan (other nuances and politics aside). The government should be responsible for providing at least certain minimal level of care (one parking spot per apartment), while letting the market rule anything above (additional 'floating' parking spots for extra cars). This seems to be a much better proposition than a pure 'floating' model. Needless to say, it also better than letting the apartment management make 'all' spots reserved without any 'floating' spaces, as that provides very little flexibility and adds more bureaucracy (such as when getting a new car, you have to go to the management to get a new spot assigned). &lt;br /&gt;
&lt;br /&gt;
So, in all, it looks like the ideal option is to have a 'minimum' Government intervention (aka Public Option) that provides some basic guarantees while providing some flexibility for anything beyond the minimum.We can extend the same logic to other 'social' programs such as Education as well.&lt;br /&gt;
&lt;br /&gt;
What do you think? Do post a comment.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-438756863949133891?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/QXX9rJxqEVYDWi2gq_R94SEDA6E/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QXX9rJxqEVYDWi2gq_R94SEDA6E/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/QXX9rJxqEVYDWi2gq_R94SEDA6E/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QXX9rJxqEVYDWi2gq_R94SEDA6E/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/5MVtaQC7Mds" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/438756863949133891/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=438756863949133891" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/438756863949133891?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/438756863949133891?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/5MVtaQC7Mds/parking-spots-and-obama-healthcare-plan.html" title="Parking Spots and Obama Healthcare Plan" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/05/parking-spots-and-obama-healthcare-plan.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0MFSH84eCp7ImA9WxFXEU0.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-3202903365605797124</id><published>2010-04-29T00:44:00.001-04:00</published><updated>2010-05-17T10:10:19.130-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-17T10:10:19.130-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="blackberry" /><category scheme="http://www.blogger.com/atom/ns#" term="presentation" /><category scheme="http://www.blogger.com/atom/ns#" term="apple" /><title>No stuff just fluff: Comparing Blackberry and Apple ads</title><content type="html">It is amazing how some companies just refuse to listen and learn from others and are hell bent on being obstinate and pig-headed. At least this was the thought that ran in my head when I watched the promo ad for the upcoming Blackberry 6 OS.&lt;br /&gt;
&lt;br /&gt;
It's kind of a given at this point that Apple is the unsung hero for all 'visual' thinkers. Every Apple show or unveiling is accompanied with oohs and aahs from bloggers on visual presentation, and rightly so. Apple (and some say, Steve Jobs) has refined the art of presentation and is constantly crediting for removing presentations from the shackles of bullets.&lt;br /&gt;
&lt;br /&gt;
Much as I disagree with the tactics used by Apple in their iProducts, I can't help but appreciate their inventive ads - the ads embody the general rules that are identified in &lt;a href="http://www.amazon.com/Made-Stick-Ideas-Survive-Others/dp/1400064287?ie=UTF8&amp;amp;tag=sathswebs-20&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969" target="_blank"&gt;Heaths' Made to Stick&lt;/a&gt;&lt;img alt="" border="0" height="1" src="http://www.assoc-amazon.com/e/ir?t=sathswebs-20&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=1400064287" style="border: medium none ! important; margin: 0px ! important; padding: 0px ! important;" width="1" /&gt; book. In the book, the authors suggest that in order for an idea to stick in the viewer's mind, it should have the following qualities.&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;&lt;b&gt;S&lt;/b&gt;imple&lt;/li&gt;
&lt;li&gt;&lt;b&gt;U&lt;/b&gt;nexpected&lt;/li&gt;
&lt;li&gt;&lt;b&gt;C&lt;/b&gt;oncrete&lt;/li&gt;
&lt;li&gt;&lt;b&gt;C&lt;/b&gt;redible&lt;/li&gt;
&lt;li&gt;&lt;b&gt;E&lt;/b&gt;motional&lt;/li&gt;
&lt;li&gt;&lt;b&gt;S&lt;/b&gt;tory&lt;/li&gt;
&lt;/ol&gt;Most of Apple's presentations and advertisements follow this format. They are simple, have an unexpected message (mostly related to the new product), have concrete information, comes from a credible source (in this case, authoritative, at least), has a cute little - most times youthful - song&amp;nbsp; that appeals to the target audience, and has a nice flow from start to finish (sometimes with a story).&lt;br /&gt;
&lt;br /&gt;
&lt;object height="385" width="480"&gt;&lt;param name="movie" value="http://www.youtube.com/v/4acWkNihaxc&amp;hl=en_US&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/4acWkNihaxc&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
This simple (well, simple in thought, but not simplistic) format has made superstars out of most Apple products. You would think that the competitors to Apple will take to heart what worked for the company and try to improve on it. But nooooooo, that's apparently not how the world works.&lt;br /&gt;
&lt;br /&gt;
Case in point is the new promo bit from Research in Motion for their Blackberry 6 OS in their trade show. I like Blackberry. It's a great product - does what it's supposed to do and is fairly open to developers (better than Apple at least) and does not nickel and dime you for everything.&lt;br /&gt;
&lt;br /&gt;
It is no secret that the iPhone, with all its billion apps, still has significant drawbacks as a decent technology product - lack of multitasking, lack of Flash, relatively low quality camera, etc. While the current OS (5.0) shares some of the problems, the new OS apparently does multitasking and a lot more.&lt;br /&gt;
&lt;br /&gt;
The aim of the ad, at least as RIM intends, is to tell the consumers that the new OS will make the Blackberry a lot more seamless, user-friendly, powerful, and most of all, fun to work with. This is great, but look at the ad.&lt;br /&gt;
&lt;br /&gt;
&lt;object height="385" width="640"&gt;&lt;param name="movie" value="http://www.youtube.com/v/DlO8KMv7Bx4&amp;hl=en_US&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/DlO8KMv7Bx4&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
What's up with the dancing people? The background completely overshadows the foreground. During the whole ad, I was distracted by the dancing in the back, making it really difficult for me to focus on what's new with the OS - definitely not what I believe the intention is. How can a company still not learn - both from itself and from others? It boggles my mind. &lt;br /&gt;
&lt;br /&gt;
The ad is not simple (especially not with all the background dancing and old-school music), it is not emotional (at least not the right kind - I believe they wanted to show that the OS is fun to work with via the dancing, but it annoyed me more than engage me), and it did not have a story (well, the screens flowed decently, but it was too difficult to focus on it with the artificial dancing in the background). The ad missed out on 3 of the 6 points mentioned above, effectively making it a failure.&lt;br /&gt;
&lt;br /&gt;
It also goes to show the power of visual presentation - how fluff can in effect make it look like there is a lot more stuff - something that's important not just for people without stuff, but also for those that do. It is more tragic to see someone make the stuff look less important due to bad fluff than one who makes the stuff look better with fluff.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-3202903365605797124?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/SuvLD227wdwZZAZhruDWJ9MjWkQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SuvLD227wdwZZAZhruDWJ9MjWkQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/SuvLD227wdwZZAZhruDWJ9MjWkQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SuvLD227wdwZZAZhruDWJ9MjWkQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/Da23FN8Tj58" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/3202903365605797124/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=3202903365605797124" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/3202903365605797124?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/3202903365605797124?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/Da23FN8Tj58/no-stuff-just-fluff-comparing.html" title="No stuff just fluff: Comparing Blackberry and Apple ads" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/04/no-stuff-just-fluff-comparing.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkQDRHo-eCp7ImA9WxFSFkw.&quot;"><id>tag:blogger.com,1999:blog-7652253.post-7571585268916552585</id><published>2010-04-18T15:19:00.000-04:00</published><updated>2010-04-18T15:19:35.450-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-18T15:19:35.450-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="java" /><title>Top 5 Missed Opportunities for Java</title><content type="html">Last year around the time it was becoming evident that Sun was up for acquisition, I had blogged about &lt;a href="http://cssathya.blogspot.com/2009/08/how-sun-could-have-made-money-off-java.html"&gt;how Sun could have made money off Java&lt;/a&gt;. Given the recent developments of Oracle's acquisition of Sun as well as a number of Java luminaries leaving their long-held posts (including James Gosling, the creator), I wanted to expand on the post a bit more and list the top 5 missed opportunities for Java and leave you at the end with a bit of hope. &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Opportunity #5: Enhanced JCP Mechanism&lt;/b&gt;&lt;br /&gt;
A lot of bigwigs in the industry have talked about the Java Community Process (JCP) - where it falls short and what can be done to improve it. Not having been an active member of the JCP, I cannot comment much more than what has been said already. However, as an active user of Java, the happenings of JCP does impact me.&lt;br /&gt;
&lt;br /&gt;
Personally, I feel that the idea of JCP is great. You have a coordinated steering committee with participation from multiple corporation all having a vested interest in making Java a success. It is reasonably democratic. However, that seems to have given rise to JCP's problems as well. There are two fundamental issues in a democracy, as can be understood from India and USA, the two leading democratic countries in the world.&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Too many voices can cause cacophony: When the participants are numerous, nothing useful gets done. The Indian democracy is a prime example of this. Those who are supposed to make decisions tend to squabble over petty issues or short-term issues rather than focus on the greater good.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;With power comes pork: As can be evinced from the US democracy, great power leads to greater demands from vested interests ('pork' projects). While the participation of major corporations has been great in boosting Java's position in the Enterprise, it has also led to them seeking customizations that can give them an edge against the competitors, who are also part of the process.&lt;/li&gt;
&lt;/ol&gt;Thus, instead of making Java better, the JCP seems to have given rise to more and more politics. I can think of one layman option to fix this.&lt;br /&gt;
&lt;br /&gt;
Instead of Oracle (or Sun) leading the JCP efforts, it must be floated as a separate non-profit organization. Each corporation must pay to be a part of the group. Final decision on a specification must be in a time-bound manner and must be resolved by a common vote. There must also be checks and balances to ensure that things don't get stalled. More importantly, the process must be agile enough to adapt to changes in the industry quickly. I know that most of these were the original goals of the industry, but it helps to revisit the initial goals and see what failed along the way.&lt;br /&gt;
&lt;br /&gt;
Such a non-profit group can also lead to better Intellectual Property management, which seems to be the primary contention among a number of folks.&lt;br /&gt;
&lt;br /&gt;
It is sad to see how the Java ecosystem is going the same way as the multi-party Indian democracy. When someone (Google) does not like the way things are, they form a splinter party (Android). This leads to an erosion of the core base. Now, when time comes to do something useful, those in power are more interested in getting a big enough coalition to retain power than to do anything useful. I hope this is not how the JCP ends up.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Opportunity #4: Desktop Java&lt;/b&gt;&lt;br /&gt;
When I started working on Java, one of my first projects was on Swing. Having had a bad taste with Visual C++ and Windows apps (it just seemed way too complex), I was excited to see the ease with which I could develop desktop applications with Swing (using Borland JBuilder, which was the best at that time). &lt;br /&gt;
&lt;br /&gt;
At one time, Java came really close to creating its own Operating System and there were talks about a Java OS. However, nothing much came out of it. &lt;br /&gt;
&lt;br /&gt;
In addition, there was another cool innovation within Java that was never utilized very well, and that is the Java Web Start technology. Java Web Start was the grandfather of the Apple App Store. All the pieces were there, but no one really did anything with it. When Java Store came recently, it was too little, too late. &lt;br /&gt;
&lt;br /&gt;
Java could have very easily leveraged on the core components of Swing and Java Web Start and could have developed an ecosystem like App Store for the desktop. The widgets that we see on Windows 7 today could've been delivered with Java Web Start. &lt;br /&gt;
&lt;br /&gt;
Google OS to me is a fancy version of what could have been Java OS. Unfortunately, this did not, and still has not, materialized. &lt;br /&gt;
&lt;br /&gt;
Whenever I see Ubuntu's Software Center, I see the power of Java Web Start and what it could have been, and it saddens me.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Opportunity #3: Applets&lt;/b&gt;&lt;br /&gt;
I have been involved in Java pretty much since I started getting seriously into the world of computers. My very first encounter with Java was around 1996 when my friend told me that there is something really cool called Applets that could run applications within a browser. It took me a while for me to grasp the concept - how can you run an app inside a static web browser? It would be another two years before I fully understood the technology behind the whole system. &lt;br /&gt;
&lt;br /&gt;
Applets were a great missed opportunity. When applets came into the picture, it was like Jetsons. People imagined all sorts of dynamic web that would be possible in the future due to the technology. Eventually that has been materialized with AJAX and Silverlight and Flash, but it sad to see how the technology that started it all never went anywhere. Java FX again, was too little, too late. &lt;br /&gt;
&lt;br /&gt;
I still think the potential is there, but it would require a significant overhaul before it gets anywhere.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Opportunity #2: Meta-libraries&lt;/b&gt;&lt;br /&gt;
As I mentioned in my previous blog, I think a huge area where Sun failed to realize the potential of Java was in commercializing it. I don't think the folks at Sun never fully grasped the concept of 'style over substance' - something that Apple has shown all of us since then with iPhone and iPad. &lt;br /&gt;
&lt;br /&gt;
While it was important to focus on the mechanics of various functions, that is never enough. You need a great looking skin on top to sell. While JCP and Java focused on standardization and developing a great API, they never focused on making it user-friendly. It would take Spring and Hibernate frameworks to show the need for the skin. Till then, one had to write a bunch of lines of code just to send an e-mail or create a simple application. &lt;br /&gt;
&lt;br /&gt;
Microsoft .NET still regained its popularity even though it had a lot less functionality than Java primarily because of this reason - there were so many wizards that could be leveraged by a developer to develop an application quickly. &lt;br /&gt;
&lt;br /&gt;
All Sun (and others) needed to do was to create an abstract layer on top of the various APIs that would allow developers to be productive from the start - and what's more, they could've charged companies for it! I still fail to understand why that never happened. &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Opportunity #1: Mobile Java&lt;/b&gt;&lt;br /&gt;
Finally, the biggest missed opportunity of all - the mobile space. After all, Java started as a language for non-desktop systems, such as set-top boxes and toaster ovens. With such a strong foundation and need for atypical systems, Java meandered and never delivered on the promise it started out with - to create a platform for resource-sensitive systems. &lt;br /&gt;
&lt;br /&gt;
Having written a book on this subject, I can understand the rationale. Java wanted to be the lowest common denominator - to be something for everyone. But I don't think they went about doing it right. &lt;br /&gt;
&lt;br /&gt;
One of the reason why Apple is successful is because they have a tight control on both the device as well as the API. They have 2 sizes (iPhone and iPad), compared to a million combinations that Java has to satisfy. &lt;br /&gt;
&lt;br /&gt;
I feel the foundations of MIDP are strong - it is modular (profile-based). However, it is not agile. They could have expanded the concept and created 'feature packs' that would satisfy different types of inputs and screens, with a base foundation. This way, the developer would simply create a base application, and additional feature packs that would be applied based on the device (the download mechanism can determine the packs to download and install based on the need). Such a mechanism could have led to multiple manufacturers rallying behind a single API instead of each developing their own kit (such as Nokia, RIM, and Sony currently do). &lt;br /&gt;
&lt;br /&gt;
It is simply unpardonable that a language that started out as the champion of all things that are not desktop or web failed to finally meet the dynamic demands of its target market.&lt;br /&gt;
&lt;br /&gt;
At the end, I don't think the end is near yet. The foundation of Java is strong. There is a strong user base that can rally behind it when a call is given. All it needs is a good leader who has a long-term vision - I just can't help but see the parallels between Java and the struggles that the two major democracies (US and India) seem to be having. I hope that sanity prevails!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7652253-7571585268916552585?l=cssathya.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/vBELlti7_NhAJkR0IpBHPGyLFvs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vBELlti7_NhAJkR0IpBHPGyLFvs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/vBELlti7_NhAJkR0IpBHPGyLFvs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vBELlti7_NhAJkR0IpBHPGyLFvs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/SathyaSrinivasansBlog/~4/HZNSE02tNS0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cssathya.blogspot.com/feeds/7571585268916552585/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7652253&amp;postID=7571585268916552585" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/7571585268916552585?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7652253/posts/default/7571585268916552585?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/SathyaSrinivasansBlog/~3/HZNSE02tNS0/top-5-missed-opportunities-for-java.html" title="Top 5 Missed Opportunities for Java" /><author><name>Sathya Srinivasan</name><uri>http://www.blogger.com/profile/01679861777256468622</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>2</thr:total><feedburner:origLink>http://cssathya.blogspot.com/2010/04/top-5-missed-opportunities-for-java.html</feedburner:origLink></entry></feed>

