<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-10778435</id><updated>2024-03-13T14:20:13.170-07:00</updated><category term="bookeazy"/><category term="startup"/><title type='text'>Pupil</title><subtitle type='html'>The personal web journal of a Software Developer located in Washington.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default?alt=atom'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default?alt=atom&amp;start-index=26&amp;max-results=25'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>68</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-10778435.post-2557905470925400981</id><published>2007-05-10T19:24:00.000-07:00</published><updated>2007-05-10T19:29:59.153-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="bookeazy"/><category scheme="http://www.blogger.com/atom/ns#" term="startup"/><title type='text'>Working on getting there</title><content type='html'>For those who still land here looking for me, I have left my former employer in Washington and have started out on my own. I co-founded BookEazy Technologies in April 2006. Our first major release is &lt;a href=&quot;http://www.bookeazy.com/portal/Index&quot;&gt;BookEazy.com where movie-goers book movie tickets online for e-square, Inox&lt;/a&gt; and other popular multiplexes in Pune.&lt;br /&gt;&lt;br /&gt;If your looking to work for a pre-funding startup in Pune, you might want to consider BookEazy Technologies.</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/2557905470925400981/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/2557905470925400981' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/2557905470925400981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/2557905470925400981'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2007/05/working-on-getting-there.html' title='Working on getting there'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113194609145705045</id><published>2005-11-13T21:25:00.000-08:00</published><updated>2006-12-11T01:03:57.790-08:00</updated><title type='text'>My blog&#39;s moved over to wordpress</title><content type='html'>... &lt;a href=&quot;http://www.sukshma.net&quot;&gt;Sukshma&lt;/a&gt; [sukshma.net]</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113194609145705045/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113194609145705045' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113194609145705045'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113194609145705045'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/11/my-blogs-moved-over-to-wordpress.html' title='My blog&#39;s moved over to wordpress'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113193494611768276</id><published>2005-11-13T18:08:00.000-08:00</published><updated>2005-11-13T18:44:12.046-08:00</updated><title type='text'>Generics in the Java Language</title><content type='html'>Sun introduced Generics with Java 1.5 recently.&lt;br /&gt;&lt;br /&gt;Whenever a developer created a Collection in older versions of Java, he had to rely on &lt;span style=&quot;font-weight: bold;&quot;&gt;run-time&lt;/span&gt; checking to enforce type safety in the Collection. Run-time checked does provide flexibility. However, 90% of the time, Developer&#39;s never really designed to use that flexibility. Imagine creating a Collection of different types of Objects with nothing in common, how often would one have to solve a problem that required just that? Even in that 90%, 10% of the time, that flexibility was abused. Now Imagine writing an interface that takes a Collection as an argument. Let&#39;s say there exist two different implementations of that interface (or template) that expected a Collection each with types that differ from the other. The horrors, the interface designer never intended the interface to be used in that way. Thus, interchangeability is not enforceable.&lt;br /&gt;&lt;br /&gt;I just did rely on anecdotal evidence to justify the use of Generics. A very obvious example.&lt;br /&gt;&lt;br /&gt;Yes, Generics is just as much a fix as it is a feature.&lt;br /&gt;&lt;br /&gt;This is my repository of articles and people on Generics.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://java.sun.com/j2se/1.5.0/docs/guide/language/generics.html&quot;&gt;Generics in the Java programming Language.&lt;/a&gt; [Sun.com]&lt;br /&gt;&lt;a href=&quot;http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf&quot;&gt;Generics in the Java programming Language.&lt;/a&gt; [Sun.com] -- A tutorial by Gilad Bracha.&lt;br /&gt;&lt;a href=&quot;http://www.artima.com/weblogs/index.jsp?blogger=beckel&quot;&gt;Bruce Eckel&#39;s Java weblog.&lt;/a&gt; [Artima] -- if your not happy with just the tutorial but want to look at the advanced material, hop over to Eckel&#39;s journal and follow his Generics blogs. Or, :-) just get your own Blog up and running and send me a link.</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113193494611768276/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113193494611768276' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113193494611768276'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113193494611768276'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/11/generics-in-java-language.html' title='Generics in the Java Language'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113181770617212992</id><published>2005-11-12T09:44:00.000-08:00</published><updated>2005-11-12T09:48:26.190-08:00</updated><title type='text'>Ray Ozzie at Microsoft</title><content type='html'>His &lt;a href=&quot;http://www.businessweek.com/technology/content/nov2005/ms_memo/ms_memo_ozzie.htm&quot;&gt;memo&lt;/a&gt; on Internet Services adoption in Microsoft.&lt;br /&gt;&lt;br /&gt;Bill Gates&#39; &lt;a href=&quot;http://www.businessweek.com/technology/content/nov2005/ms_memo/ms_memo_bill.htm&quot;&gt;views&lt;/a&gt; on Ozzie and his role at Microsoft.&lt;br /&gt;&lt;br /&gt;-- &lt;a style=&quot;font-style: italic;&quot; href=&quot;http://www.businessweek.com/technology/content/nov2005/ms_memo/ms_memo_ozzie.htm&quot;&gt;Ozzie&#39;s Online Charge&lt;/a&gt; [Business Week]</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113181770617212992/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113181770617212992' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113181770617212992'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113181770617212992'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/11/ray-ozzie-at-microsoft.html' title='Ray Ozzie at Microsoft'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113160647339609805</id><published>2005-11-09T23:02:00.000-08:00</published><updated>2005-11-09T23:07:53.410-08:00</updated><title type='text'>What the Bleep do we know?</title><content type='html'>Before you go out and watch the movie, you should consider that the movie &lt;a href=&quot;http://en.wikipedia.org/wiki/What_the_bleep_do_we_know&quot;&gt;only presents one point of view&lt;/a&gt; [Wikipedia.org]. Not all Quantum physicists believe that the Quantum physics is connected to conciousness in the way the movie describes it. In fact those who do are in the minority.&lt;br /&gt;&lt;br /&gt;Now I don&#39;t even remember who recommended it to me. I wish I could speak to him and let him know about this.&lt;br /&gt;&lt;br /&gt;In the end I guess I am interested more in efficacy, a narrow view that might hurt.&lt;br /&gt;&lt;br /&gt;What about &lt;a href=&quot;http://en.wikipedia.org/wiki/Ramtha%27s_School_of_Enlightenment&quot;&gt;Ramtha&#39;s school of enlightenment&lt;/a&gt; [Wikipedia.org]. Not a very credible school.</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113160647339609805/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113160647339609805' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113160647339609805'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113160647339609805'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/11/what-bleep-do-we-know.html' title='What the Bleep do we know?'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113143621074302599</id><published>2005-11-07T23:39:00.000-08:00</published><updated>2005-11-07T23:52:13.413-08:00</updated><title type='text'>Hack my PC</title><content type='html'>My Dell Windows XP PC had a sticker on it that say &quot;Please hack me&quot;.&lt;br /&gt;&lt;br /&gt;Well, I didn&#39;t see the sticker. Not for a while. I read a very basic &lt;a href=&quot;http://www.infoworld.com/article/05/11/04/45OPsecadvise_1.html&quot;&gt;article&lt;/a&gt; on hacking by Roger Grimes at Infoworld. He talked about passwords sniffed from wireless networks. Their encryption broken in a matter of seconds. I thought it was too easy, it couldn&#39;t be. I had to try it myself. I hopped over to &lt;a href=&quot;http://www.insecure.org/tools.html&quot;&gt;insecure.org&lt;/a&gt; downloaded &lt;a href=&quot;http://www.oxid.it/cain.html&quot;&gt;Cain &amp;amp; Abel&lt;/a&gt; installed it and was ready to go. Cain is a sniffer + cracker. I had to see for myself.&lt;br /&gt;&lt;br /&gt;It took me less than five minutes to sniff the traffic on my private network, send it to the cracker and launch a dictionary attack on the SMB traffic collected. I found two vulnerable accounts, &quot;Administrator&quot; and &quot;Guest&quot;. Both accounts had *no* passwords. The Administrator account was especially worrisome - it never showed up under the account list in my XP control-panel. I never even knew it existed. I had never logged into it (XP offers to create a user account with administrator privileges at install-time). The Administrator account is also my system &#39;root&#39;, pardon my reliance on Unix jargon.&lt;br /&gt;&lt;br /&gt;Dissapointed in myself, I quickly peeled the sticker off by disabling the two accounts. Maybe I can fix the vulnerability comprehensively by eliminating my dependence on Windows entirely.</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113143621074302599/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113143621074302599' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113143621074302599'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113143621074302599'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/11/hack-my-pc.html' title='Hack my PC'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113141226573197190</id><published>2005-11-07T17:10:00.000-08:00</published><updated>2005-11-07T17:11:05.743-08:00</updated><title type='text'>BBC: Kerala Tree House</title><content type='html'>&lt;a href=&quot;http://www.bbc.co.uk/holiday/destinations/kerala_treehouse/index.shtml&quot;&gt;BBC - Holiday: Kerala Tree House&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113141226573197190/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113141226573197190' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113141226573197190'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113141226573197190'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/11/bbc-kerala-tree-house.html' title='BBC: Kerala Tree House'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113140225482698721</id><published>2005-11-07T13:42:00.000-08:00</published><updated>2005-11-07T14:27:19.706-08:00</updated><title type='text'>Hold on, no shaking your booty in Bangalore</title><content type='html'>(Credit to Mithun for this story)&lt;br /&gt;&lt;br /&gt;I am afraid to have to say this, but it is true, the Karnataka state govt. has banned dancing in public places [1,2,3]. Any way you look at it, it does look like the government is trying to curb your personal freedom. Thankfully, we have not gone as far as to actually mimic a pure islamic state yet. But if we were to let them get away with this restriction, who is going to stop the moral police when they curb free speech?&lt;br /&gt;&lt;br /&gt;There is of course a rationale, the ban is part of a wider effort to curb the western influence. Truthfully, influences can be bad as well as good. When the west said, &quot;Can you take up these support jobs?&quot; Karnataka was more than glad to do so. Suddenly, BPO&#39;s in Bangalore were training several thousand youngsters on western accents, culture and other mannerisms. But of course, we cannot allow them to dance, that one bit might just tip the scale over? Is that really what the government is thinking?&lt;br /&gt;&lt;br /&gt;We must be careful though, lest the western media portray India in the same light as as other policed nations, nations where your rights are worth only as much as the scrap of paper they are written on.&lt;br /&gt;&lt;br /&gt;Bangalore was the first place in India to host anything close to a real Pink Floyd concert. Roger Water&#39;s was there in the flesh (2002). I was glad I could make it, happy that Bangalore was the place to step up and host the concert.&lt;br /&gt;&lt;br /&gt;Bangalore is also the daddy of the Indian westernized &quot;public watering hole&quot;. Bangalore pubs have offered for a while now the english pub culture, good music and ambience that flipped your mind. Before Bangalore, the local watering-hole only meant the restaurant down the road that got you a chuck for a buck and played old hindi songs from a mono-tape recorder. Of course the upcoming, young, middle-class wanted better. They were working longer hours, had a more global outlook and a paycheck that reflected this wide change. Where else could I hop from the pub dedicated to Marley to another one dedicated to Syd Barrett?&lt;br /&gt;&lt;br /&gt;Bangalore is also one of the few cities in India with relaxed restrictions on the sale and distribution of Alcohol. That may have changed in recent times, but in my last visit there in 2004, I had the option to buy some at a california-style grocery store. Besides, they are never going to ban the sale of alcohol at pubs. Well not until and unless they found another source of revenue to replace the taxes they collect.&lt;br /&gt;&lt;br /&gt;Am I proud of these influences that have changed India? Not really. Many Indians may have taken up Salsa and ignored Kathak. It&#39;s definitely easier to find a place for aerobics than for Yoga. Tomorrow we might drop Sambar for Kentucky Fried Chicken (I doubt that though)! I respect the fact that people want their kids to grow up to be refined young Indians instead of the lead singer of a rock band or a salsa god.&lt;br /&gt;&lt;br /&gt;Why did the government forget, an amalgamation of cultures is inevitable! Why are they fighting it? Please let&#39;s not ban dancing and focus on the real issues that plague Bangalore.&lt;br /&gt;&lt;br /&gt;References:&lt;br /&gt;[1] &lt;a href=&quot;http://online.wsj.com/article/SB113131293070989504.html&quot;&gt;Wall Street Journal&lt;/a&gt;&lt;br /&gt;[2] &lt;a href=&quot;http://www.japantimes.co.jp/cgi-bin/geted.pl5?eo20051105a1.htm&quot;&gt;Japan Times&lt;/a&gt;&lt;br /&gt;[3] &lt;a href=&quot;http://www.indianexpress.com/full_story.php?content_id=79591&quot;&gt;Indian Express&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113140225482698721/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113140225482698721' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113140225482698721'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113140225482698721'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/11/hold-on-no-shaking-your-booty-in.html' title='Hold on, no shaking your booty in Bangalore'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113130296380191641</id><published>2005-11-06T10:48:00.000-08:00</published><updated>2005-11-06T10:49:23.813-08:00</updated><title type='text'>BW: Polish your presentations</title><content type='html'>&lt;a href=&quot;http://www.businessweek.com/print/smallbiz/content/nov2005/sb20051102_129586.htm&quot;&gt;Read the article&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113130296380191641/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113130296380191641' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113130296380191641'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113130296380191641'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/11/bw-polish-your-presentations.html' title='BW: Polish your presentations'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113108038568831895</id><published>2005-11-03T20:56:00.000-08:00</published><updated>2005-11-03T20:59:45.700-08:00</updated><title type='text'>Investing in Asia</title><content type='html'>&quot;&lt;a href=&quot;http://www.businessweek.com/magazine/content/05_43/b3956401.htm&quot;&gt;The Best Asian Performers&lt;/a&gt;&quot; - Business Week online.&lt;br /&gt;&lt;br /&gt;Most people agree that energy and infrastructure companies appear to be up there with the best. Their popularity is attributed to the tremendous momentum transferred to these sectors by sky-rocketing growth in Asia.&lt;br /&gt;&lt;br /&gt;It&#39;s not surprising to see Infosys at 39.</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113108038568831895/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113108038568831895' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113108038568831895'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113108038568831895'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/11/investing-in-asia.html' title='Investing in Asia'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113099920318904556</id><published>2005-11-02T22:16:00.000-08:00</published><updated>2005-11-02T22:39:21.383-08:00</updated><title type='text'>News round up: Young Entrepreneurs</title><content type='html'>Another one of those blogs where the poster simply posts what he read today. Sure, lets not forget what this blog really is - a web journal :-).&lt;br /&gt;&lt;br /&gt;I think it&#39;s a privilege to be 20 something and able to risk it all on a venture that is close to your heart. I realise that not everyone makes it, but that doesn&#39;t mean you should have to stop trying. Business week has a &lt;a href=&quot;http://www.businessweek.com/technology/tc_special/tc_05entrepreneurs.htm&quot;&gt;special report&lt;/a&gt; on the young entrepreneurs  in North America.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://images.businessweek.com/ss/05/10/young_entrepreneur/index_01.htm&quot;&gt;Entrepreneurs: Cream of the Young Crop&lt;/a&gt; [Business week]&lt;br /&gt;I especially enjoyed this slide show which walks you through each entrepreneur, his or her business idea, and the lessons they learnt from their experiences.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.businessweek.com/technology/content/oct2005/tc20051025_114996.htm&quot;&gt;Tech&#39;s Young Turks are back&lt;/a&gt; [Business week]&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.businessweek.com/technology/content/oct2005/tc20051025_795457.htm&quot;&gt;Teaching the startup mentality&lt;/a&gt; [Business week]&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.businessweek.com/smallbiz/content/oct2005/sb20051028_867765.htm&quot;&gt;The Startup bug strikes early&lt;/a&gt; [Business week]&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.businessweek.com/technology/content/oct2005/tc20051025_043783.htm&quot;&gt;Don&#39;t let ego kill the startup&lt;/a&gt; [Business week]&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.businessweek.com/technology/content/oct2005/tc20051025_346219.htm&quot;&gt;From hacker to protector&lt;/a&gt; [Business week]&lt;br /&gt;&lt;br /&gt;Featured startups -&lt;br /&gt;&lt;a href=&quot;http://www.brainreactions.com/&quot;&gt;BrainReactions&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.voltage.com/index.htm&quot;&gt;Voltage Security&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.natpal.com/&quot;&gt;Natpal&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Meanwhile, &lt;a href=&quot;http://www.paulgraham.com/index.html&quot;&gt;Paul Graham&lt;/a&gt; has been encouraging startups in his own way. Have a look through his essay &quot;&lt;a href=&quot;http://www.paulgraham.com/sfp.html&quot;&gt;What I did this Summer&lt;/a&gt;&quot; [paulgraham.com]. His &lt;a href=&quot;http://www.paulgraham.com/summerfounder.html&quot;&gt;Summer founders program&lt;/a&gt; has been spawning several ideas and motivating youngsters to chase those ideas.&lt;br /&gt;&lt;br /&gt;Before you can start a business, you do need to start with an idea. You also need to know where that idea is going to be in the short-term, and at least a vague idea of the long-term. You need a &lt;a href=&quot;http://www.entrepreneur.com/article/0,4621,287323,00.html&quot;&gt;business plan&lt;/a&gt; [entrepreneur.com].</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113099920318904556/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113099920318904556' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113099920318904556'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113099920318904556'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/11/news-round-up-young-entrepreneurs.html' title='News round up: Young Entrepreneurs'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113096532577063018</id><published>2005-11-02T12:59:00.000-08:00</published><updated>2005-11-02T13:02:07.196-08:00</updated><title type='text'>Tata Tea Gold</title><content type='html'>I highly recommend &lt;a href=&quot;http://www.tatatea.com/comp_news_gold.htm&quot;&gt;Tata Tea Gold&lt;/a&gt; for those who enjoy drinking Black Tea from India. Trouble is, I can&#39;t seem to get hold of a bag. My housemates and I just ran through one within a month. Vishal&#39;s brother bought some for us from India.&lt;br /&gt;&lt;br /&gt;Any ideas? Where can I get some here in the U.S?</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113096532577063018/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113096532577063018' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113096532577063018'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113096532577063018'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/11/tata-tea-gold.html' title='Tata Tea Gold'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113094377826363431</id><published>2005-11-02T07:00:00.000-08:00</published><updated>2005-11-02T09:36:01.373-08:00</updated><title type='text'>Diwali across the Americas</title><content type='html'>Diwali was celebrated with much gusto in NYC, Vancouver, and other large cities in the U.S and Canada.&lt;br /&gt;&lt;br /&gt;&quot;This week, in a coincidence of calendars, Hindus and Muslims from India, Pakistan and Bangladesh are celebrating the most joyous holidays of the year. Hindus observe the festival of lights, Diwali, or Deepavali, which ushers in the new year; Muslims finish the holy month of Ramadan with Id al-Fitr, which signals the end of the monthlong daytime fast and a return to the sweetness of daily life.&quot; --&lt;br /&gt;&lt;a href=&quot;http://www.nytimes.com/2005/11/02/dining/02diwa.html?pagewanted=1&amp;ei=5090&amp;amp;amp;amp;amp;amp;en=947ce7f6fb944000&amp;ex=1288587600&amp;amp;partner=rssuserland&amp;emc=rss&quot;&gt;Festival of lights: Parade of Sweets&lt;/a&gt; [NYTimes]&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;;font-family:verdana;font-size:85%;&quot;  &gt;&quot;Grewal said when she grew up &lt;span id=&quot;__a9toolbar-highlight-id&quot; style=&quot;background-color: rgb(255, 255, 204);&quot;&gt;in&lt;/span&gt; England &lt;span id=&quot;__a9toolbar-highlight-id&quot; style=&quot;background-color: rgb(255, 255, 204);&quot;&gt;in&lt;/span&gt; the &#39;60s, her family and friends didn&#39;t &quot;feel free to celebrate any of our festivals.&quot; She is pleased to be liv&lt;span id=&quot;__a9toolbar-highlight-id&quot; style=&quot;background-color: rgb(255, 255, 204);&quot;&gt;in&lt;/span&gt;g &lt;span id=&quot;__a9toolbar-highlight-id&quot; style=&quot;background-color: rgb(255, 255, 204);&quot;&gt;in&lt;/span&gt; today&#39;s multicultural society where the city supports such celebrations.&quot; --&lt;/span&gt;&lt;br /&gt;&lt;a href=&quot;http://www.vancourier.com/issues05/104205/news/104205nn11.html&quot;&gt;South asians invite everyone to city-wide Diwali celebrations&lt;/a&gt; [Vancouver Courier]&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(0, 0, 0);font-family:Times,Times New Roman,Serif,MS Serif;font-size:100%;&quot;  &gt;&quot;In keeping with the Diwali custom of also lighting the outside of the home, Kamlesh Thakrar has strung up colourful outdoor lights. That initially confused his neighbours. &quot;They all said, `What are you doing? Christmas is three months away,&#39;&quot; chuckles Thakrar, who immigrated to Canada in 1975 from a tight-knit community of Indian expatriates in Kampala, Uganda.The Thakrars are among hundreds of millions of Hindus around the world, including nearly 200,000 in Greater Toronto, who will celebrate Diwali, the beginning of a new year on the Hindu calendar.&quot; --&lt;/span&gt;&lt;br /&gt;&lt;a href=&quot;http://www.thestar.com/NASApp/cs/ContentServer?pagename=thestar/Layout/Article_Type1&amp;call_pageid=971358637177&amp;amp;amp;amp;c=Article&amp;cid=1130713803904&amp;amp;DPL=JvsODSH7Aw0u%2bwoRO%2bYKDSblFxAk%2bwoVO%2bYODSbhFxAg%2bwkRO%2bUPDSXiFxMh%2bwkZO%2bUCDSTnFxIm%2bwgTO%2bQIDSPnFxUm%2bw8TO%2bMIDSPjFxUi%2bw8XO%2bMMDSPvFxUu%2bw4RO%2bIIDSLhOw%3d%3d&amp;tacodalogin=yes&quot;&gt;Let there be lights&lt;/a&gt; [Toronto Star]&lt;br /&gt;&lt;br /&gt;Devon Street in Chicago is probably having a blast. San Francisco will have the Bollywood Diwali Dhoom at the HP Center in San Jose.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Happy Diwali!!&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113094377826363431/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113094377826363431' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113094377826363431'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113094377826363431'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/11/diwali-across-americas.html' title='Diwali across the Americas'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113080329107373802</id><published>2005-10-31T15:57:00.000-08:00</published><updated>2005-10-31T16:01:33.986-08:00</updated><title type='text'>Scott Maxwell, you just read my mind!</title><content type='html'>&lt;a href=&quot;http://scottmaxwell.wordpress.com/2005/10/31/attracting-retaining-and-motivating-whats-in-it-for-them/&quot;&gt;Attracting, Retaining and Motivating. What&#39;s in it for them?&lt;/a&gt; [Now what?] &lt;span style=&quot;font-style: italic;&quot;&gt;Scott Maxwell&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;An excerpt:&lt;br /&gt;--&lt;br /&gt;&lt;strong&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;Stretch them&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-style: italic;&quot;&gt; (without breaking them). Think of stretching a rubber band as far as you can without breaking it. This is the fastest way for top caliber people to develop…getting their goals met becomes difficult for them, which they like!&lt;/span&gt;&lt;strong style=&quot;font-style: italic;&quot;&gt;&lt;br /&gt;&lt;br /&gt;Give them hard-hitting, constructive feedback.  &lt;/strong&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;Everyone loves feedback, especially constructive feedback, and most managers shy away from giving it. Instead of hoping they will do the right thing and ignoring when they get off track, tell them what you observe and how you what you think (note: you can do this without being a micromanager by focusing on the themes rather than the details). High caliber people can and do want to do the right thing, so it is up to you to help define what that means (btw, you might be wrong, so giving them the feedback and being open to theirs is even better. It can get you aligned with you taking on their view of right quite often. It also clears the air really nicely).&lt;br /&gt;&lt;/span&gt;--&lt;br /&gt;&lt;a href=&quot;http://scottmaxwell.wordpress.com/2005/10/31/attracting-retaining-and-motivating-whats-in-it-for-them/&quot;&gt;Read the article&lt;/a&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113080329107373802/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113080329107373802' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113080329107373802'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113080329107373802'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/10/scott-maxwell-you-just-read-my-mind.html' title='Scott Maxwell, you just read my mind!'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113072568408487561</id><published>2005-10-30T18:26:00.000-08:00</published><updated>2005-10-30T18:28:04.103-08:00</updated><title type='text'>Perceptions: Engineers from India</title><content type='html'>&lt;ul&gt;   &lt;li&gt;&lt;a href=&quot;http://photos1.blogger.com/blogger/1649/197/1600/dilbert2005103104650.jpg&quot;&gt;Dilbert: IIT graduate Asok.&lt;/a&gt;&lt;/li&gt;   &lt;li&gt;&lt;a href=&quot;http://www.doonesbury.com/strip/dailydose/index.html?uc_full_date=20051030&quot;&gt;Doonesbury: A whole new generation of Americans are afraid of loosing their white-collar jobs.&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113072568408487561/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113072568408487561' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113072568408487561'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113072568408487561'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/10/perceptions-engineers-from-india.html' title='Perceptions: Engineers from India'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113047390981475765</id><published>2005-10-27T21:12:00.000-07:00</published><updated>2005-10-27T22:43:02.673-07:00</updated><title type='text'>News round-up</title><content type='html'>&lt;span style=&quot;font-weight: bold;&quot;&gt;The speaker of the U.S Congress has his own Blog&lt;/span&gt;&lt;br /&gt;In this land of rabid polemicsm I can see that right now everyone has decided to side with technology and the benefits it promises. The speaker of the U.S congress has just &lt;a href=&quot;http://www.speaker.gov/journal/index.shtml&quot;&gt;setup his own blog&lt;/a&gt; [speaker.gov]. I&#39;ll bet he got a 1000 hits in the first hour itself :-).&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Chris Webber is black and proud&lt;/span&gt;&lt;br /&gt;I saw &lt;a href=&quot;http://www.nba.com/playerfile/chris_webber/?nav=page&quot;&gt;Chris Webber&lt;/a&gt; [NBA] make an appearance on &lt;span style=&quot;font-style: italic;&quot;&gt;Real Time with Bill Maher&lt;/span&gt; on HBO. I was impressed by his pride in his African-American heritage and sense of identity. The discussion was focused on a new NBA directive that requires players to be dressed formally when travelling with their team or when on the sidelines during a game (e.g when they are injured and on the bench). Maher attempted to portray this directive as smacking of racial overtones. Chris Webber effectively retorted by going at the root of the problem - I paraphrase, just because he has been asked to wear a suit does not mean he has to stop being black.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Narayan Murthy shows the Karnataka authorities that he is pissed&lt;/span&gt;&lt;br /&gt;There is a massive fallout between the very strong &lt;span style=&quot;font-weight: bold;&quot;&gt;Infosys&lt;/span&gt; and the Karnataka govt. where a huge Infosys campus is based. Specifically, the CEO Narayan Murthy is angry that the state government has not addressed the poor infrastructure in the state. I am interested in the outcome. Can powerful corporate lobbies influence the state to do good? Thats a great change from hearing about how powerful pharmaceuticals and oil companies drive the state to do *no good*.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Rediff: Myths and facts about the Indian IT Industry&lt;br /&gt;&lt;/span&gt;&lt;a href=&quot;http://www.rediff.com/money/2005/oct/27myths.htm&quot;&gt;10 myths &amp; facts about the Indian IT Industry&lt;/a&gt; [Rediff]&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113047390981475765/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113047390981475765' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113047390981475765'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113047390981475765'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/10/news-round-up.html' title='News round-up'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113043090814950397</id><published>2005-10-27T09:34:00.000-07:00</published><updated>2005-10-27T09:35:08.183-07:00</updated><title type='text'>BlackBerry Enterprise Security Architecture</title><content type='html'>I have the &lt;a href=&quot;http://www.heise.de/security/artikel/64996&quot;&gt;article &lt;/a&gt;in German and am looking for a translation.</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113043090814950397/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113043090814950397' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113043090814950397'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113043090814950397'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/10/blackberry-enterprise-security.html' title='BlackBerry Enterprise Security Architecture'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113042403188222022</id><published>2005-10-27T07:39:00.000-07:00</published><updated>2005-10-27T07:40:31.896-07:00</updated><title type='text'>Che Guevera</title><content type='html'>&lt;a href=&quot;http://www.capmag.com/article.asp?ID=4450&quot;&gt;Che Guevara: Assassin and Bumbler&lt;/a&gt; [Capitalism Magazine]&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Che_Guevera&quot;&gt;Che Guevera&lt;/a&gt; [Wikipedia]</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113042403188222022/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113042403188222022' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113042403188222022'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113042403188222022'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/10/che-guevera.html' title='Che Guevera'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113037969651205739</id><published>2005-10-26T19:18:00.000-07:00</published><updated>2005-10-26T19:57:14.790-07:00</updated><title type='text'>IT Careers: Evaluating your job</title><content type='html'>I came across an interesting article on evaluating your current job. I respect the article for the fact that it is based on the experiences of the author. It isn&#39;t just any joe blo writing about what he thinks the industry should be like. However, I think the tone of the article is tremendously harsh.&lt;br /&gt;&lt;br /&gt;The article can be &lt;a href=&quot;http://fr.sys-con.com/read/137855.htm&quot;&gt;found here&lt;/a&gt; [fr.sys-con.com].&lt;br /&gt;&lt;br /&gt;From &lt;span style=&quot;font-style: italic;&quot;&gt;i-Technology Viewpoint: When to Leave Your First IT Job:&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&quot;The first layoff is tough. After bending over backward, after being a loyal employee, this is the reward? To summarize how I felt: Disillusioned. Only one thing kept me going -- pure ego. You know when the schoolyard bully says something about your mom in front of everyone? But, ignoring the size difference and the fact that he&#39;s already shaving daily at age 14, you step forward and say &quot;Oh yeah?&quot;, with a Brock Sampson-like eye twitch the only warning of the impending ownage? That&#39;s the kind of ego that kept me determined to give software engineering a second shot.&quot;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I do agree with the following points highlighted in the article.&lt;br /&gt;&lt;ol&gt;   &lt;li&gt;Don&#39;t ever work in cubicles.&lt;/li&gt;   &lt;li&gt;An over-bearing management or they think that they know too much.&lt;/li&gt;   &lt;li&gt;Management that relies on, but disregards your technical advice&lt;/li&gt;   &lt;li&gt;Management that bullies you over your schedules&lt;/li&gt;   &lt;li&gt;Jobs that stunt your personal growth&lt;/li&gt;   &lt;li&gt;Job commitments that you are not happy doing&lt;/li&gt;   &lt;li&gt;Jobs that don&#39;t give you the opportunity for career advancement&lt;/li&gt;   &lt;li&gt;Jobs that don&#39;t consider overtime alongwith compensation&lt;/li&gt; &lt;/ol&gt; I don&#39;t agree that any one of them alone, is reasons enough for quitting your job. Perhaps that wasn&#39;t the author&#39;s point. It is obvious that very few employers will score 10 out of 10 by the standards set down in the article. It is also hard to evaluate each of these requirements against any existing job. For example, schedules can often be tight when trying to meet market demands and when taking advantage of available opportunities. However, it may not be necessary to have to deliver all that is promised on time. A reduced set of commitments can be negotiated upon within the available time constraints. If the management were to then turn down the request to restrict the scope to fit the time - the writing is on the wall. Several start-ups offer stock-options that are worth very little in exchange for loyalty and dedication. It is only a promised compensation, one that may not materialize ever. Is it still a good job subject to the possibility that the employee is willing to risk it?&lt;br /&gt;&lt;br /&gt;What is important is to be aware that your ideals have been compromised. Is your job just another job, or is it something that you enjoy doing with a great deal of passion. Do you honestly believe that you had to make that compromise because of your current working conditions? When did it stop being a true challenge and a learning experience? Then again, should having to work in a cubicle be enough grounds for disullisionment? Or is it that I am incorrectly adopting a more conciliatory stance than is necessary?&lt;br /&gt;&lt;br /&gt;It is hard to evaluate your employer objectively, what with the growing liability of having to provide &#39;diplomatic&#39; feedback to their employees, feedback that will not have the potential to hurt the company. Be careful when you do so. I wouldn&#39;t be surprised if some companies truly are skimping on the quality of work environment they provide.&lt;br /&gt;&lt;br /&gt;Some quotes from the article:&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;At my last job, I constantly felt dejected. &quot;You&#39;re not growing fast enough! You&#39;re barely in the middle of the pack.&quot; was the kind of feedback I was getting from my supervisor. Much later, I realized they were setting employees up for failure, and then blaming the employee, instead of blaming themselves.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;Work is not all bad. A lot of employers say they want their employees to think work is fun. Few employers put their money where their mouth is, and difference is something you not only see - you feel it when you start working for those employers.&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113037969651205739/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113037969651205739' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113037969651205739'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113037969651205739'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/10/it-careers-evaluating-your-job.html' title='IT Careers: Evaluating your job'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113033753783699206</id><published>2005-10-26T07:32:00.000-07:00</published><updated>2005-10-26T07:40:05.503-07:00</updated><title type='text'>Some good blogs of Indian origin</title><content type='html'>&lt;ul&gt;   &lt;li&gt;&lt;a href=&quot;http://www.madmanweb.com/&quot;&gt;MadMan Madhu&#39;s web&lt;/a&gt; -- Owns a restaurant in Bangalore and a great sense of humour.&lt;/li&gt;   &lt;li&gt;&lt;a href=&quot;http://gauravsabnis.blogspot.com/&quot;&gt;Vantage Point&lt;/a&gt; -- Gaurav Sabnis has a lucid writing style and manages to capture interesting snippets from life.&lt;/li&gt;   &lt;li&gt;&lt;a href=&quot;http://www.yazadjal.com/&quot;&gt;AnarCapLib&lt;/a&gt; -- Life without government?&lt;/li&gt;   &lt;li&gt;&lt;a href=&quot;http://azatlan.blogspot.com/&quot;&gt;Ceteris Paribus&lt;/a&gt; -- Don&#39;t panic!&lt;/li&gt; &lt;/ul&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113033753783699206/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113033753783699206' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113033753783699206'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113033753783699206'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/10/some-good-blogs-of-indian-origin.html' title='Some good blogs of Indian origin'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113025177871246127</id><published>2005-10-25T07:45:00.000-07:00</published><updated>2005-10-26T07:32:04.626-07:00</updated><title type='text'>NYTimes: The Lap of Luxury</title><content type='html'>An article on some idiot who is suing a strip-club, albeit one-sided. Read on for a psychoanalysis of strippers and strip clubs.&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;br /&gt;&lt;br /&gt;This time it&#39;s an executive from Missouri named Robert McCormick, who, treating himself and friends, ran up a $241,000 bill at Scores on his corporate American Express card two years ago. American Express is now suing him for refusing to pay up. Several other unhappy customers have also sued Scores over large bills.&lt;br /&gt;&lt;br /&gt;Among strippers I worked with, the most dreaded customers were not the obese or the lame. Rather, we feared customers who thought they were exceptions to the rule. They were just handsome enough, or successful enough, to foolishly think that their own sex appeal was tip enough.&lt;br /&gt;&lt;br /&gt;-- &quot;&lt;a href=&quot;http://www.nytimes.com/2005/10/25/opinion/25eaves.html?oref=login&quot;&gt;The Lap of Luxury&lt;/a&gt;&quot; &lt;/span&gt;The New York Times&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113025177871246127/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113025177871246127' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113025177871246127'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113025177871246127'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/10/nytimes-lap-of-luxury.html' title='NYTimes: The Lap of Luxury'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113016446065729406</id><published>2005-10-24T07:32:00.000-07:00</published><updated>2005-10-24T07:38:54.193-07:00</updated><title type='text'>Northwest airlines</title><content type='html'>How cheap can international travel tickets get? How about $505 for San Francisco, USA to Bangalore, India? Round-trip that would be $1010. Which is relatively cheap. I just booked Seattle, USA to Mumbai, India for $1250 with NWA.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.nwa.com/features/indiaintro/?omni=rs.farepromo&quot;&gt;NWA Promotions&lt;/a&gt; [NWA.com]</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113016446065729406/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113016446065729406' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113016446065729406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113016446065729406'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/10/northwest-airlines.html' title='Northwest airlines'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-113016423254131011</id><published>2005-10-24T07:29:00.000-07:00</published><updated>2005-10-24T07:30:32.546-07:00</updated><title type='text'>Revisit Pune</title><content type='html'>I am going to be in Pune between 3rd of January and 24th January next year. Drop me a line if you would like to meet up!&lt;br /&gt;&lt;br /&gt;Is anyone even reading this :-)?</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/113016423254131011/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/113016423254131011' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113016423254131011'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/113016423254131011'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/10/revisit-pune.html' title='Revisit Pune'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-112983385605712580</id><published>2005-10-20T11:38:00.000-07:00</published><updated>2005-10-20T11:44:16.066-07:00</updated><title type='text'>Excerpts from FEMA officials&#39; e-mails</title><content type='html'>Just so that you are aware, I hate inept &lt;span style=&quot;font-style: italic;&quot;&gt;babus&lt;/span&gt; who hold high government posts in India, are corrupt and arrogant... I hate the ones in the U.S just as much. One of the FEMA officials in the Superdome had a BlackBerry and was in &lt;a href=&quot;http://www.blackberrycool.com/2005/10/20/00985/&quot;&gt;constant touch&lt;/a&gt; [BlackBerryCool] with FEMA HQ.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;Marty Bahamonde a FEMA insider was sent to the New Orleans Superdome as Michael Brown’s “eyes and ears”. Bahamonde was armed with a Blackberry and tried to sound the alarm numerous times about breaking levees and the growing danger inside the Superdome. In an email directly to his boss Michael Brown,&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Also see &lt;a href=&quot;http://seattlepi.nwsource.com/national/1152AP_Katrina_FEMA_E_mail.html&quot;&gt;this article&lt;/a&gt; [Seattle PI].&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;-Bahamonde to FEMA Director Michael Brown, Aug. 31, 11:20 a.m.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&quot;Sir, I know that you know the situation is past critical. Here some things you might not know.&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style=&quot;font-style: italic;&quot;&gt;Hotels are kicking people out, thousands gathering in the streets with no food or water. Hundreds still being rescued from homes.&lt;/span&gt;&lt;br /&gt; &lt;br /&gt; &lt;span style=&quot;font-style: italic;&quot;&gt;The dying patients at the DMAT tent being medivac. Estimates are many will die within hours. Evacuation in process. Plans developing for dome evacuation but hotel situation adding to problem. We are out of food and running out of water at the dome, plans in works to address the critical need.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;-Sharon Worthy, Brown&#39;s press secretary, to Cindy Taylor, FEMA deputy director of public affairs, and others, Aug. 31, 2 p.m.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&quot;Also, it is very important that time is allowed for Mr. Brown to eat dinner. Gievn (sic) that Baton Rouge is back to normal, restaurants are getting busy. He needs much more that (sic) 20 or 30 minutes. We now have traffic to encounter to get to and from a location of his choise (sic), followed by wait service from the restaurant staff, eating, etc.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;-Bahamonde to Taylor and Michael Widomski, public affairs, Aug. 31, 2:44 p.m.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&quot;OH MY GOD!!!!!!!! No won&#39;t go any further, too easy of a target. Just tell her that I just ate an MRE and crapped in the hallway of the Superdome along with 30,000 other close friends so I understand her concern about busy restaurants. Maybe tonight I will have time to move my pebbles on the parking garage floor so they don&#39;t stab me in the back while I try to sleep.&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/112983385605712580/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/112983385605712580' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/112983385605712580'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/112983385605712580'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/10/excerpts-from-fema-officials-e-mails.html' title='Excerpts from FEMA officials&#39; e-mails'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10778435.post-112982189905344554</id><published>2005-10-20T08:15:00.000-07:00</published><updated>2005-10-20T08:24:59.060-07:00</updated><title type='text'>Business Etiquette for PhD&#39;s</title><content type='html'>I came across a short article on Business etiquette.&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;br /&gt;&lt;br /&gt;For Ph.D.&#39;s looking for jobs outside of academe, the insularity of the ivory tower is often a handicap, but it doesn&#39;t have to be. If you arm yourself with a solid knowledge of business etiquette and a sense of how academics are perceived by the outside world, you will have a better experience on the nonacademic market.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;--&lt;a href=&quot;http://chronicle.com/temp/email.php?id=bzjdnqytof1nyn64fsawf2cf2ic4fl3q&quot;&gt;Speak Up, Shake Hands, and Smile&lt;/a&gt;; Chronicle Careers&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://chronicle.com/jobs/2005/09/2005093002c.htm&quot;&gt;Suggested books on business etiquette&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;In brief,&lt;br /&gt;&lt;ul&gt;   &lt;li&gt;Business etiquette is necessary when dealing in the business world&lt;br /&gt;  &lt;/li&gt;   &lt;li&gt;Overdressed is fine, but dress appropriately&lt;br /&gt;  &lt;/li&gt;   &lt;li&gt;Rehearse a good handshake&lt;/li&gt;   &lt;li&gt;Make frequent, sustained eye-contact, it is a sign of confidence&lt;br /&gt;  &lt;/li&gt;   &lt;li&gt;Work on nervousness/anxiety signs offline&lt;/li&gt;   &lt;li&gt;Emphasize on precise written and spoken communication in different contexts&lt;/li&gt;   &lt;li&gt;Practise the &quot;elevator speech&quot;&lt;/li&gt;   &lt;li&gt;Practise your &quot;airplane test&quot;&lt;/li&gt;   &lt;li&gt;Practise your small-talk skills&lt;/li&gt;   &lt;li&gt;Be savvy when you write your e-mails, timing is important, so is content, and privacy&lt;/li&gt;   &lt;li&gt;Don&#39;t attempt communication when your upset, high on pot, or just plain out of sorts&lt;br /&gt;  &lt;/li&gt; &lt;/ul&gt; &lt;span style=&quot;font-style: italic;&quot;&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdawara.blogspot.com/feeds/112982189905344554/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10778435/112982189905344554' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/112982189905344554'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10778435/posts/default/112982189905344554'/><link rel='alternate' type='text/html' href='http://sdawara.blogspot.com/2005/10/business-etiquette-for-phds.html' title='Business Etiquette for PhD&#39;s'/><author><name>santosh</name><uri>http://www.blogger.com/profile/05802065751725383869</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>