<?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>thorx.net &#187; Uncategorized</title>
	<atom:link href="http://blog.thorx.net/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.thorx.net</link>
	<description>...to confuse and unexpect?</description>
	<lastBuildDate>Wed, 30 Jun 2010 05:32:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
  <link>http://blog.thorx.net</link>
  <url>http://blog.thorx.net/wp-uploads/2009/06/sunriselogo_32_white.png</url>
  <title>thorx.net</title>
</image>
		<item>
		<title>building a better atq</title>
		<link>http://blog.thorx.net/2010/06/building-a-better-atq/</link>
		<comments>http://blog.thorx.net/2010/06/building-a-better-atq/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 05:27:02 +0000</pubDate>
		<dc:creator>nemo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[interface]]></category>

		<guid isPermaLink="false">http://blog.thorx.net/?p=175</guid>
		<description><![CDATA[I was frustrated at the poor information available by atq (what&#8217;s that? You&#8217;ll tell me WHEN you&#8217;re running stuff, but not WHAT you&#8217;re running? This seems a little out of order!)
In fact, atq is literally out of order &#8211; I guess the idea is that you pipe it through sort. very very old-school thinking  [...]]]></description>
			<content:encoded><![CDATA[<p>I was frustrated at the poor information available by atq (what&#8217;s that? You&#8217;ll tell me WHEN you&#8217;re running stuff, but not WHAT you&#8217;re running? This seems a little out of order!)</p>
<p>In fact, atq is literally out of order &#8211; I guess the idea is that you pipe it through sort. very very old-school thinking <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>At the other end of the scale, <code>at -c</code> provides an information overload of EVERYTHING about the job. (60+ lines of env? yikes. I don&#8217;t need to know that most of the time!)</p>
<p>So where is the simple and useful summary that I&#8217;d genuinely expect of atq?<br />
ie, not only the queued command times, but WHAT those commands are &#8211; one per line.</p>
<p>As a result, here is my simple &#8220;batq&#8221; &#8211; a better atq <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre>#!/bin/bash

# a better atq
#
# returns the original atq output in bold
# AND IN ADDITION, ALSO:
# * returns items sorted
# * the intended working directory
# * the command to be run
#
        # TODO:
        # $command is not robust - will fail on multiple lines

function do_extraqinfo() {
    while read job ; do
        jobid=$(echo $job | awk '{print $1}')
        detail=$(at -c $jobid)
        dir=$(echo "$detail" | egrep ^cd | sed -e 's/cd \(.*\) || {/\1/g')
        command=$(echo "$detail" | tail -1)
        # alter the following line if the bold offends you
        tput bold ; echo -n "$job" ; tput sgr0
        echo "  $dir    $command"
    done
} 

atq | sort | do_extraqinfo</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.thorx.net/2010/06/building-a-better-atq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is wrong with the Geek Pride Manifesto</title>
		<link>http://blog.thorx.net/2010/05/what-is-wrong-with-the-geek-pride-manifesto/</link>
		<comments>http://blog.thorx.net/2010/05/what-is-wrong-with-the-geek-pride-manifesto/#comments</comments>
		<pubDate>Wed, 26 May 2010 01:05:36 +0000</pubDate>
		<dc:creator>nemo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[nemo]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://blog.thorx.net/?p=162</guid>
		<description><![CDATA[So, May 25 huh? Geek Pride Day! Or&#8230; is it?
The wikipedia article on Geek Pride day lists a &#8220;manifesto&#8221; of sorts, or a &#8220;geek code&#8221;(see below)  for Geek Pride Day&#8230;
&#8230;here it is:
Rights:

The right to be even geekier.
The right to not leave your house.
The right to not like football or any other sport.
The right to [...]]]></description>
			<content:encoded><![CDATA[<p>So, May 25 huh? Geek Pride Day! Or&#8230; is it?</p>
<p>The <a href="http://en.wikipedia.org/wiki/Geek_Pride_Day">wikipedia article on Geek Pride day</a> lists a &#8220;manifesto&#8221; of sorts, or a &#8220;geek code&#8221;(see below)  for Geek Pride Day&#8230;</p>
<p>&#8230;here it is:</p>
<blockquote><p>Rights:</p>
<ol>
<li>The right to be even geekier.</li>
<li>The right to not leave your house.</li>
<li>The right to not like football or any other sport.</li>
<li>The right to associate with other nerds.</li>
<li>The right to have few friends (or none at all).</li>
<li>The right to have as many geeky friends as you want.</li>
<li>The right to be out of style.</li>
<li>The right to be overweight and near-sighted.</li>
<li>The right to show off your geekiness.</li>
<li>The right to take over the world.</li>
</ol>
<p>Responsibilities:</p>
<ol>
<li>Be a geek, no matter what.</li>
<li>Try to be nerdier than anyone else.</li>
<li>If there is a discussion about something geeky, you must give your opinion.</li>
<li>To save and protect all geeky material.</li>
<li>Do everything you can to show off geeky stuff as a &#8220;museum of geekiness.&#8221;</li>
<li>Don&#8217;t be a generalized geek. You must specialize in something.</li>
<li>Attend every nerdy movie on opening night and buy every geeky book before anyone else.</li>
<li>Wait in line on every opening night. If you can go in costume or at least with a related T-shirt, all the better.</li>
<li>Don’t waste your time on anything not related to geekdom.</li>
<li>Try to take over the world!</li>
</ol>
</blockquote>
<p>So, I have a problem with this. Not all of it, and mostly the &#8216;responsibilities&#8217; section&#8230;</p>
<p>But I get ahead of myself. Here is where I disagree&#8230;</p>
<p><span id="more-162"></span></p>
<p><em>Right #5. The right to have few friends (or none at all).</em></p>
<p>So, in response to this, some images.</p>
<p><img class="alignnone" title="Geek definition" src="http://s-ak.buzzfed.com/static/imagebuzz/terminal01/2009/9/6/7/nerd-venn-diagram-9420-1252236207-2.jpg" alt="" width="434" height="407" /><img class="alignnone" title="Geek etc 2" src="http://surelyyourenotserious.com/share/Blog/GeekGraph.gif" alt="" width="400" height="400" /><br />
[Thanks to <a href="http://www.buzzfeed.com/scott/nerd-venn-diagram">http://www.buzzfeed.com/scott/nerd-venn-diagram</a> for what seems to be the original Geek Venn diagram, and <a href="http://www.surelyyourenotserious.com/blog/?p=920">http://www.surelyyourenotserious.com/blog/?p=920</a> for the spectrum diagram]</p>
<p>So back to it.</p>
<p>Whilst Right #5 states that a geek may have no friends &#8211; which is fine as a choice, it also implies that geeks may have no friends due to a lack of social grace. &#8230;and that, imho, doesn&#8217;t sync with the very definition of a geek. (don&#8217;t get me wrong, I have nothing against nerds by the definitions given here. I have nerdy friends and geeky friends, and I have nerdy moments and geeky moments. But it&#8217;s to be a geek that I aspire, and take pride in)</p>
<p>Nonetheless, it&#8217;s a relatively minor issue and harder to defend (but lets me include pretty pictures <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Moving on to the responsibilities. Overall, they mix &#8216;geek&#8217; and &#8216;nerd&#8217; in annoying and inconsistent ways&#8230;</p>
<blockquote><p><em>2. Try to be nerdier than anyone else.</em></p></blockquote>
<p>Surely being a geek is largely about individuality. I don&#8217;t mind competitive behaviour, but I object to it being a responsibility. You cannot mandate competitiveness.</p>
<blockquote><p><em>3. If there is a discussion about something geeky, you must give your opinion.</em></p></blockquote>
<p>MUST?! No. Really not. To be allowed to care passionately and state your case, sure. But I object to &#8220;must&#8221; here.</p>
<blockquote><p><em>4. To save and protect all geeky material.</em></p></blockquote>
<p>Even though I myself am a hoarder and packrat, I think to call it a *responsibility* is too wide reaching. Also, &#8220;all&#8221;?? See point #6</p>
<blockquote><p><em>5. Do everything you can to show off geeky stuff as a &#8220;museum of geekiness.&#8221;</em></p></blockquote>
<p>Again, why is SHOWING OFF now a responsibility? Be passionate, sure. But sometimes collecting is a private endeavour. This links back to #3.</p>
<blockquote><p><em>6. Don&#8217;t be a generalized geek. You must specialize in something.</em></p></blockquote>
<p>This&#8230; I kind of agree with. Kind of. But still think it&#8217;s a bit strong for a RESPONSIBILITY&#8230;</p>
<p>Also, this contradicts several other responsibilities listed herein. According to this I have to specialise, but according to #4 and #7, #8, I have to care about ALL and EVERY geeky thing&#8230;</p>
<blockquote><p><em>7. Attend every nerdy movie on opening night and buy every geeky book before anyone else.</em></p></blockquote>
<p>Is this a competition again? sheesh. See point #6</p>
<p>For the record, it&#8217;s possible to be a geek without caring about movies or books!</p>
<blockquote><p><em>8. Wait in line on every opening night. If you can go in costume or at least with a related T-shirt, all the better.</em></p></blockquote>
<p>EVERY? See points #6 and #7. *sigh*</p>
<blockquote><p><em>9. Don’t waste your time on anything not related to geekdom.</em></p></blockquote>
<p>Limitations is not the geek way. Defining some things as being not geek and therefore a waste of time &#8211; is a limitation!</p>
<p>Damn the man. Do what you want.</p>
<h2>And another thing&#8230;</h2>
<p>In accordance with responsibility #6 (and yes, I recognise the irony of citing responsibility #6 which I myself object to), isn&#8217;t &#8220;Geek Pride&#8221; kind of, well, GENERIC?</p>
<p>So on May 25 I celebrate <strong><a href="http://en.wikipedia.org/wiki/Towel_day">TOWEL DAY</a></strong>. A day for Hitchhiker and Douglas Adams fans to celebrate this specific fandom. A geek fandom. In fact, a specialised geek fandom&#8230;</p>
<p>So don&#8217;t celebrate Geek Pride Day. Celebrate your geek pride by celebrating your passion when, how, and who with you choose in a manner appropriate for your geekiness. Here are some ideas:</p>
<ul>
<li>March 14: Pi day (3.14) &#8211; for Math geeks</li>
<li>May 4: Star Wars &#8220;May the forth be with you&#8221; day.</li>
<li>May 25: Towel Day (2 weeks after the death of Bop Ad), and also Star Wars day (the day the original Star Wars was released. Apparently also it&#8217;s a Discworld (of Terry Pratchett) day: The Glorious 25 May</li>
<li>July 22: Pi day (22/7 = a closer approximation to π  than 3.14)</li>
<li>September 19: Talk Like a Pirate Day</li>
</ul>
<p>And&#8230; Don&#8217;t Panic if you disagree. I&#8217;m open to discussion, clarification, and reinspecting my opinions <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>PS: &#8220;Geek Code&#8221;? I think that is more correctly this old gem &lt;a href=&#8221;http://www.geekcode.com/&#8221;&gt;http://www.geekcode.com&lt;/a&gt; &#8211; for which I have a collection of old codes somewhere, and in fact I&#8217;d support it&#8217;s re-emergance as a part of the Geek Pride Day, since that would help expand awareness of different elements of geek nature <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thorx.net/2010/05/what-is-wrong-with-the-geek-pride-manifesto/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>OK Go &#8211; the video reviews</title>
		<link>http://blog.thorx.net/2010/03/ok-go-the-video-reviews/</link>
		<comments>http://blog.thorx.net/2010/03/ok-go-the-video-reviews/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 14:45:37 +0000</pubDate>
		<dc:creator>nemo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[band]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.thorx.net/?p=155</guid>
		<description><![CDATA[So OK Go are a fun and quirky group, quickly gaining renown for their quirky videos.
How did they get to this point?
Here is my trip down OK Go video discovery lane
I was, of course, assisted in this by the existance of all the OK Go videos on one neat site. Conveniently, it&#8217;s their own: http://www.okgo.net/media/videos/
Also [...]]]></description>
			<content:encoded><![CDATA[<p>So <a href="http://www.okgo.net/">OK Go</a> are a fun and quirky group, quickly gaining renown for their quirky videos.</p>
<p>How did they get to this point?</p>
<p>Here is my trip down OK Go video discovery lane<span id="more-155"></span></p>
<p>I was, of course, assisted in this by the existance of all the OK Go videos on one neat site. Conveniently, it&#8217;s their own: <a href="http://www.okgo.net/media/videos/">http://www.okgo.net/media/videos/</a></p>
<p>Also note: I will mainly be focusing on their video/visual style and evolution, with only passing commentary on the music. Finally, I was assisted in this by my silent partner in review, and her comments will occasionally find note here too.</p>
<p>&#8230;And so, on to the chronological order&#8230; <em>[edit: it's not really chronological order, it's just the order they appear on their site. This page is basically a snapshot of the conversations my friend and I had about these videos, as we watched them in the order presented to us by the OK Go site]</em></p>
<h3>What To Do</h3>
<p>There is not much to say about this early clip. It looks for all the world like label-dictated style for an upcoming group who has yet to define themselves. It features a pretty &#8216;mainstream indy&#8217; style. Simple setting, shot in black and white. No effects</p>
<p>Notable lyric: &#8220;could have been a genius if you had an ax to grind&#8217;</p>
<h3>You&#8217;re So Damn Hot</h3>
<p>Another clip which looks for all the world like a label formula. Clips from live shows on the road interspersed with flash-inspired animation. Nothing to write home about.</p>
<h3>Get Over It</h3>
<p>Yet another label formula clip. This time they&#8217;re in the center of an empty hall, performing, with occasionally clip-art shots of popculture items to sync with the lyrics.</p>
<p>Notable video moment: the slow motion ping pong. This felt like the first moment of OK Go&#8217;s future video quirkery coming out.</p>
<h3>Don&#8217;t Ask Me (Dance Booth version)</h3>
<p>This is clearly when OK Go started to cut their own creative teeth, as it were. It has a low budget self-made feel to it, with the band and random extras singing/dancing or just showing off (or even looking bored sometimes even!) to the music.</p>
<p>It&#8217;s gorgeous and smile inducing.</p>
<h3>Don&#8217;t Ask Me</h3>
<p>This label version of the same song is totally formulaic, and could have been produced for any generic band. Black and white, with simple colour patterns in the background, and don&#8217;t forget the cookie cutter dancing girl! (you will though)</p>
<p>It&#8217;s boring and yawn inducing.</p>
<p>Notable anything? Sorry, nothing at all.</p>
<h3>Do What You Want</h3>
<p>This video is a little bit dizzy inducing with it&#8217;s rapid motion hyperactive  bullettime-esque motion pans. I&#8217;d guess that band had creative input, but still played within the label marketing system. We get a generic band-surround-by-girls setting -  but the wallpaper (more of this next clip) behind them is quirky, and the girls are real (not fake models). But yet we still get a girls-dancing-in-slow-motion scene&#8230;</p>
<h3>Do What You Want (Wallpaper version)</h3>
<p>Taking their own lyrical advice, we have here an amazing example of the band striking out and just making what they want. At least, that&#8217;s how it feels! The concept is simple &#8211; the band and some performers, all performing&#8230; stuff!</p>
<p>The frenetic editing pace suits perfectly &#8211; but the masterpiece is the outfits. Everyone and everything (within reason) is covered in the same gorgeously hideous wallpaper pattern. It adorns clothes, instruments, the floor, the wall, furniture, segways&#8230;</p>
<p>Watching this, I feel that they have found themselves&#8230;</p>
<p>Notable video moment: the pogo stick&#8230;</p>
<p><em>[edit: as noted by Rachel (thankyou!), this clip came after the Treadmill listed below. I don't feel it changes my overall conclusion though. I think it just places it as a clip made with the groups new-found confidence in their own artistic abilities <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ]</em></p>
<h3>Invincible</h3>
<p>This is an odd one. I think it&#8217;s a group idea &#8211; to blow things up (cos that&#8217;s always fun, who cares about originality ALL the time anyway?), but it&#8217;s also full of generic &#8216;band performing&#8217; clips too. My guess is that this is the band&#8217;s idea, but that they ceded some creative license to the label for the sake of finances and ability to make it&#8230;</p>
<p>Notable video moment: the chandelier</p>
<h3>A Million Ways</h3>
<p>To me, this is the precursor to the genius of Here It Goes Again, in the same way that Rubber Soul was the precursor to Revolver.</p>
<p>I think this may have been the first time the band &#8216;just went ahead and made it&#8217; and totally circumvented the &#8217;system&#8217;. And what do they do? They dance around in the back yard! And it&#8217;s great!</p>
<p>For the first time we have a feel not only for the groups quirky style, but for the band members involved. Without this, there never would have been the treadmills&#8230;</p>
<p>Notable video moment: letting the video run past the end of the performance</p>
<p><em>[edit: again, thanks Rachel. This was a practice video which was leaked and went viral. Ok, so it wasn't deliberate in it's low-key, but shows their style coming through loud and clear <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ]</em></p>
<h3>Here It Goes Again</h3>
<p>OK Go, On Treadmills.</p>
<p>The clip which may have guaranteed OK Go lasting posterity even if they never made anything else again. I can&#8217;t say much to this that hasn&#8217;t been said a million times. How do you know it&#8217;s genius? From the sound of a million viewers all saying &#8220;why did I never think of that?&#8221;</p>
<p>Notable video moment: when you rewind to watch it again.</p>
<h3>WTF</h3>
<p>I must admit, this video actually annoyed me, but my silent partner in review thought it amazing. To my eye, making a whole video where the visual effect is that of a crashed Windows 3.1 (or 95/98/2000/XP) program &#8211; was cringe worthy.</p>
<p>In fairness, it did have potential though. If the effect had been applied selectively, whilst other times &#8216;locking&#8217; the background in place, then I may well have been equally impressed. Silent partner, otoh, thought it was great.</p>
<p>And it&#8217;s not like there weren&#8217;t scenes which made good use of the style either &#8211; I don&#8217;t deny that. But the basic premise upon which all this cleverness was built? Just didn&#8217;t do it for me. So overall: cringe, with a concession of clever.</p>
<p>Notable video moment: the chair (which instead reminded me of old-skool demo scene <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>This Too Shall Pass</h3>
<p>I love this and think it&#8217;s genius (though my silent partner thought it &#8216;meh, with a side order of cute&#8217;). It just grows and amazes as one long clip unfolds and expands, with new people and camera angles when you least expect.  I don&#8217;t want to give it away, so I&#8217;ll only say that it&#8217;s the first reveal of the brass which does it for me.</p>
<p>Notable video moment: every time you wonder how you didn&#8217;t see that person before now</p>
<h3>This Too Shall Pass (Rube Goldberg Version)</h3>
<p>Their most recent piece is a stunning piece of fun invention. I think it shows that the band is willing to now use the medium of video clips to make cool stuff, even if it has only a passing meaning to the song (and why not, it&#8217;s not like the formulas the labels push do any better anyway!).</p>
<p>This time a huge Rube Goldberg machine accompanies them in time with the song. A song which soon gets stuck in your head too (though I did find the Marching Band version to be rather forgettable, so ymmv).</p>
<p>The treadmill video gets a cameo here, and I think that the band feels they have more to show the world than just that one idea, and don&#8217;t want to be overshadowed by their own history after all.</p>
<p>I only hope that they don&#8217;t burn out, forget about the music, or typecast themselves in trying to escape the treadmill meme&#8230;</p>
<p>Notable lyrics: &#8220;let it go / this too shall pass&#8221;</p>
<h2>Conclusion</h2>
<p>Some groups &#8211; and indeed, people, start out quirky and imaginative, but when they begin to achieve fame, they get scared. They close down and start repeating themselves for fear of losing what they have, and instead lose that very edge that got them started.</p>
<p>Others instead, seem to use the power of fame to push the envelope of what is possible/accepted or expected &#8211; and so expand their own edge, in relative fearlessness of the effect it may have on their fanbase or reputation.</p>
<p>And it is into this latter category that I put Gonzo the Great.</p>
<p>oh, and also: OK Go.</p>
<h4>Post Script:</h4>
<p>Being a newly confirmed fan of both their video and their music &#8211; and I am kicking myself that I found out they were here in Brisbane a few weeks ago&#8230; and only found out this week when I discovered this clip history. No matter, next time&#8230;</p>
<p><em>[edit postscript: I wrote this review after an evenings entertaining video watching. I have since been corrected on some chronology and facts, and no doubt will find new errors in my assumptions down the track. In the interest of satisfying both my desire to not revise history, but also to not spread misinformation; I will update this post with edits like this as I find or am informed of errors. The original post will remain otherwise untouched. </em></p>
<p><em>...that'll sure teach me to write and post at midnight! <a href="http://wiki.thorx.net/wiki/ISFN">[1]</a>]</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thorx.net/2010/03/ok-go-the-video-reviews/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>as hot as&#8230; summer of &#8216;10</title>
		<link>http://blog.thorx.net/2010/03/as-hot-as-summer-of-10/</link>
		<comments>http://blog.thorx.net/2010/03/as-hot-as-summer-of-10/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 14:43:11 +0000</pubDate>
		<dc:creator>nemo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://blog.thorx.net/?p=150</guid>
		<description><![CDATA[So once again, my quarterly report on the temperature range outside my rack at knee level, and inside my rack at shoulder level &#8211; above two machines. 
To summarise the previous posts&#8230;
Winter:
The room: 14 – 30.5C
The rack: 23.3 – 43.4C
Spring:
The room: 14.4 – 33.8C
The rack: 22.6 – 45C
And newly&#8230;
Summer:
The room: 19.6 &#8211; 34.9C
The rack: 27.9 [...]]]></description>
			<content:encoded><![CDATA[<p>So once again, my quarterly report on the temperature range outside my rack at knee level, and inside my rack at shoulder level &#8211; above two machines. <span id="more-150"></span></p>
<p>To summarise the previous posts&#8230;</p>
<h3><a href="http://blog.thorx.net/2009/09/as-hot-as/">Winter</a>:</h3>
<p>The room: 14 – 30.5C</p>
<p>The rack: 23.3 – 43.4C</p>
<h3><a href="http://blog.thorx.net/2009/12/as-hot-as-end-spring-edition/">Spring</a>:</h3>
<p>The room: 14.4 – 33.8C</p>
<p>The rack: 22.6 – 45C</p>
<p>And newly&#8230;</p>
<h2>Summer:</h2>
<p>The room:<strong> 19.6 &#8211; 34.9C</strong><br />
The rack: <strong>27.9 &#8211; 45.7C</strong></p>
<p>The seasonal trend is there. Not unexpected for it to be there, just nice to know what it is, quantitatively. <strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thorx.net/2010/03/as-hot-as-summer-of-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>augmented thinking</title>
		<link>http://blog.thorx.net/2010/02/augmented-thinking/</link>
		<comments>http://blog.thorx.net/2010/02/augmented-thinking/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 12:32:24 +0000</pubDate>
		<dc:creator>nemo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[invent]]></category>
		<category><![CDATA[nemo]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://blog.thorx.net/?p=145</guid>
		<description><![CDATA[Now this, I am sure you will agree, is a damn cool presentation of some excellent ideas.
http://www.ted.com/talks/blaise_aguera.html
If you haven&#8217;t seen it, then do so now.
If you have, proceed&#8230; 
So if I can be allowed to blow my own horn for a moment, I&#8217;d like to boast that I occasionally seem to have quite marvelous ideas [...]]]></description>
			<content:encoded><![CDATA[<p>Now this, I am sure you will agree, is a damn cool presentation of some excellent ideas.</p>
<p><a href="http://www.ted.com/talks/blaise_aguera.html">http://www.ted.com/talks/blaise_aguera.html</a></p>
<p>If you haven&#8217;t seen it, then do so now.</p>
<p>If you have, proceed&#8230; <span id="more-145"></span></p>
<p>So if I can be allowed to blow my own horn for a moment, I&#8217;d like to boast that I occasionally seem to have quite marvelous ideas independently or others. Admittedly, others who were lucky enough to think of it earlier enough and/or had resources enough to make something of it. But my claim is that I sometimes think of these things _independently_.</p>
<p>And it has has been said of inventing &#8211; the best inventions are obvious, which is why it&#8217;s so humbling to remember that one didn&#8217;t think of these &#8216;obvious&#8217; things themselves.</p>
<p>But in my case, can I finally &#8220;prove&#8221; that I did&#8230;?</p>
<p>Back to the video &#8211; I&#8217;d like to draw your attention to a point approximately 3:45 in: &#8220;<em>&#8230;time travel. I&#8217;m not going to show you some of the wonderful historic imagery in here &#8211; there&#8217;s some in here with horses and carriages as well [...] it also is the foundation for augmented reality</em>&#8220;.</p>
<p>Now compare with an email of mine to a friend, where I wrote this:</p>
<blockquote><p>What would be kind of cool: augmented reality goggles (this is one of those ideas I had years before I knew there was a word for it) that show recreated historical versions of the world&#8230; but, instead of just showing a certain era, you see the &#8216;prettiest&#8217; building at any given location. Making a best-of-all-possible-eras virtual world <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></blockquote>
<p>So as far as I can tell (can anyone confirm?), this talk was made on Feb 11 or 12 (based on dated video comments afterwards). My email has a date stamp of: 10 Feb 2010 15:17:07 +1000). And, frankly, even if the video was recorded first, I sure didn&#8217;t see it till today <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="padding-left: 30px;">As an aside, my email was prompted by a rather ugly house I see regularly in town, and my own wonderings if it used to be pretty&#8230;</p>
<ul style="padding-left: 30px;">
<li>
<ul>
<li><a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;q=Brunswick+St+%26+Harcourt+St,+New+Farm+Queensland+4006,+Australia&amp;sll=-27.461548,153.038886&amp;sspn=0.002727,0.003567&amp;ie=UTF8&amp;cd=1&amp;geocode=FVL4XP4dJDAfCQ&amp;split=0&amp;hq=&amp;hnear=Brunswick+St+%26+Harcourt+St,+Queensland,+Australia&amp;ll=-27.461548,153.038886&amp;spn=0.00128,0.003567&amp;t=h&amp;z=18&amp;layer=c&amp;cbll=-27.46155,153.038884&amp;panoid=OvEa6_G-rsGUP_lyJfVLJA&amp;cbp=11,190.56,,0,-5.02">Contemporary Google maps street view</a></li>
<li><a href="http://www.qm.qld.gov.au/features/qldhouse/evolution.asp">Sometime pre 1994, it was ugly then too</a></li>
<li><a href="http://www.qm.qld.gov.au/features/qldhouse/evo-build.asp">Circa 1930s &#8211; it was gorgeous. </a></li>
</ul>
</li>
</ul>
<p style="padding-left: 30px;">I especially love how you get basically the same angle on all three &#8211; which was, of course, the key to my own inspiration <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So clearly, the next thing for me to work out is real time travel &#8211; at which point I can begin to start sending these <a href="http://wiki.thorx.net/">ideas of mine</a> back to people in the past with the resources to make them a reality asap! =)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thorx.net/2010/02/augmented-thinking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome Y2K10</title>
		<link>http://blog.thorx.net/2010/01/welcome-y2k10/</link>
		<comments>http://blog.thorx.net/2010/01/welcome-y2k10/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 03:56:55 +0000</pubDate>
		<dc:creator>nemo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[nemo]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://blog.thorx.net/?p=142</guid>
		<description><![CDATA[Y2K10? Is that what we&#8217;re calling it? Makes sense since 2k1 was claimed by 2001, but it&#8217;s not any more efficient on the bytes than 2010. Worse in fact, if the Y requires prepending!
Regardless..
New years resolutions? Out.
New years goals? In. 
So, in three brief categories, here are my goals for 2010

Location: This year &#8211; to [...]]]></description>
			<content:encoded><![CDATA[<p>Y2K10? Is that what we&#8217;re calling it? Makes sense since 2k1 was claimed by 2001, but it&#8217;s not any more efficient on the bytes than 2010. Worse in fact, if the Y requires prepending!</p>
<p>Regardless..</p>
<p>New years resolutions? <em>Out</em>.<br />
New years goals? <em>In</em>. <span id="more-142"></span></p>
<p>So, in three brief categories, here are my goals for 2010</p>
<ul>
<li><strong>Location</strong>: This year &#8211; to live by myself.</li>
<li><strong>Body</strong>: Cut milk from my diet (as a drink, I&#8217;m not cutting all diary as food just now), and ensure I exercise enough to maintain current fitness levels or improve.</li>
<li><strong>Mind</strong>: Stay on target with pet projects and complete them</li>
</ul>
<p>Note: these resolutions earlier appeared as a StatusNet dent here: http://identi.ca/notice/18121538 and were mirrored via twitter here: http://twitter.com/nemothorx/status/7346796530 (they were furthermore mirrored on facebook!)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thorx.net/2010/01/welcome-y2k10/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Subway voting&#8230;</title>
		<link>http://blog.thorx.net/2009/12/subway-voting/</link>
		<comments>http://blog.thorx.net/2009/12/subway-voting/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 02:21:25 +0000</pubDate>
		<dc:creator>nemo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://blog.thorx.net/?p=139</guid>
		<description><![CDATA[I recently had pause to use Subway machines to choose my lunch. Which bread did I support (Dear Subway. Bring back Parmeson-Oregano bread. If you do not, I cannot respect your advertising campaign based on the concept of &#8220;choice&#8221;), which fillings match my views, and which condiments are just &#8220;me&#8221;. It gave me a paper [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had pause to use Subway machines to choose my lunch. Which bread did I support (Dear Subway. Bring back Parmeson-Oregano bread. If you do not, I cannot respect your advertising campaign based on the concept of &#8220;choice&#8221;), which fillings match my views, and which condiments are just &#8220;me&#8221;. It gave me a paper receipt, and I had food. (it was tasty)</p>
<p>So. Why can&#8217;t we have a voting machine to do this?<span id="more-139"></span>You choose your preferred policy on a range of issues (healthcare, tax, immigration, environment, education, defence, etc), and at the end it says &#8220;you have chosen the . Is this correct?&#8221;</p>
<p>And it can even fill in preferences for you (Dear USA. Get preferential voting and the bare minimum. Till then, I cannot respect your so-called &#8216;democracy&#8217;).</p>
<p>Yes, this is far from perfect and full of flaws<em>[12]</em>, but really, if Subway can have lunch voting machines (I&#8217;d love to see the stats on bread choices in fact), then why is there so much drama about getting one for government?</p>
<p><em>[12] by far, the biggest issue I can see is showing a lack of bias in determining the party that best matches the selected choices and relative priorities between them. Is this a solved problem? I don&#8217;t know. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thorx.net/2009/12/subway-voting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>as hot as, end of spring edition</title>
		<link>http://blog.thorx.net/2009/12/as-hot-as-end-spring-edition/</link>
		<comments>http://blog.thorx.net/2009/12/as-hot-as-end-spring-edition/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 14:12:55 +0000</pubDate>
		<dc:creator>nemo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://blog.thorx.net/?p=136</guid>
		<description><![CDATA[Previously I posted winter temperature ranges in the ThorxBlog post: as hot as&#8230;
Here are the spring results
So in 3 months of spring, the ‘indoor’ (outside the rack) temperatures: 14.4 – 33.8C
And the “outdoor” (inside the rack) for the same winter season: 22.6 – 45C
So in short &#8211; not too different from winter&#8230; a couple of [...]]]></description>
			<content:encoded><![CDATA[<p>Previously I posted winter temperature ranges in the ThorxBlog post: <a href="/2009/09/as-hot-as/">as hot as&#8230;</a></p>
<p>Here are the spring results</p>
<p>So in 3 months of spring, the ‘indoor’ (outside the rack) temperatures:<strong> 14.4 – 33.8C</strong></p>
<p>And the “outdoor” (inside the rack) for the same winter season: <strong>22.6 – 45C</strong></p>
<p>So in short &#8211; not too different from winter&#8230; a couple of degrees warmer all around&#8230; though I bet a bellcurve plot of common temperatures would show a slightly different bias to the story too.</p>
<p>Thermometer reset, and into summer&#8230; hello summer!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thorx.net/2009/12/as-hot-as-end-spring-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux UI: crippling itself?</title>
		<link>http://blog.thorx.net/2009/10/linux-ui-crippling-itself/</link>
		<comments>http://blog.thorx.net/2009/10/linux-ui-crippling-itself/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 06:52:37 +0000</pubDate>
		<dc:creator>nemo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://blog.thorx.net/?p=95</guid>
		<description><![CDATA[I was recently talking with a friend about commandline prompt gadgetry, and our tangent conversations drifted to 256colour support in X terminal emulators. xterm. gnome-terminal, and presumably kterm and others also, though only the first two have I looked at.
256 colour support is there. It&#8217;s in the code. It works. It&#8217;s nice. And it&#8217;s&#8230; not [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently talking with a friend about commandline prompt gadgetry, and our tangent conversations drifted to 256colour support in X terminal emulators. xterm. gnome-terminal, and presumably kterm and others also, though only the first two have I looked at.</p>
<p>256 colour support is there. It&#8217;s in the code. It works. It&#8217;s nice. And it&#8217;s&#8230; not only not enabled by default, there is no clear and simple way of enabling it even if you WANTED TO.</p>
<p>I was going to blog more about this, but the following IRC fragment I think says it all. Any questions?<br />
<span id="more-95"></span></p>
<pre>&lt;nemo&gt; it'd be sure nice for a distro to set itself up with no self-crippling
        for ancient stuff that, frankly, nobody is using anymore
&lt;nemo&gt; (or if they do, then it's being used by people savvy enough (probably)
        to work out the compatibility issues themselves
&lt;nemo&gt; ubuntu does a good step, I think, but probably not enough
&lt;nemo&gt; 256colours should be the GLOBAL DEFAULT these days
&lt;Screwtape&gt; Every time somebody suggests that, they get shouted down by people
        who say things like 'BUT WHAT HAPPENS WHEN I SSH TO MY
        FreeBSD/OpenBSD/Solaris/Dragonfly/Xenix MACHINE!'
&lt;Screwtape&gt; We can't even figure out whether backspace should be ^H or ^? <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />
&lt;nemo&gt; [a] don't use this distro then
&lt;Screwtape&gt; It's hardly global domination if everybody stops using it. <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />
&lt;nemo&gt; it's hardly global domination if we're compromising ourselves for the
        compatibility of those who DON'T use it
&lt;nemo&gt; [b] have a nifty 'set_maximum_compatibility' script, which backwardsify
        everything

...

&lt;nemo&gt; so, what else has potential, but is held back by... historical compatibility?
&lt;nemo&gt; and by 'potential', I mean "it's there on your system now, just waiting for
        you to apply the correct settings'
&lt;nemo&gt; I am identifying terminal colours, and default prompts
&lt;nemo&gt; (terminal colours, and all the terminals, applications (screen, elinks, etc),
        etc that go with.
&lt;Screwtape&gt; I.. can't think of anything else off the top of my head, sadly. <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />
&lt;Screwtape&gt; Or perhaps luckily.
...</pre>
<p style="text-align: left;">
<p style="text-align: left;">In fairness, it&#8217;s not like it&#8217;s not been noticed before:</p>
<pre>...
&lt;nemo&gt; https://bugzilla.gnome.org/show_bug.cgi?id=121800
&lt;nemo&gt; 2003... status new
&lt;nemo&gt; wtf
&lt;nemo&gt; https://bugzilla.gnome.org/show_bug.cgi?id=115750
&lt;nemo&gt; amuses me that my no-X11 server has terminfo for 'gnome' and 'gnome-256color',
        but my ubuntu desktop does not
...</pre>
<p style="text-align: left;">
<p style="text-align: left;">And in case anyone wants to bring their terminal into the 21st century with 256colours instead of 8 (&#8220;<tt>tput colors</tt>&#8221; will tell you what yours can do), Screwtape has a nice little writeup here:</p>
<pre>...
&lt;Screwtape&gt; <a href="http://screwtape.jottit.com/automatic_%24term_selection">http://screwtape.jottit.com/automatic_%24term_selection</a> &lt;-- Here's my
        automatic $TERM hack.</pre>
<p style="text-align: left;">
<p style="text-align: center;">&#8230;</p>
<p style="text-align: left;">PS: As a final note: Shortly after this conversation, Screwtape filed the following debian bug report for vim&#8217;s syntax handling of sh scripts:  <a href=" http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=552108">vim-runtime: sh syntax highlighting should default to POSIX.</a></p>
<p style="text-align: center;">&#8230;</p>
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;"><em>PPS: Originally blogged to: <a href="http://blog.thorx.net/2009/10/linux-ui-crippling-itself">http://blog.thorx.net/2009/10/linux-ui-crippling-itself</a>. Please consider leaving comments at the blog rather than facebook or other social media side that this post may be propagated to. Thankyou <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thorx.net/2009/10/linux-ui-crippling-itself/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>And Another Thing&#8230; a review</title>
		<link>http://blog.thorx.net/2009/10/and-another-thing-a-review/</link>
		<comments>http://blog.thorx.net/2009/10/and-another-thing-a-review/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 13:25:57 +0000</pubDate>
		<dc:creator>nemo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://blog.thorx.net/?p=82</guid>
		<description><![CDATA[So those that know me should be very well aware that I am a huge Douglas Adams fan, and alongside da Vinci and JDR, consider him a hero. The weekend that he died was one that I count as one of the most horrible in my life (for that and other reasons which coincided)
So I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>So those that know me should be very well aware that I am a huge Douglas Adams fan, and alongside da Vinci and JDR, consider him a hero. The weekend that he died was one that I count as one of the most horrible in my life (for that and other reasons which coincided)</p>
<p>So I&#8217;m wary about extensions to his work.</p>
<p>The movie I enjoyed. I thought it could be better, and some parts truly bothered me, but other parts gave me smiles. I accept it as a HHG movie, but somehow it lacked a vibe.</p>
<p>So this week saw the release of the long-awaited 6th Hitch Hiker&#8217;s book, written by Eoin Colfer. I bought it, I have read it. This is my review.</p>
<p>So the first thing I&#8217;m going to do is write the positive, but then I&#8217;m editing it out to the end of the review, because ultimately, it&#8217;s not a book that should be leaving a sour taste in your mouth in reviews.</p>
<h2 style="text-align: center;"><strong>Mostly spoilerfree review follows</strong></h2>
<p><strong><span id="more-82"></span><br />
</strong></p>
<h3>First, the negative (minor spoilers)</h3>
<p>This isn&#8217;t the novel Douglas would have written, right? Well,  yes, and no. In the improbabilities that span the vast multidimensional space of the infinite universe, I&#8217;m sure that a Douglas Adams would have written this novel as his 6th after the 5 we know. But it&#8217;s unlikely&#8230;</p>
<p>Colfer&#8217;s Guide feels like he&#8217;s taken some of Douglas&#8217; writing formulas, and used them again and again. Almost, but exactly not quite overdoing it, as it were. This was especially evident earlier on, His plot isn&#8217;t as rich as we had come to expect from later Adams work. And his characters have distinct aura of &#8216;loser&#8217; about them. Dent is no longer the everyday man, he has become a worst-at-everything-since-childhood character, and other characters seem to fall under the knife of an author who wants them to be poorer versions of themselves than my own imagination had previously made them out to be.</p>
<p>Adams&#8217; writing always had a very subtle touch of PG humour, whilst Colfer more regularly  seems to make them, or at least allude to dirty jokes in a not-quite Adamsian way. A subtle extra hint of crudeness somehow. Anyway&#8230; it&#8217;s just not quite what Adams would have written.</p>
<h3>The Positive (spoiler free)</h3>
<p>So Douglas&#8217; books, especially the Hiker books,  have a certain pace, a certain rhythm. They have a certain style, a certain flair. Improbable as it is, and dispite the negatives, Colfer has, by and large, nailed it.</p>
<p>There were parts of the book that I laughed out loud at. Parts that I nodded with big smiles at. Parts that I reflected to myself with a &#8216;yes, that gives me pause for thought, in a good way&#8217;. And most tellingly, and this is the highest praise I can give, parts that I totally forgot I was reading a non-Adams&#8217; Guide story. On balance, it  felt natural.</p>
<p>Frankly, if they announced tomorrow that Eoin is writing a seventh, then I&#8217;ll look forward to it with the same mixture of eagerness, caution and anticipation as I did for this one.</p>
<p>PS: Originally blogged to: <span id="sample-permalink"><a href="http://blog.thorx.net/2009/10/and-another-thing-a-review">http://blog.thorx.net/2009/10/<span id="editable-post-name" title="Click to edit this part of the permalink">and-another-thing-a-review</span></a> </span><span>Please consider leaving comments at the blog rather than facebook or other social media side this post may be propogated to. Thankyou <img src='http://blog.thorx.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thorx.net/2009/10/and-another-thing-a-review/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
