<?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>Tech.It.2.Me-&#62;{By.Anton.Perez} &#187; How-to</title>
	<atom:link href="http://antonperez.com/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://antonperez.com</link>
	<description>Technical satisfaction guaranteed...</description>
	<lastBuildDate>Fri, 13 Apr 2012 03:32:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Switching Netflix account on Wii</title>
		<link>http://antonperez.com/2012/03/25/switching-netflix-account-on-wii/</link>
		<comments>http://antonperez.com/2012/03/25/switching-netflix-account-on-wii/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 17:51:32 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Nintendo]]></category>
		<category><![CDATA[Wii]]></category>

		<guid isPermaLink="false">http://antonperez.com/?p=1389</guid>
		<description><![CDATA[Here are the steps that you need to do to switch the account. 1. From the Wii home screen click on round &#8220;Wii&#8221; (Options) button in bottom left corner 2. Click &#8220;Data Management&#8221; 3. Click &#8220;Save Data&#8221; 4. Click &#8220;Wii&#8221; 5. Find &#8220;Netflix Channel&#8221; (red square with letter N), click on it, select &#8220;Erase&#8221; and then confirm [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the steps that you need to do to switch the account.</p>
<p>1. From the Wii home screen click on round &#8220;Wii&#8221; (Options) button in bottom left corner<br />
2. Click &#8220;Data Management&#8221;<br />
3. Click &#8220;Save Data&#8221;<br />
4. Click &#8220;Wii&#8221;<br />
5. Find &#8220;Netflix Channel&#8221; (red square with letter N), click on it, select &#8220;Erase&#8221; and then confirm &#8220;Yes&#8221;<br />
6. Try to find more &#8220;Netflix Channel&#8221; icons in that area, scroll to next screen if required (there could be more than one saved block)<br />
7. Return to Wii menu and start Netflix Channel. You should get &#8220;Are you a Netflix member?&#8221; question and when you answer &#8220;Yes&#8221; it will show you activation code, which you can use at netflix.com/activate.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2012/03/25/switching-netflix-account-on-wii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel: Insert multiple rows every other row</title>
		<link>http://antonperez.com/2012/03/12/excel-insert-multiple-rows-every-other-row/</link>
		<comments>http://antonperez.com/2012/03/12/excel-insert-multiple-rows-every-other-row/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 00:19:24 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://antonperez.com/?p=1378</guid>
		<description><![CDATA[The key is to use a macro.&#160; To do so, hit Alt+F11, then create a new macro and add the code below. Once added, select the worksheet you’d like to process, change the “17” below (1 if to process all rows), then run it. That’s it. Sub Insert_Blank_Rows() &#160;&#160;&#160; Dim Last As Integer, oRow As [...]]]></description>
			<content:encoded><![CDATA[<p>The key is to use a macro.&#160; To do so, hit <strong>Alt</strong>+<strong>F11</strong>, then create a new macro and add the code below. Once added, select the worksheet you’d like to process, change the “17” below (1 if to process all rows), then run it.</p>
<p>That’s it.</p>
<p><font style="style" face="Courier New">Sub Insert_Blank_Rows()</font></p>
<p><font style="style" face="Courier New">&#160;&#160;&#160; Dim Last As Integer, oRow As Integer     <br />&#160;&#160;&#160; &#8216;Count and select rows to process      <br />&#160;&#160;&#160; Last = Range(&quot;A&quot; &amp; Rows.Count).End(xlUp).row      <br />&#160;&#160;&#160; <br />&#160;&#160;&#160; &#8217;17 is the last row to process (at the top)      <br />&#160;&#160;&#160; For oRow = Last To 17 Step -1      <br />&#160;&#160;&#160;&#160; If Not Cells(oRow, 1).Value = &quot;&quot; Then      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;Copy the line below to as many row insert you need      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;in this case, it was 3 row inserts      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Cells(oRow, 1).EntireRow.Insert      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Cells(oRow, 1).EntireRow.Insert      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Cells(oRow, 1).EntireRow.Insert      <br />&#160;&#160;&#160;&#160;&#160;&#160; End If      <br />&#160;&#160;&#160; Next oRow</font></p>
<p><font style="style" face="Courier New">End Sub</font>    <br />&#160;&#160;&#160; </p>
<p><font face="Courier New"></font></p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2012/03/12/excel-insert-multiple-rows-every-other-row/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure IIS to allow downloading .dat files</title>
		<link>http://antonperez.com/2012/03/08/configure-iis-to-allow-downloading-dat-files/</link>
		<comments>http://antonperez.com/2012/03/08/configure-iis-to-allow-downloading-dat-files/#comments</comments>
		<pubDate>Thu, 08 Mar 2012 22:03:21 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://antonperez.com/?p=1376</guid>
		<description><![CDATA[Note: This is for IIS 6.0. Open IIS Manager. Browse to the IIS Site or subfolder where the .DAT files are Right-click on that site or subfolder and select Properties Select the HTTP Headers tab Click on the MIME Types button In the extension box, type &#34;.dat” In the MIME Type box, type &#34;application/octet-stream&#34; Click [...]]]></description>
			<content:encoded><![CDATA[<p><a name="uds-search-results"></a></p>
<h4><font color="#333333">Note: This is for IIS 6.0.</font></h4>
<ol>
<li>Open IIS Manager.</li>
<li>Browse to the IIS Site or subfolder where the .DAT files are</li>
<li>Right-click on that site or subfolder and select <em>Properties</em></li>
<li>Select the <em>HTTP Headers</em> tab</li>
<li>Click on the <em>MIME Types </em>button</li>
<li>In the extension box, type &quot;<em>.dat</em>”</li>
<li>In the MIME Type box, type &quot;<em>application/octet-stream</em>&quot;</li>
<li>Click OK</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2012/03/08/configure-iis-to-allow-downloading-dat-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remotely reboot Linksys WRT54G</title>
		<link>http://antonperez.com/2012/03/02/remotely-reboot-linksys-wrt54g/</link>
		<comments>http://antonperez.com/2012/03/02/remotely-reboot-linksys-wrt54g/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 20:15:52 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://antonperez.com/?p=1374</guid>
		<description><![CDATA[I had the need the reboot my Linksys WRT54G router remotely. Unfortunately, the web interface is not like DD-WRT where a reboot button is available; however, there IS a hidden page. 1. Login into the web admin page, which is by default: http://192.168.1.1. 2. Add reset.htm, as in http://192.168.1.1/reset.htm. 3. Click &#8220;Yes&#8221; to reboot. 4. [...]]]></description>
			<content:encoded><![CDATA[<p>I had the need the reboot my Linksys WRT54G router remotely. Unfortunately, the web interface is not like DD-WRT where a reboot button is available; however, there IS a hidden page.</p>
<p>1. Login into the web admin page, which is by default: http://192.168.1.1.<br />
2. Add reset.htm, as in http://192.168.1.1/reset.htm.<br />
3. Click &#8220;Yes&#8221; to reboot.<br />
4. Voila!</p>
<p>Another method is to back up your config, the restore it &#8212; but do this with caution!</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2012/03/02/remotely-reboot-linksys-wrt54g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add box.net as a local drive</title>
		<link>http://antonperez.com/2012/02/27/how-to-add-box-net-as-a-local-drive/</link>
		<comments>http://antonperez.com/2012/02/27/how-to-add-box-net-as-a-local-drive/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 20:20:21 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Resource]]></category>

		<guid isPermaLink="false">http://antonperez.com/?p=1368</guid>
		<description><![CDATA[1. Press the Windows key + E or go to the Start menu, right-click on Computer and select Open. 2. Right-click on Computer again and select Add A Network Location, which will prompt the respective wizard. 3. Click Next on the welcoming screen. 4. Then select the second option, Choose a custom network location.&#160; And [...]]]></description>
			<content:encoded><![CDATA[<p>1. Press the Windows key + E or go to the Start menu, right-click on <em>Computer </em>and select<em> Open.</em></p>
<p>2. Right-click on <em>Computer</em> again and select <em>Add A Network Location</em>, which will prompt the respective wizard.</p>
<p>3. Click <em>Next </em>on the welcoming screen.</p>
<p>4. Then select the second option, <em>Choose a custom network location</em>.&#160; And type the following: <em><a href="https://www.box.net/dav">https://www.box.net/dav</a></em></p>
<p>5. If everything goes well, you’ll get a popup window asking you for your credentials. Type your username, which is the email you use to log in to Box.net, as well as your password.</p>
<p>6. Now you can type a name for you to easily identify this location, before clicking <em>Next.</em></p>
<p>7. You can choose whether to or not to check the box to launch the network location on Windows Explorer after exiting the wizard.</p>
<p>8. Click on <em>Finish</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2012/02/27/how-to-add-box-net-as-a-local-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

