<?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>Reflection Technology</title>
	<atom:link href="http://www.reflections.co.nz/index.php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.reflections.co.nz</link>
	<description>the meanderings of an inquisitive mind ...</description>
	<lastBuildDate>Thu, 15 Oct 2009 11:09:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=3.0-alpha</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Evening in Pisa</title>
		<link>http://www.reflections.co.nz/index.php/archives/117</link>
		<comments>http://www.reflections.co.nz/index.php/archives/117#comments</comments>
		<pubDate>Thu, 15 Oct 2009 11:09:33 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/index.php/archives/117</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.reflections.co.nz/wordpress/my-uploads/l_640_480_CA154DA1-644E-43B8-91C7-29CE9E2797F0.jpeg"><img src="http://www.reflections.co.nz/wordpress/my-uploads/l_640_480_CA154DA1-644E-43B8-91C7-29CE9E2797F0.jpeg" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/117/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fast on-line Italian (and other language) dictionary</title>
		<link>http://www.reflections.co.nz/index.php/archives/97</link>
		<comments>http://www.reflections.co.nz/index.php/archives/97#comments</comments>
		<pubDate>Thu, 13 Nov 2008 08:13:21 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[Learning Italian]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/index.php/archives/97</guid>
		<description><![CDATA[I&#8217;ve been using www.wordreference.com when translating or trying to find a word in something I&#8217;ve been reading.
It&#8217;s an excellent dictionary and also has verb conjugation &#8211; it&#8217;s easy to use and fast.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using <a title="www.wordreference.com" href="www.wordreference.com">www.wordreference.com</a> when translating or trying to find a word in something I&#8217;ve been reading.</p>
<p>It&#8217;s an excellent dictionary and also has verb conjugation &#8211; it&#8217;s easy to use and fast.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/97/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reason for Images not appearing in YAP (DVI viewer) for LaTex</title>
		<link>http://www.reflections.co.nz/index.php/archives/94</link>
		<comments>http://www.reflections.co.nz/index.php/archives/94#comments</comments>
		<pubDate>Sun, 09 Nov 2008 10:55:39 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[Latex]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/?p=94</guid>
		<description><![CDATA[I&#8217;ve just sorted out why some images wouldn&#8217;t appear in a LaTex document I&#8217;ve been working on. The old hands will probably laugh at his (I&#8217;m a newbie to LaTex) but there weren&#8217;t any errors, just a big hole were the picture should be. This was the latest version of MikTex (2.7.2).
This doesn&#8217;t work:
\begin{figure}
  % [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just sorted out why some images wouldn&#8217;t appear in a LaTex document I&#8217;ve been working on. The old hands will probably laugh at his (I&#8217;m a newbie to LaTex) but there weren&#8217;t any errors, just a big hole were the picture should be. This was the latest version of MikTex (2.7.2).</p>
<p>This doesn&#8217;t work:</p>
<pre>\begin{figure}
  % Requires \usepackage{graphicx}
  \center{
      \includegraphics[width=0.7\textwidth]{"pictures/Factors.eps"}
      \caption{Randomly generated schemes}
      \label{ScatterplotOfFFactors}
  }
\end{figure}</pre>
<p>Whereas this is fine:</p>
<pre>\begin{figure}
  % Requires \usepackage{graphicx}
  \center{
      \includegraphics[width=0.7\textwidth]{pictures/Factors.eps}
      \caption{Randomly generated schemes}
      \label{ScatterplotOfFFactors}
  }
\end{figure}</pre>
<p>What&#8217;s the difference? It&#8217;s the quotes around the filename ( <em>{pictures/Factors.eps}</em> vs<em> {<strong>&#8220;</strong>pictures/Factors.eps<strong>&#8220;</strong>}</em> ) &#8211; in the first one. I&#8217;d been thinking of the filename as a string &#8211; but in LaTex it&#8217;s not.</p>
<p>If I add quotes the file compiles without error and displays in the DVI viewer not a gap is left where the image should be &#8211; remove the quotes and the image displays correctly.</p>
<p>Initially I thought that it was having problems with images in a subdirectory (they&#8217;re in a directory called &#8220;pictures&#8221;) but that was only one of many dead-ends.</p>
<p>This might save someone some time (and sanity). When you&#8217;re writing a thesis, the last thing you want is to waste time figuring why the tools won&#8217;t work.</p>
<p>This is another example of something that happens so often when programming &#8211; <em>seeing what you expect to see</em>. None of the examples had quotes, mine did, and I just didn&#8217;t see them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/94/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Flea &#8211; a minimalist CW transceiver</title>
		<link>http://www.reflections.co.nz/index.php/archives/89</link>
		<comments>http://www.reflections.co.nz/index.php/archives/89#comments</comments>
		<pubDate>Mon, 20 Oct 2008 08:53:19 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Ham Radio]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/index.php/archives/89</guid>
		<description><![CDATA[Here&#8217;s an amazingly simple 1W morse code transceiver in the tradition
of the Pixie but with much more output power and a narrower bandwidth
receiver (the oscillator crystal forms part of the receive input
filter):br /br /http://ea3fxf.googlepages.com/fleabr /br /The xtal is in the receive path so the bandwidth is quite narrow and will stop broadcast interference. A PCB [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an amazingly simple 1W morse code transceiver in the tradition<br />
of the Pixie but with much more output power and a narrower bandwidth<br />
receiver (the oscillator crystal forms part of the receive input<br />
filter):br /br /http://ea3fxf.googlepages.com/fleabr /br /The xtal is in the receive path so the bandwidth is quite narrow and will stop broadcast interference. A PCB layout is included. The page is just a summary &#8211; have a look at the linked .DOC file for the full article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/89/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Last Lecture</title>
		<link>http://www.reflections.co.nz/index.php/archives/86</link>
		<comments>http://www.reflections.co.nz/index.php/archives/86#comments</comments>
		<pubDate>Sun, 04 May 2008 01:54:09 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/index.php/archives/86</guid>
		<description><![CDATA[I&#8217;ve just watched &#8220;The Last Lecture&#8221; by Randy Pausch. 

Carnegie Mellon Professor Randy Pausch, who is dying from pancreatic cancer, gave his last lecture at the university Sept. 18, 2007, before a packed McConomy Auditorium. In his moving talk, &#8220;Really Achieving Your Childhood Dreams,&#8221; Pausch talked about his lessons learned and gave advice to students [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just watched &#8220;The Last Lecture&#8221; by Randy Pausch. </p>
<blockquote><p>
Carnegie Mellon Professor Randy Pausch, who is dying from pancreatic cancer, gave his last lecture at the university Sept. 18, 2007, before a packed McConomy Auditorium. In his moving talk, &#8220;Really Achieving Your Childhood Dreams,&#8221; Pausch talked about his lessons learned and gave advice to students on how to achieve their own career and personal goals. For more, visit www.cmu.edu/randyslecture.
</p></blockquote>
<p>It&#8217;s very hard to know what to say, except &#8220;watch it&#8221; &#8230;</p>
<blockquote><p>
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/ji5_MqicxSo&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/ji5_MqicxSo&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/86/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Robots are coming &#8230;</title>
		<link>http://www.reflections.co.nz/index.php/archives/81</link>
		<comments>http://www.reflections.co.nz/index.php/archives/81#comments</comments>
		<pubDate>Fri, 02 May 2008 10:02:46 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/index.php/archives/81</guid>
		<description><![CDATA[Really great (and real) video of a robot that can reassemble itself when kicked apart.



YouTube &#8211; Modular robot reassembles when kicked apart
]]></description>
			<content:encoded><![CDATA[<p>Really great (and real) video of a robot that can reassemble itself when kicked apart.</p>
<blockquote><p>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/uIn-sMq8-Ls&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/uIn-sMq8-Ls&amp;hl=en" wmode="transparent"></embed></object>
</p></blockquote>
<p><a href="http://www.youtube.com/watch?v=uIn-sMq8-Ls">YouTube &#8211; Modular robot reassembles when kicked apart</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/81/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why learn Morse Code?</title>
		<link>http://www.reflections.co.nz/index.php/archives/77</link>
		<comments>http://www.reflections.co.nz/index.php/archives/77#comments</comments>
		<pubDate>Sat, 26 Apr 2008 07:52:33 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[Ham Radio]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/?p=77</guid>
		<description><![CDATA[Why learn morse code you may ask. Well here&#8217;s one person&#8217;s thoughts, and seeing as I&#8217;m quoting all below (excerpted from http://www.barc.org/2005/sparc_apr.pdf), he&#8217;s quoting ZL1AN, so that makes two, and I&#8217;m looking forward to when this works for me:
Morse Therapy
&#8211; Dr. Gary Bold, ZL1AN; excerpted by Eric Falkof, K1NUN
There was a magazine devoted to the [...]]]></description>
			<content:encoded><![CDATA[<p>Why learn morse code you may ask. Well here&#8217;s one person&#8217;s thoughts, and seeing as I&#8217;m quoting all below (excerpted from <a title="http://www.barc.org/2005/sparc_apr.pdf" href="http://www.barc.org/2005/sparc_apr.pdf" target="_self">http://www.barc.org/2005/sparc_apr.pdf</a>), he&#8217;s quoting ZL1AN, so that makes two, and I&#8217;m looking forward to when this works for me:</p>
<p style="padding-left: 30px;"><strong>Morse Therapy</strong><br />
&#8211; Dr. Gary Bold, ZL1AN; excerpted by Eric Falkof, K1NUN<br />
There was a magazine devoted to the preservation and glorification of Morse Code, <em>Morsum Magnificat</em><br />
(<a title="www.morsum.demon.uk" href="www.morsum.demon.uk">www.morsum.demon.uk</a>).</p>
<p style="padding-left: 30px;">Excerpting an excerpt from Number 41, August, 1995, I found this article that summarized my feelings about CW.</p>
<blockquote style="padding-left: 30px;"><p>“…I know that if I go to bed now [after a stimulating period of intense thought and writing], I’ll just lie awake and the ideas I have to propound in the morning will rush madly about, echoing and muttering in my brain. My solution has always been to fire up the TS-520, limber up the Brown Brothers paddle, put on the cans and exchange CW for a while with someone on 20 metres. After a while the Morse begins to decode itself automatically, and little ASCII strings march quietly and effortlessly through my head.</p>
<p>My pulse-rate slows, and the network theorems and Fourier transforms of my professional life go away. I have almost become one with the radio, a bionic post-processor tacked on the end of the audio chain. CW is the purest form of communication I know, a ‘mind-to-mind’ linkage. The words appear right inside my head, words that were never spoken; uncorrupted by accents, verbal peculiarities, oddities of vocal intonation. They leave no room for other thoughts. Almost like a form of meditation. Very therapeutic. After thirty minutes of that, my metabolism has been slowed right down and I am relaxed. I can go to bed and sleep comes.”<br />
by Gary Bold &#8211; ZL1AN.</p></blockquote>
<p>Gary&#8217;s website <a title="http://www.physics.auckland.ac.nz/staff/geb/loads.htm" href="http://www.physics.auckland.ac.nz/staff/geb/loads.htm">http://www.physics.auckland.ac.nz/staff/geb/loads.htm</a> has some excellent articles but the one I use most is his Morse tutoring program that, very sensibly, works most on the characters that are the least frequent and the hardest to learn and has some subtle and ingenious features that has bought me back to it year after erractic year, until I can finally copy code off the air. The program is called <em>NZART Morse Tutor &#8211; I recommend it highly.</em></p>
<p>Giovanni &#8211; ZL2GX</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/77/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My first CW contact</title>
		<link>http://www.reflections.co.nz/index.php/archives/75</link>
		<comments>http://www.reflections.co.nz/index.php/archives/75#comments</comments>
		<pubDate>Fri, 25 Apr 2008 10:48:05 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[Ham Radio]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/?p=75</guid>
		<description><![CDATA[At last &#8211; I&#8217;ve finally gone on the air using CW (morse code). My first contact was with ZL2MS on 80M (3525KHz). I hadn&#8217;t intended to go on the air but the signal was strong, readable &#8211; why not I thought &#8211; got to start sometime &#8230;
Then I found out why all the tutorials on [...]]]></description>
			<content:encoded><![CDATA[<p>At last &#8211; I&#8217;ve finally gone on the air using CW (morse code). My first contact was with ZL2MS on 80M (3525KHz). I hadn&#8217;t intended to go on the air but the signal was strong, readable &#8211; why not I thought &#8211; got to start sometime &#8230;</p>
<p>Then I found out why all the tutorials on morse code contacts say &#8220;write it out first&#8221;  &#8211; I hadn&#8217;t of course. Brain turned to mush but Peter was amazingly merciful. The next one will be better, but it&#8217;s a buzz anyway.</p>
<p>Morse code is such a simple mode but somehow, elegant.</p>
<p>Giovanni &#8211; ZL2GX</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/75/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Red Photos from Wired.com</title>
		<link>http://www.reflections.co.nz/index.php/archives/74</link>
		<comments>http://www.reflections.co.nz/index.php/archives/74#comments</comments>
		<pubDate>Sat, 15 Mar 2008 02:00:04 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/index.php/archives/74</guid>
		<description><![CDATA[Top 10 Red Photos, Decided by You
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wired.com/culture/art/multimedia/2008/03/gallery_top_10_red_photo?slide=8&amp;slideView=10" >Top 10 Red Photos, Decided by You</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/74/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subversion, Delphi &amp; Global Ignore List</title>
		<link>http://www.reflections.co.nz/index.php/archives/73</link>
		<comments>http://www.reflections.co.nz/index.php/archives/73#comments</comments>
		<pubDate>Mon, 10 Mar 2008 14:29:24 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/index.php/archives/73</guid>
		<description><![CDATA[I use Subversion with Delphi and omitting various files type is a good idea (there&#8217;s no point in committing DCU files, backup files &#8230;).
You can do this by going to to TortoiseSVN/Settings in the right-click menu and giving a list of patterns for files you DON&#8217;T want included in the &#34;Global Ignore Pattern&#34;:
Here&#8217;s my list [...]]]></description>
			<content:encoded><![CDATA[<p>I use Subversion with Delphi and omitting various files type is a good idea (there&#8217;s no point in committing DCU files, backup files &#8230;).</p>
<p>You can do this by going to to TortoiseSVN/Settings in the right-click menu and giving a list of patterns for files you DON&#8217;T want included in the &quot;Global Ignore Pattern&quot;:</p>
<p>Here&#8217;s my list (should be all on one line):</p>
<pre>

~*.doc #*.*# *.aux *.bak *.bbl *.bin *.blg *.cfg 

*.dcu *.dll *.dof *.ddp  *.drc *.dsk *.dsm *.dvi 

*.err *.ess[Mm]odel *.exe *.idx *.ilg *.ind *.lo 

*.lof *.log *.la *.lst *.map *.o *.obj *.old *.out 

*.rej *.rsm *.suo *.sav [Tt]humbs.db *.tmp *.toc 

*.tps *.~*&#160; *.*~ #*# .*&#160; .*~ *~. bin cvs CVS obj
</pre>
<p>The bin/cvs/CVS are directories, the rest files. Obviously there are ignored extensions for files other than those related to Delphi.</p>
<p>I put a text file containing this list in the repository, so it&#8217;s easy to have the same exclusions when setting up TortoiseSVN a new machine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/73/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zeitgeist &#8211; the Movie (free)</title>
		<link>http://www.reflections.co.nz/index.php/archives/72</link>
		<comments>http://www.reflections.co.nz/index.php/archives/72#comments</comments>
		<pubDate>Fri, 07 Mar 2008 23:53:09 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/index.php/archives/72</guid>
		<description><![CDATA[Saw a reference to it on www.slashdot.org (I think) &#8211; looked interesting but can&#8217;t remember why &#8211; will add more comments later Zeitgeist &#8211; The Movie, 2007
]]></description>
			<content:encoded><![CDATA[<p>Saw a reference to it on <a href="http://www.slashdot.org">www.slashdot.org</a> (I think) &#8211; looked interesting but can&#8217;t remember why &#8211; will add more comments later <br/><a href="http://zeitgeistmovie.com/dloads.htm" >Zeitgeist &#8211; The Movie, 2007</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/72/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TinyP2P &#8211; a Peer-to-Peer Client-Server in 15 lines of Python</title>
		<link>http://www.reflections.co.nz/index.php/archives/68</link>
		<comments>http://www.reflections.co.nz/index.php/archives/68#comments</comments>
		<pubDate>Sun, 02 Mar 2008 13:58:34 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Great Books & Movies]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/index.php/archives/68</guid>
		<description><![CDATA[Here&#8217;s a delightfully simple (well concise anyway) peer-to-peer program &#8211; it can run as either a client or a server and if wrapped (as the original was) is only 15 lines of Python.
It&#8217;s also a very good example of how concise python can be:
Annotated TinyP2P &#8211; Annotated version:
&#160;&#160; http://www.exonsoft.com/~kochin/TinyP2P/tinyp2p.html
Original Version:
# tinyp2p.py 1.0 (documentation at http://freedom-to-tinker.com/tinyp2p.html)
import [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a delightfully simple (well concise anyway) peer-to-peer program &#8211; it can run as either a client or a server and if wrapped (as the original was) is only 15 lines of Python.</p>
<p>It&#8217;s also a very good example of how concise python can be:</p>
<p><strong>Annotated TinyP2P &#8211; Annotated version:</strong><br />
&nbsp;&nbsp;<a href="http://www.exonsoft.com/~kochin/TinyP2P/tinyp2p.html"> http://www.exonsoft.com/~kochin/TinyP2P/tinyp2p.html</a></p>
<p><strong>Original Version:</strong></p>
<pre style="font-size:8pt;"># tinyp2p.py 1.0 (documentation at http://freedom-to-tinker.com/tinyp2p.html)
import sys, os, SimpleXMLRPCServer, xmlrpclib, re, hmac # (C) 2004, E.W. Felten
ar,pw,res = (sys.argv,lambda u:hmac.new(sys.argv[1],u).hexdigest(),re.search)
pxy,xs = (xmlrpclib.ServerProxy,SimpleXMLRPCServer.SimpleXMLRPCServer)
def ls(p=""):return filter(lambda n:(p=="")or res(p,n),os.listdir(os.getcwd()))
if ar[2]!="client": # license: http://creativecommons.org/licenses/by-nc-sa/2.0
myU,prs,srv = ("http://"+ar[3]+":"+ar[4], ar[5:],lambda x:x.serve_forever())
def pr(x=[]): return ([(y in prs) or prs.append(y) for y in x] or 1) and prs
def c(n): return ((lambda f: (f.read(), f.close()))(file(n)))[0]
f=lambda p,n,a:(p==pw(myU))and(((n==0)and pr(a))or((n==1)and [ls(a)])or c(a))
def aug(u): return ((u==myU) and pr()) or pr(pxy(u).f(pw(u),0,pr([myU])))
pr() and [aug(s) for s in aug(pr()[0])]
(lambda sv:sv.register_function(f,"f") or srv(sv))(xs((ar[3],int(ar[4]))))
for url in pxy(ar[3]).f(pw(ar[3]),0,[]):
for fn in filter(lambda n:not n in ls(), (pxy(url).f(pw(url),1,ar[4]))[0]):
(lambda fi:fi.write(pxy(url).f(pw(url),2,fn)) or fi.close())(file(fn,"wc"))</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/68/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GeekMenu &#8211; An advanced PortableApps Launcher</title>
		<link>http://www.reflections.co.nz/index.php/archives/67</link>
		<comments>http://www.reflections.co.nz/index.php/archives/67#comments</comments>
		<pubDate>Sun, 24 Feb 2008 22:34:50 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[Desktop Software]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/index.php/archives/67</guid>
		<description><![CDATA[GeekMenu is a rather polished PortableApps Menu variant that  looks really nice.
It can automatically mount a Truecrypt drive or (on untrusted computers) NOT mount, or mount read-only. Plus lots of other features.
To quote
&#8220;geek.menu is a fork of the PortableApps.com Menu, adding support for
security features, internet searching capabilities, category support,
autorun apps, and much, much more. [...]]]></description>
			<content:encoded><![CDATA[<p>GeekMenu is a rather polished <a href="http://www.portableApps.com">PortableApps</a> Menu variant that  looks really nice.</p>
<p>It can automatically mount a Truecrypt drive or (on untrusted computers) NOT mount, or mount read-only. Plus lots of other features.</p>
<p>To quote</p>
<p style="padding-left: 30px;"><i>&#8220;geek.menu is a fork of the PortableApps.com Menu, adding support for<br />
security features, internet searching capabilities, category support,<br />
autorun apps, and much, much more. It can serve as a replacement for<br />
the portableApps menu.&#8221;</i></p>
<p>Download from Sourceforge <a href="http://sourceforge.net/project/showfiles.php?group_id=209346">http://sourceforge.net/project/showfiles.php?group_id=209346</a></p>
<p>The portableApps system is intended to allow you to take all the programs you usually use with you on a USB flash drive and not rely (or save setting) on the computer you&#8217;re using.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/67/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wake on LAN mini HOWTO: Tools</title>
		<link>http://www.reflections.co.nz/index.php/archives/66</link>
		<comments>http://www.reflections.co.nz/index.php/archives/66#comments</comments>
		<pubDate>Sun, 17 Feb 2008 22:56:48 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/?p=66</guid>
		<description><![CDATA[Wake on LAN mini HOWTO: Tools
or use the Linux command
etherwake -b mac-no-of-lan-interface-on-computer
]]></description>
			<content:encoded><![CDATA[<p><a href="http://gsd.di.uminho.pt/jpo/software/wakeonlan/mini-howto/wol-mini-howto-3.html">Wake on LAN mini HOWTO: Tools</a></p>
<p>or use the Linux command</p>
<p>etherwake -b <b>mac</b>-no-of-lan-interface-on-computer</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/66/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Essential Vi Commands</title>
		<link>http://www.reflections.co.nz/index.php/archives/65</link>
		<comments>http://www.reflections.co.nz/index.php/archives/65#comments</comments>
		<pubDate>Sun, 17 Feb 2008 21:21:03 +0000</pubDate>
		<dc:creator>Giovanni</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.reflections.co.nz/?p=65</guid>
		<description><![CDATA[Vi is one of the ordinal editors on Unix, and now Linux machines. It has a minimal interface but can be very fast and is great if you have a slow connection.
The Wikipedia article http://en.wikipedia.org/wiki/Ed_(text_editor)
has a very nice 10 line summary.
This note is primarily so I can remember where to find it again :-)
]]></description>
			<content:encoded><![CDATA[<p>Vi is one of the ordinal editors on Unix, and now Linux machines. It has a minimal interface but can be very fast and is great if you have a slow connection.</p>
<p>The Wikipedia article <a target="_self" title="http://en.wikipedia.org/wiki/Ed_(text_editor)" href="http://en.wikipedia.org/wiki/Ed_(text_editor)">http://en.wikipedia.org/wiki/Ed_(text_editor)</a></p>
<p>has a very nice 10 line summary.</p>
<p>This note is primarily so I can remember where to find it again :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.reflections.co.nz/index.php/archives/65/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
