<?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>My Mind Leaks &#187; guide</title>
	<atom:link href="http://www.mymindleaks.com/blog/archives/tag/guide/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mymindleaks.com/blog</link>
	<description>Software, Programming, Architecture &#38; More</description>
	<lastBuildDate>Sun, 11 Jul 2010 05:06:20 +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>Big Code, Good Code!</title>
		<link>http://www.mymindleaks.com/blog/archives/big-code-good-code.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/big-code-good-code.html#comments</comments>
		<pubDate>Fri, 09 May 2008 01:32:57 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Articles on Computer Science]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[guide]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/?p=622</guid>
		<description><![CDATA[Coding is an art! Anyone can draw, but only those who draw with the elegant have their paintings valued. Similarly any programmer can code, but a Good Program is an artistic job. I see lot of people do code, but only few actually write Good code. This means they have understood the elegance of the [...]]]></description>
			<content:encoded><![CDATA[<p><em>Coding is an art</em>! Anyone can draw, but only those who draw with the elegant have their paintings valued. Similarly any programmer can code, but a Good Program is an artistic job. I see lot of people do code, but only few actually write Good code. This means they have understood the elegance of the language and knows how to use it.</p>
<h3>Big Code &#8211; Good Code</h3>
<p>Big Code, a Good Code? Sounds awkward? A Good code I mean here is a code which runs quicker than other solutions for the same problem.</p>
<blockquote><p><strong>if T(Sol1) &lt; T(Sol2) Then, Solution 1 is a Good code</strong>., Where T is Time function , measures Time Taken</p></blockquote>
<p><em>( though there are various other constraints involved, for time being let not discuss them )</em></p>
<p>Hardcore programmers are always tries to write short programs. They couple few lines of code into one and show that they have done a great coding.  But, things are not always the way it looks. <strong><em>Short is sweet, but not always !</em></strong></p>
<p><span id="more-622"></span><br />
Look into this code, 3 solutions for one simple problem.</p>
<p><em><strong>Problem</strong>: Find the greatest of two numbers a, b</em></p>
<p style="text-align: center"><a href="http://mymindleaks.com/wp-content/uploads/2008/05/code-table1.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/05/code-table-thumb.png" border="0" alt="code table thumb Big Code, Good Code!" width="640" height="158" title="Big Code, Good Code!" /></a></p>
<h3>Million Dollar Question</h3>
<p>Which code runs faster? If you have chosen the A&#8217;s code as faster. You have correctly made a <strong>wrong decision</strong>.</p>
<p>The fastest program is the B&#8217;s program. So, 3 lines of code, still fastest code? Ok.</p>
<p>In the A&#8217;s code,  consider if a &lt; b, two operations should be performed.</p>
<ul>
<li>Compare &#8216;a&#8217; , &#8216;b&#8217;</li>
<li>Branch to Else if &#8216;a&#8217; &lt; &#8216;b&#8217;</li>
<li>Return the expression &#8216;b&#8217;</li>
</ul>
<p>But in B&#8217;s solution, we have already assigned a value to &#8216;x&#8217;. Only job is to compare and Assign. <strong>So the second operation is saved.</strong></p>
<p>In such a small code, you won&#8217;t find a big difference. But think of a macro system with MLOC ( Million Lines of Code ).</p>
<p>I will explain you by solving a bit complex problem, come on join me.</p>
<p><strong>Problem</strong>: <em>Given number &#8216;N&#8217; , split into &#8216;k&#8217; integers, such that N = k1 + k2 + k3 +&#8230;kn and k1 * k2 * k3 is maximum</em>.</p>
<p>You can try various solutions. One simple solution is</p>
<p style="text-align: center"><img src="http://mymindleaks.com/wp-content/uploads/2008/05/image-thumb.png" border="0" alt="image thumb Big Code, Good Code!" width="640" height="69" title="Big Code, Good Code!" /></p>
<p>Great code, you would be proud to write one line solution of such great problem. But wait, is your code is faster to run for N &gt; 10^10, K &gt; 10^5?</p>
<p>Consider the optimize solution</p>
<p style="text-align: center"><a href="http://mymindleaks.com/wp-content/uploads/2008/05/image1.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/05/image-thumb1.png" border="0" alt="image thumb1 Big Code, Good Code!" width="640" height="125" title="Big Code, Good Code!" /></a></p>
<p>More optimised</p>
<p style="text-align: center"><a href="http://mymindleaks.com/wp-content/uploads/2008/05/image5.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/05/image-thumb5.png" border="0" alt="image thumb5 Big Code, Good Code!" width="640" height="200" title="Big Code, Good Code!" /></a></p>
<p>The last code works much faster than any other. Try looping it for million times with various values of &#8216;N &amp; k &#8216;. and measure the time it takes to complete the million time execution.</p>
<h3>How to write a speedy code?</h3>
<p>So, this is yet another million dollar question. Take a look at the above three solutions. You will find a resemblance.</p>
<p><strong>Solution &#8211; 1 </strong>is a generalized form of other two. <strong>Solution &#8211; 3 </strong>is more detailed form of Solution &#8211; 1.</p>
<p>So, what is been detailed in the Solution 3. If you look at more closely, you will find that Solution-3 has checks for &#8216;Boundary Conditions&#8217;.</p>
<p>Boundary Conditions are very important scenarios in any Logical System. You prove that system works perfect for boundary conditions, you prove the system to work for any values between it. <strong>Similar to Mathematical Induction</strong>. So, this applies for programming too.</p>
<p>If you are able to identify the boundary conditions, and make the appropriate formula for those conditions, then you will skip unnecessary computations.</p>
<p>We will look what have save the computational cycles.</p>
<p>Lets assume, the Input are N=10, K = 2</p>
<p><strong>Using Solution-1:</strong></p>
<p>residue = 0, mid = 5</p>
<p>maxProduct = Math.pow(5+1,0) * Math.pow( 5 ,(2-0) ) = 25</p>
<p><strong>Operations performed:</strong></p>
<p><em>Note: costs are just for calculation, not exact one</em></p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/05/image3.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/05/image-thumb3.png" border="0" alt="image thumb3 Big Code, Good Code!" width="270" height="322" title="Big Code, Good Code!" /></a></p>
<ul>
<li>Math.pow</li>
<li>Addition &#8211; (5+1)</li>
<li>Math.pow</li>
<li>Subtraction &#8211; ( 2-0 )</li>
<li>Multiplication</li>
</ul>
<p>lets assume the cost for each operation is</p>
<p><strong>Using Solution-3:</strong></p>
<p>The code will branch out to the 1st if condition ( residue == 0 )</p>
<p>maxProduct = Math.pow( 5, 2) = 25</p>
<p><strong>Operations performed</strong></p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/05/image4.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/05/image-thumb4.png" border="0" alt="image thumb4 Big Code, Good Code!" width="270" height="166" title="Big Code, Good Code!" /></a></p>
<p>So, you have saved more than 55% of the computational cycles by covering up the boundary conditions.</p>
<p><strong>So, Why you need a Speedy code?</strong></p>
<p>Everyone in life loves speed. Speed bike, Speed cars ( that&#8217;s why you would love F1 ), A speedy 2 GB &#8211; Core 2 Duo Powered Machine.</p>
<p><strong>Because Speed makes you feel Good !! So does a Speedy Code will be a Good code.</strong></p>
<p>But, to achieve something you have to compromise with other factors, like I mentioned earlier.</p>
<p>If you need a 2 GB &#8211; Core 2 Duo Powered Machine, you should not consider the Money factor.</p>
<p>Similarly while you code, there are lot of other factors like</p>
<ul>
<li>Memory Management</li>
<li>Security</li>
<li>Transaction Isolations etc.,</li>
</ul>
<p>This is just a introduction, will start covering up other topics soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/big-code-good-code.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Stop all annoying messages from Twitter &amp; Pownce, get FriendFeed</title>
		<link>http://www.mymindleaks.com/blog/archives/stop-all-annoying-messages-from-twitter-pownce-get-friendfeed.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/stop-all-annoying-messages-from-twitter-pownce-get-friendfeed.html#comments</comments>
		<pubDate>Tue, 04 Mar 2008 16:58:04 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/stop-all-annoying-messages-from-twitter-pownce-get-friendfeed/</guid>
		<description><![CDATA[   Annoyed with constant pings of Twitter messages in your GTalk? Floated with loads of Email from Digg friends request and Shouts? You get mail from Pownce filling up your inbox just by covering up your important mails? Here is a solution for you to get free from all those annoying stuffs, but still you [...]]]></description>
			<content:encoded><![CDATA[<p> <a href="http://friendfeed.com" title="FriendFeed - Merge all your friends at FriendFeed | My Mind Leaks"><img src="http://friendfeed.com/static/images/logo-b.png?v=141bf9223b0f653d28248d187df2725c" alt="FriendFeed - Merge all your friends at FriendFeed | My Mind Leaks" title="Stop all annoying messages from Twitter &amp; Pownce, get FriendFeed" /></a></p>
<p> Annoyed with constant pings of <a href="http://twitter.com/maheshexp" title="Twitter">Twitter</a> messages in your GTalk? Floated with loads of Email from <a href="http://digg.com/maheshexp">Digg</a> friends request and Shouts? You get mail from <a href="http://pownce.com/maheshexp">Pownce</a> filling up your inbox just by covering up your important mails? Here is a solution for you to get free from all those annoying stuffs, but still you want to get all the updates as like before? And finally you have problem tracking all the online application&#8217;s information daily? Ok ok..I stop at this point and will take you my post.</p>
<p><span id="more-353"></span></p>
<p><a href="http://friendfeed.com/maheshexp">FriendFeed</a> offers amazing facility that lets you merge a list of online application into one feed to track.</p>
<p>Yo! that&#8217;s cool. About 28 frequently used web applications!</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image1.png"rel="lightbox" ><img height="362" width="236" src="http://mymindleaks.com/wp-content/uploads/2008/03/image-thumb1.png" alt="image thumb1 Stop all annoying messages from Twitter &amp; Pownce, get FriendFeed" border="0" style="width: 103px; height: 175px" title="Stop all annoying messages from Twitter &amp; Pownce, get FriendFeed" /></a></p>
<p>Get your info across all the web applications merged into one and read it at some point of time when you want to read it.</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image2.png"><img height="186" width="430" src="http://mymindleaks.com/wp-content/uploads/2008/03/image-thumb2.png" alt="image thumb2 Stop all annoying messages from Twitter &amp; Pownce, get FriendFeed" border="0" title="Stop all annoying messages from Twitter &amp; Pownce, get FriendFeed" /></a></p>
<p>This is my feed which has got Twitter &amp; Pownce merged into one , which really makes me free out of all those annoying pings!!</p>
<p>Yeah really, this would save you a lot of annoying pings, emails and messages. You can now turnoff your notification in Digg, Pownce and twitter and still get updated through the Rendered.</p>
<p>Once you have created your feeds, <a href="http://friendfeed.com/maheshexp">FriendFeed</a> combines everything into a RSS feed send a one time email notification either daily / weekly.</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image3.png"><img height="80" width="266" src="http://mymindleaks.com/wp-content/uploads/2008/03/image-thumb3.png" alt="image thumb3 Stop all annoying messages from Twitter &amp; Pownce, get FriendFeed" border="0" title="Stop all annoying messages from Twitter &amp; Pownce, get FriendFeed" /></a></p>
<p>Or put <a href="http://friendfeed.com/maheshexp">FriendFeed</a> into your <a href="http://www.facebook.com/profile.php?id=719858907">Facebook</a>,</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image4.png"><img height="197" width="403" src="http://mymindleaks.com/wp-content/uploads/2008/03/image-thumb4.png" alt="image thumb4 Stop all annoying messages from Twitter &amp; Pownce, get FriendFeed" border="0" title="Stop all annoying messages from Twitter &amp; Pownce, get FriendFeed" /></a></p>
<p>or even into your Google reader or any of the RSS feed reader application.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/stop-all-annoying-messages-from-twitter-pownce-get-friendfeed.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>113 Useful Windows Commands</title>
		<link>http://www.mymindleaks.com/blog/archives/113-useful-windows-commands.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/113-useful-windows-commands.html#comments</comments>
		<pubDate>Sun, 02 Mar 2008 17:43:38 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[run command]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/113-useful-windows-commands/</guid>
		<description><![CDATA[Courtesy: Yi Shiang A Comprehensive list of most useful Windows Run Commands before you. For quick windows commands Read on How to use Shell Operator Make use of it and hack the features of Windows XP for better and productive use. To Access…. Run Command Accessibility Controls access.cpl Add Hardware Wizard hdwwiz.cpl Add/Remove Programs appwiz.cpl [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/03/image-thumb.png" border="0" alt="113 Windows Run Command" width="450" height="338" title="113 Useful Windows Commands" /></a></p>
<p style="font-size: xx-small" align="center">Courtesy: <a href="http://www.flickr.com/photos/yishiang/2228069371/in/set-72157603779065170/"title="113 Useful Run Commands." >Yi Shiang</a></p>
<p>A Comprehensive list of most useful Windows Run Commands before you.</p>
<p>For quick windows commands Read on <a href="http://mymindleaks.com/windows-xp/use-shell-for-quick-windows-xp-vista-run-commands/">How to use Shell Operator</a></p>
<p>Make use of it and hack the features of Windows XP for better and productive use.</p>
<table border="0" cellspacing="2" cellpadding="3" width="480">
<tbody>
<tr>
<td width="214" height="29" align="center"><strong>To Access….</strong></td>
<td width="258" height="29" align="center"><strong>Run Command</strong></td>
</tr>
<tr>
<td width="214" height="45">
<p align="left">Accessibility Controls</p>
</td>
<td width="258" height="45">
<p align="left">access.cpl</p>
</td>
</tr>
<tr>
<td width="214" height="45">
<p align="left">Add Hardware Wizard</p>
</td>
<td width="258" height="45">
<p align="left">hdwwiz.cpl</p>
</td>
</tr>
<tr>
<td width="214" height="45">
<p align="left">Add/Remove Programs</p>
</td>
<td width="258" height="45">
<p align="left">appwiz.cpl</p>
</td>
</tr>
</tbody>
</table>
<p><span id="more-342"></span></p>
<table border="0" cellspacing="2" cellpadding="3" width="480">
<tbody>
<tr>
<td width="246" height="45">
<p align="left">Administrative Tools</p>
</td>
<td width="226" height="45">
<p align="left">control admintools</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Automatic Updates</p>
</td>
<td width="226" height="45">
<p align="left">wuaucpl.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Bluetooth Transfer Wizard</p>
</td>
<td width="226" height="45">
<p align="left">fsquirt</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Calculator</p>
</td>
<td width="226" height="45">
<p align="left">calc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Certificate Manager</p>
</td>
<td width="226" height="45">
<p align="left">certmgr.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Character Map</p>
</td>
<td width="226" height="45">
<p align="left">charmap</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Check Disk Utility</p>
</td>
<td width="226" height="45">
<p align="left">chkdsk</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Clipboard Viewer</p>
</td>
<td width="226" height="45">
<p align="left">clipbrd</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Command Prompt</p>
</td>
<td width="226" height="45">
<p align="left">cmd</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Component Services</p>
</td>
<td width="226" height="45">
<p align="left">dcomcnfg</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Computer Management</p>
</td>
<td width="226" height="45">
<p align="left">compmgmt.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Date and Time Properties</p>
</td>
<td width="226" height="45">
<p align="left">timedate.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">DDE Shares</p>
</td>
<td width="226" height="45">
<p align="left">ddeshare</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Device Manager</p>
</td>
<td width="226" height="45">
<p align="left">devmgmt.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Direct X Control Panel (If Installed)*</p>
</td>
<td width="226" height="45">
<p align="left">directx.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Direct X Troubleshooter</p>
</td>
<td width="226" height="45">
<p align="left">dxdiag</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Disk Cleanup Utility</p>
</td>
<td width="226" height="45">
<p align="left">cleanmgr</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Disk Defragment</p>
</td>
<td width="226" height="45">
<p align="left">dfrg.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Disk Management</p>
</td>
<td width="226" height="45">
<p align="left">diskmgmt.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Disk Partition Manager</p>
</td>
<td width="226" height="45">
<p align="left">diskpart</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Display Properties</p>
</td>
<td width="226" height="45">
<p align="left">control desktop</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Display Properties</p>
</td>
<td width="226" height="45">
<p align="left">desk.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Display Properties (w/Appearance Tab Preselected)</p>
</td>
<td width="226" height="45">
<p align="left">control color</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Dr. Watson System Troubleshooting Utility</p>
</td>
<td width="226" height="45">
<p align="left">drwtsn32</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Driver Verifier Utility</p>
</td>
<td width="226" height="45">
<p align="left">verifier</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Event Viewer</p>
</td>
<td width="226" height="45">
<p align="left">eventvwr.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">File Signature Verification Tool</p>
</td>
<td width="226" height="45">
<p align="left">sigverif</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Findfast</p>
</td>
<td width="226" height="45">
<p align="left">findfast.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Folders Properties</p>
</td>
<td width="226" height="45">
<p align="left">control folders</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Fonts</p>
</td>
<td width="226" height="45">
<p align="left">control fonts</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Fonts Folder</p>
</td>
<td width="226" height="45">
<p align="left">fonts</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Free Cell Card Game</p>
</td>
<td width="226" height="45">
<p align="left">freecell</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Game Controllers</p>
</td>
<td width="226" height="45">
<p align="left">joy.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Group Policy Editor (XP Prof)</p>
</td>
<td width="226" height="45">
<p align="left">gpedit.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Hearts Card Game</p>
</td>
<td width="226" height="45">
<p align="left">mshearts</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Iexpress Wizard</p>
</td>
<td width="226" height="45">
<p align="left">iexpress</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Indexing Service</p>
</td>
<td width="226" height="45">
<p align="left">ciadv.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Internet Properties</p>
</td>
<td width="226" height="45">
<p align="left">inetcpl.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">IP Configuration<br />
(Display Connection Configuration)</td>
<td width="226" height="45">ipconfig /all</td>
</tr>
<tr>
<td width="246" height="45">IP Configuration<br />
(Display DNS Cache Contents)</td>
<td width="226" height="45">ipconfig /displaydns</td>
</tr>
<tr>
<td width="246" height="45">IP Configuration<br />
(Delete DNS Cache Contents)</td>
<td width="226" height="45">ipconfig /flushdns</td>
</tr>
<tr>
<td width="246" height="45">IP Configuration<br />
(Release All Connections)</td>
<td width="226" height="45">ipconfig /release</td>
</tr>
<tr>
<td width="246" height="45">IP Configuration<br />
(Renew All Connections)</td>
<td width="226" height="45">ipconfig /renew</td>
</tr>
<tr>
<td width="246" height="45">IP Configuration<br />
(Refreshes DHCP &amp; Re-Registers DNS)</td>
<td width="226" height="45">ipconfig /registerdns</td>
</tr>
<tr>
<td width="246" height="45">IP Configuration<br />
(Display DHCP Class ID)</td>
<td width="226" height="45">ipconfig /showclassid</td>
</tr>
<tr>
<td width="246" height="45">IP Configuration<br />
(Modifies DHCP Class ID)</td>
<td width="226" height="45">ipconfig /setclassid</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Java Control Panel (If Installed)</p>
</td>
<td width="226" height="45">
<p align="left">jpicpl32.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Java Control Panel (If Installed)</p>
</td>
<td width="226" height="45">
<p align="left">javaws</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Keyboard Properties</p>
</td>
<td width="226" height="45">
<p align="left">control keyboard</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Local Security Settings</p>
</td>
<td width="226" height="45">
<p align="left">secpol.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Local Users and Groups</p>
</td>
<td width="226" height="45">
<p align="left">lusrmgr.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Logs You Out Of Windows</p>
</td>
<td width="226" height="45">
<p align="left">logoff</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Microsoft Chat</p>
</td>
<td width="226" height="45">
<p align="left">winchat</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Minesweeper Game</p>
</td>
<td width="226" height="45">
<p align="left">winmine</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Mouse Properties</p>
</td>
<td width="226" height="45">
<p align="left">control mouse</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Mouse Properties</p>
</td>
<td width="226" height="45">
<p align="left">main.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Network Connections</p>
</td>
<td width="226" height="45">
<p align="left">control netconnections</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Network Connections</p>
</td>
<td width="226" height="45">
<p align="left">ncpa.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Network Setup Wizard</p>
</td>
<td width="226" height="45">
<p align="left">netsetup.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">Notepad</td>
<td width="226" height="45">notepad</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Nview Desktop Manager (If Installed)</p>
</td>
<td width="226" height="45">
<p align="left">nvtuicpl.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Object Packager</p>
</td>
<td width="226" height="45">
<p align="left">packager</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">ODBC Data Source Administrator</p>
</td>
<td width="226" height="45">
<p align="left">odbccp32.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">On Screen Keyboard</p>
</td>
<td width="226" height="45">
<p align="left">osk</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Opens AC3 Filter (If Installed)</p>
</td>
<td width="226" height="45">
<p align="left">ac3filter.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Password Properties</p>
</td>
<td width="226" height="45">
<p align="left">password.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Performance Monitor</p>
</td>
<td width="226" height="45">
<p align="left">perfmon.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Performance Monitor</p>
</td>
<td width="226" height="45">
<p align="left">perfmon</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Phone and Modem Options</p>
</td>
<td width="226" height="45">
<p align="left">telephon.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Power Configuration</p>
</td>
<td width="226" height="45">
<p align="left">powercfg.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Printers and Faxes</p>
</td>
<td width="226" height="45">
<p align="left">control printers</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Printers Folder</p>
</td>
<td width="226" height="45">
<p align="left">printers</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Private Character Editor</p>
</td>
<td width="226" height="45">
<p align="left">eudcedit</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Quicktime (If Installed)</p>
</td>
<td width="226" height="45">
<p align="left">QuickTime.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Regional Settings</p>
</td>
<td width="226" height="45">
<p align="left">intl.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Registry Editor</p>
</td>
<td width="226" height="45">
<p align="left">regedit</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Registry Editor</p>
</td>
<td width="226" height="45">
<p align="left">regedit32</p>
</td>
</tr>
<tr>
<td width="246" height="45">Remote Desktop</td>
<td width="226" height="45">mstsc</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Removable Storage</p>
</td>
<td width="226" height="45">
<p align="left">ntmsmgr.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Removable Storage Operator Requests</p>
</td>
<td width="226" height="45">
<p align="left">ntmsoprq.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Resultant Set of Policy (XP Prof)</p>
</td>
<td width="226" height="45">
<p align="left">rsop.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Scanners and Cameras</p>
</td>
<td width="226" height="45">
<p align="left">sticpl.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Scheduled Tasks</p>
</td>
<td width="226" height="45">
<p align="left">control schedtasks</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Security Center</p>
</td>
<td width="226" height="45">
<p align="left">wscui.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Services</p>
</td>
<td width="226" height="45">
<p align="left">services.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Shared Folders</p>
</td>
<td width="226" height="45">
<p align="left">fsmgmt.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Shuts Down Windows</p>
</td>
<td width="226" height="45">
<p align="left">shutdown</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Sounds and Audio</p>
</td>
<td width="226" height="45">
<p align="left">mmsys.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Spider Solitare Card Game</p>
</td>
<td width="226" height="45">
<p align="left">spider</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">SQL Client Configuration</p>
</td>
<td width="226" height="45">
<p align="left">cliconfg</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">System Configuration Editor</p>
</td>
<td width="226" height="45">
<p align="left">sysedit</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">System Configuration Utility</p>
</td>
<td width="226" height="45">
<p align="left">msconfig</p>
</td>
</tr>
<tr>
<td width="246" height="45">System File Checker Utility (Scan Immediately)</td>
<td width="226" height="45">sfc /scannow</td>
</tr>
<tr>
<td width="246" height="45">System File Checker Utility (Scan Once At Next Boot)</td>
<td width="226" height="45">sfc /scanonce</td>
</tr>
<tr>
<td width="246" height="45">System File Checker Utility (Scan On Every Boot)</td>
<td width="226" height="45">sfc /scanboot</td>
</tr>
<tr>
<td width="246" height="45">System File Checker Utility (Return to Default Setting)</td>
<td width="226" height="45">sfc /revert</td>
</tr>
<tr>
<td width="246" height="45">System File Checker Utility (Purge File Cache)</td>
<td width="226" height="45">sfc /purgecache</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">System File Checker Utility (Set Cache Size to size x)</p>
</td>
<td width="226" height="45">
<p align="left">sfc /cachesize=x</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">System Properties</p>
</td>
<td width="226" height="45">
<p align="left">sysdm.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Task Manager</p>
</td>
<td width="226" height="45">
<p align="left">taskmgr</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Telnet Client</p>
</td>
<td width="226" height="45">
<p align="left">telnet</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">User Account Management</p>
</td>
<td width="226" height="45">
<p align="left">nusrmgr.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Utility Manager</p>
</td>
<td width="226" height="45">
<p align="left">utilman</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Windows Firewall</p>
</td>
<td width="226" height="45">
<p align="left">firewall.cpl</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Windows Magnifier</p>
</td>
<td width="226" height="45">
<p align="left">magnify</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Windows Management Infrastructure</p>
</td>
<td width="226" height="45">
<p align="left">wmimgmt.msc</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Windows System Security Tool</p>
</td>
<td width="226" height="45">
<p align="left">syskey</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Windows Update Launches</p>
</td>
<td width="226" height="45">
<p align="left">wupdmgr</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Windows XP Tour Wizard</p>
</td>
<td width="226" height="45">
<p align="left">tourstart</p>
</td>
</tr>
<tr>
<td width="246" height="45">
<p align="left">Wordpad</p>
</td>
<td width="296" height="45">
<p align="left">write</p>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/113-useful-windows-commands.html/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Hack GMail Search &#8211; Part 2</title>
		<link>http://www.mymindleaks.com/blog/archives/hacking-gmail-search-part-2.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/hacking-gmail-search-part-2.html#comments</comments>
		<pubDate>Fri, 29 Feb 2008 14:48:27 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[GMail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[search tips]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/hacking-gmail-search-part-2/</guid>
		<description><![CDATA[Courtesy:zackv You would have explored the features of GMail Search in my previous post Hack GMail &#8211; Part 1 In my previous post of hacking the search, you  would have explored the features on Labels, filters etc. On continuing the exploration, I came with my second post. This post lists down the features which are [...]]]></description>
			<content:encoded><![CDATA[<p align="center" style="font-size: xx-small"><img border="0" width="420" src="http://mymindleaks.com/wp-content/uploads/2008/02/image6.png" alt="image6 Hack GMail Search   Part 2" height="236" title="Hack GMail Search   Part 2" /></p>
<p align="center" style="font-size: xx-small"><em>Courtesy:</em><a href="http://www.flickr.com/photos/zackv/1057723987/"><em>zackv</em></a></p>
<p>You would have explored the features of GMail Search in my previous post <a href="http://mymindleaks.com/demystifying-gmail-search-part-1/">Hack GMail &#8211; Part 1</a></p>
<p>In my <a href="http://mymindleaks.com/demystifying-gmail-search-part-1/">previous post of hacking the search</a>, you  would have explored the features on Labels, filters etc. On continuing the exploration, I came with my second post. This post lists down the features which are not available in the simple search facility. Come one, lets explore the the advanced search features.</p>
<p><span id="more-340"></span></p>
<p>For typing the query, you need not open the simple search view, just directly type the query in the default query box.</p>
<p>In order to be a master in searching, you have to know the operators used for searching. To know brief about the operators have a visit to</p>
<p><a href="https://gmail.google.com/support/bin/answer.py?answer=7190">https://gmail.google.com/support/bin/answer.py?answer=7190</a></p>
<p>Also have a look on how to create filters and labels. This is a must use tool in Gmail, who fail to use these features, so pity on them. Please don’t miss it out.</p>
<p><a href="https://gmail.google.com/support/bin/answer.py?answer=6579">https://gmail.google.com/support/bin/answer.py?answer=6579</a></p>
<p>In the rest of this blog, you could find the functions of the operators in elaborate.</p>
<p><strong>from</strong>: used to specify the sender and fetches all the mails from the same</p>
<p>It is the same as the from in the simple search.</p>
<p><strong>Example 1</strong>: Extract all the mails from friends, say <strong><em>abc,abc1,abc2</em></strong>. Then your query goes like this.</p>
<p><strong></strong></p>
<blockquote><p><strong><em>from: abc@hotmail.com OR abc1@yahoo.com OR abc2@gmail.com</em></strong></p></blockquote>
<p><strong>Example 2</strong>: Extract all the mails from friends, say <strong><em>abc,abc1 </em></strong><em>and not from<strong> abc2</strong></em>. Then your query goes like this.</p>
<p><strong><em><br />
</em></strong><strong></strong></p>
<blockquote><p><strong><em>from: abc@hotmail.com OR abc1@yahoo.com -abc2@gmail.com</em></strong></p></blockquote>
<p><strong><em>Example 3: Extract all the mails from except from <strong><em>abc</em></strong></em></strong></p>
<p><strong></strong></p>
<blockquote><p><strong><em>from: -abc</em></strong></p></blockquote>
<p><strong>Example 3</strong>: Extract all the mails from except from <strong><em>yahoo or gmail</em></strong></p>
<p><strong></strong></p>
<blockquote><p><strong><em>from: -yahoo.com </em></strong><em>–<strong>gmail.com</strong></em></p></blockquote>
<p><strong>to</p>
<p>: used to specify the recipient and fetches all the mails from the same. It is the same to the </strong><strong>TO </strong>in the simple search.</p>
<p><strong>Example 4</strong>: Extract all the mails sent to friends, say <strong><em>abc,abc1,abc2</em></strong>. Then your query goes like this.</p>
<blockquote><p><strong><em>to: abc@hotmail.com OR abc1@yahoo.com OR abc2@gmail.com</em></strong></p></blockquote>
<p><strong></strong></p>
<p><strong>Example 5</strong>: Extract all the mails sent to groups i.e mails your received from groups.</p>
<p><strong><em><br />
</em></strong><strong></strong></p>
<blockquote><p><strong><em>to: yahoogroups.com</em></strong></p></blockquote>
<p><strong><em>Example 6: Similarly exclude the mails from yahoogrou</em><em>ps</em></strong></p>
<p><strong></strong></p>
<blockquote><p><strong><em>to: -yahoogroups.com</em></strong></p></blockquote>
<p><strong>subject: </strong>Search<strong> </strong>for the subject words</p>
<p><strong>Example 7</strong>: Search for a single word</p>
<p><strong></strong></p>
<blockquote><p><strong><em>subject: Chennai</em></strong></p></blockquote>
<p><strong>Example 8</strong>: Search for more than one word. In this example to include all mails with subject Chennai and Mumbai and reject mails with subject kolkatta</p>
<p><strong></strong></p>
<blockquote><p><strong><em>Subject: ( Chennai OR Mumbai ) subject: –kolkatta</em></strong></p></blockquote>
<p><strong>cc and bcc: </strong>This operator function similar to the <strong><em>to:</em></strong> and <strong><em>from:</em></strong> operator. It is used to give the email address or just the account name or just the service provider address to fetch the mails.</p>
<p><strong>Example 9</strong>: Fetch all the mails which you had CCed or BCCed</p>
<blockquote><p><strong><em>cc:abc@yahoo.com<br />
bcc:abc1@yahoo.com</em></strong></p></blockquote>
<p><strong></strong></p>
<p><strong>label: </strong>Search the mails which holds a label.</p>
<p><strong>Example 10</strong>: Let me assume that you have labels and have applied to some mails. Let me say you have label called “<em>Family</em>” for the mails which you receive from your family members. Now you are to search for the mails where only your mom had sent. Here I am considering that both dad and mom uses the same mail id.</p>
<blockquote><p><strong><em>label:family from:familyhead@gmail.com mom OR dad</em></strong></p></blockquote>
<p><strong></strong></p>
<p><strong>Example 11</strong>: Another example to show is from my inbox. I have grouped all the fun related mails from various groups such as Nidokidos, myWorldPals etc. under the label named “<strong><em>Others</em></strong>”. Now all the mails arriving from that group would be fixed with the label “<strong><em>Others</em></strong>”. Now I need to search the mails from this label, which has photos regarding “<em>Katrina</em>”.</p>
<p><strong></strong></p>
<blockquote><p><strong><em>label:Others (subject:nidokidos OR myworldpals)</em></strong></p></blockquote>
<p>Another example which rejects all mails with subject beautifulIndia.</p>
<p><strong></strong></p>
<blockquote><p><strong><em>label:Others subject:-BeautifulIndia</em></strong></p></blockquote>
<p><strong>Note: </strong>If you have label names separated with spaces, then use hyphen(-) while using in searches. The Hyphen, i.e the negation operator is different from this hyphen used in the label names.</p>
<p>E.g.: If you have a label called “<em>Fun Mails</em>”, then while searching use as <strong><em>label:Fun-Mails.</em></strong> Here note that there is no space in between Fun &amp; Mails. If you introduce a space, then the query will search for the mails with label Fun and rejects all mails with words Mails.</p>
<p>i.e. <strong><em>label:Fun –Mails</em></strong></p>
<p>It is possible to apply one or more label name to a single mail. Example, if you have received a mail from your friend relating to a job matter, then you would apply labels both Friend and Jobs. In such cases, most of the mails may posses more than one label. Now in such cases to search mails pertaining to particular label and rejecting the mails the label you are not in need. The simple figments is to use Negate Operator i.e Hypen.</p>
<p><strong>Example 12</strong>: You need to extract all mails from your friend which don’t have job information i.e don’t have label named JOBS.</p>
<p><strong></strong></p>
<blockquote><p><strong><em>label:friend –label:JOBS</em></strong></p></blockquote>
<p><strong>Example 13:</strong> Search all the mails from your friend with attachment, which has only Word document or PDF files as the attachments.<br />
<strong></strong></p>
<blockquote><p><strong><em>label:Friend has:attachment filename:(pdf OR doc)</em></strong></p></blockquote>
<p><strong>in: </strong>used to search mail in the specific location i.e Inbox, Archives, Trash, Sent Items etc. If you are in need to search locations except Inbox, you could use this operator.</p>
<p>This operator had really helped me to search in my case, as I had about 30,000+ mails in my trash.</p>
<p><strong>Example 14</strong>: Searching your trash box for a which you have deleted it unknowingly. All mails from your friend that had moved to trash.</p>
<blockquote><p><strong><em>in:trash label:friend</em></strong></p></blockquote>
<p><strong></strong></p>
<p>Now you can combine all the above said operators to search the mail.</p>
<p><strong>Example 15</strong>: Search your trash and archives which you are not confident about it’s location which has an attachment of pdf file from your company.</p>
<blockquote><p><strong><em>in:anywhere has:attachment filename:pdf</em></strong></p></blockquote>
<p><strong></strong></p>
<p><strong>is: </strong>Is operator is helps you to fetch mails that have read, unread , starred etc.</p>
<p><strong>Example 16:</strong> To fetch all mails that you haven’t read that your friend had sent.</p>
<p><strong></strong></p>
<blockquote><p><strong><em>label:friend is:unread</em></strong></p></blockquote>
<p>Try with <strong><em>is:read is:unread</em></strong>, yeah you can guess what would be the result.</p>
<p><strong></strong></p>
<blockquote><p><strong><em>is:read</em></strong> – gives all the mails that have read</p>
<p><strong><em>is:unread</em></strong> – gives all the mails that haven’t read</p>
<p><strong><em>is:starred</em></strong> – gives all the mails that have been starred in spite you read or not.</p></blockquote>
<p><strong>after:, before: </strong>These operators are date operators which are used to input the query based on date values. The date format which I have aforesaid in the first part as YYYY/MM/DD is used.</p>
<p><strong>Example 17: </strong>To search all the mails which have arrived after June 4<sup>th</sup> 2005. <strong>to till date</strong>.<strong></strong></p>
<p><strong></strong></p>
<blockquote><p><strong><em>after:2005/06/05</em></strong></p></blockquote>
<p><strong>Example 18:</strong> To search all the mails arrived on particular date, use both the operators</p>
<p><strong><em><br />
</em></strong><strong></strong></p>
<blockquote><p><strong><em>after:2005/09/10 before:2005/09/11</em></strong></p></blockquote>
<p><strong><em>If you use <strong><em>after:2005/09/10 before:2005/09/10</em></strong>, will gives you all the mails.</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/hacking-gmail-search-part-2.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Request a New IP address?</title>
		<link>http://www.mymindleaks.com/blog/archives/how-to-request-a-new-ip-address.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/how-to-request-a-new-ip-address.html#comments</comments>
		<pubDate>Sat, 16 Feb 2008 10:06:36 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ip address]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[tips-tricks]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/how-to-request-a-new-ip-address/</guid>
		<description><![CDATA[Request a new IP address from your ISP server. Here’s how to do it in windows: 1. Click Start 2. Click run 3. In the run box type cmd.exe and click OK 4. When the command prompt opens type the following. ENTER after each new line. ipconfig /flushdns ipconfig /release ipconfig /renew exit]]></description>
			<content:encoded><![CDATA[<p>Request a new IP address from your ISP server.</p>
<p>Here’s how to do it in windows:<br />
1. Click Start<br />
2. Click run<br />
3. In the run box type cmd.exe and click OK<br />
4. When the command prompt opens type the following. ENTER after each new line.</p>
<blockquote><p>ipconfig /flushdns<br />
ipconfig /release<br />
ipconfig /renew<br />
exit</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/how-to-request-a-new-ip-address.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
