<?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>Curmi the Blog</title>
	<atom:link href="http://curmi.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://curmi.com/blog</link>
	<description>Mac stuff, Tech stuff, Weird stuff</description>
	<lastBuildDate>Sun, 18 Jul 2010 05:32:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Better Prius MP3 filename handling</title>
		<link>http://curmi.com/blog/2010/07/18/better-prius-mp3-filename-handling/</link>
		<comments>http://curmi.com/blog/2010/07/18/better-prius-mp3-filename-handling/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 05:32:10 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=735</guid>
		<description><![CDATA[My 2007 Toyota Prius has a fairly good 5-disc slot-loading MP3 CD player. The trouble with it is the user interface is pretty poor. In particular the display of music track names. Although you can set the user interface to display metadata from the mp3 files &#8211; whenever you accelerate, the information blanks out. Apparently [...]]]></description>
			<content:encoded><![CDATA[<p>My 2007 <a href="http://en.wikipedia.org/wiki/Toyota_Prius" target="_blank">Toyota Prius</a> has a fairly good 5-disc slot-loading MP3 CD player. The trouble with it is the user interface is pretty poor. In particular the display of music track names.</p>
<p>Although you can set the user interface to display metadata from the mp3 files &#8211; whenever you accelerate, the information blanks out. Apparently the user interface designers felt looking at track names could be distracting! Incredible, I know.</p>
<p>The alternative interface is to actually look at filenames (these don&#8217;t blank out!). The trouble here is that you end up looking at something like the following:</p>
<p><img class="aligncenter size-full wp-image-736" title="Prius1" src="http://curmi.com/blog/wp-content/uploads/2010/07/Prius1.jpg" alt="" width="414" height="312" /></p>
<p>Ugly. <code>ROOT FOLDER</code>? <code>.mp3</code> extension?</p>
<p>The numbers at the start of the filenames is a common saved file convention in iTunes. The Prius adds its own numbers to the files when you look at the file list, so you end up seeing the following:</p>
<p><img class="aligncenter size-full wp-image-737" title="Prius2" src="http://curmi.com/blog/wp-content/uploads/2010/07/Prius2.jpg" alt="" width="414" height="310" /></p>
<p>An ugly mess. No idea what band is playing either (well, you would if you liked Guns N&#8217; Roses I guess).</p>
<p>Anyway, there is a trick to cleaning all this up.</p>
<p>First, if you put all your tracks inside a folder at the root level of the disk, the folder name will be displayed instead of <code>ROOT FOLDER</code>. That by itself is a huge improvement. Use the name of the band and things start to look up.</p>
<p>The next thing is that the filename actually displays only 16 characters. This is another example of how poor the user interface is &#8211; there is room probably for twice that. Anyway, the trick here is to remove any numbers from the start of track filenames, and add spaces BEFORE the <code>.mp3</code> extension, so that the extension is out &gt; 16 characters and thus not shown.</p>
<p>To do this, I wrote a quick Perl script on my Mac and ran it over the folder of MP3 files I created ready to burn to CD.</p>
<pre><span style="color: #ffc0cb;">#!/usr/bin/perl</span>
<span style="color: #00ffff;">@files</span> <span style="color: #90ee90;">= &lt;*.mp3&gt;;</span>
<span style="color: orange;">foreach</span> <span style="color: #00ffff;">$file</span> <span style="color: #90ee90;">(</span><span style="color: #00ffff;">@files</span><span style="color: #90ee90;">) {</span>
    <span style="color: #00ffff;">$orig</span> <span style="color: #90ee90;">=</span> <span style="color: #00ffff;">$file</span><span style="color: #90ee90;">;</span>
    <span style="color: #00ffff;">$file</span> <span style="color: #90ee90;">=~</span> <span style="color: orange;">s/</span><span style="color: #ffc0cb;">^\d* </span><span style="color: orange;">//</span><span style="color: #90ee90;">;</span>
    <span style="color: #00ffff;">$file</span> <span style="color: #90ee90;">=~</span> <span style="color: orange;">/</span><span style="color: #ffc0cb;">(.*)\.</span><span style="color: red;">mp3</span><span style="color: orange;">/</span><span style="color: #90ee90;">;</span>
    <span style="color: #00ffff;">$file</span> <span style="color: #90ee90;">=</span> <span style="color: orange;">sprintf</span><span style="color: #90ee90;">(</span><span style="color: red;">"%-40s"</span><span style="color: #90ee90;">,</span> <span style="color: #00ffff;">$1</span><span style="color: #90ee90;">).</span><span style="color: red;">".mp3"</span><span style="color: #90ee90;">;</span>
    <span style="color: orange;">`</span><span style="color: red;">mv "</span><span style="color: #00ffff;">$orig</span><span style="color: red;">" "</span><span style="color: #00ffff;">$file</span><span style="color: red;">"</span><span style="color: orange;">`</span><span style="color: #90ee90;">;</span>
<span style="color: #90ee90;">}</span></pre>
<p>I put all this in a folder named &#8220;<code>Guns N' Roses</code>&#8220;, and burnt it to CD. The result:</p>
<p><img class="aligncenter size-full wp-image-738" title="Prius3" src="http://curmi.com/blog/wp-content/uploads/2010/07/Prius3.jpg" alt="" width="418" height="312" /></p>
<p><img class="aligncenter size-full wp-image-739" title="Prius4" src="http://curmi.com/blog/wp-content/uploads/2010/07/Prius4.jpg" alt="" width="419" height="315" /></p>
<p>It&#8217;s not perfect, but it is a big improvement over the default display.</p>
<p>Where are all the good user interface designers? Do they all work at Apple?</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2010/07/18/better-prius-mp3-filename-handling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>h əuoɥԀı puɐ pɐԀı ɹoɟ pəsɐə&#124;əɹ uʍopəpısdn</title>
		<link>http://curmi.com/blog/2010/07/18/h-%c9%99uo%c9%a5%d4%80i-pu%c9%90-p%c9%90%d4%80i-%c9%b9o%c9%9f-p%c9%99s%c9%90%c9%99%c9%99%c9%b9-u%ca%8dop%c9%99pisdn/</link>
		<comments>http://curmi.com/blog/2010/07/18/h-%c9%99uo%c9%a5%d4%80i-pu%c9%90-p%c9%90%d4%80i-%c9%b9o%c9%9f-p%c9%99s%c9%90%c9%99%c9%99%c9%b9-u%ca%8dop%c9%99pisdn/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 00:50:39 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=729</guid>
		<description><![CDATA[˙ʇno ʇı ʞɔəɥɔ ˙ə&#124;qɐ&#124;ıɐʌɐ ʍou sı ʇ&#124;ınq ɹəʌə suoıʇɐɔı&#124;ddɐ ʇsəʇɐəɹɓ əɥʇ ɟo əuO ˙h əuoɥԀı puɐ pɐԀı ɹoɟ ə&#124;qɐ&#124;ıɐʌɐ ʍou sı uoıʇɐɔı&#124;ddɐ uʍopəpısd⋂ ʎW]]></description>
			<content:encoded><![CDATA[<p>˙ʇno ʇı ʞɔəɥɔ ˙ə|qɐ|ıɐʌɐ ʍou sı ʇ|ınq ɹəʌə suoıʇɐɔı|ddɐ ʇsəʇɐəɹɓ əɥʇ ɟo əuO ˙h əuoɥԀı puɐ pɐԀı ɹoɟ <a href="http://itunes.apple.com/app/id354900325">ə|qɐ|ıɐʌɐ ʍou</a> sı uoıʇɐɔı|ddɐ uʍopəpısd⋂ ʎW</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2010/07/18/h-%c9%99uo%c9%a5%d4%80i-pu%c9%90-p%c9%90%d4%80i-%c9%b9o%c9%9f-p%c9%99s%c9%90%c9%99%c9%99%c9%b9-u%ca%8dop%c9%99pisdn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4 &#8211; Dell and Microsoft to blame</title>
		<link>http://curmi.com/blog/2010/07/18/iphone-4-dell-and-microsoft-to-blame/</link>
		<comments>http://curmi.com/blog/2010/07/18/iphone-4-dell-and-microsoft-to-blame/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 00:37:19 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=716</guid>
		<description><![CDATA[Apple&#8217;s press conference on the iPhone 4 antenna problems revealed some interesting facts about Apple and their testing procedures. One of the highlights of the conference was that we got to look at Apple&#8217;s &#8220;state-of-the-art&#8221; antenna test labs. Incredible images and an amazing video. But this video revealed more than just a cool, expensive, lab [...]]]></description>
			<content:encoded><![CDATA[<p>Apple&#8217;s press conference on the iPhone 4 antenna problems revealed some interesting facts about Apple and their testing procedures.</p>
<p>One of the highlights of the conference was that we got to look at Apple&#8217;s <a href="http://www.apple.com/antenna/testing-lab.html" target="_blank">&#8220;state-of-the-art&#8221; antenna test labs</a>. Incredible images and an amazing video. But this video revealed more than just a cool, expensive, lab setup.</p>
<p>Notice anything from this still from the video (taken at around 45 seconds in)?</p>
<p><center><br />
<img class="aligncenter size-full wp-image-718" title="Distant Dell" src="http://curmi.com/blog/wp-content/uploads/2010/07/Distant-Dell.jpg" alt="" width="472" height="273" /><br />
</center><br />
What is that? Is that a Dell PC?<br />
<center><br />
<img class="aligncenter size-full wp-image-719" title="Dell" src="http://curmi.com/blog/wp-content/uploads/2010/07/Dell1.jpg" alt="" width="435" height="393" /></p>
<p><img class="aligncenter size-full wp-image-721" title="dell_computer" src="http://curmi.com/blog/wp-content/uploads/2010/07/dell_computer.jpg" alt="" width="295" height="295" /><br />
</center><br />
And seconds later we see a close up of the screen &#8211; that&#8217;s Windows running there (can&#8217;t tell what version of Windows &#8211; it could be XP, though it could also be Windows 3.1).<br />
<center><br />
<img class="aligncenter size-full wp-image-720" title="Windows" src="http://curmi.com/blog/wp-content/uploads/2010/07/Windows.jpg" alt="" width="479" height="271" /><br />
</center><br />
This explains a lot really. Substandard testing hardware running substandard software. No wonder the iPhone has antenna issues!<sup>1</sup></p>
<p>But the most amazing leak comes from later in that video:<br />
<center><br />
<img class="aligncenter size-full wp-image-722" title="Stargate" src="http://curmi.com/blog/wp-content/uploads/2010/07/Stargate.jpg" alt="" width="477" height="271" /><br />
</center><br />
That&#8217;s right &#8211; those geniuses at Apple are working on a <a href="http://en.wikipedia.org/wiki/Stargate" target="_blank">stargate</a>!</p>
<hr/>
<small><sup>1</sup> Why would Apple be using a PC? My guess is that Apple bought all the testing hardware from an external company &#8211; the same company that supplies this stuff to other mobile phone manufacturers. And that hardware uses old serial ports &#8211; ports that Apple removed from their machines years ago but you can still get on Dell machines. The hardware probably also came with software written years ago that runs only on Windows. Still, you&#8217;d think Apple would be a bit more selective in what they show to the public then &#8211; though in this case they probably had to make this video in a hurry. Michael Dell probably finds this amusing.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2010/07/18/iphone-4-dell-and-microsoft-to-blame/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TV Week Logie Awards 2010</title>
		<link>http://curmi.com/blog/2010/05/03/tv-week-logie-awards-2010/</link>
		<comments>http://curmi.com/blog/2010/05/03/tv-week-logie-awards-2010/#comments</comments>
		<pubDate>Mon, 03 May 2010 11:00:46 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=711</guid>
		<description><![CDATA[Another TV Week Logie Awards has come and gone.  Continuing the tradition, here is my review. After last year&#8217;s abysmal ceremony &#8211; possibly the worst ever &#8211; this year was actually pretty good. Bert Newton was great &#8211; as expected. He was charming, at ease, funny, and received a standing ovation. Everyone loves Bert. I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>Another <a href="http://en.wikipedia.org/wiki/Logie_Award" target="_blank">TV Week Logie Awards</a> has come and gone.  Continuing the tradition, here is my review.</p>
<p>After last year&#8217;s <a href="http://curmi.com/blog/2009/05/04/tv-week-logie-awards-2009/" target="_blank">abysmal ceremony</a> &#8211; possibly the worst ever &#8211; this year was actually pretty good. <a href="http://en.wikipedia.org/wiki/Bert_Newton" target="_blank">Bert Newton</a> was great &#8211; as expected. He was charming, at ease, funny, and received a standing ovation. Everyone loves Bert.</p>
<p>I&#8217;ve got to say though, I was worried. With <a href="http://en.wikipedia.org/wiki/Hey_Hey_It%27s_Saturday" target="_blank">Hey Hey</a> back on Nine, I was sure we would be treated to stupid Hey Hey inspired comedy skits. Fortunately there were none. And fortunately Hey Hey didn&#8217;t win any awards. There is hope for Australian television after all.</p>
<p>Straight out of the gate we had <a href="http://en.wikipedia.org/wiki/Shaun_Micallef" target="_blank">Shaun Micallef</a>. The guy is a comic genius, and his acceptance speech was hilarious as always. In fact, Shaun, or at least the show he hosts, won 3 awards. So we saw a lot of Shaun that night.</p>
<p>I&#8217;m still annoyed that we have to have &#8220;international&#8221; guests at the Logies. I don&#8217;t get why we can&#8217;t seem to stand on our own feet? Couldn&#8217;t we have had <a href="http://en.wikipedia.org/wiki/Paul_Kelly_(musician)" target="_blank">Paul Kelly</a> instead of <a href="http://en.wikipedia.org/wiki/John_Mayer" target="_blank">John Mayer</a> for example? How good would that have been?!</p>
<p>Having said that, <a href="http://en.wikipedia.org/wiki/Kd_lang" target="_blank">k.d. lang</a> was brilliant. Absolutely magnificent.</p>
<p>It wasn&#8217;t all roses though. There was not enough Bert for a start. It started well, and then Bert disappeared for most of the night. We had a rather lame <a href="http://en.wikipedia.org/wiki/Don_Lane" target="_blank">Don Lane</a> tribute (Don&#8217;s son PJ seems rather talentless, yet keeps showing up each year at these awards). And the night went on far too long.</p>
<p>We were also witness to a new trend in Australian television award ceremonies &#8211; when you win an award, you must stand up with every cast member and backstage hand, spend 10 minutes finding each other, hug, kiss, congratulate each other, and then slowly wind your way through the tables in order to bring the entire mob up on to stage with you. No wonder it went on so long.</p>
<p><a href="http://en.wikipedia.org/wiki/Ray_Meagher" target="_blank">Ray Meagher</a> winning the Gold Logie added some Aussie colour to the proceedings with a comment about winning a chook raffle. That brought some life back in to a long night &#8211; but unfortunately, that was the end of evening.</p>
<p>Anyway, overall one of the better Logies.  Would be great though to one day just celebrate Aussie talent.</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2010/05/03/tv-week-logie-awards-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mushy Peas</title>
		<link>http://curmi.com/blog/2010/03/05/mushy-peas/</link>
		<comments>http://curmi.com/blog/2010/03/05/mushy-peas/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 00:17:29 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=691</guid>
		<description><![CDATA[I love mushy peas. Especially minted mushy peas. Mushy peas are very popular in England, and my mother is English, so I probably got the taste for them in my youth. Finding good mushy peas is actually not easy &#8211; I&#8217;ve tried many different brands, and amazingly the brand I found I liked the most [...]]]></description>
			<content:encoded><![CDATA[<p>I love <a href="http://en.wikipedia.org/wiki/Mushy_peas" target="_blank">mushy peas</a>. Especially minted mushy peas. Mushy peas are very popular in England, and my mother is English, so I probably got the taste for them in my youth.</p>
<p>Finding good mushy peas is actually not easy &#8211; I&#8217;ve tried many different brands, and amazingly the brand I found I liked the most are Coles $mart Buy Mushy Green Peas &#8211; basically a cheap no-name brand. Here&#8217;s the simple can that houses the taste sensation that is the minted mushy pea:</p>
<p style="text-align: center;"><img title="IMG_0489" src="http://curmi.com/blog/wp-content/uploads/2010/03/IMG_0489-225x300.jpg" alt="" width="203" height="270" /></p>
<p>So, I&#8217;ve been eating these for a while now, and I thought I&#8217;d show some images of what they are like. First, in the can &#8211; not a pleasant sight at all. And then out of the can in a bowl &#8211; much better!</p>
<p style="text-align: center;"><img class="size-medium wp-image-692 alignnone" title="IMG_0490" src="http://curmi.com/blog/wp-content/uploads/2010/03/IMG_0490-225x300.jpg" alt="" width="203" height="270" /><img class="size-medium wp-image-693 alignnone" title="IMG_0492" src="http://curmi.com/blog/wp-content/uploads/2010/03/IMG_0492-225x300.jpg" alt="" width="203" height="270" /></p>
<p>Yum!</p>
<p>Now, apparently the green food colouring used is considered bad for you &#8211; it&#8217;s always something with these health nuts! So Coles have started selling this without the food colouring. They taste the same, but check out the colour! It just isn&#8217;t the same experience:</p>
<p style="text-align: center;"><img class="size-medium wp-image-694 alignnone" title="IMG_0515" src="http://curmi.com/blog/wp-content/uploads/2010/03/IMG_0515-225x300.jpg" alt="" width="203" height="270" /><img class="size-medium wp-image-695 alignnone" title="IMG_0517" src="http://curmi.com/blog/wp-content/uploads/2010/03/IMG_0517-225x300.jpg" alt="" width="203" height="270" /></p>
<p style="text-align: left;">Close your eyes and think of England!</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2010/03/05/mushy-peas/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Scienceparent revisited</title>
		<link>http://curmi.com/blog/2010/03/05/scienceparent-revisited/</link>
		<comments>http://curmi.com/blog/2010/03/05/scienceparent-revisited/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 23:36:59 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=689</guid>
		<description><![CDATA[My best mate Coatsie and his wife are having their first baby! Congratulations guys! Coatsie, having seen my previous article, asked me if I would be the child&#8217;s scienceparent. I am honoured and accepted immediately. Chemistry sets, electronic kits, models of the solar system &#8211; all lining up as potential gifts&#8230;well, when they are a [...]]]></description>
			<content:encoded><![CDATA[<p>My best mate Coatsie and his wife are having their first baby! Congratulations guys!</p>
<p>Coatsie, having seen my previous article, asked me if I would be the child&#8217;s <a href="http://curmi.com/blog/2009/11/04/scienceparent/">scienceparent</a>. I am honoured and accepted immediately. Chemistry sets, electronic kits, models of the solar system &#8211; all lining up as potential gifts&#8230;well, when they are a little older&#8230; :-)</p>
<p>Congratulations once again guys!</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2010/03/05/scienceparent-revisited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lots</title>
		<link>http://curmi.com/blog/2010/01/17/lots/</link>
		<comments>http://curmi.com/blog/2010/01/17/lots/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 07:00:00 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=679</guid>
		<description><![CDATA[This morning I was trying to find a particular email in Apple Mail and decided to sort all my emails by attachment &#8211; so it would list from largest number of attachments to smallest. I was surprised to see this: Lots!  Hilarious. I did a quick experiment, and it seems that once you get past [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I was trying to find a particular email in <a href="http://www.apple.com/macosx/what-is-macosx/mail-ical-address-book.html" target="_blank">Apple Mail</a> and decided to sort all my emails by attachment &#8211; so it would list from largest number of attachments to smallest.</p>
<p>I was surprised to see this:</p>
<p><img class="alignnone size-full wp-image-682" title="Screen shot 2010-01-17 at 11.53.04 AM" src="http://curmi.com/blog/wp-content/uploads/2010/01/Screen-shot-2010-01-17-at-11.53.04-AM1.jpg" alt="Lots!" width="340" height="204" /></p>
<p>Lots!  Hilarious.</p>
<p>I did a quick experiment, and it seems that once you get past 60 attachments in an email, the display shows &#8220;lots&#8221;.  It seems to occur in Snow Leopard and Leopard, so maybe this has been around for a long time &#8211; it is rare to get so many attachments in one email, so I&#8217;m not surprised I hadn&#8217;t seen this before.</p>
<p>Apple has even internationalised this &#8211; so in Japanese, for example, you get:</p>
<p><img class="alignnone size-full wp-image-684" title="Screen shot 2010-01-17 at 12.34.30 PM" src="http://curmi.com/blog/wp-content/uploads/2010/01/Screen-shot-2010-01-17-at-12.34.30-PM.jpg" alt="Lots!" width="328" height="196" /></p>
<p>That&#8217;s Apple sweating the details &#8211; unlike <a href="http://curmi.com/blog/2009/11/05/pretty-dope/" target="_self">certain</a> <a href="http://curmi.com/blog/2009/12/07/faster-simpler/" target="_self">other companies</a> we know.</p>
<p>Not sure why they chose 60 as the cut-off point (or why they had to have a cut-off point). I would have thought they&#8217;d have gone for 64, and that was what I was expecting as I added more and more items to a draft email to test. But still, it was funny and brought a smile to my face this morning.</p>
<p>Oh, and Happy New Year everyone!</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2010/01/17/lots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Faster Simpler</title>
		<link>http://curmi.com/blog/2009/12/07/faster-simpler/</link>
		<comments>http://curmi.com/blog/2009/12/07/faster-simpler/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 00:07:06 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=625</guid>
		<description><![CDATA[Front page of The Age today is this ad: &#8220;Faster simpler&#8221;? What does that mean? Did they possibly mean &#8220;Faster, simpler&#8221;? And given the other sentences ended with correct punctuation, shouldn&#8217;t that one end with a full stop? Not to mention the large 7 is a different font than the 7 in the actual logo [...]]]></description>
			<content:encoded><![CDATA[<p>Front page of The Age today is this ad:</p>
<p><img class="alignnone size-full wp-image-626" title="Microsoft's Web Ad" src="http://curmi.com/blog/wp-content/uploads/2009/12/Screen-shot-2009-12-07-at-10.53.47-AM.jpg" alt="Screen shot 2009-12-07 at 10.53.47 AM" width="445" height="196" /></p>
<p>&#8220;Faster simpler&#8221;? What does that mean? Did they possibly mean &#8220;Faster, simpler&#8221;? And given the other sentences ended with correct punctuation, shouldn&#8217;t that one end with a full stop?</p>
<p>Not to mention the large 7 is a different font than the 7 in the actual logo at the bottom?</p>
<p>It&#8217;s just lazy, like everything Microsoft does. Their ads have as much <a href="http://curmi.com/blog/2009/11/05/pretty-dope/" target="_blank">attention to detail</a> as their operating system. No need to click the &#8220;Experience now&#8221; button &#8211; I think that ad tells you exactly what to expect.</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/12/07/faster-simpler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oba Mao shirts get the local authorities shirty</title>
		<link>http://curmi.com/blog/2009/11/17/oba-mao-shirts-get-the-local-authorities-shirty/</link>
		<comments>http://curmi.com/blog/2009/11/17/oba-mao-shirts-get-the-local-authorities-shirty/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 00:13:48 +0000</pubDate>
		<dc:creator>grant</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=614</guid>
		<description><![CDATA[A new t-shirt that just hit the local Chinese markets has put the China-U.S relations at breaking point. The t-shirt depicts US President Barack Obama as Mao Zedong dressed in a military uniform. China is so concerned that the t-shirt will offend Obama they&#8217;ve decided to send a complimentary container ship filled with watermelons and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-622" src="http://curmi.com/blog/wp-content/uploads/2009/11/Oba-mao_2.jpg" alt="Oba-mao_2" width="200" height="152" />A new t-shirt that just hit the local Chinese markets has put the China-U.S relations at breaking point.  The t-shirt depicts US President Barack Obama as Mao Zedong dressed in a military uniform.  China is so concerned that the t-shirt will offend Obama they&#8217;ve decided to send a complimentary container ship filled with watermelons and fried chicken.  Obama has welcomed the gifts which he has used to help kick start his Windows 7 party at the White house.    Obama said &#8220;This represents a new chapter for the US and China, I also like the bigger icons, Windows 7 really is <a href="http://curmi.com/blog/2009/11/16/wills-windows-7-rising/" target="_blank">rising</a>&#8220;.</p>
<p style="text-align: left">Obama is currently in Japan to discuss regional security concerns.  He is also requesting additional support to halt the production of the &#8220;<a href="http://curmi.com/blog/2009/02/26/ripped-off-by-hollywood/" target="_blank">Kung Fu kid</a>&#8221; after previous attempts to stop Will Smith have failed.</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/11/17/oba-mao-shirts-get-the-local-authorities-shirty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s next for Rove</title>
		<link>http://curmi.com/blog/2009/11/16/whats-next-for-rove/</link>
		<comments>http://curmi.com/blog/2009/11/16/whats-next-for-rove/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 06:38:56 +0000</pubDate>
		<dc:creator>grant</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Rove quits]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=608</guid>
		<description><![CDATA[After 10 long years of boring television viewers to tears, Rove has decided to call it quits. Rove has always enjoyed inflicting his predictable and repetitious attempted humour on the general public. In fact he&#8217;s thrived on it. It  has never been about the ratings, the money, or the fame &#8211; it has always been [...]]]></description>
			<content:encoded><![CDATA[<p>After 10 long years of boring television viewers to tears, Rove has decided to call it quits. Rove has always enjoyed inflicting his predictable and repetitious attempted humour on the general public. In fact he&#8217;s thrived on it. It  has never been about the ratings, the money, or the fame &#8211; it has always been about sadism. Ratings are down and the mood on the street has never been better.  Have you noticed a random stranger smile at you while passing in the street? Good chance it&#8217;s due to Rove leaving the airwaves.</p>
<p>So what&#8217;s next for Rove? Some say a permanent radio gig. Others say he&#8217;s working on the 4th phase of the road map for peace in the middle east. We&#8217;ll just have to wait and see.</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/11/16/whats-next-for-rove/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Will&#8217;s Windows 7 Rising</title>
		<link>http://curmi.com/blog/2009/11/16/wills-windows-7-rising/</link>
		<comments>http://curmi.com/blog/2009/11/16/wills-windows-7-rising/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 06:15:01 +0000</pubDate>
		<dc:creator>grant</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=600</guid>
		<description><![CDATA[&#8220;Don&#8217;t stay with XP, you&#8217;re bound to get confused, Windows 7 really rules.&#8221; Those are the wise words of Will Smith. No not the Will Smith that spends most of his time butchering your childhood. This is a much smaller, pastier version who enjoys singing. Will appears to be a love child of the actual [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;Don&#8217;t stay with XP, you&#8217;re bound to get confused, Windows 7 really rules.&#8221;</p></blockquote>
<p>Those are the wise words of Will Smith. No not the Will Smith that spends most of his time <a href="http://curmi.com/blog/2009/02/26/ripped-off-by-hollywood/" target="_blank">butchering</a> your childhood. This is a much smaller, pastier version who enjoys singing. Will appears to be a love child of the actual PC guy from the Apple commercials, brought into this world to defend his father&#8217;s honour.</p>
<p>Click the below link to see Will in action.</p>
<p><a href="http://www.youtube.com/watch?v=2bAVcJ-vq_U">Will&#8217;s Windows 7 Rising</a></p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/11/16/wills-windows-7-rising/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tiger Woods is in the hizzouse</title>
		<link>http://curmi.com/blog/2009/11/16/tiger-woods-is-in-the-hizzouse/</link>
		<comments>http://curmi.com/blog/2009/11/16/tiger-woods-is-in-the-hizzouse/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 23:10:23 +0000</pubDate>
		<dc:creator>grant</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[golf]]></category>
		<category><![CDATA[melbourne]]></category>
		<category><![CDATA[Tiger woods]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=596</guid>
		<description><![CDATA[It&#8217;s been awfully difficult not to have heard about Tiger Woods landing in Melbourne for a round or two of golf. The hype surrounding is what essentialy a man hitting a ball around and then chasing after it is hard to comprehend. For those who aren&#8217;t aware, Tiger is filthy rich, so rich in fact [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been awfully difficult not to have heard about Tiger Woods landing  in Melbourne for a round or two of golf. The hype surrounding is what  essentialy a man hitting a ball around and then chasing after it is hard  to comprehend.</p>
<p>For those who aren&#8217;t aware, Tiger is filthy rich, so rich in fact he  hires small children to polish his golf balls all day. I have no issues  with this, he&#8217;s the mighty Tiger and he can do what he likes. But I have  to remind the people that the Australian tax payers forked out 3 million  for this guy to turn up and then prance around in plaid pants. According  to Wikipedia &#8220;he was the highest-paid professional athlete in 2008,  having earned an estimated $110 million from winnings and endorsements&#8221;.</p>
<p>Tiger Woods might be a golf player, but first and foremost he is nothing  but a corporate whore and a sell out. He makes more money than the GDP  of a small pacific island and then demands for more. He&#8217;s the face of  Gillette, he has his own brand of Gatorade, a clothing range, video  games and a range of flat pack furniture that would make the Swedish  jealous. So before you next tune in to watch Tiger swing his club around  like an angry homeless person defending his turf, I want you to ask  yourself, is it right he&#8217;s stealing people&#8217;s wages to feed his Tiger  empire? Tiger, you&#8217;re a disgrace.</p>
<p>ELDRICK TONT WOODS BE GONE!</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/11/16/tiger-woods-is-in-the-hizzouse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random thoughts on a Sunday</title>
		<link>http://curmi.com/blog/2009/11/15/random-thoughts-on-a-sunday/</link>
		<comments>http://curmi.com/blog/2009/11/15/random-thoughts-on-a-sunday/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 01:49:32 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=592</guid>
		<description><![CDATA[Just some random thoughts on a lazy Sunday morning. Reconnect on Facebook Logging in to the new look Facebook the other day I was greeted with the following suggestion: Could it be that I actually talk to my wife in real life? Damn, Facebook is getting to be as crap as Twitter. Windows 7 copied [...]]]></description>
			<content:encoded><![CDATA[<p>Just some random thoughts on a lazy Sunday morning.</p>
<h2>Reconnect on Facebook</h2>
<p>Logging in to the <a href="http://curmi.com/blog/2009/10/25/my-mate-is-now-friends-with-some-random/" target="_blank">new look Facebook</a> the other day I was greeted with the following suggestion:</p>
<p><img class="alignnone size-full wp-image-591" title="My wife on Facebook" src="http://curmi.com/blog/wp-content/uploads/2009/11/MyWifeOnFacebook.jpg" alt="My wife on Facebook" width="289" height="86" /></p>
<p>Could it be that I actually talk to my wife in real life? Damn, Facebook is getting to be as <a href="http://curmi.com/blog/2009/08/10/cy-twitter-sucks-dogsballs/" target="_blank">crap as Twitter</a>.</p>
<h2>Windows 7 copied OS X</h2>
<p>A Microsoft exec <a href="http://thenextweb.com/2009/11/11/microsoft-admit-copied-apple/" target="_blank">said</a> they copied OS X. Another exec then said the first has no idea and they didn&#8217;t copy OS X &#8211; apparently the Windows 7 team lived in a bubble without internet access for the last 8 years and made it all themselves.</p>
<p>I&#8217;m going to surprise everyone and say that I think they <em>didn&#8217;t</em> copy OS X. If they did, they are shit copiers. Or the photocopier broke down part way through.</p>
<h2>Evolution for children</h2>
<p>My grand nephew is being brain washed by his grandparents in to Christianity. He&#8217;s 7 years old, and being told that God created Adam and Eve. They&#8217;ve got him reading a children&#8217;s version of the bible at night. Time for me to step up as Great Uncle and self-appointed <a href="http://curmi.com/blog/2009/11/04/scienceparent/" target="_blank">Scienceparent</a> &#8211; I&#8217;ve ordered him a book &#8220;<a href="http://www.thingamababy.com/baby/2009/05/evolution.html" target="_blank">Our family tree: An evolution story</a>&#8221; &#8211; something he could also read at night. That&#8217;s a first step anyway to give him some balance.</p>
<h2>Macs and viruses</h2>
<p>I&#8217;ve had it with idiots who keep telling me the Mac has viruses too (defending the fact that Windows has a bizzilion viruses and you only have to connect to the internet for like 1 second with Windows 7 and you are infected). The Mac, currently, has no viruses. It has no viruses because no one has worked out how to make a virus for it &#8211; not because there are too few users. It is a holy grail for virus writers &#8211; the best they have done so far is write trojans for it (which every operating system can have).</p>
<p>Just because you wish the Mac was as virus ridden as the piece of shit operating system you choose to use does not make it a reality. Accept that your choice of computer is crap and live with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/11/15/random-thoughts-on-a-sunday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A tail of two mouses</title>
		<link>http://curmi.com/blog/2009/11/08/a-tail-of-two-mouses/</link>
		<comments>http://curmi.com/blog/2009/11/08/a-tail-of-two-mouses/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 13:31:40 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=584</guid>
		<description><![CDATA[Apple just a few weeks ago announced availability of a new mouse &#8211; the Magic Mouse. Let&#8217;s take a look at this beauty. It is wireless, has no visible buttons (but is in fact a touch sensitive 2 button mouse), has multi-directional scrolling via a touch surface (with acceleration), and support for multi-touch gestures. WarMouse [...]]]></description>
			<content:encoded><![CDATA[<p>Apple just a few weeks ago announced availability of a new mouse &#8211; the <a href="http://www.apple.com/magicmouse/" target="_blank">Magic Mouse</a>. Let&#8217;s take a look at this beauty.</p>
<p><img class="alignnone size-full wp-image-586" title="Magic Mouse" src="http://curmi.com/blog/wp-content/uploads/2009/11/Magic-Mouse.jpg" alt="Magic Mouse" width="456" height="199" /></p>
<p>It is wireless, has no visible buttons (but is in fact a touch sensitive 2 button mouse), has multi-directional scrolling via a touch surface (with acceleration), and support for multi-touch gestures.</p>
<p>WarMouse today announced the availability of a new mouse &#8211; the <a href="http://openofficemouse.com/" target="_blank">OpenOfficeMouse</a>. Let&#8217;s take a look at this beauty.</p>
<p><img class="alignnone size-full wp-image-585" title="OpenOfficeMouse" src="http://curmi.com/blog/wp-content/uploads/2009/11/OpenOfficeMouse.jpg" alt="OpenOfficeMouse" width="456" height="199" /></p>
<p>It is wired, has 18 buttons, a scroll wheel, and a joystick.</p>
<p>I was going to rant about the open source community and how they are even worse than Microsoft at innovation and usability (who would have thought it was possible?), but I think the OpenOfficeMouse does that without me saying anything more. But this monstrosity does remind me of a <a href="http://stuffthathappens.com/blog/wp-content/uploads/2008/03/simplicity.png" target="_blank">great cartoon</a> &#8211; I recycle this a lot at the office when feature requests start to make the usability of our applications questionable.</p>
<p>Oh, and I apologise for the appalling title of this article. It is late.</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/11/08/a-tail-of-two-mouses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pretty dope</title>
		<link>http://curmi.com/blog/2009/11/05/pretty-dope/</link>
		<comments>http://curmi.com/blog/2009/11/05/pretty-dope/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 12:16:01 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=569</guid>
		<description><![CDATA[I don&#8217;t spend a lot of time on Microsoft&#8217;s website, but today I happened to visit, and was greeted with this on their front page: This one ad, taking pride of place on Microsoft&#8217;s front page, is a showcase for just some of what is wrong with Microsoft. First, the obvious thing is Microsoft desperately [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t spend a lot of time on <a href="http://www.microsoft.com/en/us/default.aspx" target="_blank">Microsoft&#8217;s website</a>, but today I happened to visit, and was greeted with this on their front page:</p>
<p><a href="http://curmi.com/blog/wp-content/uploads/2009/11/dope.jpg"><img class="alignnone size-full wp-image-575" title="dope" src="http://curmi.com/blog/wp-content/uploads/2009/11/dope.jpg" alt="dope" width="479" height="227" /></a></p>
<p>This one ad, taking pride of place on Microsoft&#8217;s front page, is a showcase for just some of what is wrong with Microsoft.</p>
<p>First, the obvious thing is Microsoft desperately wants to be cool. <em>So desperately.</em> You can smell the desperation.</p>
<p>I can tell you now, using &#8220;pretty dope&#8221; on your website does not make you cool. In fact, this ad reminds me of some teenager&#8217;s father trying to act cool with his teenage son&#8217;s friends as they leave to go out partying on a Saturday night:</p>
<blockquote><p>&#8220;Homies&#8230;that car is the shizzle! You dudes are dope!!! Where da bitches at tonight? Yo?&#8221; (flicks fingers in an attempt to make some cool gang sign he saw on Law and Order).</p></blockquote>
<p>Mentioning &#8220;Twitter&#8221; does not make you cool either. You can&#8217;t just throw around the latest trends &#8211; It makes you look like a <a href="http://www.youtube.com/watch?v=wvsboPUjrGc" target="_blank">try hard</a>.</p>
<p>But there is more. There is always more.</p>
<p>&#8220;More reviews&#8221;? Was that a review? Well, I guess it was. Just not a particularly good one. A random tweet from a random anonymous user with a one line comment. That&#8217;s the quality I&#8217;m looking for in a review about an OS that I&#8217;m about to drop AU$200 or more on.</p>
<p>But the quality of the copy is nothing compared to the details. Take a look to the right of the ad. We have a number of buttons:</p>
<p><img class="alignnone size-full wp-image-578" title="Screen shot 2009-11-05 at 10.32.49 PM" src="http://curmi.com/blog/wp-content/uploads/2009/11/Screen-shot-2009-11-05-at-10.32.49-PM.jpg" alt="Screen shot 2009-11-05 at 10.32.49 PM" width="106" height="25" /></p>
<p><img class="alignnone size-full wp-image-579" title="Screen shot 2009-11-05 at 10.33.05 PM" src="http://curmi.com/blog/wp-content/uploads/2009/11/Screen-shot-2009-11-05-at-10.33.05-PM.jpg" alt="Screen shot 2009-11-05 at 10.33.05 PM" width="98" height="25" /></p>
<p><img class="alignnone size-full wp-image-580" title="Screen shot 2009-11-05 at 10.33.15 PM" src="http://curmi.com/blog/wp-content/uploads/2009/11/Screen-shot-2009-11-05-at-10.33.15-PM.jpg" alt="Screen shot 2009-11-05 at 10.33.15 PM" width="110" height="25" /></p>
<p>So what&#8217;s wrong? Well, first we have different size buttons. This is sloppy when the buttons are all left aligned and not vastly different in text length or position, and even if you argue it is because the text is shorter in some, then you&#8217;ll notice inconsistent spacing (between the last letter and the arrow), so that argument doesn&#8217;t explain the size variations. And finally, <em>inconsistent capitalisation</em> (&#8220;Learn More&#8221; versus &#8220;Find out more&#8221;) &#8211; I mean, that is beyond sloppy.</p>
<p>It&#8217;s all part of the Microsoft experience &#8211; sloppy and inconsistent. Don&#8217;t forget this is on the front page of a multi-billion dollar company with an <a href="http://brainstormtech.blogs.fortune.cnn.com/2009/10/28/apples-2009-ad-budget-half-a-billion/" target="_blank">advertising budget of 1.4 billion dollars in 2009</a> &#8211; almost 3 times the budget of <a href="http://apple.com" target="_blank">Apple</a> in that same year! Compare their ads. Compare their websites!</p>
<p>It&#8217;s about sweating the details. It is why Apple&#8217;s software is a superior experience to Microsoft&#8217;s. It is why the iPhone blows away Windows Mobile. Microsoft still doesn&#8217;t get it.</p>
<p>If you are reading this and you still don&#8217;t get why those buttons are bad, you see nothing wrong with the ad text, and you can&#8217;t smell that desperation, you probably deserve to be using Windows. I can offer you no more.</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/11/05/pretty-dope/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Scienceparent</title>
		<link>http://curmi.com/blog/2009/11/04/scienceparent/</link>
		<comments>http://curmi.com/blog/2009/11/04/scienceparent/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 10:12:19 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=559</guid>
		<description><![CDATA[I have some Christian friends who were having their new born son baptised. We were chatting about the upcoming baptism and the conversation went something like this: Friend: You should be his Godparents. Me: That&#8217;s nice of you, but you realise we&#8217;re atheists? Friend: Oh, right. Yeah, that won&#8217;t work. A Godparent, traditionally, is informally responsible [...]]]></description>
			<content:encoded><![CDATA[<p>I have some Christian friends who were having their new born son baptised. We were chatting about the upcoming baptism and the conversation went something like this:</p>
<blockquote><p>Friend: You should be his Godparents.<br />
Me: That&#8217;s nice of you, but you realise we&#8217;re atheists?<br />
Friend: Oh, right.  Yeah, that won&#8217;t work.</p></blockquote>
<p>A <a href="http://en.wikipedia.org/wiki/Godparent" target="_blank">Godparent</a>, traditionally, is informally responsible for ensuring the child&#8217;s religious education is carried out. Now, if you are going to give a child a religious education, that child needs some balance. In particular, they need to learn that &#8220;creation&#8221; is not &#8220;science&#8221;. A little education about evolution is needed to ensure they have that balance and can decide what religion (if any) they really want to follow once they are old enough to think for themselves. We really don&#8217;t want <a href="http://societalsickness.files.wordpress.com/2008/01/god-hates-_2.jpg" target="_blank">ignorant children</a> in the world.</p>
<p>Now not everyone was good at science in school, or went on to work in an area of science, or keeps up with modern scientific discoveries. There is nothing wrong with that &#8211; I sucked at sport, I sucked at wood work, I wouldn&#8217;t know how to fix a drain, build a house, or even bake a cake (well, from scratch at least). But if you have a child, why not ask someone who does know about science to be the child&#8217;s Scienceparent!</p>
<p>Now admittedly, you could also have Accountingparents, Lawparents, Medicineparents etc. I single out Scienceparent though, not because I happen to have studied (and continue to study) science, but because science is the balance that is required for any religious education &#8211; in particular an education that promotes &#8220;creation&#8221; as a plausible explanation for the development of humankind.</p>
<p>Would it then follow that if you are an atheist family, you should give your child a Godparent &#8211; surely the child needs balance from all that science? If you can find a person willing to teach a child all about different religions and views (not just Christianity), I would have no objection &#8211; learning about different cultures and religions can provide a balanced outlook on life and a greater understanding of others in a multi-cultural world. Though I would also suggest studying science will give a child a thirst for knowledge, that will lead them naturally to question everything around them, including origins. This will lead them to study religion themselves, and make their own decisions.</p>
<p>So, I give you, the Scienceparent<small><sup>1</sup></small>. Make it a reality.</p>
<hr /><small><br />
<sup>1</sup>I note on the net someone suggested an alternative name for such a person is a &#8220;Goodparent&#8221;. :-)<br />
</small></p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/11/04/scienceparent/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Something for everyone</title>
		<link>http://curmi.com/blog/2009/10/31/something-for-everyone/</link>
		<comments>http://curmi.com/blog/2009/10/31/something-for-everyone/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 23:38:47 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=536</guid>
		<description><![CDATA[I thought I&#8217;d take lots of random (and generally short) thoughts, and put them into one big post. Something to offend everyone. So here we go. Cosplay Cosplay is for losers. &#8220;Norms&#8221; aren&#8217;t freaked out by you &#8211; they are laughing at you. There are only two situations where cosplay is acceptable: At fancy dress [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I&#8217;d take lots of random (and generally short) thoughts, and put them into one big post. <em>Something to offend everyone</em>. So here we go.</p>
<h2>Cosplay</h2>
<p><a href="http://en.wikipedia.org/wiki/Cosplay" target="_blank">Cosplay</a> is for losers. &#8220;Norms&#8221; aren&#8217;t freaked out by you &#8211; they are <a href="http://uncyclopedia.wikia.com/wiki/Cosplay" target="_blank">laughing at you</a>.</p>
<p>There are only two situations where cosplay is acceptable:</p>
<ol>
<li>At fancy dress parties</li>
<li>In the bedroom (if you are into that sort of thing)</li>
</ol>
<p>Get full time jobs and stop hanging out at every convention in Jeff&#8217;s Shed.</p>
<h2>Windows 7 is the best Windows ever</h2>
<p>This article is my best article ever. If you&#8217;ve read my other articles, you know that means very little.</p>
<h2>Lolita fashion</h2>
<p><a href="http://en.wikipedia.org/wiki/Lolita_fashion" target="_blank">Lolita fashion</a> is sick.</p>
<p>I&#8217;m not talking about a grown woman looking cute in some shirt, or even with pigtails. I&#8217;m talking full on <a href="http://cache.daylife.com/imageserve/08jL2SYgVmbZV/610x.jpg" target="_blank">shirley temple style outfits and wigs</a>. If you like this stuff you are a pedophile.</p>
<h2>They say there is someone for everyone</h2>
<p>I want to introduce Gym Boy (the guy in my gym who uses the equipment until sweaty, then jumps straight into the pool without washing) to Gym Girl (the girl in my gym who uses the equipment until sweaty, for twice as long as the rules state you can use a single piece of equipment, and then leaves without towelling off herself or the sweat she has just dripped over the equipment).</p>
<h2>Blackface on Hey Hey</h2>
<p>The only thing offensive in <a href="http://www.youtube.com/watch?v=izGgzOCcQtE" target="_blank">that skit</a> was that it wasn&#8217;t funny. It was not racist. <a href="http://www.youtube.com/watch?v=1EY7lYRneHc" target="_blank">Harden the fuck up Australia</a>.</p>
<h2>Gorgeous</h2>
<p>Men should not use the word &#8220;gorgeous&#8221; except when talking to their partner, and then only sparingly. It should never be written down in anything you write. Ever.</p>
<h2>Windows 7 is good</h2>
<p>8 years of Windows users looking at <a href="http://www.apple.com/macosx/" target="_blank">Mac OS X</a> and wishing they had that. Well, you&#8217;re a little closer. You still aren&#8217;t there, but maybe &#8220;near enough is good enough&#8221; for you. Of course, some of us aren&#8217;t willing to accept &#8220;good enough&#8221;.</p>
<h2>Terminal illness</h2>
<p>I like to think that if I had a terminal illness, yet was still mobile, I would go on the run and kill every rapist and murderer who got off with some stupidly low sentence for their crime. Our laws suck and the gene pool needs chlorine. Fortunately I don&#8217;t have a terminal disease (I hope). And anyway, the only weapon I own is a blunt samurai sword.</p>
<h2>Women raising their arms above their heads in public</h2>
<p>This is never a good look, no matter what you look like. Australian Idol contestants should pay attention.</p>
<h2>Free range eggs</h2>
<p>If you aren&#8217;t buying free range eggs, you are an arse and I don&#8217;t want to talk to you.</p>
<h2>Glee</h2>
<p>This <a href="http://en.wikipedia.org/wiki/Glee_(TV_series)" target="_blank">show</a> would actually be good, if it dropped all the singing and dancing.</p>
<h2>Electricity bills are going up</h2>
<p>People want to fix the damage they&#8217;ve done to the earth. They want greener power. Yet they don&#8217;t want to pay for it. Why do you think we&#8217;ve been using the dirty stuff for so long &#8211; it was cheap. You can&#8217;t have your cake and eat it too.</p>
<h2>Mac users are arrogant and smug</h2>
<p>They have good reason to be. Suck it up.</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/10/31/something-for-everyone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I was wrong about Microsoft</title>
		<link>http://curmi.com/blog/2009/10/29/i-was-wrong-about-microsoft/</link>
		<comments>http://curmi.com/blog/2009/10/29/i-was-wrong-about-microsoft/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 01:48:06 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=524</guid>
		<description><![CDATA[In a recent post, I said: Do you think Apple create their legendary interfaces based solely on user input? Even Microsoft are smart enough to not do that. However, I&#8217;ve noticed the following Windows 7 ads on the internet: I give you, the OS built for Homer. :-)]]></description>
			<content:encoded><![CDATA[<p>In a <a href="http://curmi.com/blog/2009/10/25/my-mate-is-now-friends-with-some-random/" target="_self">recent post</a>, I said:</p>
<blockquote><p>Do you think Apple create their legendary interfaces based solely on user input? Even Microsoft are smart enough to not do that.</p></blockquote>
<p>However, I&#8217;ve noticed the following Windows 7 ads on the internet:</p>
<p><img class="alignnone size-full wp-image-527" title="Screen shot 2009-10-29 at 12.32.34 PM" src="http://curmi.com/blog/wp-content/uploads/2009/10/Screen-shot-2009-10-29-at-12.32.34-PM1.jpg" alt="Screen shot 2009-10-29 at 12.32.34 PM" width="470" height="57" /></p>
<p><img class="alignnone size-full wp-image-532" title="Screen shot 2009-10-29 at 12.31.39 PM" src="http://curmi.com/blog/wp-content/uploads/2009/10/Screen-shot-2009-10-29-at-12.31.39-PM1.jpg" alt="Screen shot 2009-10-29 at 12.31.39 PM" width="298" height="248" /></p>
<p>I give you, the OS <a href="http://simpsons.wikia.com/wiki/%22The_Homer%22" target="_blank">built for Homer</a>. :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/10/29/i-was-wrong-about-microsoft/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My mate is now friends with some random</title>
		<link>http://curmi.com/blog/2009/10/25/my-mate-is-now-friends-with-some-random/</link>
		<comments>http://curmi.com/blog/2009/10/25/my-mate-is-now-friends-with-some-random/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 12:10:28 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=517</guid>
		<description><![CDATA[In real life, if my mate told me he was now friends with some random guy he met at a pub, I&#8217;d wonder why I was being punished with such a shit story. New Facebook updates hit this weekend. Every time my friends make a new friend, I get notified. Why am I being punished [...]]]></description>
			<content:encoded><![CDATA[<p>In real life, if my mate told me he was now friends with some random guy he met at a pub, I&#8217;d wonder why I was being punished with such a shit story.</p>
<p>New <a href="http://www.facebook.com" target="_blank">Facebook</a> updates hit this weekend. Every time my friends make a new friend, I get notified. Why am I being punished with such shit stories?</p>
<p>Facebook is now a continual stream of noise. It seems that every time my friends post anything on anything anywhere I get notified. Facebook is the new <a href="http://curmi.com/blog/2009/08/10/cy-twitter-sucks-dogsballs/" target="_blank">Twitter</a>.</p>
<p>So apparently the Facebook geniuses made these changes largely as a result of user feedback.</p>
<p>Let me let you in on a secret of good software design. You can ask users for feedback. And then you are better off ignoring everything they say and doing it properly.</p>
<p>I exaggerate. A little. A good designer must take that input, find the nuggets that are actually useful, and then implement something that is actually going to work. Generally the user has not thought through all the use cases of the change they&#8217;ve requested. Do you think Apple create their legendary interfaces based solely on user input? Even Microsoft are smart enough to not do that.</p>
<p>Not following? Think about the <a href="http://simpsons.wikia.com/wiki/%22The_Homer%22" target="_blank">car built for Homer</a>.</p>
<p><img class="size-full wp-image-518 alignnone" title="homer-car" src="http://curmi.com/blog/wp-content/uploads/2009/10/homer-car.gif" alt="homer-car" width="315" height="180" /></p>
<p>This is Facebook as of today.</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/10/25/my-mate-is-now-friends-with-some-random/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Waking your sleeping Mac on demand</title>
		<link>http://curmi.com/blog/2009/10/18/waking-your-sleeping-mac-on-demand/</link>
		<comments>http://curmi.com/blog/2009/10/18/waking-your-sleeping-mac-on-demand/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 13:51:32 +0000</pubDate>
		<dc:creator>curmi</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://curmi.com/blog/?p=513</guid>
		<description><![CDATA[Tonight, I discovered I had left something on my Mac at work that I wanted at home. The problem: my machine at work is sleeping, like most of the personal machines on our internal network when we are not in the office. It is also wirelessly connected to our internal network, not connected via ethernet [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight, I discovered I had left something on my Mac at work that I wanted at home. The problem: my machine at work is sleeping, like most of the personal machines on our internal network when we are not in the office. It is also wirelessly connected to our internal network, not connected via ethernet (for those one step ahead of where this post is going).</p>
<p>However, my machine at the office is also set up for Wireless Wake on Demand. Those who are interested can read some technical details <a href="http://en.wikipedia.org/wiki/Sleep_Proxy_Service" target="_blank">here</a> and setup details <a href="http://www.thestandard.com/news/2009/08/28/wake-demand-lets-snow-leopard-sleep-one-eye-open" target="_blank">here</a>. This is new in <a href="http://www.apple.com/macosx/" target="_blank">Snow Leopard</a>, and you might recognise that we are talking about waking a machine that is wirelessly connected to a network, not a simple <a href="http://en.wikipedia.org/wiki/Wake-on-LAN" target="_blank">Wake-On-Lan</a> sending a magic packet over ethernet.</p>
<p>So I VPNed to work from home, went to my Finder, selected the menu <code>Go-&gt;Connect to Server...</code> and put in &#8220;<code>jamie.internal</code>&#8221; (my machine&#8217;s name on the office network). My machine at work was woken in the background, and I connected to the machine as per normal in the Finder, got the file I wanted, disconnected, and closed down the VPN. My machine at the office went back to sleep and I had the file I wanted.</p>
<p>I could also have shared the screen to manipulate my Mac via its user interface, and apparently even shared iTunes if I had it running.</p>
<p>There is a bit more going on here than just sending a magic packet wirelessly to wake the machine &#8211; the Mac is asleep, but our office wireless router is broadcasting over <a href="http://en.wikipedia.org/wiki/Bonjour_(software)" target="_blank">bonjour</a> the services my Mac can actually handle as if it was awake on the network, so that if I try to use these services, it wakes the machine up first. This also means then that my machine in the office, even when sleeping, will still appear on other machines on the internal network as if it was awake, advertising all it&#8217;s services. Similarly, if I had it sharing music in iTunes, it would appear as a shared source of music on another machine in iTunes, even when asleep.</p>
<p>This is obviously a very handy feature &#8211; possibly more so for my colleagues than for me given I could walk over to the office in 10 minutes from my home to manually get the file (though it is after midnight, and Melbourne streets at night are a little dangerous these days, so I possibly avoided a random stabbing or glassing).</p>
<p>I&#8217;m sure you can also see advantages in a system like this for the environment too &#8211; machines don&#8217;t have to necessarily be running 24 hours a day just so you can access an occasional resource.</p>
<p>This will also work for Macs connected via ethernet. It may also work from a Windows machine to access a Mac at your office (with a SMB share). Not tested, as Windows is not welcome in my home, but I assume it will work.</p>
]]></content:encoded>
			<wfw:commentRss>http://curmi.com/blog/2009/10/18/waking-your-sleeping-mac-on-demand/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
