<?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>Dushyant Patel's Blog</title>
	<atom:link href="http://dushyantpatel.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dushyantpatel.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 14 Oct 2009 02:42:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='dushyantpatel.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/02b9d535edef2517bb29f8d0a9bc958a?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Dushyant Patel's Blog</title>
		<link>http://dushyantpatel.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dushyantpatel.wordpress.com/osd.xml" title="Dushyant Patel&#039;s Blog" />
	<atom:link rel='hub' href='http://dushyantpatel.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Remove HREF attribute using Regular Expression &amp; jQuery</title>
		<link>http://dushyantpatel.wordpress.com/2009/10/14/remove-href-attribute-using-regular-expression-jquery/</link>
		<comments>http://dushyantpatel.wordpress.com/2009/10/14/remove-href-attribute-using-regular-expression-jquery/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 02:40:31 +0000</pubDate>
		<dc:creator>dushyantpatel</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://dushyantpatel.wordpress.com/?p=116</guid>
		<description><![CDATA[Requirement is to get the content of the specific DIV remove HREF attributes from all and assign new content (without HREF attributes) to printer friendly page. For Demo : onClick of button storing content of &#60;DIV class=&#8221;content1&#8243;&#62;. Using Regular Expression removing HREF and then assign that content to &#60;DIV class=&#8221;content2&#8243;&#62;. HTML Code: &#60;div class="content1"&#62; &#60;a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=116&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Requirement is to get the content of the specific DIV remove HREF attributes from all <a> and assign new content (without HREF attributes) to printer friendly page.</a></p>
<p><strong>For Demo : </strong>onClick of button storing content of &lt;DIV class=&#8221;content1&#8243;&gt;. Using Regular Expression removing HREF and then assign that content to &lt;DIV class=&#8221;content2&#8243;&gt;.</p>
<p><strong>HTML Code:</strong></p>
<pre style="font-size:12px;">&lt;div class="content1"&gt;
&lt;a href="javascript:testfunction(4933)"&gt;This is test link 1&lt;/a&gt;
<div id=":1tf">&lt;p&gt;This is dummy text, Please don't read. This is dummy text, Please don't
read. This is dummy text, Please don't read. This is dummy text, Please
don't read. This is dummy text, Please don't read. This is dummy text,
Please don't read. This is dummy text, Please don't read.
This is dummy text, Please don't read. &lt;/p&gt;

&lt;a href="test2.html"&gt;This is test link 2&lt;/a&gt;
&lt;p&gt;This is dummy text, Please don't read. This is dummy text, Please don't
read. This is dummy text, Please don't read. This is dummy text, Please
don't read. This is dummy text, Please don't read. This is dummy text,
Please don't read. This is dummy text, Please don't read.
This is dummy text, Please don't read. &lt;/p&gt;

&lt;a href="test2.html"&gt;This is test link 3&lt;/a&gt;
&lt;p&gt;This is dummy text, Please don't read. This is dummy text, Please don't
read. This is dummy text, Please don't read. This is dummy text, Please
don't read. This is dummy text, Please don't read. This is dummy text,
Please don't read. This is dummy text, Please don't read.
This is dummy text, Please don't read. &lt;/p&gt;

&lt;a href="test3.html"&gt;This is test link 4&lt;/a&gt;

&lt;p&gt;This is dummy text, Please don't read. This is dummy text, Please don't
read. This is dummy text, Please don't read. This is dummy text, Please
don't read. This is dummy text, Please don't read. This is dummy text,
Please don't read. This is dummy text, Please don't read.
This is dummy text, Please don't read. &lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;input name="testbtn" id="testbtn" type="button" value="Remove" /&gt;
&lt;/div&gt;
&lt;div class="content2"&gt;&lt;/div&gt;</div>
</pre>
<p><strong>CSS Code:</strong></p>
<pre style="font-size:12px;">&lt;style type="text/css"&gt;
body {
   font-family:Verdana, Arial, Helvetica, sans-serif;
   font-size:11px;
 }
.content1, .content2 {
   width:400px;
   margin:10px;
   background-color:#efefef;
   border:1px solid #ccc;
   float:left;
   padding:10px;
}
.content2 {
   float:right
}
.btndiv {
   width:100px;
   float:left;
}
&lt;/style&gt;</pre>
<p><strong>jQuery Code:</strong></p>
<pre style="font-size:12px;">&lt;script type="text/javascript" src="jquery-1.3.2.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
$(document).ready(function () {

  $("input#testbtn").click(function () {
     var printcontent = $("div.content1").html();
     printcontent = printcontent.replace(/\s*href\s*=\s*('[^']*'|"[^"]*")/ig,'');
     $("div.content2").html(printcontent);
  });
});

&lt;/script&gt;</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dushyantpatel.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dushyantpatel.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dushyantpatel.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dushyantpatel.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dushyantpatel.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dushyantpatel.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dushyantpatel.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dushyantpatel.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dushyantpatel.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dushyantpatel.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dushyantpatel.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dushyantpatel.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dushyantpatel.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dushyantpatel.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=116&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dushyantpatel.wordpress.com/2009/10/14/remove-href-attribute-using-regular-expression-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a813e529036fd0a3f36045a3ce423446?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dushyantpatel</media:title>
		</media:content>
	</item>
		<item>
		<title>Position DIV to element using jQuery</title>
		<link>http://dushyantpatel.wordpress.com/2009/10/13/position-div-to-element-using-jquery/</link>
		<comments>http://dushyantpatel.wordpress.com/2009/10/13/position-div-to-element-using-jquery/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 01:52:09 +0000</pubDate>
		<dc:creator>dushyantpatel</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://dushyantpatel.wordpress.com/?p=110</guid>
		<description><![CDATA[Requirement is how to position DIV to some element on the fly using jQuery? Using jQuery position(), can access position of element and assign position to DIV on the fly. For Example: onClick of link element access the position of &#60;a&#62; element and on the base of that assign position to DIV. HTML Code: &#60;div&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=110&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Requirement is how to position DIV to some element on the fly using jQuery?</p>
<p>Using jQuery position(), can access position of element and assign position to DIV on the fly.</p>
<p><strong>For Example: </strong>onClick of link element access the position of &lt;a&gt; element and on the base of that assign position to DIV.</p>
<p><strong>HTML Code:</strong></p>
<pre style="font-size:12px;">&lt;div&gt;
   &lt;a href="#" id="pospayerlnk"&gt;Position Layer&lt;/a&gt;
   &lt;div id="testDiv"&gt;
         Test
   &lt;/div&gt;
&lt;/div&gt;</pre>
<p><strong>CSS Code:</strong></p>
<pre style="font-size:12px;">body {
   font-family:Verdana, Arial, Helvetica, sans-serif;
   font-size:11px;
}

.center-main {
   width:400px;
   margin:auto;
   margin-top:100px;
}

#testDiv {
   width:100px;
   height:100px;
   position:absolute;
   top:10px;
   left:10px;
   background-color:#CCCCCC;
   border:1px solid #666666;
}

a#pospayerlnk {
   border:1px solid #3366CC;
   height:18px;
   display:block;
   width:100px;
   color:#0066CC;
   line-height:18px;
   text-decoration:none;
   text-align:center;
}
&lt;/style&gt;</pre>
<p><strong>jQuery Code:</strong></p>
<pre style="font-size:12px;">&lt;script type="text/javascript" src="jquery-1.3.2.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
<div id=":ve">$(document).ready(function () {

  $("a#pospayerlnk").click(function () {
     var position = $(this).position();
     $("div#testDiv").css("left", position.left);
     $("div#testDiv").css("top", position.top+20);
  });

});
&lt;/script&gt;</div>
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dushyantpatel.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dushyantpatel.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dushyantpatel.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dushyantpatel.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dushyantpatel.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dushyantpatel.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dushyantpatel.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dushyantpatel.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dushyantpatel.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dushyantpatel.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dushyantpatel.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dushyantpatel.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dushyantpatel.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dushyantpatel.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=110&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dushyantpatel.wordpress.com/2009/10/13/position-div-to-element-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a813e529036fd0a3f36045a3ce423446?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dushyantpatel</media:title>
		</media:content>
	</item>
		<item>
		<title>Typetester &#8211; online application for comparison of the fonts for the screen</title>
		<link>http://dushyantpatel.wordpress.com/2009/10/13/typetester-online-application-for-comparison-of-the-fonts-for-the-screen/</link>
		<comments>http://dushyantpatel.wordpress.com/2009/10/13/typetester-online-application-for-comparison-of-the-fonts-for-the-screen/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 01:25:23 +0000</pubDate>
		<dc:creator>dushyantpatel</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://dushyantpatel.wordpress.com/?p=107</guid>
		<description><![CDATA[The Typetester is an online application for comparison of the fonts for the screen. Its primary role is to make web designer’s life easier. As the new fonts are bundled into operating systems, the list of the common fonts will be updated. Read More&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=107&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.typetester.org/">Typetester</a> is an online application for comparison of the fonts for the screen. Its primary role is to make web designer’s life easier. As the new fonts are bundled into operating systems, the list of the common fonts will be updated.</p>
<p><a href="http://www.typetester.org/">Read More&#8230;</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dushyantpatel.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dushyantpatel.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dushyantpatel.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dushyantpatel.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dushyantpatel.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dushyantpatel.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dushyantpatel.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dushyantpatel.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dushyantpatel.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dushyantpatel.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dushyantpatel.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dushyantpatel.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dushyantpatel.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dushyantpatel.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=107&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dushyantpatel.wordpress.com/2009/10/13/typetester-online-application-for-comparison-of-the-fonts-for-the-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a813e529036fd0a3f36045a3ce423446?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dushyantpatel</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS issue Input width=100% &amp; padding in IE issue</title>
		<link>http://dushyantpatel.wordpress.com/2009/09/17/css-problem-input-width100-padding-in-ie-issue/</link>
		<comments>http://dushyantpatel.wordpress.com/2009/09/17/css-problem-input-width100-padding-in-ie-issue/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 01:23:04 +0000</pubDate>
		<dc:creator>dushyantpatel</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://dushyantpatel.wordpress.com/?p=99</guid>
		<description><![CDATA[I was having a problem with width on input[text] fields in IE In IE, it renders the width as 100% + 10px(padding which i have given for search icon). HTML: &#60;div class=&#8221;container&#8221;&#62; &#60;input type=&#8221;text&#8221; value=&#8221;Enter Keyword&#8221; name=&#8221;searchbox&#8221;/&#62; &#60;/div&#62; &#60;div class=&#8221;button_div&#8221;&#62; &#60;input type=&#8221;submit&#8221; name=&#8221;button&#8221; id=&#8221;button&#8221; value=&#8221;Search&#8221; /&#62; &#60;/div&#62; CSS: .container{ width:250px; float:left} .button_div {width:100px; float:right} .container [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=99&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was having a problem with width on input[text] fields in IE</p>
<p>In IE, it renders the width as 100% + 10px(padding which i have given for search icon).</p>
<p><strong>HTML:</strong></p>
<p>&lt;div class=&#8221;container&#8221;&gt;<br />
&lt;input type=&#8221;text&#8221; value=&#8221;Enter Keyword&#8221; name=&#8221;searchbox&#8221;/&gt;<br />
&lt;/div&gt;</p>
<p>&lt;div class=&#8221;button_div&#8221;&gt;<br />
&lt;input type=&#8221;submit&#8221; name=&#8221;button&#8221; id=&#8221;button&#8221; value=&#8221;Search&#8221; /&gt;<br />
&lt;/div&gt;</p>
<p><strong>CSS:</strong></p>
<p>.container{ width:250px; float:left}<br />
.button_div {width:100px; float:right}<br />
.container input{ width:100%; max-width:100%; padding-left:10px;}</p>
<p><strong>Soltuion:</strong><br />
Wrap the input field with a 100% div with no padding and no margin and set the input field inside that div to 100% width with a padding of 10px</p>
<p>&lt;div class=&#8221;container&#8221;&gt;<br />
&lt;div style=&#8221;width:100%&#8221;&gt;<br />
&lt;input type=&#8221;text&#8221; value=&#8221;Enter Keyword&#8221; name=&#8221;searchbox&#8221;/&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dushyantpatel.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dushyantpatel.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dushyantpatel.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dushyantpatel.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dushyantpatel.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dushyantpatel.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dushyantpatel.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dushyantpatel.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dushyantpatel.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dushyantpatel.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dushyantpatel.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dushyantpatel.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dushyantpatel.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dushyantpatel.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=99&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dushyantpatel.wordpress.com/2009/09/17/css-problem-input-width100-padding-in-ie-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a813e529036fd0a3f36045a3ce423446?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dushyantpatel</media:title>
		</media:content>
	</item>
		<item>
		<title>Beyond Compare is the ideal tool for comparing files and folders</title>
		<link>http://dushyantpatel.wordpress.com/2009/09/11/beyond-compare-is-the-ideal-tool-for-comparing-files-and-folders/</link>
		<comments>http://dushyantpatel.wordpress.com/2009/09/11/beyond-compare-is-the-ideal-tool-for-comparing-files-and-folders/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 01:34:21 +0000</pubDate>
		<dc:creator>dushyantpatel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Beyond Compare]]></category>
		<category><![CDATA[Compare Utility]]></category>

		<guid isPermaLink="false">http://dushyantpatel.wordpress.com/2009/09/11/beyond-compare-is-the-ideal-tool-for-comparing-files-and-folders/</guid>
		<description><![CDATA[I would like to share one good software with you all, for comparing files and folders. Beyond Compare provides users with extensive side-by-side file comparison and management. Synchronize files between laptop and PC, home and office, etc. Compare directory trees side-by-side with mismatches highlighted. Display text files side-by-side with changes highlighted. Great for merging changes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=92&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I would like to share one good software with you all, for comparing files and folders.</p>
<p>Beyond Compare provides users with extensive side-by-side file comparison and management. Synchronize files between laptop and PC, home and office, etc. Compare directory trees side-by-side with mismatches highlighted. Display text files side-by-side with changes highlighted. Great for merging changes to source code. </p>
<p>Website Link : <a href="http://www.scootersoftware.com/index.php" target="_blank">http://www.scootersoftware.com/index.php</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dushyantpatel.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dushyantpatel.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dushyantpatel.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dushyantpatel.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dushyantpatel.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dushyantpatel.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dushyantpatel.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dushyantpatel.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dushyantpatel.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dushyantpatel.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dushyantpatel.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dushyantpatel.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dushyantpatel.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dushyantpatel.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=92&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dushyantpatel.wordpress.com/2009/09/11/beyond-compare-is-the-ideal-tool-for-comparing-files-and-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a813e529036fd0a3f36045a3ce423446?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dushyantpatel</media:title>
		</media:content>
	</item>
		<item>
		<title>How to access element of parent window from an iframe with jQuery</title>
		<link>http://dushyantpatel.wordpress.com/2009/07/20/how-to-access-element-of-parent-window-from-an-iframe-with-jquery/</link>
		<comments>http://dushyantpatel.wordpress.com/2009/07/20/how-to-access-element-of-parent-window-from-an-iframe-with-jquery/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 23:08:36 +0000</pubDate>
		<dc:creator>dushyantpatel</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://dushyantpatel.wordpress.com/?p=77</guid>
		<description><![CDATA[I got one requirment that need to assign value of check box which are in iframe to input box of parent window using jQuery. I found solution which i want to share with you. Parent Window Code: &#60;html&#62; &#60;head&#62; &#60;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=utf-8&#8243; /&#62; &#60;title&#62;Untitled Document&#60;/title&#62; &#60;script src=&#8221;js/jquery-1.3.2.js&#8221; type=&#8221;text/javascript&#8221;&#62;&#60;/script&#62; &#60;/head&#62; &#60;body&#62; &#60;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=77&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I got one requirment that need to assign value of check box which are in iframe to input box of parent window using jQuery.</p>
<p>I found solution which i want to share with you.</p>
<p><strong>Parent Window Code:</strong></p>
<div style="border:1px solid #cccccc;background-color:#DCE0F5;padding:10px;">&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=utf-8&#8243; /&gt;<br />
&lt;title&gt;Untitled Document&lt;/title&gt;<br />
&lt;script src=&#8221;js/jquery-1.3.2.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;"&gt;<br />
&lt;div id=&#8221;inputbox&#8221;&gt;<br />
&lt;input name=&#8221;" type=&#8221;text&#8221; id=&#8221;selectedchkbox&#8221; width=&#8221;400&#8243; size=&#8221;50&#8243;/&gt;<br />
&lt;/div&gt;<br />
&lt;br /&gt;<br />
&lt;div id=&#8221;iframe&#8221;&gt;<br />
&lt;iframe src=&#8221;iframeCheckbox.html&#8221; width=&#8221;400&#8243; height=&#8221;400&#8243;&gt;&lt;/iframe&gt;<br />
&lt;/div&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</div>
<p><strong>iframe code:</strong></p>
<div style="border:1px solid #cccccc;background-color:#DCE0F5;padding:10px;">&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=utf-8&#8243; /&gt;<br />
&lt;title&gt;Untitled Document&lt;/title&gt;<br />
&lt;script src=&#8221;js/jquery-1.3.2.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>$(document).ready(function() {<br />
$(&#8220;a.submitlist&#8221;).click(function() {<br />
var newtxt = &#8221;;<br />
var chkbx = $(&#8220;div#checkboxlist input&#8221;)<br />
for(var i = 0; i &lt; chkbx.length; i ++) {<br />
if(chkbx[i].type == &#8216;checkbox&#8217; &amp;&amp; chkbx[i].checked === true) {<br />
if(newtxt.length !== 0) {<br />
newtxt += &#8216;,&#8217;;<br />
}<br />
newtxt += chkbx[i].value;<br />
}<br />
}<br />
<strong>parent.top.$(&#8220;input#selectedchkbox&#8221;).val(newtxt);</strong><br />
});<br />
});</p>
<p>&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;"&gt;<br />
&lt;div id=&#8221;checkboxlist&#8221;&gt;<br />
&lt;p&gt;<br />
&lt;input type=&#8221;checkbox&#8221; name=&#8221;checkbox1&#8243; id=&#8221;checkbox1&#8243; value=&#8221;checkbox1&#8243; /&gt;<br />
checkbox 1&lt;br /&gt;<br />
&lt;input type=&#8221;checkbox&#8221; name=&#8221;checkbox2&#8243; id=&#8221;checkbox2&#8243; value=&#8221;checkbox2&#8243; /&gt;<br />
checkbox 2&lt;br /&gt;<br />
&lt;input type=&#8221;checkbox&#8221; name=&#8221;checkbox3&#8243; id=&#8221;checkbox3&#8243; value=&#8221;checkbox3&#8243; /&gt;<br />
checkbox 3&lt;br /&gt;<br />
&lt;input type=&#8221;checkbox&#8221; name=&#8221;checkbox4&#8243; id=&#8221;checkbox4&#8243; value=&#8221;checkbox4&#8243; /&gt;<br />
checkbox 4&lt;br /&gt;<br />
&lt;input type=&#8221;checkbox&#8221; name=&#8221;checkbox5&#8243; id=&#8221;checkbox5&#8243; value=&#8221;checkbox5&#8243; /&gt;<br />
checkbox 5&lt;/p&gt;<br />
&lt;p&gt;<br />
&lt;label&gt;&lt;a href=&#8221;#&#8221;&gt;Submit&lt;/a&gt;&lt;/label&gt;<br />
&lt;br /&gt;<br />
&lt;/p&gt;<br />
&lt;/div&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p></div>
<p>Using &#8220;<strong>parent.top </strong>&#8220;, can target parent window and then use <strong>$(”input#selectedchkbox”).val(newtxt);</strong> to select targeted element and assign value.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dushyantpatel.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dushyantpatel.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dushyantpatel.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dushyantpatel.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dushyantpatel.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dushyantpatel.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dushyantpatel.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dushyantpatel.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dushyantpatel.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dushyantpatel.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dushyantpatel.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dushyantpatel.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dushyantpatel.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dushyantpatel.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=77&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dushyantpatel.wordpress.com/2009/07/20/how-to-access-element-of-parent-window-from-an-iframe-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a813e529036fd0a3f36045a3ce423446?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dushyantpatel</media:title>
		</media:content>
	</item>
		<item>
		<title>Gujarati boy rules world&#8217;s senses</title>
		<link>http://dushyantpatel.wordpress.com/2009/05/16/gujarati-boy-rules-worlds-senses/</link>
		<comments>http://dushyantpatel.wordpress.com/2009/05/16/gujarati-boy-rules-worlds-senses/#comments</comments>
		<pubDate>Sat, 16 May 2009 16:29:15 +0000</pubDate>
		<dc:creator>dushyantpatel</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://dushyantpatel.wordpress.com/?p=73</guid>
		<description><![CDATA[I am following Narendra Modi on Twitter, and i found this story from his personal site. This is about Pranav Mistry, a 28-year-old MIT researcher, who has got intangible digital information into the tangible world, allowing us to interact with this information via natural hand gestures.That&#8217;s wear ur world (WUW) — a wearable gestural interface. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=73&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am following Narendra Modi on Twitter, and i found this story from his personal site.</p>
<p>This is about Pranav Mistry, a 28-year-old MIT researcher, who has got intangible digital information into the tangible world, allowing us to interact with this information via natural hand gestures.That&#8217;s wear ur world (WUW) — a wearable gestural interface. So, when you pick up your airline ticket and find that it is telling you that your flight is delayed, thank this boy from Palanpur, the land of diamantaires that has now produced a gem of a techie.</p>
<p><a title="Read More &gt;&gt; Gujarati boy rules world's senses" href="http://narendramodi.in/poststory/story_detail/97" target="_blank">Read More&#8230;</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dushyantpatel.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dushyantpatel.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dushyantpatel.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dushyantpatel.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dushyantpatel.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dushyantpatel.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dushyantpatel.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dushyantpatel.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dushyantpatel.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dushyantpatel.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dushyantpatel.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dushyantpatel.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dushyantpatel.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dushyantpatel.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=73&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dushyantpatel.wordpress.com/2009/05/16/gujarati-boy-rules-worlds-senses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a813e529036fd0a3f36045a3ce423446?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dushyantpatel</media:title>
		</media:content>
	</item>
		<item>
		<title>Awesome Conversation! About God</title>
		<link>http://dushyantpatel.wordpress.com/2009/05/09/awesome-conversation-about-god/</link>
		<comments>http://dushyantpatel.wordpress.com/2009/05/09/awesome-conversation-about-god/#comments</comments>
		<pubDate>Sat, 09 May 2009 16:43:27 +0000</pubDate>
		<dc:creator>dushyantpatel</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://dushyantpatel.wordpress.com/?p=66</guid>
		<description><![CDATA[Few days back I received an email from one of my friend. It was all about conversation between professor and student about God. Awesome !!!. I though let me share with you. &#8212; Start &#8212; An atheist professor of philosophy speaks to his class on the problem science has with God, The Almighty. He asks [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=66&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Few days back I received an email from one of my friend. It was all  about conversation between professor and student about God. Awesome  !!!. I though let me share with you.</p>
<p>&#8212; Start &#8212;</p>
<p>An atheist professor of philosophy speaks to his class on the problem science has with God, The Almighty.</p>
<p>He asks one of his new students to stand and&#8230;..</p>
<p><strong>Prof: </strong>So you believe in God?</p>
<p><strong>Student:</strong> Absolutely, sir.</p>
<p><strong>Prof:</strong> Is God good?</p>
<p><strong>Student: </strong>Sure.</p>
<p><strong>Prof:</strong> Is God all-powerful?</p>
<p><strong>Student: </strong>Yes.<strong></strong></p>
<p><strong>Prof:</strong> My brother died of cancer even though he prayed to God to  heal him. Most of us would attempt to help others who are ill. But God  didn&#8217;t. How is this God good then? Hmm?</p>
<p>(Student is silent.)</p>
<p><strong>Prof:</strong> You can&#8217;t answer, can you? Let&#8217;s start again, young fella. Is God good?</p>
<p><strong>Student:</strong> Yes.</p>
<p><strong>Prof: </strong>Is Satan good?</p>
<p><strong>Student: </strong>No.</p>
<p><strong>Prof: </strong>Where does Satan come from?</p>
<p><strong>Student: </strong>From&#8230;God&#8230;.</p>
<p><strong>Prof:</strong> That&#8217;s right. Tell me son, is there evil in this world?</p>
<p><strong>Student:</strong>Yes.</p>
<p><strong>Prof: </strong>Evil is everywhere, isn&#8217;t it? And God did make everything. Correct?</p>
<p><strong>Student: </strong>Yes.</p>
<p><strong>Prof: </strong>So who created evil?</p>
<p>(Student does not answer.)</p>
<p><strong>Prof: </strong>Is there sickness? Immorality? Hatred? Ugliness? All these terrible things exist in the world, don&#8217;t they?</p>
<p><strong>Student:</strong> Yes, sir.</p>
<p><strong>Prof: </strong>So, who created them?</p>
<p>(Student has no answer.)</p>
<p><strong>Prof: </strong>Science says you have 5 senses you use to identify and observe the world around you. Tell me, son&#8230;Have you ever seen God?</p>
<p><strong>Student:</strong> No, sir.</p>
<p><strong>Prof:</strong> Tell us if you have ever heard your God?</p>
<p><strong>Student: </strong>No, sir.</p>
<p><strong>Prof: </strong>Have you ever felt your God, tasted your God, smelt your God? Have you  ever had any sensory perception of God for that matter?</p>
<p><strong>Student:</strong> No, sir. I&#8217;m afraid I haven&#8217;t.</p>
<p><strong>Prof: </strong>Yet you still believe in Him?</p>
<p><strong>Student:</strong> Yes.</p>
<p><strong>Prof: </strong>According to empirical, testable, demonstrable protocol, science  says your GOD doesn&#8217;t exist. What do you say to that, son?</p>
<p><strong>Student: </strong>Nothing. I only have my faith.</p>
<p><strong>Prof: </strong>Yes. Faith. And that is the problem science has.</p>
<p><strong>Student: </strong>Professor, is there such a thing as heat?</p>
<p><strong>Prof: </strong>Yes.</p>
<p><strong>Student: </strong>And is there such a thing as cold?</p>
<p><strong>Prof: </strong>Yes.</p>
<p><strong>Student: </strong>No sir. There isn&#8217;t.</p>
<p>(The lecture theatre becomes very quiet with this turn of events.)</p>
<p><strong>Student:</strong> Sir, you can have lots of heat, even more heat, superheat, mega heat, white heat, a little heat or no heat. But we don&#8217;t have anything called cold. We can hit 458 degrees below  zero which is no heat, but we can&#8217;t go any further after that. There is no such thing as cold . Cold is only a word we use to describe  the absence of heat . We cannot measure cold. Heat is energy . Cold is  not the opposite of heat, sir, just the absence of it.</p>
<p>(There is  pin-drop silence in the lecture theatre.)</p>
<p><strong>Student: </strong>What about darkness, Professor? Is there such a thing as darkness?</p>
<p><strong>Prof: </strong>Yes. What is night if there isn&#8217;t darkness?</p>
<p><strong>Student :</strong> You&#8217;re wrong again, sir. Darkness is the absence of something. You can  have low light, normal light, bright light, flashing light&#8230;.But if  you have no light constantly, you have nothing and it&#8217;s called  darkness, isn&#8217;t it? In reality, darkness isn&#8217;t. If it were you would be  able to make darkness darker, wouldn&#8217;t you?</p>
<p><strong>Prof:</strong> So what is the point you are making, young man?</p>
<p><strong>Student: </strong>Sir, my point is your philosophical premise is flawed.</p>
<p><strong>Prof: </strong>Flawed? Can you explain how?</p>
<p><strong>Student:</strong> Sir, you are working on the premise of duality. You argue there is life  and then there is death, a good God and a bad God. You are viewing the  concept of God as something finite, something we can measure. Sir,  science can&#8217;t even explain a thought. It uses electricity and  magnetism, but has never seen, much less fully understood either one.To  view death as the opposite of life is to be ignorant of the fact that  death cannot exist as a substantive thing.</p>
<p>Death is not the opposite of life: just the absence of it.<br />
Now tell me, Professor.Do you teach your students that they evolved from a monkey?</p>
<p><strong>Prof: </strong>If you are referring to the natural evolutionary process, yes, of course, I do.</p>
<p><strong>Student: </strong>Have you ever observed evolution with your own eyes, sir?</p>
<p>(The Professor shakes his head with a smile, beginning to realize where the argument is going.)</p>
<p><strong>Student:</strong> Since no one has ever observed the process of evolution at work and  cannot even prove that this process is an on-going endeavor, are you  not teaching your opinion, sir? Are you not a scientist but a preacher?  (The class is in uproar.)</p>
<p><strong>Student: </strong>Is there anyone in the class who has ever seen the Professor&#8217;s brain?</p>
<p>(The class breaks out into laughter.)</p>
<p><strong>Student: </strong>Is there anyone here who has ever heard the Professor&#8217;s brain, felt  it, touched or smelt it? No one appears to have done so. So, according  to the established rules of empirical, stable, demonstrable protocol,  science says that you have no brain,sir. With all due respect, sir, how do we then trust your lectures, sir?</p>
<p>(The room is silent. The professor stares at the student, his face unfathomable.)</p>
<p><strong>Prof: </strong>I guess you&#8217;ll have to take them on faith, son.</p>
<p><strong>Student: </strong>That is it sir&#8230;. The link between man &amp; god is FAITH . That is all that keeps things moving &amp; alive.</p>
<p><strong>NB: </strong>I believe you have enjoyed the conversation&#8230;and if so&#8230;you&#8217;ll  probably want your friends/colleagues to enjoy the same&#8230;won&#8217;t you?&#8230;.</p>
<p>this is a true story, and the</p>
<p>student was none other than&#8230;&#8230;&#8230;.</p>
<p>APJ Abdul Kalam , the former president of India</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dushyantpatel.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dushyantpatel.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dushyantpatel.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dushyantpatel.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dushyantpatel.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dushyantpatel.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dushyantpatel.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dushyantpatel.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dushyantpatel.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dushyantpatel.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dushyantpatel.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dushyantpatel.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dushyantpatel.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dushyantpatel.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=66&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dushyantpatel.wordpress.com/2009/05/09/awesome-conversation-about-god/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a813e529036fd0a3f36045a3ce423446?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dushyantpatel</media:title>
		</media:content>
	</item>
		<item>
		<title>What is jQuery??? Where to learn jquery???</title>
		<link>http://dushyantpatel.wordpress.com/2009/05/03/what-is-jquery-where-to-learn-jquery/</link>
		<comments>http://dushyantpatel.wordpress.com/2009/05/03/what-is-jquery-where-to-learn-jquery/#comments</comments>
		<pubDate>Sun, 03 May 2009 17:02:15 +0000</pubDate>
		<dc:creator>dushyantpatel</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://dushyantpatel.wordpress.com/?p=59</guid>
		<description><![CDATA[I have a friend who has been asking me What is jQuery? &#38; Where to learn jquery? www.jquery.com has itself all information available. &#8220;jQuery is a lightweight JavaScript library that emphasizes interaction between JavaScript and HTML.&#8221; jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=59&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have a friend who has been asking me What is jQuery? &amp; Where to learn jquery?</p>
<p><a title="jQuery" href="http://www.jquery.com">www.jquery.com</a> has itself all information available.</p>
<h4>&#8220;jQuery is a lightweight JavaScript library that emphasizes interaction between JavaScript and HTML.&#8221;</h4>
<p>jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.</p>
<p>You can start learning it from its Tutorial(<a title="jQuery Tutorial" href="http://docs.jquery.com/Tutorials">http://docs.jquery.com/Tutorials</a>) section</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dushyantpatel.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dushyantpatel.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dushyantpatel.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dushyantpatel.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dushyantpatel.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dushyantpatel.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dushyantpatel.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dushyantpatel.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dushyantpatel.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dushyantpatel.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dushyantpatel.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dushyantpatel.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dushyantpatel.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dushyantpatel.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=59&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dushyantpatel.wordpress.com/2009/05/03/what-is-jquery-where-to-learn-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a813e529036fd0a3f36045a3ce423446?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dushyantpatel</media:title>
		</media:content>
	</item>
		<item>
		<title>A (First) day with my son, alone at home</title>
		<link>http://dushyantpatel.wordpress.com/2009/05/02/a-first-day-with-my-son-alone-at-home/</link>
		<comments>http://dushyantpatel.wordpress.com/2009/05/02/a-first-day-with-my-son-alone-at-home/#comments</comments>
		<pubDate>Sat, 02 May 2009 14:52:50 +0000</pubDate>
		<dc:creator>dushyantpatel</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://dushyantpatel.wordpress.com/?p=53</guid>
		<description><![CDATA[MY wife had to go out for some reason, so I got a first day with my son alone at home. We dropped my wife and came back. Now story start from here. I asked to my son what he want to do now, I suggested him to take bath I will keep his milk [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=53&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>MY wife had to go out for some reason, so I got a first day with my son alone at home. We dropped my wife and came back. Now story start from here.</p>
<p>I asked to my son what he want to do now, I suggested him to take bath I will keep his milk ready.</p>
<p>Now questions are like:</p>
<ul>
<li>How milk he needs?</li>
<li> How much warm it should be?</li>
<li> What else he need with milk?</li>
<li> How much cereal he needs in milk?</li>
<li> Where are his clothes?</li>
<li> Which clothes he supposed to put on?</li>
</ul>
<p>Now lunch time, Again list of Questions:</p>
<ul>
<li>Where are plates and spoons?</li>
<li>How much my son need and how much warm it should be for him?</li>
<li>Etc., Etc., Etc.,</li>
</ul>
<p>Oh. How many small points she takes care every day, I never realized before.</p>
<p>Quote from me today:<br />
<em><strong>“She takes care of my home, my son and me, because of that I can go out and earn money to run my home. She does equal job as I do, may be more than that, she does it with love”</strong></em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dushyantpatel.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dushyantpatel.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dushyantpatel.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dushyantpatel.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dushyantpatel.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dushyantpatel.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dushyantpatel.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dushyantpatel.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dushyantpatel.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dushyantpatel.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dushyantpatel.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dushyantpatel.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dushyantpatel.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dushyantpatel.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dushyantpatel.wordpress.com&amp;blog=7335378&amp;post=53&amp;subd=dushyantpatel&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dushyantpatel.wordpress.com/2009/05/02/a-first-day-with-my-son-alone-at-home/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a813e529036fd0a3f36045a3ce423446?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dushyantpatel</media:title>
		</media:content>
	</item>
	</channel>
</rss>
