<?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>Nate&#039;s blog &#187; Windows</title>
	<atom:link href="http://naterocks.com/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://naterocks.com</link>
	<description>OMG! Its a blog!</description>
	<lastBuildDate>Sun, 20 Nov 2011 17:17:07 +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>Compiling and Running Java using Notepad++ on Windows</title>
		<link>http://naterocks.com/2011/01/30/compiling-and-running-java-using-notepad-on-windows/</link>
		<comments>http://naterocks.com/2011/01/30/compiling-and-running-java-using-notepad-on-windows/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 04:19:50 +0000</pubDate>
		<dc:creator>Nathan Schloss</dc:creator>
				<category><![CDATA[Anouncements]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://naterocks.com/?p=385</guid>
		<description><![CDATA[I spent sometime today trying to compile and then run Java using Notepad++ so I figured that I would write<a href="http://naterocks.com/2011/01/30/compiling-and-running-java-using-notepad-on-windows/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>I spent sometime today trying to compile and then run Java using <a href="http://notepad-plus-plus.org/" target="_blank">Notepad++</a> so I figured that I would write a guide explaining how to do it.</p>
<p><em>For those of you who don&#8217;t know <a href="http://notepad-plus-plus.org/" target="_blank">Notepad++</a> is one of my favorite text editors.</em></p>
<p>Step 1) Download and install the Java JDK from <a href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">http://www.oracle.com/technetwork/java/javase/downloads/index.html</a></p>
<p>Step 2) Setup your path variables</p>
<p>Step 2.1) Go to your control panel and search for path</p>
<p>Step 2.2) Click on edit the system environment variables</p>
<p>Step 2.3) Click on environment variables</p>
<p>Step 2.4) Find your path setting</p>
<p><a href="http://naterocks.com/wp-content/uploads/2011/01/edit-path-in-windows-7.png"><img class="alignnone size-full wp-image-386" title="edit path in windows 7" src="http://naterocks.com/wp-content/uploads/2011/01/edit-path-in-windows-7.png" alt="" width="443" height="481" /></a></p>
<p>Step 2.5) Click on your path variable and then click on the edit button</p>
<p>Step 2.6) At the end of your path variable add the following: &#8220;;C:\Program Files\Java\jdk%JDK-VERSION%\bin&#8221; where %JDK-VERSION% is your JDK version number. (You can also find this by browsing to c:/program files/java and looking at the folders there)</p>
<p>Step 3) Log off your computer and then log back in. (You can also reboot if you want, but that is unnecessary)</p>
<p>Step 4) Somewhere on your computer make a new text file and add the following to it:</p>
<blockquote><p>
cd /d &#8220;%1&#8243;<br />
javac %2 -Xlint:all<br />
if errorlevel 1 goto finish<br />
java %3<br />
:finish<br />
pause
</p></blockquote>
<p>Step 5) Rename this file to CompileJava.bat (if the file name does not end it .txt before you rename you will need to do <a href="http://www.fileinfo.com/help/windows-show-extensions.html" target="_blank">this </a>first)</p>
<p>Step 6) Copy this file to C:/Program Files/Notepad++</p>
<p>Step 7) Hit the &#8220;F5&#8243; key and type the following into the text field <em>$(NPP_DIRECTORY)\CompileJava.bat &#8220;$(CURRENT_DIRECTORY)&#8221; &#8220;$(FILE_NAME)&#8221; &#8220;$(NAME_PART)&#8221;</em></p>
<p><em><a href="http://naterocks.com/wp-content/uploads/2011/01/run-java-from-notepad++.png"><img class="alignnone size-full wp-image-387" title="run java from notepad++" src="http://naterocks.com/wp-content/uploads/2011/01/run-java-from-notepad++.png" alt="" width="321" height="205" /></a></em></p>
<p>Step 8 ) Click on save and name the command something like &#8220;CompileJava&#8221;, you can also set up a key command if you like.</p>
<p>Step 9) You can now access your command from the &#8220;Run&#8221; menu</p>
<p><a href="http://naterocks.com/wp-content/uploads/2011/01/run-java-from-notepad++ss.png"><img class="alignnone size-full wp-image-388" title="run java from notepad++ss" src="http://naterocks.com/wp-content/uploads/2011/01/run-java-from-notepad++ss.png" alt="" width="371" height="347" /></a></p>
<p>Thats it, your now ready to create and run Java code from Notepad++! One important note though, only Java programs with default package will compile and run.</p>
<h5><em>Cried goes to <a href="http://techtravelthink.blogspot.com/2009/03/java-compile-and-run-in-notepad.html" target="_blank">Tech Travel Think</a> for the .bat code.</em></h5>
]]></content:encoded>
			<wfw:commentRss>http://naterocks.com/2011/01/30/compiling-and-running-java-using-notepad-on-windows/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Funny Keyboard Shortcuts 2</title>
		<link>http://naterocks.com/2011/01/02/funny-keyboard-shortcuts-2/</link>
		<comments>http://naterocks.com/2011/01/02/funny-keyboard-shortcuts-2/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 09:35:58 +0000</pubDate>
		<dc:creator>Nathan Schloss</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[Evil]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://naterocks.com/?p=376</guid>
		<description><![CDATA[So in 2008 I made a post about funny keyboard shortcuts. Here is an updated version of that post. Like the old<a href="http://naterocks.com/2011/01/02/funny-keyboard-shortcuts-2/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>So in 2008 I made a post about <a href="http://naterocks.com/2008/10/09/funny-keyboard-short-cuts/">funny keyboard shortcuts</a>. Here is an updated version of that post.</p>
<p>Like the old post these will only work on windows (windows 7 to be more specific).</p>
<p>1) &#8220;Windows Key&#8221; + &#8220;+&#8221; then &#8220;Windows Key&#8221; + &#8220;-&#8221; then &#8220;Ctrl&#8221; + &#8220;Alt&#8221; +&#8221;I&#8221; &#8211; This will invert the colors on the screen.</p>
<p>2) &#8220;Windows Key&#8221; + &#8220;+&#8221; then &#8220;Ctrl&#8221; + &#8220;Alt&#8221; + &#8220;F&#8221; &#8211; This will make it so the screen is magnified.</p>
<p>3) &#8220;Left Alt&#8221; + &#8220;Left Shift&#8221; + &#8220;Num Lock&#8221; &#8211; This will make it so the number pad can move the mouse around. It can be fun to enable this and then play around with the number pad when someone else is using the computer to confuse them.</p>
<p>4) &#8220;Windows Key&#8221; + &#8220;R&#8221; then type in &#8220;shutdown -f -t 0&#8243; &#8211; This will enable you to shutdown the computer quickly. It will also make it so windows won&#8217;t wait for programs to close, it will shutdown right then and there.</p>
<p>5) &#8220;Shift&#8221; then &#8220;Shift&#8221; then &#8220;Shift&#8221; then &#8220;Shift&#8221; then &#8220;Shift- This will turn on &#8220;Sticky Keys&#8221; which will make it so when anyone presses the &#8220;Shift&#8221;, &#8220;Ctrl&#8221;, &#8220;Alt&#8221;, or &#8220;Windows Key&#8221; and then lets go of the key the computer will act as if they are still holding the key down.</p>
]]></content:encoded>
			<wfw:commentRss>http://naterocks.com/2011/01/02/funny-keyboard-shortcuts-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Zune 4.0 Software</title>
		<link>http://naterocks.com/2009/09/15/new-zune-4-0-software/</link>
		<comments>http://naterocks.com/2009/09/15/new-zune-4-0-software/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 01:25:09 +0000</pubDate>
		<dc:creator>Nathan Schloss</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Stuff]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Xbox 360]]></category>
		<category><![CDATA[Zune]]></category>

		<guid isPermaLink="false">http://naterocks.com/?p=321</guid>
		<description><![CDATA[Today Zune realised the new Zune 4.0 software. Here are my initial impressions&#8230;. (this is by no means a full<a href="http://naterocks.com/2009/09/15/new-zune-4-0-software/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p><a href="http://naterocks.com/wp-content/uploads/2009/09/zunebig.png"><img class="alignnone size-full wp-image-322" title="zunebig" src="http://naterocks.com/wp-content/uploads/2009/09/zunebig.png" alt="zunebig" width="683" height="521" /></a></p>
<p>Today Zune realised the new Zune 4.0 software. Here are my initial impressions&#8230;. (this is by no means a full review)</p>
<p>I like:</p>
<p><a href="http://naterocks.com/wp-content/uploads/2009/09/zunemini.png"><img class="alignnone size-full wp-image-324" title="zunemini" src="http://naterocks.com/wp-content/uploads/2009/09/zunemini.png" alt="zunemini" width="170" height="250" /></a><a rel="attachment wp-att-324" href="http://naterocks.com/2009/09/15/new-zune-4-0-software/zunemini/"></a></p>
<ul>
<li>The new Zune mini player (Zune 1.0 had one and it was one of the best things about the program, but for some reason they got rid of it in Zune 2.o, I am happy that its back)</li>
</ul>
<p><a href="http://naterocks.com/wp-content/uploads/2009/09/zunebar.png"><img class="alignnone size-full wp-image-323" title="zunebar" src="http://naterocks.com/wp-content/uploads/2009/09/zunebar.png" alt="zunebar" width="266" height="31" /></a></p>
<ul>
<li>The new Zune mini bar. (If you mouse over it you get a display a lot a lot like the mini player)</li>
<li>The Smart DJ feature. (Its a feature that&#8217;s really neat and is original to Zune)</li>
</ul>
<p>What I do not like:</p>
<ul>
<li>Movie rental. (The fact that some movies can only be rented. The fact that you can not rent them and play them on your Xbox + PC and the fact that older Zunes cannot play them.)</li>
<li>The new app store. (Not clear how individuals can submit stuff and only new Zunes are supported.)</li>
</ul>
<p>My overall impression:</p>
<p>The software got some much needed improvements and took some of the best things about Zune 1.0 and put them back into the software. But something that I think that Zune got really wrong is the fact that they got rid a lot of the support for older Zunes. Even thought the Zune HD is dramatically different I am sure that old Zunes would be able to play movies and certain apps just fine. The fact that older Zunes were so well supported was something that separated Zune from Apple and made them way better.</p>
<p><a rel="attachment wp-att-324" href="http://naterocks.com/2009/09/15/new-zune-4-0-software/zunemini/"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://naterocks.com/2009/09/15/new-zune-4-0-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hal Microsoft&#8217;s Project Natal</title>
		<link>http://naterocks.com/2009/06/01/hal-microsofts-project-natal/</link>
		<comments>http://naterocks.com/2009/06/01/hal-microsofts-project-natal/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 01:31:23 +0000</pubDate>
		<dc:creator>Nathan Schloss</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://naterocks.com/?p=279</guid>
		<description><![CDATA[Hal 9000(Heuristically programmed ALgorithmic Computer)&#8230;Microsoft&#8217;s Project NatalThey both track your body movements and use your voice. They both even can<a href="http://naterocks.com/2009/06/01/hal-microsofts-project-natal/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>Hal 9000(<strong>H</strong>euristically programmed <strong>AL</strong>gorithmic Computer)&#8230;Microsoft&#8217;s Project Natal<br />They both track your body movements and use your voice. They both even can reconogise you&#8230; scary.</p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="265" id="viddler"><param name="movie" value="http://www.viddler.com/simple_on_site/44771808" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/simple_on_site/44771808" width="437" height="265" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler" ></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://naterocks.com/2009/06/01/hal-microsofts-project-natal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xbox 360</title>
		<link>http://naterocks.com/2008/12/08/xbox-360/</link>
		<comments>http://naterocks.com/2008/12/08/xbox-360/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 03:10:15 +0000</pubDate>
		<dc:creator>Nathan Schloss</dc:creator>
				<category><![CDATA[Anouncements]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Stuff]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows Live]]></category>
		<category><![CDATA[Xbox 360]]></category>
		<category><![CDATA[Zune]]></category>

		<guid isPermaLink="false">http://naterocks.com/?p=236</guid>
		<description><![CDATA[During the past few days you may have been thinking, &#8220;Why has Nate not made any new posts&#8221;. Well dear<a href="http://naterocks.com/2008/12/08/xbox-360/" class="searchmore">Read the Rest...</a><div class="clr"></div>]]></description>
			<content:encoded><![CDATA[<p>During the past few days you may have been thinking, &#8220;Why has Nate not made any new posts&#8221;. Well dear readers, I recently made the mistake of buying an Xbox 360 have spend much of my free time on it. Below is my gamer card.</p>
<p><iframe src="http://gamercard.xbox.com/n8is1337.card" scrolling="no" frameBorder="0" height="140" width="204">Put your gamertag here too.</iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://naterocks.com/2008/12/08/xbox-360/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

