<?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>Java Thinking &#187; Windows</title>
	<atom:link href="http://www.javathinking.com/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.javathinking.com</link>
	<description>Java and software development related thoughts</description>
	<lastBuildDate>Thu, 02 Feb 2012 12:16:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>grails-jsunit-0.1</title>
		<link>http://www.javathinking.com/2008/03/grails-jsunit-01/</link>
		<comments>http://www.javathinking.com/2008/03/grails-jsunit-01/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 13:13:05 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.javathinking.com/?p=80</guid>
		<description><![CDATA[This information is out of date &#8211; please see http://www.grails.org/jsUnit+plugin
grails-jsunit provides an easy and convenient way to utilize the JsUnit framework to your grails application. JsUnit allows you to unit test JavaScript functions in a similar way to using JUnit for Java.
To install the plugin, use:

grails install-plugin http://www.javathinking.com/grails/grails-jsunit-plugin/0.1/grails-jsunit-0.1.zip

This plugin adds the following new scripts:
create-jsunit-test
Generates a [...]]]></description>
			<content:encoded><![CDATA[<p></p><blockquote><p>This information is out of date &#8211; please see <a href="http://www.grails.org/jsUnit+plugin">http://www.grails.org/jsUnit+plugin</a></p></blockquote>
<p>grails-jsunit provides an easy and convenient way to utilize the <a href="http://www.jsunit.net/" target="_blank">JsUnit</a> framework to your grails application. JsUnit allows you to unit test JavaScript functions in a similar way to using JUnit for Java.</p>
<p>To install the plugin, use:</p>
<blockquote><p>
grails install-plugin http://www.javathinking.com/grails/grails-jsunit-plugin/0.1/grails-jsunit-0.1.zip
</p></blockquote>
<p>This plugin adds the following new scripts:</p>
<p><strong>create-jsunit-test</strong><br />
Generates a new empty jsunit test. Supply the path of the test you want to create, relative to &#8216;test/jsunit/tests&#8217;.<br />
Example use:</p>
<blockquote><p>grails create-jsunit-test registration/mytest</p></blockquote>
<p>creates</p>
<blockquote><p>${basedir}/test/jsunit/tests/registration/mytest.html</p></blockquote>
<p><strong>run-jsunit</strong><br />
Runs JsUnit in the specified browser. Specify the path to your browser as a command line parameter i.e.</p>
<blockquote><p>grails run-jsunit /usr/bin/firefox</p></blockquote>
<p>or, if the executable is on the path you would just need</p>
<pre>grails run-jsunit firefox</pre>
<p>In your application.properties, you can specify:</p>
<blockquote><p>jsunit.autoRun=true</p></blockquote>
<p>When executing this script, it overwrites ${basedir}/test/jsunit/suiteAll.html to build a suite that references all tests in ${basedir}/test/jsunit/test.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.javathinking.com/2008/03/grails-jsunit-01/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows remote control</title>
		<link>http://www.javathinking.com/2007/03/windows-remote-control/</link>
		<comments>http://www.javathinking.com/2007/03/windows-remote-control/#comments</comments>
		<pubDate>Sat, 03 Mar 2007 02:46:30 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.javathinking.com/?p=10</guid>
		<description><![CDATA[It helps to be able to remote control another computer &#8211; for example if you need to install or fix something on your parents/family/friends computer and you cannot travel to their location.
One-Click VNC makes it easy.
Essentially, the person that is doing the controlling:

If you are using a router with your internet connection you need to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>It helps to be able to remote control another computer &#8211; for example if you need to install or fix something on your parents/family/friends computer and you cannot travel to their location.</p>
<p>One-Click VNC makes it easy.</p>
<p>Essentially, the person that is doing the controlling:</p>
<ol>
<li>If you are using a router with your internet connection you need to set up port forwarding for port 5500 to your computer.</li>
<li>Run &#8216;vncviewer.exe -listen&#8217; on your computer.</li>
<li>Send your routers external ip address to the person to be controlled.</li>
</ol>
<p>Now, at the other end, for the person who will be controlled:</p>
<ol>
<li>Update settings.ini with the controllers external ip address</li>
<li>Run OneClickVNC.exe.</li>
</ol>
<p>Now the client talks to the controllers routers external address which forwards to your internal ip address and you are done.See <a href="http://www.vncscan.com/vs/oneclickVNC.htm" target="_blank" title="One-Click VNC">One-Click VNC</a> for the full story&#8230;</p>
<p>Note, Windows Live Messenger allows remote controlling of computers you are chatting with (the user can select Actions/Request remote assistance and then pick from any of their online contacts),  but I haven&#8217;t had much luck with it. I&#8217;m not sure if it is the router configuration at either end, or just the network connection. I have used it successfully before, when there wasn&#8217;t a router at the other end.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.javathinking.com/2007/03/windows-remote-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

