<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Searching Everything...</title>
	<atom:link href="http://anupshinde.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://anupshinde.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sat, 05 Feb 2011 09:48:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='anupshinde.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Searching Everything...</title>
		<link>http://anupshinde.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://anupshinde.wordpress.com/osd.xml" title="Searching Everything..." />
	<atom:link rel='hub' href='http://anupshinde.wordpress.com/?pushpress=hub'/>
		<item>
		<title>To GWT or not to GWT &#8230; Dealing with the scripting hell&#8230; my learnings so far..</title>
		<link>http://anupshinde.wordpress.com/2011/02/05/to-gwt-or-not-to-gwt-dealing-with-the-scripting-hell-my-learnings-so-far/</link>
		<comments>http://anupshinde.wordpress.com/2011/02/05/to-gwt-or-not-to-gwt-dealing-with-the-scripting-hell-my-learnings-so-far/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 09:00:48 +0000</pubDate>
		<dc:creator>Anup Shinde</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://anupshinde.wordpress.com/?p=88</guid>
		<description><![CDATA[Since few days,I have been analyzing on how to write a rendering engine that uses the XML that comes from the server and renders a webpage-form or part of it. Well that should be simple &#8230;right? Define the XML, parse the XML and create DOM elements using one of the RIA libs like Ext, YUI, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=88&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since few days,I have been analyzing on how to write a rendering engine that uses the XML that comes from the server and renders a webpage-form or part of it. Well that should be simple &#8230;right? Define the XML, parse the XML and create DOM elements using one of the RIA libs like Ext, YUI, SmartClient &#8230;.</p>
<p>What if you are creating a lib for production ready applications with good or reasonable performance. The range of frameworks available kept confusing me for a while on what to use. I can write JavaScript code, but had to decide on the library to use. Finally it came down to two &#8211; Ext and SC(Smartclient-free-LGPL).. I like jQuery too, but it did not fit in very well in the core. I prefer SC over Ext due to its licensing and arguably its better performance while dealing with lots of data. (fyi&#8230; I am an Ext developer too)</p>
<p>When I started with SC, I needed a lot of patience to work with it. Getting started is difficult. The documentation isn&#8217;t so clear. I usually don&#8217;t read text but skim through it, so if there is some important point in the corner or in middle of lots of text, I would miss it. Additionally community interaction is more on smart-gwt (SC-GWT)&#8230; Mapping that gwt code to JavaScript code was sometimes painful. In the process, I always wanted to jump back to Ext. But later the patience paid off. In the end I came out more biased towards SC and still am. If you explore the not-free server features of SC, you&#8217;ll be further amazed.<br />
So I decided on SC. But what about GWT, why not use it? I am not a java developer and in fact a better JavaScript dev. So the basic idea of writing java code to generate JavaScript eludes me. Plus java really means unnecessary lines of code to me. I am a .NET dev and then a fan of Ruby (and Rails) &#8212; so now you know what I mean. With those params, GWT wasn&#8217;t an attractive for me earlier.</p>
<p>That said, GWT isn&#8217;t just java to JavaScript. It goes well beyond that ..in minimizing multi-browser issues. Its easier to implement some of the best practices for Web 2.0. Its easier to unit-test too. Further, the road-map looks good too. But the UI is dull. I learnt that Google has hired good designers to make GWT look good and that further we may see better out-of-the-box UI. That&#8217;s future&#8230;so for now, I am looking into SC-GWT (smartgwt-LGPL)<br />
Hey &#8230; wait &#8230; you might say&#8230; GWT has introduced UI binder which is almost similar to the thing you am trying to do&#8230;. so why re-invent the wheel? The answer for now is simple. GWT compiles the UI binder xmls and these are not available at runtime &#8211; i.e. the JavaScript does not deal with the xmls. One possible way to re-use it is to figure out a way to re-use the GWT compilation mechanism at runtime &#8212; it should be possible, but I haven&#8217;t tried it yet. And obviously GWT compilation is in itself a time-consuming process to be performed at runtime.<br />
GWT obviously brings in few benefits but one big inconvenience for me&#8230;. writing lots of lines in java code and not using JavaScript and losing some of its flexibility. You can always mix stuff, but I think that should be avoided when possible.</p>
<p>You can achieve all the goodness of GWT and beyond that if you maintain good javascripting discipline&#8230;.. how hard would it be?&#8230;.really a lot harder when working in a team&#8230; If you have worked on writing enterpise web2.0 apps with large teams&#8230;everybody writing JavaScript at some point of time&#8230; where its hard to expect everybody to understand javascripting very well &#8230;. you&#8217;d know the scripting-disaster that comes with it&#8230;.I think in that scenario, GWT helps minimizing the problem&#8230;obviously GWT cannot prevent somebody from writing bad code.<br />
Another thing I like about GWT is its integrated development with Google App Engine. Although I am pretty new to both, I think it would result into better developer productivity. When I mention Google-app-engine, I must say that its easy to get lost into the different persistence techniques that come with it and you are likely to ask &#8220;Why? Google, Why?&#8221;. That&#8217;s when I miss the simplicity and certainty with MS technologies.. even if it means dealing with sub-standard at times.</p>
<p>References:<br />
To get started with GWT, you can check the article below&#8230; it covers up a lot of stuff and I hope I knew about it earlier&#8230;</p>
<p><a href="http://www.vogella.de/articles/GWT/article.html">http://www.vogella.de/articles/GWT/article.html</a></p>
<p>To get started with SmartGWT) and AppEngine, check this video:http://www.youtube.com/watch?v=XIfeLaYxNts</p>
<p>Article: <a href="http://jumanor.blogspot.com/2010/12/primeros-pasos-con-smartgwt.html">http://jumanor.blogspot.com/2010/12/primeros-pasos-con-smartgwt.html </a> (The article is in Spanish &#8230;  use Chrome/Google translate for English)</p>
<p>In case you are interested more in architecting real world GWT apps&#8230; i.e. something beyond &#8220;hello world&#8221; apps&#8230; check out these videos from Google IO:</p>
<p>Best Practices for Architecting GWT App</p>
<span style="text-align:center; display: block;"><a href="http://anupshinde.wordpress.com/2011/02/05/to-gwt-or-not-to-gwt-dealing-with-the-scripting-hell-my-learnings-so-far/"><img src="http://img.youtube.com/vi/PDuhR18-EdM/2.jpg" alt="" /></a></span><br />
Architecting GWT apps</p>
<p><span style="text-align:center; display: block;"><a href="http://anupshinde.wordpress.com/2011/02/05/to-gwt-or-not-to-gwt-dealing-with-the-scripting-hell-my-learnings-so-far/"><img src="http://img.youtube.com/vi/M5x6E6ze1x8/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/anupshinde.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/anupshinde.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/anupshinde.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/anupshinde.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/anupshinde.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/anupshinde.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/anupshinde.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/anupshinde.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/anupshinde.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/anupshinde.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/anupshinde.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/anupshinde.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/anupshinde.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/anupshinde.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=88&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://anupshinde.wordpress.com/2011/02/05/to-gwt-or-not-to-gwt-dealing-with-the-scripting-hell-my-learnings-so-far/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/df1287b381b041d7d523527fc8b0c53c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupshinde</media:title>
		</media:content>
	</item>
		<item>
		<title>RBI makes OTP mandatory for IVR&#8230; The good and bad</title>
		<link>http://anupshinde.wordpress.com/2010/12/31/rbi-makes-otp-mandatory-for-ivr-the-good-and-bad/</link>
		<comments>http://anupshinde.wordpress.com/2010/12/31/rbi-makes-otp-mandatory-for-ivr-the-good-and-bad/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 05:27:42 +0000</pubDate>
		<dc:creator>Anup Shinde</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://anupshinde.wordpress.com/?p=76</guid>
		<description><![CDATA[Starting from Jan 2011 all the payments made via Master and Visa credit-cards over phone (IVR or m-banking) will require an additional One Time Password. This has been made mandatory by the Reserve Bank of India (RBI). The intention of OTP is intended to reduce fraud and protect customers. The principle behind this move is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=76&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Starting from Jan 2011 all the payments made via Master and Visa credit-cards over phone (IVR or m-banking) will require an additional One Time Password. This has been made mandatory by the Reserve Bank of India (RBI).</p>
<p>The intention of OTP is intended to reduce fraud and protect customers. The principle behind this move is  Two-factor authentication (2FA). 2FA uses something you know &#8211; like username/password/CCno-expiry-cvv with something you possess &#8211; like a security token/token generator/one-time-password.</p>
<p>Starting tomorrow, a customer can obtain the OTP by either calling his / her bank over phone or sending a SMS to his / her bank. The OTP is valid for only one transaction, and it expires within few hours of issuance (this validity period depends on the bank).<br />
Some of us would have already encountered 2FA&#8230; Example. a Security token for bank account or trading account or VPN access. I have one in front of me&#8230; changing numbers every 30 secs. I have one more for my trading account and one for viewing CC statements - I have no idea why the last one was needed, the bank forced it on me  and it doesn&#8217;t work.</p>
<p>3 security tokens and I am already frustrated having to carry those all the time. I like the idea of having a 2FA through mobiles. You register your mobile once and then whenever require a token you just send sms to your bank. All you need to carry is your mobile.</p>
<p>But is it really so simple? Maybe not. Think about it. First &#8212; you need to have your mobile up and running &#8212; this shouldn&#8217;t be a problem for most people unlike me &#8211; I still carry 2 handsets instead of using dual-sim-phone. Second &#8212; You need those SMS numbers handy to request for OTP. Its very simple if you saved these numbers and created sms-drafts and use one CC only for IVR and m-banking. Third &#8211; The response shouldn&#8217;t be delayed a lot. This concerns me a lot since my first try today sent me a response half-an-hour later.</p>
<p>This news frustrated me a bit initially &#8211; although I very well understand the security aspect. That&#8217;s because I use IVR a lot (if not m-banking). In fact when I have both the PC and mobile, I prefer IVR systems for the regular transactions like paying bills. And sometimes for booking hotels or tickets. Now, I&#8217;ll have to generate this OTP every time I want to use it &#8211; even for the regular transactions. This also reminds me of a similar case &#8211; how people tend to move away from some websites that require them to register to view some content. And obviously my IVR usage is going to drop significantly due to this OTP overhead. Being an engineer, some questions do come to my mind: Why should I need OTP to pay my regular mobile-bills through IVR using the same mobile or the pre-paid costs or the DTH connection with my mobile registered? Why not have a singular OTP than per-bank-OTP? How about having some common-sense intelligence in the systems out there?</p>
<p>Happy Reading.. Please leave your comments&#8230; and wish you all a Happy New Year !!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/anupshinde.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/anupshinde.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/anupshinde.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/anupshinde.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/anupshinde.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/anupshinde.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/anupshinde.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/anupshinde.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/anupshinde.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/anupshinde.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/anupshinde.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/anupshinde.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/anupshinde.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/anupshinde.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=76&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://anupshinde.wordpress.com/2010/12/31/rbi-makes-otp-mandatory-for-ivr-the-good-and-bad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/df1287b381b041d7d523527fc8b0c53c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupshinde</media:title>
		</media:content>
	</item>
		<item>
		<title>Feeling the internet overdose. Some day I might repel internet&#8230;.</title>
		<link>http://anupshinde.wordpress.com/2010/10/03/feeling-the-internet-overdose-some-day-i-might-repel-internet/</link>
		<comments>http://anupshinde.wordpress.com/2010/10/03/feeling-the-internet-overdose-some-day-i-might-repel-internet/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 21:53:50 +0000</pubDate>
		<dc:creator>Anup Shinde</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://anupshinde.wordpress.com/?p=53</guid>
		<description><![CDATA[I am going to throw out my frustration against emails onto this post&#8230; people might want to stay out. Today I had somewhat of a bad day&#8230; I woke up late but feeling tired&#8230; and then early afternoon my air-bed started leaking out air&#8230; the puncture was perfectly positioned to not allow for a simple fix of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=53&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am going to throw out my frustration against emails onto this post&#8230; people might want to stay out.</p>
<p>Today I had somewhat of a bad day&#8230; I woke up late but feeling tired&#8230; and then early afternoon my air-bed started leaking out air&#8230; the puncture was perfectly positioned to not allow for a simple fix of applying the adhesive patch&#8230;After 2 hours I could fix it, but not without breaking one of the internal frame connectors&#8230;deforming the air-bed a little&#8230; Later in the evening&#8230; in the parking, I forgot to put out my bike stand before leaving control&#8230;duh!&#8230; and the bike crashed with me over it&#8230; dint hurt but that did break one of the turn-signal- lights&#8230;.</p>
<p>Later when I opened my Gmail&#8230;it triggered my thought process. I had so many new mails. I have 13500+ unread emails in my Gmail Inbox&#8230; WTH&#8230; These exclude all the filtered mail and all the spam. I have an hotmail account addressed only by important services and that has 2900+ unread mails. Then I have an yahoo mail account, which was my fav before gmail and that I dint even care to count right now. Above all these accounts I have a Facebook (and Orkut)  &#8230; virtual socializing is somewhat important&#8230; but sometimes I feel pressured if I don&#8217;t contribute to facebook.. duh!&#8230; My anxiety comes down  only when I sing to myself &#8220;<a href="http://www.youtube.com/watch?v=zDHb4wewAIQ&amp;feature=player_embedded" target="_blank">Facebook is a stupid idiot</a>&#8221; (see the video, therez some truth to it) &#8230; Fortunately I am not addicted to Internet games. I  once was addicted to some &#8220;vampires&#8221; game on Facebook and I remember how out of control it gets&#8230;..Then there is Orkut&#8230; I dont check nowadays since I switched to FB. I closed down my first Orkut account, bcoz I thought it was sucking the time out of my life and it had a lot more &#8220;orkut only&#8221; friends. Later social networking turned so important that I decided to open a new one. Its easy to stay in touch with some people over a social network than anything else&#8230;. but anyways&#8230; there is so much information&#8230;</p>
<p>Then I also have a Twitter account&#8230; Whenever I see that, I feel I don&#8217;t tweet enough&#8230; i hope I had a song similar to what I had for FB&#8230; Then therz a linked-in account&#8230; then therz digg&#8230; my head wants to go &lt;bang bang bang&gt;&#8230; and then bank accounts&#8230;cc accounts..trading accounts..telephony &amp; broadband accounts&#8230; Thats so much of an account overdose</p>
<table border="0">
<tr>
<td width="80">
<img title="Frustrated" src="http://anupshinde.files.wordpress.com/2010/10/pulling_hair1.jpg?w=169&#038;h=200" alt="" width="169" height="200" />
</td>
<td>I get on an average 35 mails a day (20 on Gmail, 5 on hotmail and 10 on yahoo) on my personal accounts, after all the filtering (like group subscriptions or FB notifications) and spam removal&#8230; now thats just an average and I am sure the median is on the higher side of the average.
</td>
</tr>
</table>
<p>I can ignore some of the emails in my personal account just by filtering and the subject lines&#8230;. Now what about the office e-mails &#8211; I can&#8217;t ignore those and mostly have to read all of those. I get anywhere between 20-100 mails per day &#8211; around 40 looks like the average. Some problems that team-emails are &#8220;unnecessary group e-mails&#8221;, &#8220;misplaced subject lines&#8221; and &#8220;multi-threading&#8221;&#8230;. people might cut out the newer responses&#8230; mostly managers start that unintentionally (I can understand what they face in their Inbox everyday)&#8230; and people just don&#8217;t care to correct it&#8230; So if you want to follow a thread you have to read all the mails.  And finally, since I am not just a passive receptor&#8230; I send mails too. Its simply amazing to see how some people work with at least 4 times the amount of email I receive and lots of meetings. Fortunately, I don&#8217;t have account overdose at the co, its pretty well integrated and organized.</p>
<p>Thats about the emails and accounts&#8230;What about the 4 domain names I own? And the one which is active/more-visited website&#8230; I feel genuinely pressured to contribute to that too&#8230; I have a LSI (Latent Semantic Indexing) program ready that I made 2 years back and wish to document and share, but I have forgotten LSI concepts by now. Then there are things half-done that got lost when some other work took priority&#8230;. duh!</p>
<p>Working as a technologist in software, I cannot avoid technology and software. Sometimes I feel &#8220;software engineering&#8221; is analogous to &#8220;true lies&#8221;.. We have IT (Information Technology) to solve our problems and then we have ITSM (IT Service Management) to solve the problems that IT creates&#8230;. And as I write this, I realize tomorrow morning I would be checking the work-related-emails while working at the co that makes ITSM software</p>
<p>Happy Internetting !!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/anupshinde.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/anupshinde.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/anupshinde.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/anupshinde.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/anupshinde.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/anupshinde.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/anupshinde.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/anupshinde.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/anupshinde.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/anupshinde.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/anupshinde.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/anupshinde.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/anupshinde.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/anupshinde.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=53&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://anupshinde.wordpress.com/2010/10/03/feeling-the-internet-overdose-some-day-i-might-repel-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/df1287b381b041d7d523527fc8b0c53c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupshinde</media:title>
		</media:content>

		<media:content url="http://anupshinde.files.wordpress.com/2010/10/pulling_hair1.jpg" medium="image">
			<media:title type="html">Frustrated</media:title>
		</media:content>
	</item>
		<item>
		<title>some pic..</title>
		<link>http://anupshinde.wordpress.com/2010/10/02/42/</link>
		<comments>http://anupshinde.wordpress.com/2010/10/02/42/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 08:24:39 +0000</pubDate>
		<dc:creator>Anup Shinde</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://anupshinde.wordpress.com/?p=42</guid>
		<description><![CDATA[I never thought that I&#8217;d blog about somebody. This picture caught my attention. So who&#8217;s this guy? He is Samir &#8230;. as we sometimes call him &#8220;Samir &#8230; the Sood&#8221;. I am not sure if I want to write about Samir or about this awesome picture. This picture overflows with the moment of happiness, fulfillment [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=42&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I never thought that I&#8217;d blog about somebody. This picture caught my attention. So who&#8217;s this guy? He is Samir &#8230;. as we sometimes call him &#8220;Samir &#8230; the Sood&#8221;. I am not sure if I want to write about Samir or about this awesome picture. This picture overflows with the moment of happiness, fulfillment and joyfulness that these folks would have experienced on the recent Goa trip.</p>
<p><a href="http://anupshinde.files.wordpress.com/2010/10/samir_the_bond2.jpg"><img title="Samir_The_Bond" src="http://anupshinde.files.wordpress.com/2010/10/samir_the_bond2.jpg?w=640&#038;h=424" alt="" width="640" height="424" /></a></p>
<p>Samir is a generous guy &#8211; girls always call him the nice guy and the sweet guy (he&#8217;s single too), an actor, a good sports person, captain of cricket team, plays golf, a lucky gambler and not the least &#8211; a senior developer in our team. I think I missed something more..but anyways &#8230;  Sometime he&#8217;s also a geek like most of us, and most geeky somebody told me.. he was using 4-5 machines simultaneously. He sometimes also becomes the drama-magnet and thats when we call him Poserruddin. He never gets angry at anything and this level of emotion-control is definitely super-human. Well, we also have a Superman picture of him in office with all the pretty girls around him.</p>
<p>Samir is omnipresent. No, I am not crazy. There something about him that everybody likes. No matter what we do and where we are and where Samir is, he is always on the back of everybody&#8217;s mind. And his name would always pop-up in a conversation.</p>
<p>Samir&#8230; you ROCK!!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/anupshinde.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/anupshinde.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/anupshinde.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/anupshinde.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/anupshinde.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/anupshinde.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/anupshinde.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/anupshinde.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/anupshinde.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/anupshinde.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/anupshinde.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/anupshinde.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/anupshinde.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/anupshinde.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=42&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://anupshinde.wordpress.com/2010/10/02/42/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/df1287b381b041d7d523527fc8b0c53c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupshinde</media:title>
		</media:content>

		<media:content url="http://anupshinde.files.wordpress.com/2010/10/samir_the_bond2.jpg" medium="image">
			<media:title type="html">Samir_The_Bond</media:title>
		</media:content>
	</item>
		<item>
		<title>Tips on Working From Home</title>
		<link>http://anupshinde.wordpress.com/2010/10/01/tips-on-working-from-home/</link>
		<comments>http://anupshinde.wordpress.com/2010/10/01/tips-on-working-from-home/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 21:09:59 +0000</pubDate>
		<dc:creator>Anup Shinde</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://anupshinde.wordpress.com/?p=31</guid>
		<description><![CDATA[I split my previous post about Working from Home . If you haven&#8217;t read it, I&#8217;d recommend reading that first. The first post was becoming too lengthy and the second part looks more like some formal documentation.. These are some tips that might help you to effectively work from home. Its worth mentioning that I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=31&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">I split my previous post about Working from Home . If you haven&#8217;t read it, I&#8217;d recommend reading that first. The first post was becoming too lengthy and the second part looks more like some formal documentation.. These are some tips that might help you to effectively work from home. Its worth mentioning that I find it effective myself, but it would be my manager who&#8217;s going to have the last say on whether I was effective or not. Effectiveness also depends on your passion and attitude towards work.</div>
<div>&#8212;</div>
<div id="_mcePaste"><strong>Setup and environment</strong></div>
<div><strong><br />
</strong></div>
<div id="_mcePaste"><em><strong>Work space</strong></em>: You should have a good environment to work from home. Decide on your work-space (other than your comfy bed).  And keep it clean just as you would expect it in office. Depending on where you live, you might have cooling or heating requirements.</div>
<div id="_mcePaste"><strong><em>Computers and telecommunications</em></strong>: You&#8217;ll need these most of the time. Get a high speed internet connection and a good speaker phone. Estimate your expected telecom usage and get appropriate plans on telecommunication. You don&#8217;t want to increase your unnecessary costs. Also recommended is a back up mobile internet connection and have ups to keep your devices working during short term power failures. Have all the solutions for conferencing and team communications ready (with cost estimates). Have your machines setup with whatever is required for work.</div>
<div><strong><em>Team communications</em></strong>: Share your phone numbers/messenger IDs and try and make an effort to keep those easily accessible to team members. You can put only one number and turn-on parallel ringing on your mobile. Sometimes people may not want to call you but only use IM/emails. People can&#8217;t see you, so keep updating IM status appropriately and you can also use out-of-office-replies for some longer breaks.</div>
<div><strong><em>Keep off distractions</em></strong>: Less distractions is a must, otherwise it would adversely affect productivity. If you have a nagging wife/girlfriend&#8230; I know they all are&#8230;you can always use work as an excuse and get some more private time.</div>
<div><strong><em>Self-discipline &amp; self-motivation:</em></strong> You need to be self-disciplined and self-motivated to work under less supervision and under isolation. Don&#8217;t move back to your TV or to your sofa for a nap. If you doubt this ability, consider keeping a hourly/daily/weekly journal of things done.</div>
<div><strong><em>Planning and schedule</em></strong>: I hate the word &#8220;planning&#8221; bcoz it takes the fun out of the process at times. But that&#8217;s required to work effectively here too. Make a list of things you have to do and write down quick estimates &#8211; like in one or two seconds. Avoid micro-planning for this list, you can do it when you start the task. Keep the list visible at all times. Planning ahead does reduce the gaps in between tasks. If the work is very agile (i don&#8217;t mean agile development), keep a plan at least half a day ahead. Most of the time the plan would be through multiple days. While you have communication tools, its also important to plan and reduce frequent communication as much as possible. It may not be able to reach co-workers as easily as it were in office. Also schedule your work timings and follow those. It makes it easier for people to know when you are available.</div>
<div><strong><em>Stress control:</em></strong> Work at home can drastically reduce the number of breaks taken and increased focus with less breaks can result to burnouts. Take small breaks at regular intervals and follow a defined work schedule (unless its something urgent). Even follow a practice of going out of home for at least 30 minutes every day after work.</div>
<div id="_mcePaste">&#8212;</div>
<div id="_mcePaste"><strong>Advantages I see</strong></div>
<div id="_mcePaste">Increased Productivity: With lesser distractions from co-workers and lesser socializing you are able to focus better on the task and be more productive. Its can also result into burnouts if stress control is not exercised.</div>
<div id="_mcePaste">Less travelling:</div>
<div id="_mcePaste">Not travelling under the polluted air around you to the office and saving fuel and time.</div>
<div id="_mcePaste">Do your math, its saving at least Rs. 6-8k a year and saving at least 120-150 liters of fuel, around 300+ hours, much more if you use a car or traveled more than the minimum that I guessed. Yes, there are disadvantages of not-travelling too and as I learned those can be avoided by not being sluggish.</div>
<div>Better use of free time: At some times you&#8217;d have nothing to do, probably you are waiting on an install or compiling a build or scanning the hard disk&#8230;. or simply nothing to do and waiting on something. Its nice to be able to multi task in such time.</div>
<div><strong>Disadvantages:</strong></div>
<div>Loss of implicit communications &#8211; this is definitely a huge strategic loss if you are more of an intuitive person like me. If your job doesn&#8217;t require you to be a strategic player, the good part is this will put lot more focus on your personal productivity</div>
<div>Less socializing. Socializing is good to some extent only</div>
<div>Less visibility and then there&#8217;s stuff like team outings that can&#8217;t be done from home.</div>
<div id="_mcePaste">&#8212;</div>
<div>Happy Working from Home !!!</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/anupshinde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/anupshinde.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/anupshinde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/anupshinde.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/anupshinde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/anupshinde.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/anupshinde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/anupshinde.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/anupshinde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/anupshinde.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/anupshinde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/anupshinde.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/anupshinde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/anupshinde.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=31&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://anupshinde.wordpress.com/2010/10/01/tips-on-working-from-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/df1287b381b041d7d523527fc8b0c53c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupshinde</media:title>
		</media:content>
	</item>
		<item>
		<title>Working from Home</title>
		<link>http://anupshinde.wordpress.com/2010/10/01/working-from-home/</link>
		<comments>http://anupshinde.wordpress.com/2010/10/01/working-from-home/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 20:14:23 +0000</pubDate>
		<dc:creator>Anup Shinde</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://anupshinde.wordpress.com/?p=20</guid>
		<description><![CDATA[So this post&#8230;. I am going to talk a little bit about Working From Home (kind of long-term) Many people have come and asked me why I chose to work from home? how is it to work from home? Is it good? Is it comfortable? Is it productive? Is it fun? Let me talk about [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=20&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So this post&#8230;. I am going to talk a little bit about Working From Home (kind of long-term)</p>
<p>Many people have come and asked me why I chose to work from home? how is it to work from home? Is it good? Is it comfortable? Is it productive? Is it fun?</p>
<p>Let me talk about a few things on this first. Work from home isn&#8217;t for people who don&#8217;t like to work at all unless there is some strong bureaucratic miracle happening. Most of the time work &#8211; i mean WORK &#8211; would look the same as it were in office. If you like it its fun, if you detest it, its not.</p>
<p>My job profile mostly requires me to work from my desk and through meetings. Anything that I did other than that, which in fact I did a lot for my own learning and experience, is undoubtedly above my pay-grade. In India where work from home concept is pretty new and not well accepted, it is going to be difficult. Part of that is due to tradition &#8211; people don&#8217;t understand it and in a highly social culture we tend to follow the herd. And partly its due to terrible execution by an individuals &#8211; you are responsible for your results &#8211; at least in this country people avoid risks simple because they want to avoid responsibility &#8211; it ends up in blame games and this isn&#8217;t only in the govt organisations but also in most private organisations &#8211; obviously this is changing a lot &#8211; even if one percent was your fault, you have to accept the responsibility and move on. Coming back to the point&#8230;  the question for me was: how much difference would it make to me if I worked from home? There is a high risk of stalled career growth or being replaced, so I have to make efforts to reduce that risk and be ready to accommodate that risk in entirety. You miss out on socializing with the team (not FB/Twitter)</p>
<p>Work-from-home is a big risk if you are not self-motivated. I knew, it wouldn&#8217;t be a huge problem for me after having worked as a freelancer for a significant time before joining the industry as an employee. After getting the option from the employer (thanks to them), I did take multiple opinions, calculated the risks and accounted for my preferences.</p>
<p>For me it has definitely been more productive relative to the time spent to do a similar task in office. One of my friends said about work-from-home as &#8220;You just have to wake up in your bed and start working&#8221;. Well, its not like that. Its comfortable and has its own advantages if you overcome personal challenges there. Few reasons why I chose to work from home is increased personal time, personal ambitions, diminished liking for any office (read: needed a long break), and then finally, employer&#8217;s permission to do so. This post is already has a lot of content so I&#8217;ll write down some stuff on effectively working from home as I understand it in a next post.</p>
<p>Happy Reading!!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/anupshinde.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/anupshinde.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/anupshinde.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/anupshinde.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/anupshinde.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/anupshinde.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/anupshinde.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/anupshinde.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/anupshinde.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/anupshinde.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/anupshinde.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/anupshinde.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/anupshinde.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/anupshinde.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=20&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://anupshinde.wordpress.com/2010/10/01/working-from-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/df1287b381b041d7d523527fc8b0c53c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupshinde</media:title>
		</media:content>
	</item>
		<item>
		<title>First post&#8230;</title>
		<link>http://anupshinde.wordpress.com/2010/09/09/first-post/</link>
		<comments>http://anupshinde.wordpress.com/2010/09/09/first-post/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 19:51:35 +0000</pubDate>
		<dc:creator>Anup Shinde</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://anupshinde.wordpress.com/?p=4</guid>
		<description><![CDATA[Hey Everybody&#8230; Just joined the WordPress community&#8230; Its strange nobody had taken up my username yet. It disappeared on Yahoo where probably I started way back near the year 2000&#8230; then got it at some places and had to use some strange numerals at other logins&#8230;.. I hope I&#8217;ll be able to contribute @ WordPress. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=4&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hey Everybody&#8230; Just joined the WordPress community&#8230; Its strange nobody had taken up my username yet. It disappeared on Yahoo where probably I started way back near the year 2000&#8230; then got it at some places and had to use some strange numerals at other logins&#8230;.. I hope I&#8217;ll be able to contribute @ WordPress. I remember registering @ blogspot and even adding few posts there. But this interface looks cool and much more comfortable for me. I have my own website too&#8230; <a title="Anup's Site" href="http://www.AnupShinde.com" target="_blank">http://www.AnupShinde.com</a>. You&#8217;ll only find some techy stuff there. And yes, you&#8217;ll also find a Personality Test there. Well, not a long test and therefore nowhere near accuracy. But its sure fun. So if u happen to visit the site&#8230;Enjoy!!!</p>
<p>A thing about writing, it&#8217;s not boring but when I have to format text and review article, that irritates me too much. I&#8217;d like to write at the speed of thought, but my fingers are still slower after so many years of practice. I have my website, and it&#8217;s not too cool-looking either (except some articles where people have sent a lot of appreciation). But when you write articles, especially the technical ones, there is a lot of hard work other than just writing it. You have to format the text, keep the diagrams in place. Check the flow again and again and again until you think its correct. And then check it again the next morning after a good sleep to check if something was missed. Well, it has improved with practice with lot less mistakes, but never got it right at the first time. I had been a freelance programmer for many years and I do give that a credit of whatever writing skills I have today. Since this is my first blog, I am going to throwaway whatever comes up as I write, probably some parts of intro to myself.</p>
<p>I come from electronics and then software background&#8230; so you&#8217;ll might find my language in IFs and BUTs. But&#8230; (didnt i just use that again). So I was saying that the flow in my texts usually go in a logical manner. And don&#8217;t mind if you find some place where the logic gets really complex. My 8-12 hours job work every day consists of writing complex software systems. Few of them are really really compressed, generalized and complex (not messy) that I have to read the documents to understand those if I left working on those for some time. I have been following some of the best programmers in the world and all I can say is good programming is an art that requires time,  hard work and practice over and over and over again. It&#8217;s unfortunate that I find many programmers/engineers and, in general, people who make no effort to improve.</p>
<p>Started writing in my early years&#8230; I remember the first thing I wrote out of my imagination and <em>so-called knowledge </em>was on the Big Bang theory&#8230; I had written 5 pages of literature at the age of 15 arguing that the theory was incorrect. That&#8217;s nearly 13 years back. I argued about that theory to a newly found friend at the new school and he giggled. There I was feeling stupid about myself. Well how can an academically average kid in an average school at that age argue that theory? Till date I don&#8217;t know if the theory is correct or was proven wrong. I never majored in physics and opted out to electronics at my UG college. But almost a year back, when I found the same paper while cleaning up my stuff &#8230; those 5 pages&#8230; I took those and sat down there in the mess and read it completely. The theory I wrote might be wrong or right, but the argument was pretty good for a 15-year-old in those times when we dint use computers (forget internet or Google).  I am not a researcher, but have worked with a few and at a time was just about to start off as an academic researcher (that doesn&#8217;t fit my mindset yet). I have learnt to take criticism, analyze it and to learn from it. Being a natural auto-critique definitely gives me an edge at the learning process. Those &#8220;5 pages&#8221; motivate me to this day.  As shown in the movie &#8220;Pursuit of Happyness&#8221;: <em>don&#8217;t let anyone tell you that you can&#8217;t do something. </em>Had somebody motivated me at that young age, may be I&#8217;d be a researcher in physics now. Fortunately I am better off now. I stressed on &#8220;may be&#8221; because I am still not good at reading. I dislike reading for marks or money (or fun) until there is a motivating factor. Not that I have a learning disorder, but I am more of an audio-visual learner. Sometimes I feel bad about being educated the way I was&#8230;It might have been due to the time&#8230; lack of technologies like today&#8230; lack of good schools/teachers&#8230; country &#8230; and/or just lack of motivation from my end&#8230; I never liked that &#8220;<em>meaningless education</em>&#8221; that also produces &#8220;<em>educated idiots</em>&#8221; &#8230; I&#8217;ll leave that topic there for another post.</p>
<p>Somehow the intricacies of science used to fascinate me. Those days it was physics and now its more about economics &amp; psychology. And there&#8217;s a lot more in between. Life has been an exciting journey with few successes, overcoming lots of challenges and slightly more failures but definitely a lot of learning. After couple of years of break, that is: doing the rudimentary work and a bit of personal reformation, I have taken on an unconventional endeavor. And that I have been forewarned will test all my limits of patience and perseverance (No. Its not a girl&#8230;phew). So, I hope I&#8217;ll be able to post more and will leave you folks now with a quote that popped up in my head.</p>
<p>Happy reading &amp; comments are always welcome !!!</p>
<p><em>Life is very precious and lifetime should not be wasted on activities that don&#8217;t excite you to the very depth of your soul. Be Human!</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/anupshinde.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/anupshinde.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/anupshinde.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/anupshinde.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/anupshinde.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/anupshinde.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/anupshinde.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/anupshinde.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/anupshinde.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/anupshinde.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/anupshinde.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/anupshinde.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/anupshinde.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/anupshinde.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupshinde.wordpress.com&amp;blog=15774442&amp;post=4&amp;subd=anupshinde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://anupshinde.wordpress.com/2010/09/09/first-post/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/df1287b381b041d7d523527fc8b0c53c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupshinde</media:title>
		</media:content>
	</item>
	</channel>
</rss>
