<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Kalpesh Padia's Blog</title>
	
	<link>http://kalpeshpadia.wordpress.com</link>
	<description>My Blog - My Thoughts - My Experiences</description>
	<lastBuildDate>Wed, 04 Apr 2012 07:44:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain="kalpeshpadia.wordpress.com" port="80" path="/?rsscloud=notify" registerProcedure="" protocol="http-post" />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Kalpesh Padia's Blog</title>
		<link>http://kalpeshpadia.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kalpeshpadia.wordpress.com/osd.xml" title="Kalpesh Padia's Blog" />
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/KalpeshPadia" /><feedburner:info uri="kalpeshpadia" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://kalpeshpadia.wordpress.com/?pushpress=hub" /><item>
		<title>Backing up DDL in Oracle – the DBA way!!</title>
		<link>http://feedproxy.google.com/~r/KalpeshPadia/~3/wmtXzLIwDB4/</link>
		<comments>http://kalpeshpadia.wordpress.com/2012/04/04/backing-up-ddl-in-oracle-the-dba-way/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 07:44:57 +0000</pubDate>
		<dc:creator>kalpeshpadia</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Daily Life]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[DDL]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[ORA-29280]]></category>
		<category><![CDATA[ORACLE]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[procedures]]></category>
		<category><![CDATA[single sql file]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://kalpeshpadia.wordpress.com/?p=113</guid>
		<description><![CDATA[So the other day I had to back up all database objects for an Oracle instance i manage and I was looking for some tool that would help me generate DDL for each object in a separate SQL file. A quick Google search revealed I could backup DDL using TOAD (full version), DB Solo and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=113&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So the other day I had to back up all database objects for an Oracle instance i manage and I was looking for some tool that would help me generate DDL for each object in a separate SQL file.</p>
<p>A quick Google search revealed I could backup DDL using TOAD (full version), DB Solo and RazorSQL. I use DBArtisan at work and my organization doesn&#8217;t want to move to TOAD yet. I have used DB Solo in the past and I have liked the clean and light interface and the quick ability to back up DDL but I just couldn&#8217;t use it this time because I had already expired my trial version and didn&#8217;t have enough time to get the folks sign off on purchase of a license (which is not very expensive). So I decided to try RazorSQL, but was disappointed because it dumps all objects in one single SQL file. Also, when I tried to back up stored procedures (over 5000 of them), the program refused to copy.</p>
<p>Out of luck and exhausted, I remembered the good old DBMS_METADATA commands. I quickly created a new directory entry in the database for the location where i wanted to dump my DDL, and executed a procedure that I&nbsp;wrote to perform the DDL backup.</p>
<p>Here are the steps I followed: (one can use SQL PLUS or any DB tool he wants)</p>
<p><span style="color:#808000;">&#8211;create a new directory in all_directories table. This is important to avoid ORA-29280 invalid_path execption.</span><br />
<code></code></p>
<pre><span style="color:#ff0000;"><code>CREATE OR REPLACE DIRECTORY BACKUP_DIR AS 'E:\DATA_BKP';</code></span></pre>
<p><span style="color:#808000;">&#8211;also grant permissions to everyone to read, write (maybe restricted based on your requirement).</span></p>
<pre><span style="color:#ff0000;"><code>GRANT READ,WRITE ON BACKUP_DIR TO PUBLIC;</code></span></pre>
<p><span style="color:#808000;">&#8211;the stored procedure for DDL backup</span><br />
<span style="color:#808000;"> &#8211;note that we are reading from USER_OBJECTS data dictionary, this way it exports only the current user&#8217;s objects.</span><br />
<span style="color:#808000;"> &#8211;to export all objects, execute procedure as sys or sysdba and use the table ALL_OBJECTS instead.</span></p>
<div style="word-wrap:break-word;">
<pre style="color:#ff0000;">
CREATE OR REPLACE PROCEDURE	EXPORT_DDL
AS
	V_DDL_CLOB  CLOB;
	VPATH VARCHAR2(255);
BEGIN
	FOR C IN (SELECT OBJECT_NAME, OBJECT_TYPE
             FROM USER_OBJECTS
             WHERE OBJECT_TYPE IN ('TABLE','VIEW','FUNCTION','PROCEDURE','PACKAGE','PACKAGE_BODY'))
	LOOP
		V_DDL_CLOB := DBMS_METADATA.GET_DDL(C.OBJECT_TYPE, C.OBJECT_NAME, 'EAGLE');
		DBMS_XSLPROCESSOR.CLOB2FILE(V_DDL_CLOB, 'BACKUP_DIR', C.OBJECT_TYPE || '_' || C.OBJECT_NAME||'.SQL');
	END LOOP;
END;
/

EXEC EXPORT_DDL;
</pre>
</div>
<p>Now that was simple, wasn&#8217;t it? <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/kalpeshpadia.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kalpeshpadia.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kalpeshpadia.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kalpeshpadia.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kalpeshpadia.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kalpeshpadia.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kalpeshpadia.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kalpeshpadia.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kalpeshpadia.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kalpeshpadia.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kalpeshpadia.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kalpeshpadia.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kalpeshpadia.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kalpeshpadia.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=113&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" /><img src="http://feeds.feedburner.com/~r/KalpeshPadia/~4/wmtXzLIwDB4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kalpeshpadia.wordpress.com/2012/04/04/backing-up-ddl-in-oracle-the-dba-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">kalpeshpadia</media:title>
		</media:content>
	<feedburner:origLink>http://kalpeshpadia.wordpress.com/2012/04/04/backing-up-ddl-in-oracle-the-dba-way/</feedburner:origLink></item>
		<item>
		<title>एक वर्ग की कहानी</title>
		<link>http://feedproxy.google.com/~r/KalpeshPadia/~3/qcOjeGPAU_8/</link>
		<comments>http://kalpeshpadia.wordpress.com/2012/03/07/%e0%a4%8f%e0%a4%95-%e0%a4%b5%e0%a4%b0%e0%a5%8d%e0%a4%97-%e0%a4%95%e0%a5%80-%e0%a4%95%e0%a4%b9%e0%a4%be%e0%a4%a8%e0%a5%80/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 01:42:08 +0000</pubDate>
		<dc:creator>kalpeshpadia</dc:creator>
				<category><![CDATA[Daily Life]]></category>
		<category><![CDATA[Exams and College]]></category>
		<category><![CDATA[Hostel Life]]></category>
		<category><![CDATA[Poetry]]></category>
		<category><![CDATA[classroom]]></category>
		<category><![CDATA[satire]]></category>
		<category><![CDATA[story]]></category>

		<guid isPermaLink="false">http://kalpeshpadia.wordpress.com/?p=105</guid>
		<description><![CDATA[सो गया जग सारा, वर्ग सारा सो गया, अध्यापिका पढ़ा गई, कक्षा हीं सारी सो गई &#124; प्रबंधन की शाला में, बालको का ध्यान बाला में, मनमुग्ध करने की कला में, हर विद्यार्थी खो गए &#124; हाजिरी की इंतज़ार हुई, बातें कुछ दो चार हुई, शिक्षक की डांट बेकार हुई, यह पहर भी पार हुई&#124;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=105&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>सो गया जग सारा,<br />
वर्ग सारा सो गया,<br />
अध्यापिका पढ़ा गई,<br />
कक्षा हीं सारी सो गई |</p>
<p>प्रबंधन की शाला में,<br />
बालको का ध्यान बाला में,<br />
मनमुग्ध करने की कला में,<br />
हर विद्यार्थी खो गए |</p>
<p>हाजिरी की इंतज़ार हुई,<br />
बातें कुछ दो चार हुई,<br />
शिक्षक की डांट बेकार हुई,<br />
यह पहर भी पार हुई|</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kalpeshpadia.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kalpeshpadia.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kalpeshpadia.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kalpeshpadia.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kalpeshpadia.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kalpeshpadia.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kalpeshpadia.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kalpeshpadia.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kalpeshpadia.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kalpeshpadia.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kalpeshpadia.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kalpeshpadia.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kalpeshpadia.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kalpeshpadia.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=105&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" /><img src="http://feeds.feedburner.com/~r/KalpeshPadia/~4/qcOjeGPAU_8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kalpeshpadia.wordpress.com/2012/03/07/%e0%a4%8f%e0%a4%95-%e0%a4%b5%e0%a4%b0%e0%a5%8d%e0%a4%97-%e0%a4%95%e0%a5%80-%e0%a4%95%e0%a4%b9%e0%a4%be%e0%a4%a8%e0%a5%80/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">kalpeshpadia</media:title>
		</media:content>
	<feedburner:origLink>http://kalpeshpadia.wordpress.com/2012/03/07/%e0%a4%8f%e0%a4%95-%e0%a4%b5%e0%a4%b0%e0%a5%8d%e0%a4%97-%e0%a4%95%e0%a5%80-%e0%a4%95%e0%a4%b9%e0%a4%be%e0%a4%a8%e0%a5%80/</feedburner:origLink></item>
		<item>
		<title>John Nash's Letter to the NSA</title>
		<link>http://feedproxy.google.com/~r/KalpeshPadia/~3/XfiWlzK2fds/</link>
		<comments>http://kalpeshpadia.wordpress.com/2012/02/18/106/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 09:09:57 +0000</pubDate>
		<dc:creator>kalpeshpadia</dc:creator>
				<category><![CDATA[Great Minds]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Beautiful Mind]]></category>
		<category><![CDATA[Cryptography]]></category>
		<category><![CDATA[John Nash]]></category>
		<category><![CDATA[NSA]]></category>

		<guid isPermaLink="false">http://kalpeshpadia.wordpress.com/2012/02/18/106/</guid>
		<description><![CDATA[Reblogged from Turing&#039;s Invisible Hand: The National Security Agency (NSA) has recently declassified an amazing letter that John Nash sent to it in 1955.  It seems that around the year 1950 Nash tried to interest some US security organs (the NSA itself was only formally formed only in 1952) in an encryption machine of his design, but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=106&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="reblog-post"><p class="reblog-from"> <a href="http://agtb.wordpress.com/2012/02/17/john-nashs-letter-to-the-nsa/">Reblogged from Turing&#039;s Invisible Hand:</a></p><div class="wpcom-enhanced-excerpt">
<p>The <a href="http://en.wikipedia.org/wiki/National_Security_Agency"><strong>National Security Agency</strong> (<strong>NSA</strong>)</a> has recently <a href="http://www.nsa.gov/public_info/press_room/2012/nash_exhibit.shtml">declassified</a> an <a href="http://www.nsa.gov/public_info/_files/nash_letters/nash_letters1.pdf">amazing letter</a> that <a href="http://en.wikipedia.org/wiki/John_Forbes_Nash,_Jr.">John Nash</a> sent to it in 1955.  It seems that around the year 1950 Nash tried to interest some US security organs (the NSA itself was only formally formed only in 1952) in an encryption machine of his design, but they did not seem to be interested.  </p>
 <p class="read-more"><a href="http://agtb.wordpress.com/2012/02/17/john-nashs-letter-to-the-nsa/" target="_self"><span>Read more&hellip;</span> 704 more words</a></p></div></div><div class="reblogger-note"><div class='reblogger-note-content'>
Clearly John Nash was way ahead of his time... Schizophrenic, but super smart.. Respect!
</div></div><img src="http://feeds.feedburner.com/~r/KalpeshPadia/~4/XfiWlzK2fds" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kalpeshpadia.wordpress.com/2012/02/18/106/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">kalpeshpadia</media:title>
		</media:content>
	<feedburner:origLink>http://kalpeshpadia.wordpress.com/2012/02/18/106/</feedburner:origLink></item>
		<item>
		<title>Select duplicate attributes rows from a table which has more than one column making the primary key</title>
		<link>http://feedproxy.google.com/~r/KalpeshPadia/~3/gd3wjQkVJxE/</link>
		<comments>http://kalpeshpadia.wordpress.com/2011/06/02/select-duplicate-attributes-rows-from-a-table-which-has-more-than-one-column-making-the-primary-key/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 03:56:14 +0000</pubDate>
		<dc:creator>kalpeshpadia</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[DUPLICATE]]></category>
		<category><![CDATA[INNER JOIN]]></category>
		<category><![CDATA[JOIN]]></category>
		<category><![CDATA[MULTIPLE ROWS AS PRIMARY KEY]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[ORACLE]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[PRIMARY KEY]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[UNIQUE]]></category>

		<guid isPermaLink="false">http://kalpeshpadia.wordpress.com/?p=101</guid>
		<description><![CDATA[Now here is something that a programmer would have come across sometime or the other. Let us say you have a table where more than one columns make up the primary key and you need to find out all those rows which have two of these columns (attributes) same but the third attribute is different. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=101&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now here is something that a programmer would have come across sometime or the other. Let us say you have a table where more than one columns make up the primary key and you need to find out all those rows which have two of these columns (attributes) same but the third attribute is different. You can do this using a simple join like this<br />
<code><br />
SELECT * FROM Table1 A INNER JOIN Table1 B ON A.PK1=B.PK1 AND A.PK3=B.PK3 AND A.PK2 &lt;&gt; B.PK2<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kalpeshpadia.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kalpeshpadia.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kalpeshpadia.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kalpeshpadia.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kalpeshpadia.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kalpeshpadia.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kalpeshpadia.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kalpeshpadia.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kalpeshpadia.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kalpeshpadia.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kalpeshpadia.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kalpeshpadia.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kalpeshpadia.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kalpeshpadia.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=101&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" /><img src="http://feeds.feedburner.com/~r/KalpeshPadia/~4/gd3wjQkVJxE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kalpeshpadia.wordpress.com/2011/06/02/select-duplicate-attributes-rows-from-a-table-which-has-more-than-one-column-making-the-primary-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">kalpeshpadia</media:title>
		</media:content>
	<feedburner:origLink>http://kalpeshpadia.wordpress.com/2011/06/02/select-duplicate-attributes-rows-from-a-table-which-has-more-than-one-column-making-the-primary-key/</feedburner:origLink></item>
		<item>
		<title>Avast Home edition: 4.8 or 5.0?</title>
		<link>http://feedproxy.google.com/~r/KalpeshPadia/~3/Q7wQxg2POb4/</link>
		<comments>http://kalpeshpadia.wordpress.com/2010/01/26/avast-home-edition-4-8-or-5-0/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 18:20:06 +0000</pubDate>
		<dc:creator>kalpeshpadia</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[5 versus 4.8]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[avast]]></category>

		<guid isPermaLink="false">http://kalpeshpadia.wordpress.com/2010/01/26/avast-home-edition-4-8-or-5-0/</guid>
		<description><![CDATA[Finished installing Avast 5.0 (uninstalled 4.8 and then installed 5.0. No direct update available) The latest version (5.0) sports a brand new UI, light engine, Intel i5 and i7 core optimizations for optimum performance, faster service start times for Vista and Win 7, NO SKINS and FEMALE voice over and sounds. The voice overs also [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=96&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finished installing Avast 5.0 (uninstalled 4.8 and then installed 5.0. No direct update available)</p>
<p>The latest version (5.0) sports a brand new UI, light engine, Intel i5 and i7 core optimizations for optimum performance, faster service start times for Vista and Win 7, NO SKINS and FEMALE voice over and sounds. The voice overs also have changed (The infamous &#8220;A virus has been detected&#8221; has been changed to &#8220;A threat has been detected&#8221; and the hysteric siren in the background is no more)</p>
<p>However, it reports a number of false positives, ex: If you are using Realtek AC97 on board sound card (if you are using P4 Intel 845/865 chipset, yes you have this) then your sound manager was most likely detected as malware and put into chest. (hopefully it will be corrected by next update).</p>
<p>Note that your Avast 4.8 registration key is valid for Avast 5.0</p>
<p>My take: Please continue to use Avast 4.8 for sometime and then migrate to Avast 5.0</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kalpeshpadia.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kalpeshpadia.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kalpeshpadia.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kalpeshpadia.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kalpeshpadia.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kalpeshpadia.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kalpeshpadia.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kalpeshpadia.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kalpeshpadia.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kalpeshpadia.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kalpeshpadia.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kalpeshpadia.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kalpeshpadia.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kalpeshpadia.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=96&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" /><img src="http://feeds.feedburner.com/~r/KalpeshPadia/~4/Q7wQxg2POb4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kalpeshpadia.wordpress.com/2010/01/26/avast-home-edition-4-8-or-5-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">kalpeshpadia</media:title>
		</media:content>
	<feedburner:origLink>http://kalpeshpadia.wordpress.com/2010/01/26/avast-home-edition-4-8-or-5-0/</feedburner:origLink></item>
		<item>
		<title>Messiah fiction</title>
		<link>http://feedproxy.google.com/~r/KalpeshPadia/~3/RulNhOVsIjc/</link>
		<comments>http://kalpeshpadia.wordpress.com/2010/01/20/messiah-fiction/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 18:58:07 +0000</pubDate>
		<dc:creator>kalpeshpadia</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[grey]]></category>
		<category><![CDATA[man and machine]]></category>
		<category><![CDATA[quantum]]></category>
		<category><![CDATA[qubit]]></category>

		<guid isPermaLink="false">http://kalpeshpadia.wordpress.com/2010/01/20/messiah-fiction/</guid>
		<description><![CDATA[So a friend quoted the other day, &#8220;The real danger is not that computers will begin to think like men , but that men will begin to think like computers.&#8221; Really? You know what, so many things in life will be simplified if latter happens&#8230; Each person will know for sure not only what he [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=95&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So a friend quoted the other day, &#8220;The real danger is not that computers will begin to think like men , but that men will begin to think like computers.&#8221;</p>
<p>Really? You know what, so many things in life will be simplified if latter happens&#8230; Each person will know for sure not only what he or she wants, but also, what the other person wants. People will articulate much more clearly and unambiguously.  It would be much more easier to understand and to be understood.Who knows, one might even find the answer to the question which has always trouble all men, &#8220;what women want&#8221;. All this because there wont be any shades of grey.. only binary logic. only bits, no qubits (quantum bits)..</p>
<p>Also, pscyhiatrists and family counsellors will lose their jobs.</p>
<p>The world&#8230;, however, it will be tricky to draft a set of rules saying what is correct and what is not (basically some group has to draft this), and more tricky to balance the political situation, you can get a majority on anyside and the power will shift to that side. Non-alignment doesn&#8217;t work anymore. You have to have a stance and be prepared for consequences. A war can break out anytime in such a world.</p>
<p>To think of it, as personal lives will become simpler and better, humanity will come on a brink of apocalypse. Will the machines save us if this happens? or will they decide to exterminate us?  Who will be a messiah in such times? A man, a humanoid, or a machine?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kalpeshpadia.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kalpeshpadia.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kalpeshpadia.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kalpeshpadia.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kalpeshpadia.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kalpeshpadia.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kalpeshpadia.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kalpeshpadia.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kalpeshpadia.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kalpeshpadia.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kalpeshpadia.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kalpeshpadia.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kalpeshpadia.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kalpeshpadia.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=95&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" /><img src="http://feeds.feedburner.com/~r/KalpeshPadia/~4/RulNhOVsIjc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kalpeshpadia.wordpress.com/2010/01/20/messiah-fiction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">kalpeshpadia</media:title>
		</media:content>
	<feedburner:origLink>http://kalpeshpadia.wordpress.com/2010/01/20/messiah-fiction/</feedburner:origLink></item>
		<item>
		<title>Bug in WMP12 shipped with Windows 7</title>
		<link>http://feedproxy.google.com/~r/KalpeshPadia/~3/UcAY4SRQpOM/</link>
		<comments>http://kalpeshpadia.wordpress.com/2009/12/23/bug-in-wmp12-shipped-with-windows-7/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 05:49:08 +0000</pubDate>
		<dc:creator>kalpeshpadia</dc:creator>
				<category><![CDATA[Daily Life]]></category>
		<category><![CDATA[Exposed]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kalpeshpadia.wordpress.com/?p=93</guid>
		<description><![CDATA[Hey check out the latest bug I found on Windows 7. Wondering how many of you noticed it. So here&#8217;s how you check its presence: 1. Search for a song in your library in WMP12. Dont type in the entire name, but only a few words so that more than one results are returned. 2. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=93&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hey check out the latest bug I found on Windows 7. Wondering how many of you noticed it. So here&#8217;s how you check its presence:</p>
<p>1. Search for a song in your library in WMP12. Dont type in the entire name, but only a few words so that more than one results are returned.</p>
<p>2. Select anyone song randomly from middle of list and play it.</p>
<p>3. Now drag this song to the top of your Now Playing list and Voila.</p>
<p>You will see that the time duration stamp of the top song in the list is changed to the time duration of this song which is playing. The time duration stamp will change only when this song starts playing.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kalpeshpadia.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kalpeshpadia.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kalpeshpadia.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kalpeshpadia.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kalpeshpadia.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kalpeshpadia.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kalpeshpadia.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kalpeshpadia.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kalpeshpadia.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kalpeshpadia.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kalpeshpadia.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kalpeshpadia.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kalpeshpadia.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kalpeshpadia.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=93&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" /><img src="http://feeds.feedburner.com/~r/KalpeshPadia/~4/UcAY4SRQpOM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kalpeshpadia.wordpress.com/2009/12/23/bug-in-wmp12-shipped-with-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">kalpeshpadia</media:title>
		</media:content>
	<feedburner:origLink>http://kalpeshpadia.wordpress.com/2009/12/23/bug-in-wmp12-shipped-with-windows-7/</feedburner:origLink></item>
		<item>
		<title>My world these months…</title>
		<link>http://feedproxy.google.com/~r/KalpeshPadia/~3/s9Ax0f2vYqk/</link>
		<comments>http://kalpeshpadia.wordpress.com/2009/10/31/my-world-these-months/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 06:58:04 +0000</pubDate>
		<dc:creator>kalpeshpadia</dc:creator>
				<category><![CDATA[Adventure]]></category>
		<category><![CDATA[Daily Life]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[my world]]></category>
		<category><![CDATA[this quarter]]></category>

		<guid isPermaLink="false">http://kalpeshpadia.wordpress.com/?p=90</guid>
		<description><![CDATA[Why haven’t you posted recently on your blog? Why have you stopped writing? I have often been asked these questions in the last few months. The truth is I’ve never meant to stop posting. It’s just that I’ve been busy with a lot of things since I lasted posted. During these days, my heart leapt [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=90&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Why haven’t you posted recently on your blog? Why have you stopped writing? I have often been asked these questions in the last few months. The truth is I’ve never meant to stop posting. It’s just that I’ve been busy with a lot of things since I lasted posted. During these days, my heart leapt at lot of topics. I wrote many a draft and discarded them, as I just didn’t find time to finish and by the time I did, something else more interesting caught my attention.</p>
<p>So that is how this post took its shape. Rather than writing about what was the latest thing on my radar, I am writing about the various roles that I have played, simultaneously, in the last couple of months. That I enjoyed all of them is no overstatement. I have a regular job. I work as a developer in a mobile firm and my work involves me in conceptualizing and implementing new offerings on a humble hand held device. One of the most rewarding moments came when my work helped us to seal the deal with a major Fortune 50 company. That this is of major strategic advantage to us is implicit.</p>
<p>I also started teaching at my college along with my regular job at the mobile firm. The enthusiasm and energy of the pupils continuously boosts my confidence and acts as a motivating force. These are some of the finest pupils of the current junior year at the department of computer science in the college where I teach and I’m glad I’m teaching them.</p>
<p>A few months back, I experienced the joy of becoming an uncle. My niece, she is the most beautiful and cutest baby ever. The little bundle of joy suddenly made me feel much more responsible towards my family. I’ve a little brother, five years old. He adores me and wants to follow me in my footsteps. Around the big Indian festival of Diwali, I ended up being a fatherly figure to him. My little cousin bonded so closely with me, it redefined our relationship.</p>
<p>During this period, I also visited a number of places around the Cauvery river bank including some spectacular waterfalls. I went on a mini-trek and boated in the river. It was an eventful quarter of the year during which I wrote about a lot of topics and erased them all. Nonetheless, one of the most satisfying periods of time I have experienced.</p>
<p>In order to pursue my interest in photography, I’ve decided to launch a photo blog (or perhaps just convert this into one). It may take some time, but then again, that’s an ordeal for another post.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kalpeshpadia.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kalpeshpadia.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kalpeshpadia.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kalpeshpadia.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kalpeshpadia.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kalpeshpadia.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kalpeshpadia.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kalpeshpadia.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kalpeshpadia.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kalpeshpadia.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kalpeshpadia.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kalpeshpadia.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kalpeshpadia.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kalpeshpadia.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=90&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" /><img src="http://feeds.feedburner.com/~r/KalpeshPadia/~4/s9Ax0f2vYqk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kalpeshpadia.wordpress.com/2009/10/31/my-world-these-months/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">kalpeshpadia</media:title>
		</media:content>
	<feedburner:origLink>http://kalpeshpadia.wordpress.com/2009/10/31/my-world-these-months/</feedburner:origLink></item>
		<item>
		<title>You know you need a break when….</title>
		<link>http://feedproxy.google.com/~r/KalpeshPadia/~3/E3HKa7BHZmQ/</link>
		<comments>http://kalpeshpadia.wordpress.com/2009/05/21/you-know-you-need-a-break-when/#comments</comments>
		<pubDate>Thu, 21 May 2009 06:41:09 +0000</pubDate>
		<dc:creator>kalpeshpadia</dc:creator>
				<category><![CDATA[Adventure]]></category>
		<category><![CDATA[Alternate views]]></category>
		<category><![CDATA[Daily Life]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[need a break; geek; love of computers]]></category>

		<guid isPermaLink="false">http://kalpeshpadia.wordpress.com/?p=86</guid>
		<description><![CDATA[Here are few scenarios from my real life experience. &#8230;You search for backspace when you write on a paper, since you don&#8217;t have one, put // (or /* &#8230; */ if multiline) to tell the reader that this part should be ignored; &#8230;Closing the window in a room, you look its upper-right corner for &#8220;X&#8221;; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=86&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here are few scenarios from my real life experience.</p>
<p>&#8230;You search for backspace when you write on a paper, since you don&#8217;t have one, put // (or /* &#8230; */ if multiline) to tell the reader that this part should be ignored;<br />
&#8230;Closing the window in a room, you look its upper-right corner for &#8220;X&#8221;;<br />
&#8230;You don&#8217;t calculate 2 power of 32, you just know the result;<br />
&#8230;You write your shopping list in a XML;<br />
&#8230;You start using &#8220;true&#8221; and &#8220;false&#8221;, instead of &#8220;yes&#8221; or &#8220;no&#8221;;<br />
&#8230;You want to save what you wrote on paper and are looking for Ctrl+S;<br />
&#8230;You accidentally enter your pin on the microwave;<br />
&#8230;You did not find it weird that I have ended each line with a semicolon here;<br />
&#8230;You notice that now and are smiling;<br />
&#8230;You haven&#8217;t played solitaire with real cards in years;<br />
&#8230;You have a list of 12 phone numbers to reach your family of 4;<br />
&#8230;You e-mail the person who works at the desk next to you;<br />
&#8230;You pull up in your own driveway and use your cell phone to see if anyone is home to help you carry in the groceries;<br />
&#8230;Leaving the house without your cell phone, which you didn&#8217;t have the first 20 or 30 (or 60) years of your life, is now a cause for panic and you turn around to go and get it;<br />
&#8230;You get up in the morning and go on line before getting your coffee;<br />
&#8230;You find yourself staring at the keyboard not knowing what to do next;</p>
<p>I have experienced most of the above. Few of them are common to few around me. Please write comments sharing when you think you need a break.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kalpeshpadia.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kalpeshpadia.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kalpeshpadia.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kalpeshpadia.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kalpeshpadia.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kalpeshpadia.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kalpeshpadia.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kalpeshpadia.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kalpeshpadia.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kalpeshpadia.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kalpeshpadia.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kalpeshpadia.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kalpeshpadia.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kalpeshpadia.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=86&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" /><img src="http://feeds.feedburner.com/~r/KalpeshPadia/~4/E3HKa7BHZmQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kalpeshpadia.wordpress.com/2009/05/21/you-know-you-need-a-break-when/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">kalpeshpadia</media:title>
		</media:content>
	<feedburner:origLink>http://kalpeshpadia.wordpress.com/2009/05/21/you-know-you-need-a-break-when/</feedburner:origLink></item>
		<item>
		<title>Bike ride on a summer night</title>
		<link>http://feedproxy.google.com/~r/KalpeshPadia/~3/aeyOCUGjNf0/</link>
		<comments>http://kalpeshpadia.wordpress.com/2009/05/06/bike-ride-on-a-summer-night/#comments</comments>
		<pubDate>Wed, 06 May 2009 12:42:32 +0000</pubDate>
		<dc:creator>kalpeshpadia</dc:creator>
				<category><![CDATA[Adventure]]></category>
		<category><![CDATA[Biking]]></category>
		<category><![CDATA[Hostel Life]]></category>
		<category><![CDATA[bike ride]]></category>
		<category><![CDATA[mysore ccd]]></category>
		<category><![CDATA[summer night]]></category>

		<guid isPermaLink="false">http://kalpeshpadia.wordpress.com/?p=47</guid>
		<description><![CDATA[It was Tuesday, 10th March. A hot summer day in Bangalore. Its not so hot usually in this city which was once called the garden city of India, but it is becoming warmer year after year. This year especially because of the mass cutting of trees everywhere in the city in the name of &#8220;Namma [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=47&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It was Tuesday, 10th March. A hot summer day in Bangalore. Its not so hot usually in this city which was once called the garden city of India, but it is becoming warmer year after year. This year especially because of the mass cutting of trees everywhere in the city in the name of &#8220;Namma Metro&#8221;. Bangalore is constructing its own metro service in order to cope up with the high traffic density and long traffic jams, and for this roads are being widened everywhere at a fast pace. What better way to widen the roads than to destroy the pavements and cut few more trees along side the road which otherwise provided shade and lowered the temperature of the neighbourhood. Its a pity that so many trees have been cut. The whole stretch in front of Maharani College has been made void of any trees. Its only one wide road. There are similar examples across the city. Sigh!</p>
<p>Anyways, this post is about the bike ride and not about metro expansion, so lets get back to track. So it was hot that day and it was a delight  when the evening turned cooler. Cool breeze started to blow and it was little cloudy but not humid. The kind of weather that can drive you crazy and make you go nuts. In such a weather,  you want to stretch in an armchair in your balcony and sip coffee; you want to go on a long walk along a lake;</p>
<p>&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;</p>
<p>The post has been in my draft box for a very long time now. And I dint have the heart to delete it and neither I have the enthusiasm to complete it. This is gonna be one of the most badly written posts. In bullet points, here are the events that happened.</p>
<p>10.10 left college, headed for mysore road.</p>
<p>10.45 pit stop for petrol, pratik&#8217;s bike low on fuel -  52 kms from home.</p>
<p>10.50  nitish and I are travelling on one bike and pratik&#8217;s on his. We sight a Barista board and wait for pratik who is trailing behind to check if we must sip coffee there.</p>
<p>11.06 pm barista rejected &#8211; 64 kms  on road.</p>
<p>11.21 pm sighted a ccd. We decide to make a stop.</p>
<p><img class="aligncenter size-medium wp-image-71" title="Pratik and Me" src="http://kalpeshpadia.files.wordpress.com/2009/05/image0049.jpg?w=300&#038;h=225" alt="Pratik and Me" width="300" height="225" /></p>
<p>12.30 exit ccd . The meter reads 1338. We are 70 kms from BSK.</p>
<p>At 1345.7 and 12.37 am pratik sees heated engine again. My bike is on reserve.</p>
<p>12.40 We resume towards Mysore. At 12.43 I refuel for 100.</p>
<p>At 12.50 reach Maddu ccd at 1357 km.  A brief stop here and at 1.18 exit.</p>
<p><img class="aligncenter size-medium wp-image-77" title="Some Timepass" src="http://kalpeshpadia.files.wordpress.com/2009/05/image00521.jpg?w=300&#038;h=225" alt="Some Timepass" width="300" height="225" /></p>
<p>At 1.30 stop at Mudigere CCD waitin for prateek.We have been riding at 95-100 kmph while pratik&#8217;s bike has been overheating again and again forcing him to trail us at 75.</p>
<p><img class="aligncenter size-medium wp-image-74" title="Nitish &amp; Me" src="http://kalpeshpadia.files.wordpress.com/2009/05/image00511.jpg?w=300&#038;h=225" alt="Nitish &amp; Me" width="300" height="225" /></p>
<p><img class="aligncenter size-medium wp-image-78" title="image0075" src="http://kalpeshpadia.files.wordpress.com/2009/05/image0075.jpg?w=300&#038;h=225" alt="image0075" width="300" height="225" /></p>
<p>At 1.40 , we are 62 kms from city. While waiting for pratik here, Nitish and I plan for next week.</p>
<p>2 am , we are crossing Ramnagar and decide to climb ramnagar hill. The odometer reads 1387 km.</p>
<p>After five minutes and about 3 kms of winding road, at 2.05 am we have climbed the hill to find a temple on the top of the hill. We need to  park here and climb on foot. The odometer reads 1390.</p>
<p><img class="alignleft size-medium wp-image-79" title="Atop the hill" src="http://kalpeshpadia.files.wordpress.com/2009/05/image0068.jpg?w=300&#038;h=225" alt="Atop the hill" width="300" height="225" /><img class="alignright size-medium wp-image-80" title="image0069" src="http://kalpeshpadia.files.wordpress.com/2009/05/image0069.jpg?w=300&#038;h=225" alt="image0069" width="300" height="225" /></p>
<p>so thats me and Nitish climbing the hill. It was pity that I wasn&#8217;t carrying my camera with me. These pics were taken on Nitish&#8217;s mobile.</p>
<p>30 minutes of climbing and at 2.38 am we are resting on top of hill. Its cold here and so much silent too. I want to spend my lifetime here.</p>
<p>At 3.13 we begin the descent and at 3.19 I get a call <img class="alignright size-medium wp-image-81" title="image0072" src="http://kalpeshpadia.files.wordpress.com/2009/05/image0072.jpg?w=300&#038;h=225" alt="image0072" width="300" height="225" /></p>
<p>(I dint want this here, but Nitish wanted it to be here. He even clicked a snap and insisted I put it here)</p>
<p>At 3.30 pratik&#8217;s bike overheated again&#8230; Aargh!!!</p>
<p>At 1399kms and 3.55 am, we sight the ccd closest to the city. Meet some friends here who have are waiting until dawn due to flat tyre and then carry on towards the ccd.</p>
<p>Its hardly five minutes of driving and at 4 am we witnessed 3 truck crashed into each other. Horrible sight. Wanted to click pics but couldnt.</p>
<p>At 4.15 am, 20 km from ccd and pratik&#8217;s bike stopped again. He calls this piece of shit a bike and himself a mechanical engineer. Anyways, at  4.30 we enter the city. By the time its 4.32, I have dropped Nitish at his home and I am headed towards mine, to crash on the bed.</p>
<p>&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;</p>
<p>Special Thanks:</p>
<p>Nitish for all the photographs</p>
<p>Pratik and his bike for giving us all those breaks.. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>And most importantly you all who read this post. Its nothing like what I wanted it to be. Still its a journal. <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/kalpeshpadia.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kalpeshpadia.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kalpeshpadia.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kalpeshpadia.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kalpeshpadia.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kalpeshpadia.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kalpeshpadia.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kalpeshpadia.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kalpeshpadia.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kalpeshpadia.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kalpeshpadia.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kalpeshpadia.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kalpeshpadia.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kalpeshpadia.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kalpeshpadia.wordpress.com&amp;blog=5848797&amp;post=47&amp;subd=kalpeshpadia&amp;ref=&amp;feed=1" width="1" height="1" /><img src="http://feeds.feedburner.com/~r/KalpeshPadia/~4/aeyOCUGjNf0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kalpeshpadia.wordpress.com/2009/05/06/bike-ride-on-a-summer-night/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">kalpeshpadia</media:title>
		</media:content>

		<media:content url="http://kalpeshpadia.files.wordpress.com/2009/05/image0049.jpg?w=300" medium="image">
			<media:title type="html">Pratik and Me</media:title>
		</media:content>

		<media:content url="http://kalpeshpadia.files.wordpress.com/2009/05/image00521.jpg?w=300" medium="image">
			<media:title type="html">Some Timepass</media:title>
		</media:content>

		<media:content url="http://kalpeshpadia.files.wordpress.com/2009/05/image00511.jpg?w=300" medium="image">
			<media:title type="html">Nitish &amp; Me</media:title>
		</media:content>

		<media:content url="http://kalpeshpadia.files.wordpress.com/2009/05/image0075.jpg?w=300" medium="image">
			<media:title type="html">image0075</media:title>
		</media:content>

		<media:content url="http://kalpeshpadia.files.wordpress.com/2009/05/image0068.jpg?w=300" medium="image">
			<media:title type="html">Atop the hill</media:title>
		</media:content>

		<media:content url="http://kalpeshpadia.files.wordpress.com/2009/05/image0069.jpg?w=300" medium="image">
			<media:title type="html">image0069</media:title>
		</media:content>

		<media:content url="http://kalpeshpadia.files.wordpress.com/2009/05/image0072.jpg?w=300" medium="image">
			<media:title type="html">image0072</media:title>
		</media:content>
	<feedburner:origLink>http://kalpeshpadia.wordpress.com/2009/05/06/bike-ride-on-a-summer-night/</feedburner:origLink></item>
	</channel>
</rss>

