<?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>Pradeep&#039;s Blog</title>
	<atom:link href="http://pradeep85.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pradeep85.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 27 May 2010 11:29:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pradeep85.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Pradeep&#039;s Blog</title>
		<link>http://pradeep85.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pradeep85.wordpress.com/osd.xml" title="Pradeep&#039;s Blog" />
	<atom:link rel='hub' href='http://pradeep85.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Use of Between in SQL queries</title>
		<link>http://pradeep85.wordpress.com/2010/05/26/use-of-between-in-sql-queries/</link>
		<comments>http://pradeep85.wordpress.com/2010/05/26/use-of-between-in-sql-queries/#comments</comments>
		<pubDate>Wed, 26 May 2010 07:13:03 +0000</pubDate>
		<dc:creator>empty85</dc:creator>
				<category><![CDATA[Sql]]></category>

		<guid isPermaLink="false">http://pradeep85.wordpress.com/?p=49</guid>
		<description><![CDATA[sql<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=49&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The BETWEEN condition allows you to retrieve values within a range.</p>
<p>The syntax for the BETWEEN condition is:</p>
<p><strong>SELECT columns<br />
FROM tables<br />
WHERE column1 between value1 and value2;</strong></p>
<p>This SQL statement will return the records where column1 is within the range of value1 and value2 (inclusive). The BETWEEN function can be used in any valid SQL statement &#8211; select, insert, update, or delete.</p>
<p>But the use of BETWEEN also have some limitations.</p>
<p>Imagine a scenario :</p>
<p>10 % to user whose balance above 10000(inclusive) and less than 20000(exclusive)<br />
20 % to user whose balance above 20000(inclusive).</p>
<p>Now if one fires this query :</p>
<p><strong>SELECT accounts<br />
FROM tab_accounts<br />
WHERE balance between 10000 and 20000;</strong></p>
<p>It will return all those accounts whose balance is between 10000 and 20000(both values are inclusive). so one must think before using it.</p>
<p>Better way to use operators.</p>
<p><strong>SELECT accounts<br />
FROM tab_accounts<br />
WHERE balance&gt;=10000 and balance&lt;20000;</strong></p>
<p>this way one can retrieve the correct values.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeep85.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeep85.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pradeep85.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pradeep85.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pradeep85.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pradeep85.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pradeep85.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pradeep85.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pradeep85.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pradeep85.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pradeep85.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pradeep85.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pradeep85.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pradeep85.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=49&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeep85.wordpress.com/2010/05/26/use-of-between-in-sql-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e93a8b7e84704fb1a0c6fa53c0f5ae9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">empty85</media:title>
		</media:content>
	</item>
		<item>
		<title>Accessing the Map values using keySet iterator</title>
		<link>http://pradeep85.wordpress.com/2010/05/17/accessing-the-map-values-using-keyset-iterator/</link>
		<comments>http://pradeep85.wordpress.com/2010/05/17/accessing-the-map-values-using-keyset-iterator/#comments</comments>
		<pubDate>Mon, 17 May 2010 05:23:40 +0000</pubDate>
		<dc:creator>empty85</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Collection]]></category>

		<guid isPermaLink="false">http://pradeep85.wordpress.com/?p=46</guid>
		<description><![CDATA[As we all make this mistake and we as a programmers are already aware of this mistake, but we still tends to make this mistake. A common mistake is to retrieve values from a Map while iterating over the Map keys with keySet(). Calling Map.get(key) for each entry is expensive and should be avoided for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=46&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As we all make this mistake and we as a programmers are already aware of this mistake, but we still tends to make this mistake. A common mistake is to retrieve values from a Map while iterating over the Map keys with <code>keySet()</code>. Calling <code>Map.get(key)</code> for each entry is expensive and should be avoided for better performance.</p>
<p>Use <code>entrySet()</code> iterator to avoid the <code>Map.get(key)</code> lookup.</p>
<p>I was making this mistake</p>
<p><strong>for</strong> (String object : objectMap.keySet()) {</p>
<p>query.setParameter(object, objectMap.get(object));</p>
<p>}</p>
<p>But soon I realized this is an expensive call, and now started using :</p>
<p><strong>for</strong> (Map.Entry&lt;String, Object&gt; entry: queryMap.entrySet()) {</p>
<p>query.setParameter((String)entry.getKey(), entrySet.getValue());</p>
<p>}</p>
<p>Which saves a lot of time, so this is a add-on to the performance,</p>
<p>Also the typecasting to String is also not needed here, as the compiler is smart enough to judge that.</p>
<p>Hope this helps <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It takes more that 50 ms to execute the first method, but ti took less than 20 ms to execute the same thing.</p>
<p> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeep85.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeep85.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pradeep85.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pradeep85.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pradeep85.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pradeep85.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pradeep85.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pradeep85.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pradeep85.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pradeep85.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pradeep85.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pradeep85.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pradeep85.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pradeep85.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=46&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeep85.wordpress.com/2010/05/17/accessing-the-map-values-using-keyset-iterator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e93a8b7e84704fb1a0c6fa53c0f5ae9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">empty85</media:title>
		</media:content>
	</item>
		<item>
		<title>Clash for the barclays premier league Title</title>
		<link>http://pradeep85.wordpress.com/2010/04/03/clash-for-the-barclays-premier-league-title/</link>
		<comments>http://pradeep85.wordpress.com/2010/04/03/clash-for-the-barclays-premier-league-title/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 11:04:21 +0000</pubDate>
		<dc:creator>empty85</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pradeep85.wordpress.com/?p=44</guid>
		<description><![CDATA[This is going to be the most exiting match of this season. For ManU its a very important game, if they win, this means they will got a lead of 4 points from Chealsea, which is 2nd in the table. Now only 6 games left for ManU this season including this game. They got a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=44&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is going to be the most exiting match of this season.</p>
<p>For ManU its a very important game, if they win, this means they will got a lead of 4 points from Chealsea, which is 2nd in the table. Now only 6 games left for ManU this season including this game. They got a very strong chance to win this season. If they loose this one then also they have a strong chance to win this season.</p>
<p>For Chealsea, if they win they got a lead of 2 points from ManU, this means they are back on the hot seat. They are also looking strong this season.</p>
<p>If the match ends up in a draw, they Arsenal fans going to cheer. And the league again going to be open among three.</p>
<p>The results scenario :</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeep85.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeep85.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pradeep85.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pradeep85.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pradeep85.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pradeep85.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pradeep85.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pradeep85.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pradeep85.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pradeep85.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pradeep85.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pradeep85.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pradeep85.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pradeep85.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=44&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeep85.wordpress.com/2010/04/03/clash-for-the-barclays-premier-league-title/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e93a8b7e84704fb1a0c6fa53c0f5ae9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">empty85</media:title>
		</media:content>
	</item>
		<item>
		<title>Human being : Another Animal</title>
		<link>http://pradeep85.wordpress.com/2010/03/13/human-being-another-animal/</link>
		<comments>http://pradeep85.wordpress.com/2010/03/13/human-being-another-animal/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 19:30:13 +0000</pubDate>
		<dc:creator>empty85</dc:creator>
				<category><![CDATA[My Life My Way]]></category>
		<category><![CDATA[My Views : A different story]]></category>
		<category><![CDATA[Relationship]]></category>
		<category><![CDATA[A different thinking]]></category>

		<guid isPermaLink="false">http://pradeep85.wordpress.com/?p=41</guid>
		<description><![CDATA[Many of you start thinking a lot about reading this heading of this article &#8220;Human Being : Another Animal&#8221;. Many might thought that what I am suppose to say, what I am going to write under this heading. Many more questions are arising in your mind. Let me clarify before I proceed, that what I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=41&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Many of you start thinking a lot about reading this heading of this article &#8220;Human Being : Another Animal&#8221;. Many might thought that what I am suppose to say, what I am going to write under this heading. Many more questions are arising in your mind. Let me clarify before I proceed, that what I am going to write under here. Have you seen an animal suppose a dog getting married to a bitch(seems a bad word to use, but when its here for the users to use it, so better use it, instead of leaving it jus a part of dictionary). As per me everything is okay and understandable until someone din&#8217;t hurt by your comments. I am sorry, if someone disagree with me.</p>
<p>So where we are, I am going to tell you what I am going to write in here. Hmmm.. You might have seen dogs and bitches playing in nights, also noticed that the same dog and the different bitch every time. Does any one complained for this, that why this is allowed for Dogs when it is not allowed to humans in our society. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />   Let me ask you a simple question : How many of you married people cheat on your partners(Thank God I am still single.).. So what the answers. I guess when males are considered, the number goes around 90% and in case of females it around 60%, as women are more scared of the society. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  They think more about their surrounding. One more reason can be possible as males used to pay to have sex with someone else than her partner. But women cant do that so often.</p>
<p>One of my friend said to me that, its really sad to get married without any relation, as I dint realize anything else. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  I just think that everything is just the same. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  Whenever she said this to me I always used to told her one thing..&#8221;What kind of restrictions are imposed on you, hunt for a guy and have it, if you want, else stop thinking.&#8221; One day she said to me that this isn&#8217;t easy, as our society wont allow. But this made me think, that why these restrictions are on us when we are same as animals, can&#8217;t we think this way. We are also tends to be attracted towards opposite sex, same as other animals. Now over that also some people argued with me that this is why we are most intelligent animals, and thus we are humans. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>What humans, <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  we used to fight more than animals, so this makes us more worse than animals. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<blockquote><p><strong><em>Birds do it, bees do it, even educated fleas do it&#8230; So what&#8217;s stopping us humans from admitting that we do it too? </em></strong></p></blockquote>
<p style="text-align:left;">Is it true that our society put so many restrictions on ourselves, so that we are scared of this. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p style="text-align:left;">One more thing which I feel : &#8220;Monogamy is boring, Its not natural.&#8221; Is it.??</p>
<p style="text-align:left;">If you disagree write about it, else accept it. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p style="text-align:left;">When the Tiger Woods episode was in news, media created a whole lot of drama to sale this news. But does any news paper or news agency tried why so many cases of such type of news arises year after year, when the celebrities after a lots of society pressure cannot afford to live in with a single spouse, their might be many common people who used to do it more often when they are afraid of no-one. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  As no-one going to say anything to them.</p>
<p style="text-align:left;">People I am not saying its a good or bad thing to have sex with more than one person. But if you want an the other person is ready to have the same with you, their is nothing wrong in that, speak up, <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Instead of keeping yourself shut provides you the solution for that. This is in my mind from a long back, Today finally I got time to write about this. As people are so afraid of their surroundings that they even shut their dreams and desires. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align:left;">If your dreams and desires won&#8217;t hurt someone else, go live your dreams. If you don&#8217;t live<em><strong> </strong></em>them today, you wont able to live in future too. Whenever anything comes to my mind I do. I am never afraid of the results, specially when the results won&#8217;t affect myself much.</p>
<p style="text-align:left;">Why we humans are so afraid of ourselves. ??</p>
<p style="text-align:left;">My friend said to me that I don&#8217;t even know how it feels when someone kiss you, is it going to be some different or not. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  But these days people used to be in more than one relationship at a single time.</p>
<p style="text-align:left;">I&#8217;ll add more to this again when I get more time. For the time being buhBye. If I am wrong somewhere please correct me. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  This is me. free flow of thoughts.</p>
<blockquote>
<p style="text-align:left;"><em><strong>&#8220;English isn&#8217;t that good but isn&#8217;t that bad that you dunn understand my thoughts.&#8221;</strong></em></p>
</blockquote>
<p style="text-align:left;">Will be back soon with a bang <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Live today stop thinking about past or future, stop caring about others thinking about you until you can see yourself in the mirror. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Till then nothing is bad.</p>
<p style="text-align:left;">Even I read somewhere Good sex keeps you healthy. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeep85.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeep85.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pradeep85.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pradeep85.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pradeep85.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pradeep85.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pradeep85.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pradeep85.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pradeep85.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pradeep85.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pradeep85.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pradeep85.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pradeep85.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pradeep85.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=41&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeep85.wordpress.com/2010/03/13/human-being-another-animal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e93a8b7e84704fb1a0c6fa53c0f5ae9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">empty85</media:title>
		</media:content>
	</item>
		<item>
		<title>My preparation for SCJP</title>
		<link>http://pradeep85.wordpress.com/2010/03/07/my-preparation-for-scjp/</link>
		<comments>http://pradeep85.wordpress.com/2010/03/07/my-preparation-for-scjp/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 07:00:03 +0000</pubDate>
		<dc:creator>empty85</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[SCJP]]></category>

		<guid isPermaLink="false">http://pradeep85.wordpress.com/?p=37</guid>
		<description><![CDATA[As I am working on Java platform so its good for me to have a word recognized Java Certification. So I decided to be a SCJP certified Java programmer. Its always good to be a certified programmer than to be a good programmer. As your certificates speaks  about you knowledge. When I started looking for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=37&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As I am working on Java platform so its good for me to have a word recognized Java Certification. So I decided to be a SCJP certified Java programmer. Its always good to be a certified programmer than to be a good programmer. As your certificates speaks  about you knowledge.</p>
<p>When I started looking for the SCJP study material I realized that it is very easy to crack this exam by reading dumps. Initially I thought I&#8217;ll give this exam by reading 2-3 recent dumps. But when I started solving the dumps, I get to know that the questions are not that difficult and a bit tricky one.  By solving those problems I get to know many new things, and many things are revised, but there are lots of things about them I really don&#8217;t have any idea. Sometimes, I really got confused. So, I discussed this with some of the senior certified programmers. They told me that, I may able to clear the SCJP exam with flying marks above 90% by reading dumps, but what about the concepts.</p>
<p>If you clear SCJP exam, then expectation from you also increases. And if your concepts are not clear, you wont able to deliver, weather you are a certified programmer or not. So they suggested me to refer some books first, when I am clear with my concepts then take  on these dumps to practice. so that I can score good marks. They told me to refer two books :</p>
<ul>
<li>Thinking in Java by Bruce Eckel</li>
<li>SCJP Study Guide by Kathy Sierra<a href="http://pradeep85.files.wordpress.com/2010/03/scjp.jpeg"><img class="aligncenter size-full wp-image-38" title="scjp" src="http://pradeep85.files.wordpress.com/2010/03/scjp.jpeg" alt="" /></a></li>
</ul>
<p>I am not asking you people to only refer these books. Neither I started reading yet. I&#8217;ll start reading them from now onwards, what I feel about them will let you know.</p>
<p>One more important thing they told me to refer java forums.</p>
<blockquote><p><em>This makes em think so many times that whats there in those Java forums, most of the forums are fill with advertising. This is why I avoid subscribing any kind of forums. But they told me that there are many good Java forums available online. Search for them you&#8217;ll find few good ones.</em></p></blockquote>
<p>If any one of you have any idea of these Java forums which will help me out so please let me know.</p>
<p>I started preparations for SCJP 1.6, but actually there is no big difference between 1.5 and 1.6, they almost are the same. So one can go for anyone. But its good to have the latest. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>I&#8217;ll first refer these books and try to finish them as soon as possible and then go for the dumps. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  In between also I&#8217;ll solve some SCJP pattern questions so that I am able to get a idea where actually I stand and hows my preparation for the exam. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Wish me luck.. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeep85.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeep85.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pradeep85.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pradeep85.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pradeep85.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pradeep85.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pradeep85.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pradeep85.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pradeep85.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pradeep85.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pradeep85.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pradeep85.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pradeep85.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pradeep85.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=37&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeep85.wordpress.com/2010/03/07/my-preparation-for-scjp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e93a8b7e84704fb1a0c6fa53c0f5ae9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">empty85</media:title>
		</media:content>

		<media:content url="http://pradeep85.files.wordpress.com/2010/03/scjp.jpeg" medium="image">
			<media:title type="html">scjp</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Domain difference</title>
		<link>http://pradeep85.wordpress.com/2010/03/01/google-domain-difference/</link>
		<comments>http://pradeep85.wordpress.com/2010/03/01/google-domain-difference/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 06:44:38 +0000</pubDate>
		<dc:creator>empty85</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://pradeep85.wordpress.com/?p=32</guid>
		<description><![CDATA[Many people thought what is the difference between Google India and Google. Have a look at the two given snapshots, you will get an idea of this. Though I&#8217;ll try to explain it in brief too what makes google opt these different domains for the difference countries, and a common above all. Have a look [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=32&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Many people thought what is the difference between Google India and Google. Have a look at the two given snapshots, you will get an idea of this.</p>
<p>Though I&#8217;ll try to explain it in brief too what makes google opt these different domains for the difference countries, and a common above all.</p>
<p><a href="http://pradeep85.files.wordpress.com/2010/03/google-india.jpeg"><img class="aligncenter size-full wp-image-30" title="google india" src="http://pradeep85.files.wordpress.com/2010/03/google-india.jpeg" alt="" /></a><a href="http://pradeep85.files.wordpress.com/2010/03/google-world.jpeg"><img class="aligncenter size-full wp-image-31" title="google world" src="http://pradeep85.files.wordpress.com/2010/03/google-world.jpeg" alt="" /></a>Have a look at above two snapshots, both the snapshots are taken on the same date same time, It was Holi in India and Winter Olympics are on. When I was searching for remove malicious content, I noticed this in Google India. I thought of trying it in Google world, I noticed the automatic results are different in both the cases.</p>
<p>Google, got it right, the automatic search results are also based on the country you are in. If you open Google, it will redirect you to the country&#8217;s Google domain</p>
<p>For eg. If I am in India and try to open Google by default it will take me to google .co.in, But still I can access google.com. Google provide an option to search your result on India basis(for people in India, for rest their own country) and also on the overall world basis.</p>
<p>So, depending on the search results in particular domain, it feeds the automatic results. Wow, Google rocks&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeep85.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeep85.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pradeep85.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pradeep85.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pradeep85.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pradeep85.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pradeep85.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pradeep85.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pradeep85.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pradeep85.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pradeep85.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pradeep85.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pradeep85.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pradeep85.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=32&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeep85.wordpress.com/2010/03/01/google-domain-difference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e93a8b7e84704fb1a0c6fa53c0f5ae9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">empty85</media:title>
		</media:content>

		<media:content url="http://pradeep85.files.wordpress.com/2010/03/google-india.jpeg" medium="image">
			<media:title type="html">google india</media:title>
		</media:content>

		<media:content url="http://pradeep85.files.wordpress.com/2010/03/google-world.jpeg" medium="image">
			<media:title type="html">google world</media:title>
		</media:content>
	</item>
		<item>
		<title>Gmail behaving abnormaly</title>
		<link>http://pradeep85.wordpress.com/2010/03/01/gmail-behaving-abnormaly/</link>
		<comments>http://pradeep85.wordpress.com/2010/03/01/gmail-behaving-abnormaly/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 06:27:30 +0000</pubDate>
		<dc:creator>empty85</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet Abnormality]]></category>

		<guid isPermaLink="false">http://pradeep85.wordpress.com/?p=26</guid>
		<description><![CDATA[Hmmm..this is what I never expected of gmail, Google&#8217;s mail service. I am a great fan of Google services. When I opened my mail box today, I got shocked a bit, I thought their might be some virus which affected my PC. But I scanned my PC and I found nothing malicious. So I guess [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=26&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://pradeep85.files.wordpress.com/2010/03/Gmail Abnormal Behavior.jpg"><img class="alignright size-full wp-image-27" title="Gmail Abnormal Behavior" src="http://pradeep85.files.wordpress.com/2010/03/11.jpg" alt="" width="175" height="381" /></a>Hmmm..this is what I never expected of gmail, Google&#8217;s mail service. I am a great fan of Google services. When I opened my mail box today, I got shocked a bit, I thought their might be some virus which affected my PC. But I scanned my PC and I found nothing malicious. So I guess this might be some problem with Gmail.</p>
<p>I may be wrong but this was my first thought about this incident. If this a some sort of virus then people please let me know. But I guess, if this is some sort of virus, then it should not only turn off some characters instead it would have changed the other characters too.</p>
<p>This is why I believe, this cannot be a virus, or any script running behind the screen.</p>
<p>So what may be the problem but this is for sure this makes me guessing, whats wrong with gmail.</p>
<p>As this is been in news from quite a some time now that the hackers are getting more and more hazardous, and they have increased their attacks. So anyone can be a victim, I though have a bit of knowledge about the hacking sort of things, but this is not enough to save my PC from the attacks of the hackers or penetrators.</p>
<p>If any of you faced such similar scene, please let me know what it is, and what is the solution for this. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeep85.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeep85.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pradeep85.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pradeep85.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pradeep85.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pradeep85.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pradeep85.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pradeep85.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pradeep85.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pradeep85.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pradeep85.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pradeep85.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pradeep85.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pradeep85.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=26&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeep85.wordpress.com/2010/03/01/gmail-behaving-abnormaly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e93a8b7e84704fb1a0c6fa53c0f5ae9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">empty85</media:title>
		</media:content>

		<media:content url="http://pradeep85.files.wordpress.com/2010/03/11.jpg" medium="image">
			<media:title type="html">Gmail Abnormal Behavior</media:title>
		</media:content>
	</item>
		<item>
		<title>A survey related mail</title>
		<link>http://pradeep85.wordpress.com/2010/02/28/a-survey-related-mail/</link>
		<comments>http://pradeep85.wordpress.com/2010/02/28/a-survey-related-mail/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 10:31:12 +0000</pubDate>
		<dc:creator>empty85</dc:creator>
				<category><![CDATA[Mail Box]]></category>
		<category><![CDATA[Reality Bites]]></category>

		<guid isPermaLink="false">http://pradeep85.wordpress.com/?p=22</guid>
		<description><![CDATA[Today morning when I got up, I was a bit shocked when I opened my mailbox. I had a habit of checking my mailbox every morning. I got up and opened my gmail account. As we all know their is a shorted of food all over the world. The UN is doing his part of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=22&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today morning when I got up, I was a bit shocked when I opened my mailbox. I had a habit of checking my mailbox every morning. I got up and opened my gmail account. As we all know their is a shorted of food all over the world. The UN is doing his part of job, but is it enough. Well I can&#8217;t comment on that till I have any information on that, or I am in a position to comment on such a big issue. I am a kid to comment on that. But the thing which I am talking here is about that mail.</p>
<p>The mail I got is related to the survey, when I saw the mail I thought there might be some shocking figures and the food shortage, but when I saw the mail, it make me laugh and a bit amused too.</p>
<p>Have a look at the email</p>
<blockquote><p><span style="color:#0000ff;"><em>A World wide survey was conducted by the UN. The only question asked was:</em></span></p>
<p><em>&#8220;Would you please give your honest opinion about solutions to the food shortage in the rest of the world?&#8221;</em></p>
<p><em>The survey was a huge failure because,</em></p>
<p><em>In Africa they didn&#8217;t know what &#8216;food&#8217; meant,</em></p>
<p><em>In India they didn&#8217;t know what &#8216;honest&#8217; meant,</em></p>
<p><em>In Europe they didn&#8217;t know what &#8216;shortage&#8217; meant,</em></p>
<p><em>In China they didn&#8217;t know what &#8216;opinion&#8217; meant,</em></p>
<p><em>In the Middle East they didn&#8217;t know what &#8216;solution&#8217; meant,</em></p>
<p><em>In South America they didn&#8217;t know what &#8216;please&#8217; meant,</em></p>
<p><em>And in the USA they didn&#8217;t know what &#8216;the rest of the world&#8217; meant!</em></p></blockquote>
<p><span style="color:#0000ff;"><span style="color:#000000;">When I read this mail few things are understandable, but the last statement, is really true and shocking. Oh God, why the upper people think that the lower people can&#8217;t come ahead. Why they always try to stop those people to compete them. But one thing is for sure, time will change, the developed economies will realize that the developing and under-developed economies will compete them one day and that day don&#8217;t seams to far.</span></span></p>
<p><span style="color:#0000ff;"><span style="color:#000000;">When I was a kid, I always thought of going US and wanted to settle there, but the day by day I came to know about the US people mentality, I dropped this idea. I still prefer to go there, but now not to settle there, just to visit around the beautiful places all around the USA. And to earn some money too <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  As people in US had enough money, so they can share it with other people too&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  They will not donate this but, we will work and earn that money for us. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </span></span></p>
<p><span style="color:#0000ff;"><span style="color:#000000;">And for the African people, I just say, future will be bright, food shortage will never be a problem. God is not that selfish, that he always ask same people to sacrifice.  Eoupeans are seams to be smarter people and dominated the whole world.<br />
</span></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeep85.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeep85.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pradeep85.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pradeep85.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pradeep85.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pradeep85.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pradeep85.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pradeep85.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pradeep85.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pradeep85.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pradeep85.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pradeep85.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pradeep85.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pradeep85.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=22&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeep85.wordpress.com/2010/02/28/a-survey-related-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e93a8b7e84704fb1a0c6fa53c0f5ae9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">empty85</media:title>
		</media:content>
	</item>
		<item>
		<title>Life in IT Sector</title>
		<link>http://pradeep85.wordpress.com/2010/02/25/life-in-it-sector/</link>
		<comments>http://pradeep85.wordpress.com/2010/02/25/life-in-it-sector/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 19:00:01 +0000</pubDate>
		<dc:creator>empty85</dc:creator>
				<category><![CDATA[IT Sector]]></category>

		<guid isPermaLink="false">http://pradeep85.wordpress.com/?p=16</guid>
		<description><![CDATA[IT Sector.. Wow..Amazing Life<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=16&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Oh..What an interesting topic it is. Few might think, whats so interesting in this, as life in IT sector is same as other sectors too. May be for few, but majority of people from IT sector may agree with me, as this world is quite an amazing  one. Few people enjoy it, few get frustrated here, few give up and few live with it, without thinking anything. So, it a salute to all the IT engineers who make it this facinating world.  This is what I really enjoy, being an IT engineer with some experience, their is no boundaries of Time on you, if one want to work for more than 12 Hrs. in this sector&#8230;.Oops, I mis-communicated you people, 12 Hrs is common for all the IT engineers. And most of the IT engineers work for more than 14 Hrs a day, but very less are productive.</p>
<p>I have seen people seating in their cabins and chatting with some or the other guy on the office communicator, even I used to do that. This is not bad, but if this becomes a habit, then its not bad, its worse. Nothing more worse can happen with you, you will exploit your own career on your own, if you are a beginner in this sector, and a victim of this habit, then even God can&#8217;t save you. As IT engineers don&#8217;t have any luck with them. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Well, the life in IT companies is cool, one will see good quantity of hot chicks early morning, frustrated seniors, laughing people, tensionless guys, chilling out couples, staring people, and many more varieties of species. Every day is a new day. Most of the people in a IT company smoke 5-6 times a day on an average. More you gain the experience under your belt more you smoke. More you work sincerely, more the people will shout on you. More you aredeserving candidate, less chance of getting ahead of people who are competing with you. If you are a girl, you might be lucky, but not on all occasions, there are many pshycos in this sector who hate girls. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>But I love girls. they are the source of inspiration in such a tense environment, specially those who are in HR dept. Frankly speaking, you never see them tensed anytime, one can easily notice them and recognize them, the girl aged looking ladies, dressed well, looking hot, with lots of makeup, smiling face, and some or the other guy with them to listen to them. But, the whole company moves because of these ladies.</p>
<p>When I see such ladies all forget all my tensions, and work loads and enjoy the scene fully. They provide new energy to me, which makes me fully energized to work for more than 12 Hrs a day.</p>
<p>One more interesting thing here in this sector, the guy sitting in the next cubical is nothing to do with you and found two type of characteristics in him/her.</p>
<p>Either he/she daily says hello and start working and nothing else in the whole day except that morning hello, or nothing, no Hi Hello, he come inside, sits and starts working. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Why he this time, because, girls can&#8217;t come inside office and sit calm. they will surely look here and there to verify that the people near around them noticed her or not. Some do it silently, some do it publicly &#8230;.:But this is what guys also want too.</p>
<p>There are lot of other interesting parts associated with this IT sector&#8217;s life.</p>
<p>But one thing is for sure, more the hot chicks in the working environment, more enthusiasm in the team.</p>
<p>Some people might say its a distracting thing, but this is one which makes me work. Let me tell you a short and simple story of mine. I sits near a UI team which is full of hot chicks, when I am not able to analyze any problem, and proceed further, I took a round of whole UI team to see those girls, they makes my mind start working, its like fuel for my  mind, which ignites everything in me. People please take it positively. Most of the people thing the other way. But taking everything positively makes your life easy. I am not saying that one should neglect the other side of the story, but before considering the other side, consider the positive side, which is much more happening then the other one.</p>
<p>So, this is me in IT sector. How I start my day and how it goes on.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeep85.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeep85.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pradeep85.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pradeep85.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pradeep85.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pradeep85.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pradeep85.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pradeep85.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pradeep85.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pradeep85.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pradeep85.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pradeep85.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pradeep85.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pradeep85.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=16&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeep85.wordpress.com/2010/02/25/life-in-it-sector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e93a8b7e84704fb1a0c6fa53c0f5ae9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">empty85</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello to blogging World</title>
		<link>http://pradeep85.wordpress.com/2010/02/25/hello-to-blogging-world/</link>
		<comments>http://pradeep85.wordpress.com/2010/02/25/hello-to-blogging-world/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 18:18:30 +0000</pubDate>
		<dc:creator>empty85</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pradeep85.wordpress.com/?p=11</guid>
		<description><![CDATA[Welcome Note, About me, What I love to do.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=11&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, let me introduce myself first before I begin writing some rubbish things here about myself which few people may like and few may dislike. This is common human ideology, one can&#8217;t do anything about this. So let the people like or dislike, who cares until it din hurt someone. So I&#8217;ll try to write only things which are not going to harm anyone and personal to someone. This blog is dedicated to all people who believes to change and want to do something new.</p>
<p>So, here I am for you all.</p>
<p>Its Pradeep Kumar, born in a small town, or rather say small village Kumawas of small town Jhunjhunu. People might not know about Jhunjhun, but when I say Pilani or Khetri are part of this Distt. then many people may realize that which Distt. I am talking about. For those who are still in not near it. So for them let me tell you. Jhunjhunu is a small Distt. which is highly educated Distt. of Rajasthan situated on the border with Haryana.</p>
<p>My dad is Ex-Soldier and mother is Housewife.</p>
<p>As far as education is considered. I have  completed bachelors in engineering in Information Technology stream. when I was a kid, I always think about PC&#8217;s, but my father not able to provide me one. But when I get a chance to deal with them, I was very happy, but instead of doing some good things with this machine, I used to play Games like Age of Empires and Counter Strike, which badly ruined my Report Cards. But I don&#8217;t have any regrets, as I had done what makes me happy. Anyways, its a long story about my college life which will be explained in the detail in the later sections in the very same blog.</p>
<p>Now, what I am doing is also an important thing which people like to know.</p>
<p>Well, I am a software engineer, working with Oracle Financial Services in Mumbai.</p>
<p>And its good to work on a Financial Product like FlexCube. I really enjoy working on it, playing with jason string, CoreJava, Oracle10g, Hibernate, ADF screens, its great.</p>
<p>Now what excites me. Hmmm.. I love all kinds of sports, weather I am watching them or playing them. It hardly matters who is playing, but if the players whom I like to see playing makes me crazy, Rooney, Sachin, Schumi, Neil, Rossi.. are few great sportsman whom I love to see. I am also a great fan of PC games.</p>
<p>Politics also one of the key area which makes some interesting news which I used to read a lot.</p>
<p>I also enjoy visiting places, chatting , gossiping with people.</p>
<p>When I am alone, I love to listen old Hindi songs.</p>
<p>One thing which I really hate, is when someone say bad about India.</p>
<p>Well thats all as of now, will keep on telling you other things about me and will reach the new heights here in the blogging world.</p>
<p>Mostly I&#8217;ll write about technical things, and few about entertainment. Hope you people enjoy and support me.</p>
<p>Note: My English is not that good, but still I&#8217;ll try to make it easy for everyone to understand.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeep85.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeep85.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pradeep85.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pradeep85.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pradeep85.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pradeep85.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pradeep85.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pradeep85.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pradeep85.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pradeep85.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pradeep85.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pradeep85.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pradeep85.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pradeep85.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pradeep85.wordpress.com&amp;blog=8613201&amp;post=11&amp;subd=pradeep85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pradeep85.wordpress.com/2010/02/25/hello-to-blogging-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7e93a8b7e84704fb1a0c6fa53c0f5ae9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">empty85</media:title>
		</media:content>
	</item>
	</channel>
</rss>
