<?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/"
	>

<channel>
	<title>Brain Storm</title>
	<atom:link href="http://www.prashantjadhav.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.prashantjadhav.com</link>
	<description>Don&#039;t go by name.... I wasn&#039;t able to find something interesting than that at the time of creating blog. ;)</description>
	<lastBuildDate>Fri, 20 Nov 2009 11:08:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Firebug support for Non-firefox browsers</title>
		<link>http://www.prashantjadhav.com/2009/11/20/firebug-support-for-non-firefox-browsers/</link>
		<comments>http://www.prashantjadhav.com/2009/11/20/firebug-support-for-non-firefox-browsers/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 11:08:27 +0000</pubDate>
		<dc:creator>Prashant Jadhav</dc:creator>
				<category><![CDATA[Info-shares]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internet-Explorer]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[Web Development]]></category>

	<!-- AutoMeta Start -->
	<category>Firefox</category>
	<category>Mozilla Firefox</category>
	<category>Internet Explorer</category>
	<category>FireBug</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.prashantjadhav.com/?p=389</guid>
		<description><![CDATA[Firebug is an extension for Firefox, but what happens when you need to test your pages in Internet Explorer, Opera, and Safari?
The solution is Firebug Lite, a JavaScript file you can insert into your pages to simulate some Firebug features in browsers that are not named &#8220;Firefox&#8221;.
Firebug Lite creates the variable &#8220;firebug&#8221; and doesn&#8217;t affect [...]]]></description>
			<content:encoded><![CDATA[<p>Firebug is an extension for Firefox, but what happens when you need to test your pages in Internet Explorer, Opera, and Safari?</p>
<p>The solution is Firebug Lite, a JavaScript file you can insert into your pages to simulate some Firebug features in browsers that are not named &#8220;Firefox&#8221;.</p>
<p>Firebug Lite creates the variable &#8220;firebug&#8221; and doesn&#8217;t affect or interfere with HTML elements that aren&#8217;t created by itself.</p>
<p><strong>Installing Firebug Lite 1.2</strong></p>
<p>Insert this line of code into any page that you want to contain Firebug lite:</p>
<p><script src="http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js" type="'text/javascript'"></script></p>
<p>Firebug Lite can be used as bookmarklet too. For detailed information regarding bookmarklet and other customisable features of it, kindly visit <a title="Firebug LIte" href="http://getfirebug.com/lite.html" target="_blank">http://getfirebug.com/lite.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.prashantjadhav.com/2009/11/20/firebug-support-for-non-firefox-browsers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>IETester &amp; DebugBar</title>
		<link>http://www.prashantjadhav.com/2009/07/23/ietester-debugbar/</link>
		<comments>http://www.prashantjadhav.com/2009/07/23/ietester-debugbar/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 15:26:40 +0000</pubDate>
		<dc:creator>Prashant Jadhav</dc:creator>
				<category><![CDATA[Info-shares]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internet-Explorer]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Web Browsers]]></category>

	<!-- AutoMeta Start -->
	<category>Firefox</category>
	<category>Mozilla Firefox</category>
	<category>Internet Explorer</category>
	<category>multiple IEs</category>
	<category>DebugBar</category>
	<category>IETester</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.prashantjadhav.com/?p=385</guid>
		<description><![CDATA[Recently I came across a very interesting application called IETester. It s a free WebBrowser that allows you to have the rendering and javascript engines of IE8, IE7 IE 6 and IE5.5 on Vista and XP. Though it sounds similar to the popular Multiple IEs, it has few things which make IETester very different from [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I came across a very interesting application called <a title="IETester" href="http://www.my-debugbar.com/wiki/IETester/HomePage" target="_blank">IETester</a>. It s a free WebBrowser that allows you to have the rendering and javascript engines of IE8, IE7 IE 6 and IE5.5 on Vista and XP. Though it sounds similar to the popular <a title="Multiple IEs" href="http://tredosoft.com/Multiple_IE" target="_blank">Multiple IEs</a>, it has few things which make IETester very different from Multiple IEs.</p>
<p><strong>The main difference are</strong></p>
<ul>
<li> View source code option which doesn&#8217;t work in Multiple IEs properly.</li>
<li>Support for DebugBar which is free for personal use. DebugBar is similar to FireBug addon available for Firefox. It provides
<ul>
<li> DOM Inspector: View DOM Tree and modify tags attributes and css attributes on the fly to test your page</li>
<li> HTTP Inspector: View HTTP/S request to check cookies, GET and POST parameters, view server info</li>
<li> Javascript Inspector and Javascript Console: View javascript functions for easier debugging, see Javascript and AJAX code</li>
<li> HTML Validator: Validate HTML code to correct and optimize your code and html size of your page</li>
<li> And many more features: See page cookies, get pixel color on a page, make a page screenshot, etc&#8230;</li>
</ul>
</li>
</ul>
<p>For more details, <a title="click here" href="http://www.debugbar.com" target="_blank">click here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.prashantjadhav.com/2009/07/23/ietester-debugbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3: Text selection and general in-page goodness</title>
		<link>http://www.prashantjadhav.com/2009/06/13/firefox-3-text-selection-and-general-in-page-goodness/</link>
		<comments>http://www.prashantjadhav.com/2009/06/13/firefox-3-text-selection-and-general-in-page-goodness/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 12:03:52 +0000</pubDate>
		<dc:creator>Prashant Jadhav</dc:creator>
				<category><![CDATA[Info-shares]]></category>
		<category><![CDATA[Mail Forwards]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Web Browsers]]></category>

	<!-- AutoMeta Start -->
	<category></category>
	<category>Firefox 3</category>
	<category>Mozilla Firefox</category>
	<category>zooming feature</category>
	<category>select multiple batches of text</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.prashantjadhav.com/?p=377</guid>
		<description><![CDATA[[] Double click a word to select it; triple click to select a paragraph. If you need to select multiple batches of text, hold down Ctrl and select at will.
[] Changes have also been made to the way the zooming feature works. Hold down Ctrl and move the mousewheel (alternatively, press + or -). Firefox [...]]]></description>
			<content:encoded><![CDATA[<p>[] Double click a word to select it; triple click to select a paragraph. If you need to select multiple batches of text, hold down Ctrl and select at will.</p>
<p>[] Changes have also been made to the way the zooming feature works. Hold down Ctrl and move the mousewheel (alternatively, press + or -). Firefox will zoom in or out the entire site; both text and images. Want to switch to the old, text-only way of zooming? Click on View in the menu and choose Zoom, then Zoom text only. Your preference will be remembered on a per-site basis.</p>
<p>[] There&#8217;s been a tiny but useful change to the &#8220;Find&#8221; toolbar; select text inside a web page, then hit Ctrl+F, and the selected text will automatically be entered into the Find field.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.prashantjadhav.com/2009/06/13/firefox-3-text-selection-and-general-in-page-goodness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eSnips &amp; Google</title>
		<link>http://www.prashantjadhav.com/2009/06/09/esnips-google/</link>
		<comments>http://www.prashantjadhav.com/2009/06/09/esnips-google/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 20:18:11 +0000</pubDate>
		<dc:creator>Prashant Jadhav</dc:creator>
				<category><![CDATA[Info-shares]]></category>
		<category><![CDATA[Mail Forwards]]></category>
		<category><![CDATA[comics]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[eSnips.com]]></category>
		<category><![CDATA[Google.com]]></category>
		<category><![CDATA[ringtones]]></category>
		<category><![CDATA[social content sharing]]></category>
		<category><![CDATA[videos]]></category>

	<!-- AutoMeta Start -->
	<category></category>
	<category>eSnips com</category>
	<category>social content sharing site</category>
	<category>5GB free storage space</category>
	<category>music</category>
	<category>ringtones</category>
	<category>videos</category>
	<category>ebooks</category>
	<category>comics</category>
	<category>programs</category>
	<category>magazines</category>
	<category>Google com</category>
	<category>download</category>
	<category>tags</category>
	<category>filetype</category>
	<category>file extension</category>
	<category>search results</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.prashantjadhav.com/?p=367</guid>
		<description><![CDATA[eSnips is a large social content sharing site that gives its members 5GB each of storage space to upload whatever they want. These files include music, ringtones, videos, ebooks, comics, programs, magazines and much more. By using Google, you can check to see what others have posted for download.
eSnips tags files by there filetype, so [...]]]></description>
			<content:encoded><![CDATA[<p><a title="eSnips" href="http://www.esnips.com/" target="_blank">eSnips</a> is a large social content sharing site that gives its members 5GB each of storage space to upload whatever they want. These files include music, ringtones, videos, ebooks, comics, programs, magazines and much more. By using Google, you can check to see what others have posted for download.</p>
<p>eSnips tags files by there filetype, so including the file extension in the query narrows the search results.</p>
<p>For this, go to <a title="Google" href="http://www.google.com" target="_blank">Google</a> and use the following search queries</p>
<p>To look for music files, use this:<br />
site:esnips.com mp3|ogg|wma</p>
<p>or for a specific artist, try:<br />
site:esnips.com mp3|ogg|wma Mukesh</p>
<p>To search for video files, try:<br />
site:esnips.com asf|rm|avi|mp4|wmv|flv</p>
<p>or for a specific title, try:<br />
site:esnips.com asf|rm|avi|mp4|wmv|flv &#8220;Cable Guy&#8221;</p>
<p>To search for eBooks:<br />
site:esnips.com pdf|lit|doc ebook</p>
<p>for comics:<br />
site:esnips.com pdf|cbr|cbz comics</p>
<p>~~~<br />
<a href="http://feeds2.feedburner.com/~r/prashantjadhav/YAcl/~6/1" target="_blank">Subscribe 2 RSS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.prashantjadhav.com/2009/06/09/esnips-google/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Firefox 3: Display Search Results in New Tab</title>
		<link>http://www.prashantjadhav.com/2009/06/07/firefox-3-display-search-results-in-new-tab/</link>
		<comments>http://www.prashantjadhav.com/2009/06/07/firefox-3-display-search-results-in-new-tab/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 17:53:27 +0000</pubDate>
		<dc:creator>Prashant Jadhav</dc:creator>
				<category><![CDATA[Info-shares]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Web Browsers]]></category>

	<!-- AutoMeta Start -->
	<category></category>
	<category>Firefox 3</category>
	<category>Mozilla Firefox</category>
	<category>Search Results</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.prashantjadhav.com/?p=364</guid>
		<description><![CDATA[
 Open Firefox 3
 In the address bar, type about:config and hit Enter on your keyboard
 Scroll down to browser.search.openintab and double-click it to change the value to True
 Restart Firefox 3.

Note
[] Make a backup of your prefs.js file before you start editing. Then, if something goes wrong, you can restore it by copying it [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li> Open Firefox 3</li>
<li> In the address bar, type about:config and hit Enter on your keyboard</li>
<li> Scroll down to browser.search.openintab and double-click it to change the value to True</li>
<li> Restart Firefox 3.</li>
</ul>
<div style="font:normal 11px verdana;color:#000;background:#FFC;padding:5px"><strong>Note</strong><br />
[] Make a backup of your prefs.js file before you start editing. Then, if something goes wrong, you can restore it by copying it over the corrupt file.</div>
<div style="font:normal 11px verdana;color:#000;background:#FFC;padding:5px">[] If you can&#8217;t restore via a backup prefs.js file, you can exit Firefox and issue the command firefox -safe-mode to bring up the Firefox Safe Mode screen. Then, just select Reset All User Preferences To Firefox Defaults. This will restore all user preferences to their default values.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.prashantjadhav.com/2009/06/07/firefox-3-display-search-results-in-new-tab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3: Enable Spell Check in Text Boxes (not just textarea fields)</title>
		<link>http://www.prashantjadhav.com/2009/06/05/firefox-3-enable-spell-check-in-text-boxes-not-just-textarea-fields/</link>
		<comments>http://www.prashantjadhav.com/2009/06/05/firefox-3-enable-spell-check-in-text-boxes-not-just-textarea-fields/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 05:27:26 +0000</pubDate>
		<dc:creator>Prashant Jadhav</dc:creator>
				<category><![CDATA[Info-shares]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Web Browsers]]></category>

	<!-- AutoMeta Start -->
	<category></category>
	<category>Firefox 3</category>
	<category>Mozilla Firefox</category>
	<category>Spell Check</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.prashantjadhav.com/?p=361</guid>
		<description><![CDATA[
 Open Firefox 3
 In the Location Bar, input about:config
 Click to get past the warning message that appears
 Locate the Preference Name layout.spellcheckDefault
 Double-click it and change the value to 2
 Restart Firefox 3.

Note
[] Make a backup of your prefs.js file before you start editing. Then, if something goes wrong, you can restore it [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li> Open Firefox 3</li>
<li> In the Location Bar, input about:config</li>
<li> Click to get past the warning message that appears</li>
<li> Locate the Preference Name layout.spellcheckDefault</li>
<li> Double-click it and change the value to 2</li>
<li> Restart Firefox 3.</li>
</ul>
<div style="font:normal 11px verdana;color:#000;background:#FFC;padding:5px"><strong>Note</strong><br />
[] Make a backup of your prefs.js file before you start editing. Then, if something goes wrong, you can restore it by copying it over the corrupt file.</div>
<div style="font:normal 11px verdana;color:#000;background:#FFC;padding:5px">[] If you can&#8217;t restore via a backup prefs.js file, you can exit Firefox and issue the command firefox -safe-mode to bring up the Firefox Safe Mode screen. Then, just select Reset All User Preferences To Firefox Defaults. This will restore all user preferences to their default values.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.prashantjadhav.com/2009/06/05/firefox-3-enable-spell-check-in-text-boxes-not-just-textarea-fields/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firefox 3: Allow Windows to Swap Memory When Application is Minimized</title>
		<link>http://www.prashantjadhav.com/2009/06/04/firefox-3-allow-windows-to-swap-memory-when-application-is-minimized/</link>
		<comments>http://www.prashantjadhav.com/2009/06/04/firefox-3-allow-windows-to-swap-memory-when-application-is-minimized/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 05:29:49 +0000</pubDate>
		<dc:creator>Prashant Jadhav</dc:creator>
				<category><![CDATA[Info-shares]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Web Browsers]]></category>

	<!-- AutoMeta Start -->
	<category>Firefox 3</category>
	<category>Mozilla Firefox</category>
	<category>Windows</category>
	<category>Swap Memory</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.prashantjadhav.com/?p=352</guid>
		<description><![CDATA[
 Open Firefox 3.
 In the Location Bar, input about:config.
 Click to get past the warning message that appears.
 Right-click anywhere on the preference list.
 Click New and select Boolean.
 When prompted to input a New boolean value, input the following: config.trim_on_minimize
 Select true for the value.
 Click OK.
 Restart Firefox 3.

Note
[] Make a backup [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li> Open Firefox 3.</li>
<li> In the Location Bar, input about:config.</li>
<li> Click to get past the warning message that appears.</li>
<li> Right-click anywhere on the preference list.</li>
<li> Click New and select Boolean.</li>
<li> When prompted to input a New boolean value, input the following: config.trim_on_minimize</li>
<li> Select true for the value.</li>
<li> Click OK.</li>
<li> Restart Firefox 3.</li>
</ul>
<div style="font:normal 11px verdana;color:#000;background:#FFC;padding:5px"><strong>Note</strong><br />
[] Make a backup of your prefs.js file before you start editing. Then, if something goes wrong, you can restore it by copying it over the corrupt file.</div>
<div style="font:normal 11px verdana;color:#000;background:#FFC;padding:5px">[] If you can&#8217;t restore via a backup prefs.js file, you can exit Firefox and issue the command firefox -safe-mode to bring up the Firefox Safe Mode screen. Then, just select Reset All User Preferences To Firefox Defaults. This will restore all user preferences to their default values.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.prashantjadhav.com/2009/06/04/firefox-3-allow-windows-to-swap-memory-when-application-is-minimized/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>महाराज का राझ</title>
		<link>http://www.prashantjadhav.com/2009/06/04/maharazzzz/</link>
		<comments>http://www.prashantjadhav.com/2009/06/04/maharazzzz/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 05:11:57 +0000</pubDate>
		<dc:creator>Prashant Jadhav</dc:creator>
				<category><![CDATA[Info-shares]]></category>

	<!-- AutoMeta Start -->
	<category></category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.prashantjadhav.com/?p=350</guid>
		<description><![CDATA[भक्त : महाराज महाराज महाराज&#8230; मला मार्ग दाखवा, महाराज!
महाराज : वत्सा शांत हो&#8230; सांग पाहू काय समस्या आहे तुझी?
भक्त : महाराज, माझी बायको मला जाम त्रास देते हो. तिच्या जाचातून सुटका कशी करून घेऊ?
महाराज : हम्म! काळजी करू नकोस. ये, माझ्याप्रमाणे तूही ध्यान लावून बस&#8230;
Do you want to know how i had able to type [...]]]></description>
			<content:encoded><![CDATA[<p><strong>भक्त :</strong> महाराज महाराज महाराज&#8230; मला मार्ग दाखवा, महाराज!<br />
<strong>महाराज :</strong> वत्सा शांत हो&#8230; सांग पाहू काय समस्या आहे तुझी?<br />
<strong>भक्त :</strong> महाराज, माझी बायको मला जाम त्रास देते हो. तिच्या जाचातून सुटका कशी करून घेऊ?<br />
<strong>महाराज :</strong> हम्म! काळजी करू नकोस. ये, माझ्याप्रमाणे तूही ध्यान लावून बस&#8230;</p>
<p><strong>Do you want to know how i had able to type in marathi on wordpress blog???</strong><br />
Kindly visit the following link for the details<br />
<a href="http://indiafascinates.com/wordpress-google-language-transliteration-plugin/" target="_blank">http://indiafascinates.com/wordpress-google-language-transliteration-plugin/</a></p>
<p>Those who don&#8217;t have wordpress but still want to type their emails in marathi can use following online tool to draft the mails and then its very simple&#8230; Ctrl+C and Ctrl+V.<br />
<a href="http://www.google.co.in/transliterate/indic/Marathi" target="_blank">http://www.google.co.in/transliterate/indic/Marathi</a><br />
 <img src='http://www.prashantjadhav.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.prashantjadhav.com/2009/06/04/maharazzzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Tea Cup&#8230;</title>
		<link>http://www.prashantjadhav.com/2009/01/21/the-tea-cup/</link>
		<comments>http://www.prashantjadhav.com/2009/01/21/the-tea-cup/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 03:29:19 +0000</pubDate>
		<dc:creator>Prashant Jadhav</dc:creator>
				<category><![CDATA[Mail Forwards]]></category>

	<!-- AutoMeta Start -->
	<category>antiques</category>
	<category>teacups</category>
	<category>25th wedding anniversary</category>
	<category>red clay</category>
	<category>Potter</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.prashantjadhav.com/?p=346</guid>
		<description><![CDATA[Love this story or not, you will not be able to have tea in a tea cup again without thinking of this.
There was a couple who took a trip to England to shop in a beautiful antique store to celebrate their 25th wedding anniversary. They both liked antiques and pottery, and especially teacups.  Spotting [...]]]></description>
			<content:encoded><![CDATA[<p>Love this story or not, you will not be able to have tea in a tea cup again without thinking of this.</p>
<p>There was a couple who took a trip to England to shop in a beautiful antique store to celebrate their 25th wedding anniversary. They both liked antiques and pottery, and especially teacups.  Spotting an exceptional cup, they asked &#8220;May we see that?  We&#8217;ve never seen a cup quite so beautiful.&#8221;</p>
<p>As the lady handed it to them, suddenly the teacup spoke, &#8220;You don&#8217;t understand. I have not always been a teacup. There was a time when I was just a lump of red clay. My master took me and rolled me pounded and patted me over and over and I yelled out, &#8220;Don&#8217;t do that.&#8221;</p>
<p>&#8220;I don&#8217;t like it!&#8221; &#8220;Let me alone,&#8221; but he only smiled, and gently said; &#8220;Not yet!&#8221;</p>
<p>Then WHAM! I was placed on a spinning wheel and suddenly I was spun around and around and around. &#8220;Stop it! I&#8217;m getting so dizzy!  I&#8217;m going to be sick!&#8221;, I screamed. But the master only nodded and said, quietly; &#8216;Not yet.&#8217;</p>
<p>He spun me and poked and prodded and bent me out of shape to suit himself and then he put me in the oven. I never felt such heat. I yelled and knocked and pounded at the door. &#8220;Help! Get me out of here!&#8221; I could see him through the opening and I could read his lips as he shook his head from side to side, &#8216;Not yet&#8217;..</p>
<p>When I thought I couldn&#8217;t bear it another minute, the door opened. He carefully took me out and put me on the shelf, and I began to cool. Oh, that felt so good! &#8220;Ah, this is much better,&#8221; I thought.</p>
<p>But, after I cooled he picked me up and he brushed and painted me all over The fumes were horrible. I thought I would gag. &#8216;Oh, please, Stop it, Stop, I cried. He only shook his head and said. &#8216;Not yet!&#8217;.</p>
<p>Then suddenly he put me back in to the oven. Only it was not like the first one. This was twice as hot and I just knew I would suffocate. I begged. I pleaded. I screamed. I cried I was convinced I would never make it. I was ready to give up. Just then the door opened and he took me out and again placed me on the shelf, where I cooled and waited and waited, wondering &#8220;What&#8217;s he going to do to me next?&#8221;</p>
<p>An hour later he handed me a mirror and said &#8216;Look at yourself.&#8217; And I did. I said, That&#8217;s not me; that couldn&#8217;t be me. It&#8217;s beautiful. I&#8217;m beautiful!!!</p>
<p>Quietly he spoke: &#8216;I want you to remember, then,&#8217; he said, &#8216;I know it hurt to be rolled and pounded and patted, but had I just left you alone, you&#8217;d have dried up. I know it made you dizzy to spin around on the wheel, but if I had stopped, you would have crumbled.</p>
<p>I know it hurt and it was hot and disagreeable in the oven, but if I hadn&#8217;t put you there, you would have cracked. I know the fumes were bad when I brushed and painted you all over, but if I hadn&#8217;t done that, you never would have hardened. You would not have had any color in your life.</p>
<p>If I hadn&#8217;t put you back in that second oven, you wouldn&#8217;t have survived for long because the hardness would not have held. Now you are a finished product. Now you are what I had in mind when I first began with you.&#8217;&#8221;</p>
<p><strong>The moral of this story is this:</strong> God knows what He&#8217;s doing for each of us. He is the potter, and we are His clay. He will mold us and make us and expose us to just enough pressures of just the right kinds that we may be made into a flawless piece of work to fulfill His good, pleasing and perfect will.</p>
<p>So when life seems hard, and you are being pounded and patted and pushed almost beyond endurance; when your world seems to be spinning out of control; when you feel like you are in a fiery furnace of trials; when life seems to &#8220;stink&#8221;, try this.</p>
<p>Brew a cup of your favorite tea in your prettiest tea cup, sit down and think on this story and then, have a little talk with the &#8216;Potter&#8217;&#8230; you&#8217;ll be glad you did.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.prashantjadhav.com/2009/01/21/the-tea-cup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Few best interview questions and equally awesome answers of them&#8230;</title>
		<link>http://www.prashantjadhav.com/2008/11/25/few-best-interview-questions-and-equally-awesome-answers-of-them/</link>
		<comments>http://www.prashantjadhav.com/2008/11/25/few-best-interview-questions-and-equally-awesome-answers-of-them/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 15:52:34 +0000</pubDate>
		<dc:creator>Prashant Jadhav</dc:creator>
				<category><![CDATA[Mail Forwards]]></category>

	<!-- AutoMeta Start -->
	<category>Best interview questions</category>
	<category>think outside of the box</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.prashantjadhav.com/?p=339</guid>
		<description><![CDATA[Question 1: You are driving along in your car on a wild, stormy night, it&#8217;s raining heavily, when suddenly you pass by a bus stop, and you see three people waiting for a bus:
An old lady who looks as if she is about to die.
An old friend who once saved your life.
The perfect partner you [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Question 1:</strong> You are driving along in your car on a wild, stormy night, it&#8217;s raining heavily, when suddenly you pass by a bus stop, and you see three people waiting for a bus:</p>
<p>An old lady who looks as if she is about to die.<br />
An old friend who once saved your life.<br />
The perfect partner you have been dreaming about.</p>
<p>Which one would you choose to offer a ride to, knowing very well that there could only be one passenger in your car?</p>
<p>This is a moral/ethical dilemma that was once actually used as part of a job application.</p>
<p>* You could pick up the old lady, because she is going to die, and thus you should save her first;<br />
* or you could take the old friend because he once saved your life, and this would be the perfect chance to pay him back.<br />
* However, you may never be able to find your perfect mate again.</p>
<p>The candidate who was hired (out of 200 applicants) had no trouble coming up with his answer. Guess what was his answer?</p>
<p>He simply answered:<br />
&#8216;I would give the car keys to my Old friend and let him take the lady to the hospital. I would stay behind and wait for the bus with the partner of my dreams.&#8217;</p>
<p>Sometimes, we gain more if we are able to give up our stubborn thought limitations. Never forget to &#8216;Think Outside of the Box.&#8217;</p>
<p><strong>Question 2:</strong> What will you do if I run away with your sister?&#8217;</p>
<p>The candidate who was selected answered &#8216;I will not get a better match for my sister than you sir&#8217;</p>
<p><strong>Question 3:</strong> Interviewer (to a student girl candidate) &#8211; What is one morning you woke up &amp; found that you were pregnant.</p>
<p>Girl &#8211; I will be very excited and take an off, to celebrate with my husband.</p>
<p>Normally an unmarried girl will be shocked to hear this, but she managed it well. Why I should think it in the wrong way, she said later when asked</p>
<p><strong>Question 4:</strong> Interviewer: He ordered a cup of coffee for the candidate&#8230; Coffee arrived kept before the candidate, then he asked what is before you?</p>
<p>Candidate: Instantly replied &#8216;Tea&#8217;</p>
<p>He got selected.</p>
<p>You know how and why did he say &#8216;TEA&#8217; when he knows very well that coffee was kept before.</p>
<p>(Answer: The question was &#8216;What is before you (U &#8211; alphabet)<br />
Reply was &#8216;TEA&#8217; ( T &#8211; alphabet)</p>
<p>Alphabet &#8216;T&#8217; was before Alphabet &#8216;U&#8217;</p>
<p><strong>Question 5:</strong> Where Lord Rama would have celebrated his &#8216;First Diwali&#8217;? People will start thinking of Ayodya, Mitila [Janaki's place], Lanka etc&#8230;</p>
<p>But the logic is, Diwali was a celebrated as a mark of Lord Krishna Killing Narakasura. In Dusavataar, Krishnavathaar comes after Raamavathaar.</p>
<p>So, Lord Rama would not have celebrated the Diwali At all!</p>
<p><strong>Question 6:</strong> The interviewer asked to the candidate &#8216;This is your last question of the interview. Please tell me the exact position of the center of this table where u have kept your files.&#8217;</p>
<p>Candidate confidently put one of his finger at some point at the table and told that this was the central point at the table. Interviewer asked how did u get to know that this being the central point of this table, then he answers quickly that sir u r not likely to ask any more question, as it was the last question that u promised to ask&#8230;</p>
<p>And hence, he was selected as because of his quick-wittedness&#8230;</p>
<p>This is What Interviewer expects from the Interviewee&#8230;</p>
<p><strong>&#8216;THINK OUTSIDE OF THE BOX&#8217;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.prashantjadhav.com/2008/11/25/few-best-interview-questions-and-equally-awesome-answers-of-them/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.534 seconds -->
