<?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>Making Life Simple &#187; Windoze</title>
	<atom:link href="http://www.lalitmehta.com/home/category/windoze/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lalitmehta.com/home</link>
	<description></description>
	<lastBuildDate>Tue, 09 Feb 2010 21:36:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>CSV to Excel &#8211; keep leading zeros</title>
		<link>http://www.lalitmehta.com/home/2010/02/09/csv-to-excel-keep-leading-zeros/</link>
		<comments>http://www.lalitmehta.com/home/2010/02/09/csv-to-excel-keep-leading-zeros/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 21:36:57 +0000</pubDate>
		<dc:creator>lalit</dc:creator>
				<category><![CDATA[Windoze]]></category>

		<guid isPermaLink="false">http://www.lalitmehta.com/home/?p=149</guid>
		<description><![CDATA[When opening a csv file in excel, leading zero&#8217;s are displaced as below: if the CSV file has &#8220;010101&#8243;, when opened in excel, it becomes &#8220;10101&#8243;. To overcome this issue, store data in CSV file as =&#8221;010101&#8243; (add &#8216;equals&#8217; sign before the first quote.). If now you would open this file in excel, the leading [...]]]></description>
			<content:encoded><![CDATA[<p>When opening a csv file in excel, leading zero&#8217;s are displaced as below:</p>
<p>if the CSV file has &#8220;010101&#8243;, when opened in excel, it becomes &#8220;10101&#8243;.</p>
<p>To overcome this issue, store data in CSV file as =&#8221;010101&#8243; (add &#8216;equals&#8217; sign before the first quote.). If now you would open this file in excel, the leading zeros will stay as is.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lalitmehta.com/home/2010/02/09/csv-to-excel-keep-leading-zeros/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE 6 bug in window.location</title>
		<link>http://www.lalitmehta.com/home/2010/01/13/ie-6-bug-in-window-location/</link>
		<comments>http://www.lalitmehta.com/home/2010/01/13/ie-6-bug-in-window-location/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 23:09:51 +0000</pubDate>
		<dc:creator>lalit</dc:creator>
				<category><![CDATA[Windoze]]></category>
		<category><![CDATA[general web]]></category>

		<guid isPermaLink="false">http://www.lalitmehta.com/home/?p=123</guid>
		<description><![CDATA[There is a bug in IE 6 where following code does not work var newUrl = "http://www.google.com/"; window.location = newUrl; // This also doesn't work! // window.location.href = newUrl; After a scratching head for couple of hours, found the solution here var newUrl = "http://google.com/"; setTimeout(function() { window.location = newUrl; }, 0);]]></description>
			<content:encoded><![CDATA[<p>There is a bug in IE 6 where following code does not work</p>
<p><code>var newUrl = "http://www.google.com/";<br />
window.location = newUrl;<br />
// This also doesn't work!<br />
// window.location.href = newUrl;</code></p>
<p>After a scratching head for couple of hours, found the solution <a title="IE6 bug" href="http://patrickgibson.com/news/andsuch/000202.php" target="_blank">here</a></p>
<p><code>var newUrl = "http://google.com/";<br />
setTimeout(function()<br />
{<br />
window.location = newUrl;<br />
}, 0);</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lalitmehta.com/home/2010/01/13/ie-6-bug-in-window-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TOP 25 Most Dangerous Programming Errors</title>
		<link>http://www.lalitmehta.com/home/2009/01/13/top-25-most-dangerous-programming-errors/</link>
		<comments>http://www.lalitmehta.com/home/2009/01/13/top-25-most-dangerous-programming-errors/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 01:59:07 +0000</pubDate>
		<dc:creator>lalit</dc:creator>
				<category><![CDATA[Windoze]]></category>
		<category><![CDATA[general web]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.lalitmehta.com/home/?p=68</guid>
		<description><![CDATA[CWE-20:Improper Input Validation CWE-116:Improper Encoding or Escaping of Output CWE-89:Failure to Preserve SQL Query Structure CWE-79:Failure to Preserve Web Page Structure CWE-78:Failure to Preserve OS Command Structure CWE-319:Cleartext Transmission of Sensitive Information CWE-352:Cross-Site Request Forgery CWE-362:Race Condition CWE-209:Error Message Information Leak CWE-119:Failure to Constrain Operations within the Bounds of a Memory Buffer CWE-642:External Control of [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>CWE-20:Improper Input Validation</li>
<li>CWE-116:Improper Encoding or Escaping of Output</li>
<li>CWE-89:Failure to Preserve SQL Query Structure</li>
<li>CWE-79:Failure to Preserve Web Page Structure</li>
<li>CWE-78:Failure to Preserve OS Command Structure</li>
<li>CWE-319:Cleartext Transmission of Sensitive Information</li>
<li>CWE-352:Cross-Site Request Forgery</li>
<li>CWE-362:Race Condition</li>
<li>CWE-209:Error Message Information Leak</li>
<li>CWE-119:Failure to Constrain Operations within the Bounds of a Memory Buffer</li>
<li>CWE-642:External Control of Critical State Data</li>
<li>CWE-73:External Control of File Name or Path</li>
<li>CWE-426:Untrusted Search Path</li>
<li>CWE-94:Failure to Control Generation of Code</li>
<li>CWE-494:Download of Code Without Integrity Check</li>
<li>CWE-404:Improper Resource Shutdown or Release</li>
<li>CWE-665:Improper Initialization</li>
<li>CWE-682:Incorrect Calculation</li>
<li>CWE-285:Improper Access Control</li>
<li>CWE-327:Use of a Broken or Risky Cryptographic Algorithm</li>
<li>CWE-259:Hard-Coded Password</li>
<li>CWE-732:Insecure Permission Assignment for Critical Resource</li>
<li>CWE-330:Use of Insufficiently Random Values</li>
<li>CWE-250:Execution with Unnecessary Privileges</li>
<li>CWE-602:Client-Side Enforcement of Server-Side Security</li>
</ol>
<p><a title="Top 25 most dangerous programming errors" href="http://www.sans.org/top25errors/" target="_blank">Full story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lalitmehta.com/home/2009/01/13/top-25-most-dangerous-programming-errors/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to RDP Vista Home Premium with SP1</title>
		<link>http://www.lalitmehta.com/home/2008/05/30/how-to-rdp-vista-home-premium-with-sp1/</link>
		<comments>http://www.lalitmehta.com/home/2008/05/30/how-to-rdp-vista-home-premium-with-sp1/#comments</comments>
		<pubDate>Sat, 31 May 2008 01:53:55 +0000</pubDate>
		<dc:creator>lalit</dc:creator>
				<category><![CDATA[Windoze]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://www.lalitmehta.com/home/2008/05/30/how-to-rdp-vista-home-premium-with-sp1/</guid>
		<description><![CDATA[Previously I had written a blog entry to enable RDP on Vista Home Premium. After installing SP1, I realized that I could not connect to my machine.  After a little search in google, I found the same group has done their magic for SP1 too. For your reference, here is the file.]]></description>
			<content:encoded><![CDATA[<p>Previously I had <a href="http://www.lalitmehta.com/home/2007/12/12/how-to-rdp-to-vista-home-premium/" title="RDP to Vista Home premium">written</a> a blog entry to enable RDP on Vista Home Premium. After installing SP1, I realized that I could not connect to my machine.  After a little search in google, I found the same group has done their magic for SP1 too. For your reference, here is the <a href="http://www.lalitmehta.com/home/wp-content/uploads/2008/05/termsrv_sp1.zip">file</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lalitmehta.com/home/2008/05/30/how-to-rdp-vista-home-premium-with-sp1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Edit Windows Vista Hosts File</title>
		<link>http://www.lalitmehta.com/home/2008/03/09/edit-windows-vista-hosts-file/</link>
		<comments>http://www.lalitmehta.com/home/2008/03/09/edit-windows-vista-hosts-file/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 18:32:54 +0000</pubDate>
		<dc:creator>lalit</dc:creator>
				<category><![CDATA[Windoze]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://www.lalitmehta.com/home/2008/03/09/edit-windows-vista-hosts-file/</guid>
		<description><![CDATA[1. Open Notepad with Administrative privileges by clicking Start, All Programs, Accessories, and then right-click Notepad and select to open as Administrator. 2. Browse to (C:\Windows\System32\drivers\etc) in Notepad and open the hosts file. Now you can edit and save the hosts file.]]></description>
			<content:encoded><![CDATA[<p>1. Open Notepad with Administrative privileges by clicking Start, All Programs, Accessories, and then right-click Notepad and select to open as Administrator.</p>
<p>2. Browse to (C:\Windows\System32\drivers\etc) in Notepad and open the hosts file.</p>
<p>Now you can edit and save the hosts file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lalitmehta.com/home/2008/03/09/edit-windows-vista-hosts-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to RDP to Vista Home Premium</title>
		<link>http://www.lalitmehta.com/home/2007/12/12/how-to-rdp-to-vista-home-premium/</link>
		<comments>http://www.lalitmehta.com/home/2007/12/12/how-to-rdp-to-vista-home-premium/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 03:27:36 +0000</pubDate>
		<dc:creator>lalit</dc:creator>
				<category><![CDATA[Windoze]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://www.lalitmehta.com/home/2007/12/12/how-to-rdp-to-vista-home-premium/</guid>
		<description><![CDATA[I cannot believe it. I recently bought new computer which came with Vista Home Premium installed. Everything was cool and only thing I missed was that I could not RDP to it. After searching a little on google, found a great great hack to fix the problem. Kudos to the hackers who made this possible!!]]></description>
			<content:encoded><![CDATA[<p>I cannot believe it. I recently bought new computer which came with Vista Home Premium installed. Everything was cool and only thing I missed was that I could not RDP to it. After searching a little on google, found a great great <a href="http://www.missingremote.com/index.php?option=com_content&amp;task=view&amp;id=1220&amp;Itemid=224" title="RDP with Vista Home Premium"><strong>hack</strong></a> to fix the problem. Kudos to the hackers who made this possible!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lalitmehta.com/home/2007/12/12/how-to-rdp-to-vista-home-premium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
