<?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>Nilesh Manohar &#38; Erzsebet Marothi &#187; Computers</title>
	<atom:link href="http://www.nileshmanohar.com/category/computers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nileshmanohar.com</link>
	<description>Our little space on Internet</description>
	<lastBuildDate>Mon, 26 Jul 2010 11:42:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Colortip</title>
		<link>http://www.nileshmanohar.com/2010/07/16/colortip/</link>
		<comments>http://www.nileshmanohar.com/2010/07/16/colortip/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 14:21:58 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[tooltip]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=581</guid>
		<description><![CDATA[Very nice tooltip based on jQuery Colortip]]></description>
			<content:encoded><![CDATA[<p>Very nice tooltip based on <a href="http://jquery.com/" target="_blank">jQuery</a></p>
<p><a href="http://tutorialzine.com/2010/07/colortips-jquery-tooltip-plugin/" target="_blank">Colortip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2010/07/16/colortip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crunchbang Linux</title>
		<link>http://www.nileshmanohar.com/2010/07/15/crunchbang-linux/</link>
		<comments>http://www.nileshmanohar.com/2010/07/15/crunchbang-linux/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 15:03:48 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[crunchbang]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=560</guid>
		<description><![CDATA[CrunchBang Linux is an Ubuntu based distribution featuring the lightweight Openbox window manager and GTK+ applications. The distribution has been built and customised from a minimal Ubuntu install. The distribution has been designed to offer a good balance of speed &#8230; <a href="http://www.nileshmanohar.com/2010/07/15/crunchbang-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>CrunchBang Linux is an <a title="http://www.ubuntu.com" href="http://www.ubuntu.com/" target="_blank">Ubuntu</a> based distribution featuring  the lightweight <a title="http://icculus.org/openbox/index.php/Main_Page" href="http://icculus.org/openbox/index.php/Main_Page" target="_blank">Openbox window  manager</a> and GTK+ applications. The distribution has been built and  customised from a minimal Ubuntu install. The distribution has been  designed to offer a good balance of speed and functionality. CrunchBang  Linux is currently available as a LiveCD; however, best performance is  achieved by installing CrunchBang Linux to your hard disk.</p>
<p>I tried Crunchbang Linux on my HP netbook. It has a 1.2 GHz processor and 1GB RAM. It just took <strong>9</strong> minutes to install and had no problem in setting up the wireless.</p>
<p>Read More about <a href="http://crunchbanglinux.org/wiki/about" target="_blank">Crunchbang Linux here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2010/07/15/crunchbang-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>calculate div position</title>
		<link>http://www.nileshmanohar.com/2010/03/11/calculate-div-position/</link>
		<comments>http://www.nileshmanohar.com/2010/03/11/calculate-div-position/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 17:01:48 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=510</guid>
		<description><![CDATA[After trying out loads of ways to find out the position of div in web page I found this be the best code function getPosition(obj){ var topValue= 0,leftValue= 0; while(obj){ leftValue+= obj.offsetLeft; topValue+= obj.offsetTop; obj= obj.offsetParent; } finalvalue = {'left': &#8230; <a href="http://www.nileshmanohar.com/2010/03/11/calculate-div-position/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After trying out loads of ways to find out the position of div in web page I found this be the best code<br />
<code>function getPosition(obj){<br />
var topValue= 0,leftValue= 0;<br />
while(obj){<br />
leftValue+= obj.offsetLeft;<br />
topValue+= obj.offsetTop;<br />
obj= obj.offsetParent;<br />
}<br />
finalvalue = {'left': leftValue, 'top' : topValue};<br />
return finalvalue;<br />
}</code></p>
<p>In order to use this just use the following</p>
<p><code>var curPos = getPosition(document.getElementById('divInQuestion'));<br />
curPos.left is the postion left and curPos.top is the top position</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2010/03/11/calculate-div-position/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript game engine for jQuery</title>
		<link>http://www.nileshmanohar.com/2010/03/11/javascript-game-engine-for-jquery/</link>
		<comments>http://www.nileshmanohar.com/2010/03/11/javascript-game-engine-for-jquery/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 15:03:23 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=508</guid>
		<description><![CDATA[gameQuery is a jQuery plug-in to help make javascript game development easier by adding some simple game-related classes. It&#8217;s still in an early stage of development and may change a lot in future versions. The project has a Google Code &#8230; <a href="http://www.nileshmanohar.com/2010/03/11/javascript-game-engine-for-jquery/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://gamequery.onaluf.org/" target="_blank">gameQuery</a> is a <a title="Opens in a new window" href="http://jquery.com/" target="_blank">jQuery</a> <a title="Opens in a new window" href="http://plugins.jquery.com/project/gameQuery" target="_blank">plug-in</a> to help make javascript game development easier by adding some simple  game-related classes. It&#8217;s still in an early stage of development and  may change a lot in future versions. The project has a <a title="Opens  in a new window" href="http://code.google.com/p/jquery-gamequery/" target="_blank">Google Code</a> page  where the SVN repository of the project is hosted and a <a title="Opens  in a new window" href="http://twitter.com/gameQuery" target="_blank">twitter  page</a> where you can follow the daily progress of the development.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2010/03/11/javascript-game-engine-for-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pixlr</title>
		<link>http://www.nileshmanohar.com/2010/03/09/pixlr/</link>
		<comments>http://www.nileshmanohar.com/2010/03/09/pixlr/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 09:45:23 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=506</guid>
		<description><![CDATA[found this very nice online image editor. Give it a try]]></description>
			<content:encoded><![CDATA[<p>found this very nice online image editor.</p>
<p>Give it a <a href="http://www.pixlr.com/" target="_blank">try </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2010/03/09/pixlr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>very nice article on color theory</title>
		<link>http://www.nileshmanohar.com/2010/02/01/very-nice-article-on-color-theory/</link>
		<comments>http://www.nileshmanohar.com/2010/02/01/very-nice-article-on-color-theory/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 09:58:03 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=504</guid>
		<description><![CDATA[Color in design is very subjective. What evokes one reaction in one person may evoke a very different reaction in somone else. Sometimes this is due to personal preference, and other times due to cultural background. Color theory is a &#8230; <a href="http://www.nileshmanohar.com/2010/02/01/very-nice-article-on-color-theory/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Color in design is very subjective. What evokes one reaction in one  person may evoke a very different reaction in somone else. Sometimes  this is due to personal preference, and other times due to cultural  background. Color theory is a science in itself. Studying how colors  affect different people, either individually or as a group, is something  some people build their careers on. And there’s a lot to it. Something  as simple as changing the exact hue or saturation of a color can evoke a  completely different feeling. Cultural differences mean that something  that’s happy and uplifting in one country can be depressing in another.</p>
<p><a href="http://www.smashingmagazine.com/2010/01/28/color-theory-for-designers-part-1-the-meaning-of-color/" target="_blank">Read More</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2010/02/01/very-nice-article-on-color-theory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handy RegExp tool</title>
		<link>http://www.nileshmanohar.com/2009/12/10/handy-regexp-tool/</link>
		<comments>http://www.nileshmanohar.com/2009/12/10/handy-regexp-tool/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 16:47:47 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=498</guid>
		<description><![CDATA[http://gskinner.com/RegExr/]]></description>
			<content:encoded><![CDATA[<p><a href="http://gskinner.com/RegExr/" target="_blank">http://gskinner.com/RegExr/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2009/12/10/handy-regexp-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Differences in Internet Explorer 6, 7 and 8</title>
		<link>http://www.nileshmanohar.com/2009/10/15/css-differences-in-internet-explorer-6-7-and-8/</link>
		<comments>http://www.nileshmanohar.com/2009/10/15/css-differences-in-internet-explorer-6-7-and-8/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 08:57:03 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=485</guid>
		<description><![CDATA[One of the most bizarre statistical facts in relation to browser use has to be the virtual widespread numbers that currently exist in the use of Internet Explorer versions 6, 7 and 8. As of this writing, Internet Explorer holds &#8230; <a href="http://www.nileshmanohar.com/2009/10/15/css-differences-in-internet-explorer-6-7-and-8/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the most bizarre statistical facts in relation to browser use has to be the virtual widespread numbers that currently exist in the use of <strong>Internet Explorer</strong> versions 6, 7 and 8. As of this writing, <a href="http://marketshare.hitslink.com/browser-market-share.aspx?qprid=0">Internet Explorer holds about a 65% market share</a> combined across all their currently used browsers. In the web development community, this number is much lower, showing <a href="http://www.w3schools.com/browsers/browsers_stats.asp">about a 40% share</a>.</p>
<p>The interesting part of those statistics is that the numbers across IE6, IE7, and IE8 are very close, preventing a single Microsoft browser from dominating browser stats — contrary to what has been the trend in the past. Due to these unfortunate statistics, it is <strong>imperative that developers do thorough testing in all currently-used Internet Explorer browsers</strong> when working on websites for clients, and on personal projects that target a broader audience.</p>
<p>Thanks to the many available JavaScript libraries, JavaScript testing across different browsers has become as close to perfect as the current situation will allow. But this is not true in CSS development, particularly in relation to the three currently used versions of Internet Explorer.</p>
<p>This article will attempt to provide an <strong>exhaustive, easy-to-use reference for developers desiring to know the differences in CSS support for IE6, IE7 and IE8</strong>. This reference contains brief descriptions and compatibility for:</p>
<ul>
<li>Any item that is supported by one of the three browser versions, but not the other two</li>
<li>Any item that is supported by two of the three browser versions, but not the other one</li>
</ul>
<p>This article does not discuss:</p>
<ul>
<li>Any item that is not supported by any of the three browser versions</li>
<li>Proprietary or vendor-specific CSS</li>
</ul>
<p><a href="http://www.smashingmagazine.com/2009/10/14/css-differences-in-internet-explorer-6-7-and-8/" target="_blank">Continue to article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2009/10/15/css-differences-in-internet-explorer-6-7-and-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jCryption</title>
		<link>http://www.nileshmanohar.com/2009/09/17/jcryption/</link>
		<comments>http://www.nileshmanohar.com/2009/09/17/jcryption/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 10:45:41 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=467</guid>
		<description><![CDATA[In short words jCryption is a javascript HTML-Form encryption plugin, which encrypts the POST/GET-Data that will be sent when you submit a form. It uses the Multiple-precision and Barrett modular reduction libraries for the calculations and jQuery for the rest. &#8230; <a href="http://www.nileshmanohar.com/2009/09/17/jcryption/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In short words jCryption is a <strong>javascript HTML-Form encryption plugin</strong>, which encrypts the POST/GET-Data that will be sent when you submit a form.<br />
It uses the <a rel="nofollow" href="http://www.ohdave.com/rsa/" target="_blank">Multiple-precision and Barrett modular reduction</a> libraries for the calculations and <a rel="nofollow" href="http://jquery.com/" target="_blank">jQuery</a> for the rest.<br />
jCryption is completly free and dual licensed under the MIT and GPL licenses like <a rel="nofollow" href="http://jquery.com/" target="_blank">jQuery</a>.</p>
<p>Normally if you submit a form and you don’t use SSL, your data will be sent in plain text.<br />
But SSL is neither supported by every webhost nor it’s easy to install/apply sometimes.<br />
So I created this plug-in in order that you are able to encrypt your data fast and simple.<br />
jCryption uses the<strong> public-key algorithm of RSA </strong>for the encryption.</p>
<p>jCryption at it’s current state is no replacement for SSL, because there is no authentication, but the main goal of jCryption should be a very easy and fast to install plugin which offers a base level of security.<br />
Although it’s still in development and every contribution is welcome.</p>
<p>The way jCryption works (see examples) is, that the data is encrypted on the client (javascript) and decrypted on the server (php). For more information see the FAQ.</p>
<p><strong>jCryption </strong>was tested with Internet Explorer 6 +, Mozilla Firefox 3+, Safari 3, Opera 9+, Google Chrome.</p>
<p>If you find any bugs, please report them on the GoogleCode issue page, or write your feature whishes there.</p>
<p><strong>Some of the features are:</strong></p>
<ul>
<li>RSA form data encryption up to 2048 bit</li>
<li>AjaxSubmit supported</li>
<li><strong>no SSL required</strong></li>
<li>easy to install, use and extend</li>
<li>doesn’t block the browser on calculations</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2009/09/17/jcryption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Powerful Mobile Apps with HTML, CSS and jQuery</title>
		<link>http://www.nileshmanohar.com/2009/09/15/create-powerful-mobile-apps-with-html-css-and-jquery/</link>
		<comments>http://www.nileshmanohar.com/2009/09/15/create-powerful-mobile-apps-with-html-css-and-jquery/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 13:54:05 +0000</pubDate>
		<dc:creator>Nilesh Manohar</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.nileshmanohar.com/?p=465</guid>
		<description><![CDATA[jQTouch is a jQuery plugin for mobile web development on forward-thinking devices. You can create powerful mobile apps with just HTML, CSS, and jQuery. It supports native animations, automatic navigation, and themes for mobile WebKit browsers like iPhone, G1, and &#8230; <a href="http://www.nileshmanohar.com/2009/09/15/create-powerful-mobile-apps-with-html-css-and-jquery/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="jQTouch" href="http://jqtouch.com/" target="_blank">jQTouch</a> is a jQuery plugin for mobile web development on forward-thinking devices. You can create powerful mobile apps with just HTML, CSS, and jQuery. It supports native animations, automatic navigation, and themes for mobile WebKit browsers like iPhone, G1, and Pre.</p>
<p><a title="jQTouch" href="http://jqtouch.com/" target="_blank">jQTouch</a> requires one basic theme to make page transitions work which is very small. One could use just the core CSS file to build a completely custom UI. Themes are additional CSS files which provide native-looking styles, mostly centered around the iPhone OS. Themes included are: Apple, jQT and Vanilla.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nileshmanohar.com/2009/09/15/create-powerful-mobile-apps-with-html-css-and-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
