<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">
<channel>
    <title>REverberations - Computers</title>
    <link>http://www.reverb.com.au/tgould/blog/</link>
    <description>Random ramblings by Tim Gould</description>
    <dc:language>en</dc:language>
    <admin:errorReportsTo rdf:resource="mailto:" />
    <generator>Serendipity 1.5.1 - http://www.s9y.org/</generator>
    <managingEditor>webmaster@reverb.com.au</managingEditor>
<webMaster>webmaster@reverb.com.au</webMaster>
<pubDate>Wed, 02 Jun 2010 18:19:22 GMT</pubDate>

    <image>
        <url>http://www.reverb.com.au/images/REverb_med.jpg</url>
        <title>RSS: REverberations - Computers - Random ramblings by Tim Gould</title>
        <link>http://www.reverb.com.au/tgould/blog/</link>
        <width>144</width>
        <height>92</height>
    </image>

<item>
    <title>TwinHan Remote under Ubuntu Lucid Lynx 10.04</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/455-TwinHan-Remote-under-Ubuntu-Lucid-Lynx-10.04.html</link>
            <category>Linux</category>
            <category>PVR</category>
            <category>Technology</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/455-TwinHan-Remote-under-Ubuntu-Lucid-Lynx-10.04.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=455</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=455</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    Years ago with one of my DVB TV tuner cards cards I unexpectedly also received a little USB IR receiver and remote. In common with almost all peripheral hardware, it was designed for Windows but can with a little effort be made to work with a linux machine, such as my MythTV machine.&lt;br /&gt;
&lt;br /&gt;
I made it work by hand years ago, but then had no use for it for a while, and a few months ago wanted to make it work again. It turns out that &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1602&amp;amp;entry_id=455&quot; title=&quot;http://www.doctort.org/adam/general/update-on-twinhan-remote-for-mythbuntu-810.html&quot;  onmouseover=&quot;window.status=&#039;http://www.doctort.org/adam/general/update-on-twinhan-remote-for-mythbuntu-810.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Adam Pierce has a good set of instructions&lt;/a&gt;. But, like all other commenters on that blog post, my setup broke when upgrading to Ubuntu 10.04.&lt;br /&gt;
&lt;br /&gt;
Grrrr.&lt;br /&gt;
&lt;br /&gt;
I have finally found a working combination that hopefully will help others - the suggestions in the blog post were good enough to set me on the right track,  but not good enough to make it actually work.&lt;br /&gt;
&lt;br /&gt;
Here&#039;s the items that I had to modify by hand over and above my (upgraded) Ubuntu 10.04 setup:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;&lt;br /&gt;
&lt;li&gt;It turns out that nothing makes the directory /var/run/lirc/, which is where lirc needs to put its socket. So, I have modified /etc/init.d/lirc to add this code block at line 109:&lt;br /&gt;
&lt;blockquote&gt;if [ ! -d /var/run/lirc ];then&lt;br /&gt;
        log_success_msg &quot;/var/run/lirc/ is missing, creating&quot;&lt;br /&gt;
        mkdir /var/run/lirc&lt;br /&gt;
fi&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
lircd should then be able to start and create a socket called lircd within that directory.&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;Nothing creates /dev/lirc. This may not be needed but certainly some of the lirc testing tools expect to find it, so:&lt;br /&gt;
&lt;blockquote&gt;cd /dev&lt;br /&gt;
ln -s input/by-id/usb-Twinhan_Tech_Remote_Control_1111111-event-if00 lirc&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;Nothing creates /dev/lircd. This may not be needed, as it is the legacy equivalent of /var/run/lirc/lircd, but I suggest linking it:&lt;br /&gt;
&lt;blockquote&gt;cd /dev&lt;br /&gt;
ln -s /var/run/lirc/lircd&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;You need to modify /usr/share/hal/fdi/preprobe/20thirdparty/lirc.fdi as per Adam&#039;s blog entry.&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;As other commenters have noted, the USB ID has changed and lirc needs to be aware of this, so modify /etc/init.d/hardware.conf to contain:&lt;br /&gt;
&lt;blockquote&gt;REMOTE=&quot;Custom&quot;&lt;br /&gt;
REMOTE_MODULES=&quot;&quot;&lt;br /&gt;
REMOTE_DRIVER=&quot;devinput&quot;&lt;br /&gt;
REMOTE_DEVICE=&quot;/dev/input/by-id/usb-Twinhan_Tech_Remote_Control_1111111-event-if00&quot;&lt;br /&gt;
REMOTE_LIRCD_CONF=&quot;&quot;&lt;br /&gt;
REMOTE_LIRCD_ARGS=&quot;&quot;&lt;br /&gt;
&lt;br /&gt;
TRANSMITTER=&quot;None&quot;&lt;br /&gt;
TRANSMITTER_MODULES=&quot;&quot;&lt;br /&gt;
TRANSMITTER_DRIVER=&quot;&quot;&lt;br /&gt;
TRANSMITTER_DEVICE=&quot;&quot;&lt;br /&gt;
TRANSMITTER_LIRCD_CONF=&quot;&quot;&lt;br /&gt;
TRANSMITTER_LIRCD_ARGS=&quot;&quot;&lt;br /&gt;
&lt;br /&gt;
START_LIRCD=&quot;true&quot;&lt;br /&gt;
&lt;br /&gt;
LOAD_MODULES=&quot;true&quot;&lt;br /&gt;
&lt;br /&gt;
LIRCMD_CONF=&quot;&quot;&lt;br /&gt;
&lt;br /&gt;
FORCE_NONINTERACTIVE_RECONFIGURATION=&quot;false&quot;&lt;br /&gt;
START_LIRCMD=&quot;&quot;&lt;br /&gt;
REMOTE_SOCKET=&quot;&quot;&lt;br /&gt;
TRANSMITTER_SOCKET=&quot;&quot;&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;Lastly, and this is the bit that had me stumped, I needed to take the &lt;b&gt;header block&lt;/b&gt; from the &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1603&amp;amp;entry_id=455&quot; title=&quot;http://lirc.sourceforge.net/remotes/devinput/lircd.conf.devinput&quot;  onmouseover=&quot;window.status=&#039;http://lirc.sourceforge.net/remotes/devinput/lircd.conf.devinput&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;released lircd.conf.devinput&lt;/a&gt;, remove unnecessary sections, and modify it with the keycodes published by Adam&#039;s commenters, installed as /etc/lirc/lircd.conf:&lt;br /&gt;
&lt;blockquote&gt;# generated by devinput.sh (obsolete 32 bit version)&lt;br /&gt;
begin remote&lt;br /&gt;
&lt;br /&gt;
  name  devinput&lt;br /&gt;
  bits           16&lt;br /&gt;
  eps            30&lt;br /&gt;
  aeps          100&lt;br /&gt;
&lt;br /&gt;
  one             0     0&lt;br /&gt;
  zero            0     0&lt;br /&gt;
  pre_data_bits   16&lt;br /&gt;
  pre_data       0x8001&lt;br /&gt;
  gap          132799&lt;br /&gt;
  toggle_bit_mask 0x0&lt;br /&gt;
&lt;br /&gt;
	begin codes&lt;br /&gt;
		FULLSCREEN		0x0177&lt;br /&gt;
		POWER			0x0164&lt;br /&gt;
		1 			0x0201&lt;br /&gt;
		2 			0x0202&lt;br /&gt;
		3			0x0203&lt;br /&gt;
		4			0x0204&lt;br /&gt;
		5			0x0205&lt;br /&gt;
		6			0x0206&lt;br /&gt;
		7			0x0207&lt;br /&gt;
		8			0x0208&lt;br /&gt;
		9			0x0209&lt;br /&gt;
		RECORD			0x00A7&lt;br /&gt;
		0			0x0200&lt;br /&gt;
		FAVORITE		0x016C&lt;br /&gt;
		REWIND			0x00A8&lt;br /&gt;
		CH+			0x0192&lt;br /&gt;
		FORWARD			0x009F&lt;br /&gt;
		VOL-			0x0072&lt;br /&gt;
		PLAY			0x00CF&lt;br /&gt;
		VOL+			0x0073&lt;br /&gt;
		RECALL			0x0198&lt;br /&gt;
		CH-			0x0193&lt;br /&gt;
		STOP			0x0080&lt;br /&gt;
		PAUSE			0x0077&lt;br /&gt;
		MUTE			0x0071&lt;br /&gt;
		CANCEL			0x00DF&lt;br /&gt;
		CAPTURE			0x00D2&lt;br /&gt;
		PREVIEW			0x016A&lt;br /&gt;
		EPG			0x016D&lt;br /&gt;
		RECORDLIST		0x018B&lt;br /&gt;
		TAB			0x000F&lt;br /&gt;
		TELETEXT		0x0184&lt;br /&gt;
	end codes&lt;br /&gt;
end remote&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
The key names in the above file line up nicely with the ones in my mythtv lirc config, and are all-caps versions of what is actually printed on my remote.&lt;br /&gt;
&lt;/ol&gt;&lt;br /&gt;
&lt;br /&gt;
All that, and just in time for my Logitech Harmony remote to arrive and have to start again. 
    </content:encoded>

    <pubDate>Wed, 02 Jun 2010 12:46:37 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/455-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Lucid (Bad) Dreams</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/454-Lucid-Bad-Dreams.html</link>
            <category>Computers</category>
            <category>Linux</category>
            <category>PVR</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/454-Lucid-Bad-Dreams.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=454</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=454</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    For years now I&#039;ve loved linux. I&#039;ve met and spoken with Linus Torvalds. I&#039;ve even &lt;a href=&quot;/cgi-bin/blosxom_europe.cgi/2003/08/12#2003Aug12_01&quot;&gt;made a pilgrimage to where he wrote it&lt;/a&gt;. For servers, and many desktop uses, there&#039;s nothing quite like it.&lt;br /&gt;
&lt;br /&gt;
The &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1598&amp;amp;entry_id=454&quot; title=&quot;http://www.kernel.org/&quot;  onmouseover=&quot;window.status=&#039;http://www.kernel.org/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;core linux system&lt;/a&gt; is a beautiful thing. Through uni studies, attending several &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1599&amp;amp;entry_id=454&quot; title=&quot;http://linux.conf.au/&quot;  onmouseover=&quot;window.status=&#039;http://linux.conf.au/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;linux.conf.au&lt;/a&gt; events over the years, and personal interest I&#039;ve studied multiple parts of the code, and even fiddled under the hood myself at times.&lt;br /&gt;
&lt;br /&gt;
And yet every time it comes to upgrading my highly-customised home server, one or more things breaks horribly, requiring much of my time to fix. These days the distribution I run on the server is &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1600&amp;amp;entry_id=454&quot; title=&quot;http://www.kubuntu.org/&quot;  onmouseover=&quot;window.status=&#039;http://www.kubuntu.org/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;kubuntu&lt;/a&gt; - a legacy from when the system was also used as a desktop. This upgrade will hopefully be the last for years, as the latest 10.04 release &quot;lucid&quot; is a Long Term Support release, meaning it will be kept safe and stable for years to come. Good thing, given it&#039;s taken me a few weeks to get this far. Here&#039;s a log for those who are interested.&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;br /&gt;
&lt;li&gt;X would start, but with only a small white window with no useful content. Looking into the logs, it turns out it was far from happy with the status of /usr/lib/libGL.so. Googling around and looking at symlinks, it turns out that the system of symlinks for such things has changed, only one package didn&#039;t get the memo:&lt;br /&gt;
&lt;pre&gt;reverb@trane ~ $ sudo apt-file search /usr/lib/libGL.so&lt;br /&gt;
libgl1-mesa-dev: /usr/lib/libGL.so&lt;br /&gt;
&lt;/pre&gt;&lt;br /&gt;
Fixing this, there&#039;s a similar mess for libGL.so.1. All this NVIDIA-related rubbish is most annoying, but this server isn&#039;t going to get any new hardware for years at the current rate, and as such it has to work. It sure did just fine before the update.&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;My IR remote control no longer worked. What a mess this was. Nobody online had this one sorted, and until last night neither did I. I think I&#039;ll post that separately so it can be of assistance to others trying to make this work too.&lt;/li&gt;&lt;br /&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;br /&gt;
Linux is an amazing thing which is capable of complex setups well beyond that which most users would have, and all for free. That just doesn&#039;t mean that the complex stuff is easy when it breaks in new and creative ways. It would be a full-time job to keep up with the changes that have happened with this release. I&#039;ve had to find this out after the fact and spend time patching it all up. I had hoped Canonical (maintainers of Ubuntu/Kubuntu) would be doing this for me, and on the vast majority of hardware-software combinations out there they do very well. I can just see as time becomes more and more precious in years to come that a service doing all this custom work for me would start to look very attractive. Especially when your setup looks like this:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;br /&gt;
&lt;li&gt;Dual-core intel something or other, 4GB RAM&lt;br /&gt;
&lt;li&gt;RAID5 using four 750GB partitions across 2x750GB, 1x1.5TB and 1x808GB SATA drives&lt;br /&gt;
&lt;li&gt;Custom-compiled afpd shares the RAID to the Macs in the house&lt;br /&gt;
&lt;li&gt;Backup to external USB hard drives, rotated off-site&lt;br /&gt;
&lt;li&gt;Uplink is ethernet to Airport Express which extends the Airport Extreme network at the other end of the house where the DSL gear is&lt;br /&gt;
&lt;li&gt;Downlink is to a network-attached APC UPS (through my ancient &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1601&amp;amp;entry_id=454&quot; title=&quot;http://www.reverb.com.au/tgould/smc.html&quot;  onmouseover=&quot;window.status=&#039;http://www.reverb.com.au/tgould/smc.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;USB Ethernet adapter, no less!&lt;/a&gt;), which gets its address from the server using dhcp&lt;br /&gt;
&lt;li&gt;USB IR receiver receives commands from a Twinhan remote&lt;br /&gt;
&lt;li&gt;Two DVB tuners are connected via a powered antenna splitter&lt;br /&gt;
&lt;li&gt;A SVN build of MythTV schedules (using Shepherd) and records (from the tuners) live TV&lt;br /&gt;
&lt;li&gt;A SVN build of MythTVfrontend (although I&#039;ve been trialling xbmc) displays recorded shows controlled by the remote out through DVI and SPDIF optical audio to my Onkyo HDMI receiver, then on to the 1080p TV.&lt;br /&gt;
&lt;li&gt;Mythweb (with modified PHP and apache configs) runs to allow TV scheduling from a web browser&lt;br /&gt;
&lt;li&gt;Boinc runs in the background searching for aliens and cancer cures. Seriously.&lt;br /&gt;
&lt;li&gt;Lots of other things like mail, NFS, etc. that a server normally does.&lt;br /&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;br /&gt;
Should be simple to upgrade, right? 
    </content:encoded>

    <pubDate>Tue, 01 Jun 2010 08:52:35 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/454-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Fully Sick</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/434-Fully-Sick.html</link>
            <category>Computers</category>
            <category>Family</category>
            <category>Hardware</category>
            <category>Photography</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/434-Fully-Sick.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=434</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=434</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    We&#039;re all feeling rather ill with cold-like symptoms (Liz is quick to point out they are not flu-like, and having dealt with suspected swine flue cases in quarrantine at her work I guess she&#039;d know).&lt;br /&gt;
This has brought a return to the horrible nights of no Phoebe sleep, although worse because she screams for her mum who herself needs about a week of sleep.&lt;br /&gt;
We&#039;re mostly through this, having had Phoebe sleep through from 7:30 until 4am today, which is a huge improvement so we aren&#039;t complaining (much). Unfortunately we&#039;ve missed a few occasions due to not wanting to go anywhere to spread our nasties around - sorry those we had to cancel with.&lt;br /&gt;
There are recent pictures added, with more coming soon (especially now that my &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1531&amp;amp;entry_id=434&quot; title=&quot;http://www.apple.com/au/macbookpro/specs-13inch.html&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/au/macbookpro/specs-13inch.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;new Macbook&lt;/a&gt; has a built in SD card slot, and I&#039;m having a great deal of fun with the new &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1532&amp;amp;entry_id=434&quot; title=&quot;http://www.nikonusa.com/Find-Your-Nikon/Product/Camera-Lenses/2183/AF-S-DX-NIKKOR-35mm-f%252F1.8G.html&quot;  onmouseover=&quot;window.status=&#039;http://www.nikonusa.com/Find-Your-Nikon/Product/Camera-Lenses/2183/AF-S-DX-NIKKOR-35mm-f%252F1.8G.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;35mm 1.8 Nikkor lens&lt;/a&gt; ! ). 
    </content:encoded>

    <pubDate>Mon, 15 Jun 2009 08:05:42 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/434-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>iPhoto Libraries in mythgallery (mythtv)</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/410-iPhoto-Libraries-in-mythgallery-mythtv.html</link>
            <category>Hardware</category>
            <category>Linux</category>
            <category>Open-Source</category>
            <category>Photography</category>
            <category>Projects</category>
            <category>PVR</category>
            <category>Software</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/410-iPhoto-Libraries-in-mythgallery-mythtv.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=410</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=410</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    Here&#039;s some information about a personal coding itch I scratched recently, on the off chance that it helps someone else out there. Certainly my Google skills didn&#039;t turn up anyone else who had solved the same problem.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Problem Description&lt;/b&gt;&lt;br /&gt;
You have a Mac &lt;i&gt;somewhere&lt;/i&gt; where you use Apple&#039;s excellent &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1483&amp;amp;entry_id=410&quot; title=&quot;http://www.apple.com/ilife/iphoto/&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/ilife/iphoto/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;iPhoto&lt;/a&gt; to manage your huge digital photography collection.&lt;br /&gt;
However, you don&#039;t have (and most likely don&#039;t want) a spiffy but locked-down and feature-light &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1484&amp;amp;entry_id=410&quot; title=&quot;http://www.apple.com/appletv/&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/appletv/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Apple TV&lt;/a&gt; to display them on your TV, instead preferring the excellent and far more versatile open-source &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1485&amp;amp;entry_id=410&quot; title=&quot;http://www.mythtv.org/&quot;  onmouseover=&quot;window.status=&#039;http://www.mythtv.org/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;mythtv&lt;/a&gt;.&lt;br /&gt;
Mythtv has mythgallery which displays pictures &lt;i&gt;from a normal filesystem&lt;/i&gt; reasonably well, but the poor thing has little to no understanding of the complexities of Apple&#039;s &quot;iPhoto Library&quot; on-disk layout. I&#039;m talking Albums basically, plus an understanding of &quot;Originals&quot; versus &quot;Modified&quot;. I just want it to be how it looks in iPhoto, but on my big LCD screen in front of the couch, controlled with my myth remote. Is that too much to ask??!&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Research/Analysis&lt;/b&gt;&lt;br /&gt;
Can&#039;t find anyone else with this issue so figure &quot;how hard can it be?&quot;. Not very, it turned out, at least to get something working, if ugly.&lt;br /&gt;
The perl &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1486&amp;amp;entry_id=410&quot; title=&quot;http://search.cpan.org/~dmytro/Mac-iPhoto-0.1/iPhoto.pm&quot;  onmouseover=&quot;window.status=&#039;http://search.cpan.org/~dmytro/Mac-iPhoto-0.1/iPhoto.pm&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Mac::iPhoto&lt;/a&gt; looks like a good place to start, but since it hasn&#039;t been touched since 2003 it certainly doesn&#039;t do anything much useful on my current (7.1.3) iPhoto Library.&lt;br /&gt;
It uses &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1487&amp;amp;entry_id=410&quot; title=&quot;http://search.cpan.org/dist/Mac-PropertyList/&quot;  onmouseover=&quot;window.status=&#039;http://search.cpan.org/dist/Mac-PropertyList/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Mac::PropertyList&lt;/a&gt; to do the parsing of the xml file, which doesn&#039;t seem to work either. After much fiddling it looks like the AlbumData.xml file in the iPhoto Library actually &lt;b&gt;is invalid&lt;/b&gt; - it doesn&#039;t have the proper header. First hack Mac::PropertyList to accept the dodgy header, but later decide to keep that standard and put the hack into my script instead.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Design&lt;/b&gt;&lt;br /&gt;
Decide to make a directory next to the iPhoto Library which is full of symlinks pointing into the actual library. Directories in this tree will correspond to Albums in iPhoto, and the links will be named such that the alphabetical order used by mythgallery corresponds to the order in iPhoto.&lt;br /&gt;
Try and get this working on the linux box and also via Samba but in the end it&#039;s simplest to run the code and create the symlink tree &lt;b&gt;on my mac&lt;/b&gt; and then &lt;b&gt;rsync&lt;/b&gt; both the iPhoto Library and the symlink tree across to the linux box. &lt;br /&gt;
Don&#039;t use samba, it stuffs up the annoying &quot;:&quot; that iPhoto uses in paths, at least for me. rsync handles it fine, it&#039;s not even that Mac-specific one to my knowledge, just whatever is on my Ubuntu box.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Code&lt;/b&gt;&lt;br /&gt;
You&#039;ll need &lt;a href=&quot;/tgould/software/iPhoto/iPhoto.pm&quot;&gt;Mac::iPhoto 0.1-timg&lt;/a&gt;, which is the modification of 0.1 available on cpan to work with iPhoto 7.1.3, and Mac::PropertyList 1.31 from cpan. I guess I should put my code on CPAN, but just wanted to get it all up here for now.&lt;br /&gt;
Once that&#039;s available, you will of course need the actual &lt;a href=&quot;/tgould/software/iPhoto/iPhotoToDirectories&quot;&gt;iPhotoToDirectories&lt;/a&gt; script. It&#039;s all hard-coded - but you wouldn&#039;t have made it this far if you couldn&#039;t edit it to work in your situation :)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Operation&lt;/b&gt;&lt;br /&gt;
You&#039;ll need &lt;i&gt;the same directory structure on both the mac and the linux box&lt;/i&gt; as the symlinks get created on the mac but are de-referenced on the linux box.&lt;br /&gt;
Once it&#039;s all in place, run iPhotoToDirectories on your mac whenever you want. It takes a long time, so I wouldn&#039;t script it. Maybe an overnight cronjob if you keep your Mac on all night. I don&#039;t so I just run it when I remember.&lt;br /&gt;
Then rsync both the iPhoto Library and the symlink tree to the linux box.&lt;br /&gt;
Finally, chmod -R a+rx the linux directories if the uid on your mac is different from your myth user.&lt;br /&gt;
And then, assuming mythgallery can navigate to that symlink directory, it should work and the browsing should be significantly more useful than it was before browsing the raw directory.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Known issues&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;br /&gt;
&lt;li&gt;Mac::iPhoto&#039;s parsing is amazingly slow, ie. ~30mins for me&lt;br /&gt;
&lt;li&gt;hard-coded paths&lt;br /&gt;
&lt;li&gt;ampersands (&amp;) in album names break things&lt;br /&gt;
&lt;li&gt;empty albums should be not put into output&lt;br /&gt;
&lt;li&gt;sorting could be much improved&lt;br /&gt;
&lt;li&gt;would be nice to understand Events too, hmmm...&lt;br /&gt;
&lt;li&gt;lots more UNknown issues, for sure. Let me know!&lt;br /&gt;
&lt;/ul&gt;&lt;br /&gt;
But hey it &lt;b&gt;works&lt;/b&gt;! And with a full-time life that&#039;s enough for me right now. 
    </content:encoded>

    <pubDate>Sat, 19 Jul 2008 20:19:46 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/410-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Phoebe Tests Flickr Video</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/394-Phoebe-Tests-Flickr-Video.html</link>
            <category>Family</category>
            <category>Mobile Devices</category>
            <category>Net</category>
            <category>Photography</category>
            <category>Technology</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/394-Phoebe-Tests-Flickr-Video.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=394</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=394</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    &lt;object type=&quot;application/x-shockwave-flash&quot; width=&quot;400&quot; height=&quot;300&quot; data=&quot;http://www.flickr.com/apps/video/stewart.swf?v=1.172&quot; classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;&gt; &lt;param name=&quot;flashvars&quot; value=&quot;intl_lang=en-us&amp;amp;photo_secret=c2d0b1e12d&amp;amp;photo_id=2414366205&amp;amp;show_info_box=true&quot;&gt;&lt;/param&gt; &lt;param name=&quot;movie&quot; value=&quot;http://www.flickr.com/apps/video/stewart.swf?v=1.172&quot;&gt;&lt;/param&gt; &lt;param name=&quot;bgcolor&quot; value=&quot;#000000&quot;&gt;&lt;/param&gt; &lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;embed type=&quot;application/x-shockwave-flash&quot; src=&quot;http://www.flickr.com/apps/video/stewart.swf?v=1.172&quot; bgcolor=&quot;#000000&quot; allowfullscreen=&quot;true&quot; flashvars=&quot;intl_lang=en-us&amp;amp;photo_secret=c2d0b1e12d&amp;amp;photo_id=2414366205&amp;amp;flickr_show_info_box=true&quot; height=&quot;300&quot; width=&quot;400&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Tue, 15 Apr 2008 12:16:48 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/394-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Mac-free</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/387-Mac-free.html</link>
            <category>Hardware</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/387-Mac-free.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=387</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=387</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    Since day one, the DVD drive on my macbook has been pretty flaky. Doesn&#039;t read commercial DVDs properly, nor burn reliably. This never really bothered me, as a I have an external (faster) burner, and a DVD player on the home theater.&lt;br /&gt;
&lt;br /&gt;
However, for a few months it has &lt;b&gt;also&lt;/b&gt; had a nasty fan sound - the type that persists for a while but you know will eventually lead to fan death.&lt;br /&gt;
&lt;br /&gt;
Between dealing with a new child, renovating and work I haven&#039;t found the mental space required to give up the precious device for the inevitable return to manufacturer for repair, since I use it for everything at work and everything at home. Sometimes it has been used every waking moment for several days. &lt;br /&gt;
&lt;br /&gt;
But now, the fan has died it&#039;s death, and some monitoring sensor or other has decided that this means running the CPU for any length of time (&gt;10 minutes or so) is not a good idea, and as such, the machine turns itself off.&lt;br /&gt;
&lt;br /&gt;
So, it&#039;s off to meet it&#039;s maker, and hopefully be reincarnated better than it ever was.&lt;br /&gt;
&lt;br /&gt;
But, that means I&#039;m Mac-less, so email, contact info, IM, photos, the lot are all on hold for a while. Perhaps ring my mobile if you really need me. 
    </content:encoded>

    <pubDate>Wed, 09 Jan 2008 12:01:10 -0600</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/387-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Wii</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/384-Wii.html</link>
            <category>Games</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/384-Wii.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=384</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=384</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    So, despite not intending to get each other anything for Christmas, Liz and I ended up buying each other half of a &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1439&amp;amp;entry_id=384&quot; title=&quot;http://uk.wii.com/&quot;  onmouseover=&quot;window.status=&#039;http://uk.wii.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Nintendo Wii&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
This little gadget is an amazing amount of fun, advertised all over the TV and most people have heard of them by now so I won&#039;t blab on much except the controllers are great fun to use. So much so that we both have sore arms from frantic Tennis-ing and Mario-ing between screaming baby time.&lt;br /&gt;
&lt;br /&gt;
Even the older, non-gaming generation get in to it very easily, having a hit of tennis and understanding the instinctive control methods immediately. And nobody has yet commented that &quot;the graphics aren&#039;t as good as the other current consoles.&quot; They&#039;re too busy having social fun instead.&lt;br /&gt;
&lt;br /&gt;
Funniest yet though goes to Meaghan and Dave boxing the proverbial out of each other. For your amusement:&lt;br /&gt;
&lt;object width=&quot;425&quot; height=&quot;350&quot;&gt; &lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/40a3s-YsnDw&quot;&gt; &lt;/param&gt; &lt;embed src=&quot;http://www.youtube.com/v/40a3s-YsnDw&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;425&quot; height=&quot;350&quot;&gt; &lt;/embed&gt; &lt;/object&gt; 
    </content:encoded>

    <pubDate>Sun, 30 Dec 2007 21:23:46 -0600</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/384-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Things</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/367-Things.html</link>
            <category>Cycling</category>
            <category>Family</category>
            <category>Honeymakers</category>
            <category>Jersey Kerb</category>
            <category>Net</category>
            <category>Photography</category>
            <category>Real Life</category>
            <category>Travel</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/367-Things.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=367</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=367</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    Well, you can probably guess from the slackness in blogging I&#039;m showing here that life has been busy. The most obvious reason is of course the baby who is showing &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1403&amp;amp;entry_id=367&quot; title=&quot;http://flickr.com/photos/26835249@N00/1728126220/&quot;  onmouseover=&quot;window.status=&#039;http://flickr.com/photos/26835249@N00/1728126220/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;all signs of being healthy&lt;/a&gt;, and arriving early December. The midwife thinks possibly earlier, but we&#039;d rather it not because she is away until the end of November.&lt;br /&gt;
&lt;br /&gt;
There&#039;s &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1404&amp;amp;entry_id=367&quot; title=&quot;http://www.ozclothnappies.org/whycloth&quot;  onmouseover=&quot;window.status=&#039;http://www.ozclothnappies.org/whycloth&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;modern cloth nappies galore&lt;/a&gt; here now, and buckets for dirty ones, plus of course clothes, wraps, furniture, car seat, pram, you name it. I&#039;ve heard it described as the biggest consumer spend a couple goes through (after housing), and it&#039;s truly scary what some companies tell you that you &#039;need&#039; to have.&lt;br /&gt;
&lt;br /&gt;
We&#039;ve been to birthing and parenting classes and spent countless hours reading stuff online so apparently we now know all, true experts in the field. Except it will of course have no bearing on the reality of actually &lt;b&gt;having&lt;/b&gt; a child to look after 24 hours a day.&lt;br /&gt;
&lt;br /&gt;
It was interesting to compare out situation to others in the class though - we&#039;re much better off and more prepared than several others, so that gives us a bit of hope.&lt;br /&gt;
&lt;br /&gt;
Trying to organise a couple of short holidays before the due date too.&lt;br /&gt;
&lt;br /&gt;
Some other quick point-form news:&lt;br /&gt;
&lt;ul&gt;&lt;br /&gt;
&lt;li&gt;Rain. Yay.&lt;br /&gt;
&lt;li&gt;I &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1405&amp;amp;entry_id=367&quot; title=&quot;http://www.flickr.com/photos/reverb/1728133880/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/1728133880/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;did&lt;/a&gt; the &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1406&amp;amp;entry_id=367&quot; title=&quot;http://www.springcycle.com.au/&quot;  onmouseover=&quot;window.status=&#039;http://www.springcycle.com.au/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Spring Cycle&lt;/a&gt; and home again, personal best time. Then we slept most of the afternoon.&lt;br /&gt;
&lt;li&gt;We have a new home phone, this one is &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1412&amp;amp;entry_id=367&quot; title=&quot;http://en.wikipedia.org/wiki/Voice_over_IP&quot;  onmouseover=&quot;window.status=&#039;http://en.wikipedia.org/wiki/Voice_over_IP&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;VoIP&lt;/a&gt; from &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1407&amp;amp;entry_id=367&quot; title=&quot;http://www.mynetfone.com.au&quot;  onmouseover=&quot;window.status=&#039;http://www.mynetfone.com.au&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;MyNetFone&lt;/a&gt;. Pretty amazing deal, recommended.&lt;br /&gt;
&lt;li&gt;Renovations are all done, except we need some new blinds now. Thanks to our parents for helping out with bits and pieces.&lt;br /&gt;
&lt;li&gt;The car had it&#039;s one year (and first!) service, no problems found. We also have some fuel containers to stop us trekking out to &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1408&amp;amp;entry_id=367&quot; title=&quot;http://www.thebiodieselstation.com/&quot;  onmouseover=&quot;window.status=&#039;http://www.thebiodieselstation.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Marrickville&lt;/a&gt; all the time. It&#039;s going to get a lot less use now that Liz has &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1409&amp;amp;entry_id=367&quot; title=&quot;http://www.flickr.com/photos/reverb/1728122820/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/1728122820/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;finished work&lt;/a&gt;.&lt;br /&gt;
&lt;li&gt;Had a fair few gigs with &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1410&amp;amp;entry_id=367&quot; title=&quot;http://www.flickr.com/photos/reverb/1728108980/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/1728108980/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;both&lt;/a&gt; &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1411&amp;amp;entry_id=367&quot; title=&quot;http://www.flickr.com/photos/reverb/1728119572/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/1728119572/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;bands&lt;/a&gt; recently, two of which have been the best gigs we&#039;ve done with the respective bands. There&#039;s few more before the end of the year (and my free time!).&lt;br /&gt;
&lt;/ul&gt; 
    </content:encoded>

    <pubDate>Fri, 26 Oct 2007 09:15:32 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/367-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>iPhone!</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/351-iPhone!.html</link>
            <category>Hardware</category>
            <category>Mobile Devices</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/351-iPhone!.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=351</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=351</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    The world has gone &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1334&amp;amp;entry_id=351&quot; title=&quot;http://www.apple.com/iphone/&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/iphone/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;iPhone&lt;/a&gt; crazy, with a peak of four stories per day iPhone related on the &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1335&amp;amp;entry_id=351&quot; title=&quot;http://www.smh.com.au/technology/&quot;  onmouseover=&quot;window.status=&#039;http://www.smh.com.au/technology/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Sydney Morning Herald&lt;/a&gt;. Note the Sydney part - you can&#039;t even &lt;b&gt;buy&lt;/b&gt; an iPhone outside of the US! In fact, as a write this now, there&#039;s &lt;b&gt;still&lt;/b&gt; four stories linked there!&lt;br /&gt;
&lt;br /&gt;
Being well known as a lover of Apple technology, you might expect me to be salivating over the new shiny toy, and perhaps even &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1336&amp;amp;entry_id=351&quot; title=&quot;http://www.smh.com.au/news/phones--pdas/my-phones-an-iphone/2007/07/05/1183351365490.html&quot;  onmouseover=&quot;window.status=&#039;http://www.smh.com.au/news/phones--pdas/my-phones-an-iphone/2007/07/05/1183351365490.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;flying over the US just to get one like some people have&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
No.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1337&amp;amp;entry_id=351&quot; title=&quot;http://n95blog.com/this-says-it-all/&quot;  onmouseover=&quot;window.status=&#039;http://n95blog.com/this-says-it-all/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Here&#039;s Why&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
I bought one of those instead. It&#039;s here, now, works on Aussie networks, and doesn&#039;t require a USD70 per month data plan at a minimum just to use it, locked in for two years.&lt;br /&gt;
&lt;br /&gt;
And, as the link says, it has a whole lot more features.&lt;br /&gt;
&lt;br /&gt;
But it isn&#039;t quite as shiny. I&#039;ll admit that. 
    </content:encoded>

    <pubDate>Mon, 09 Jul 2007 11:20:02 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/351-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Do Not Call Register</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/338-Do-Not-Call-Register.html</link>
            <category>Net</category>
            <category>Real Life</category>
            <category>Technology</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/338-Do-Not-Call-Register.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=338</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=338</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    In case you haven&#039;t found it yet, Australian citizens are expected to opt-out of receiving telemarketing calls by going to &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1271&amp;amp;entry_id=338&quot; title=&quot;https://www.donotcall.gov.au/&quot;  onmouseover=&quot;window.status=&#039;https://www.donotcall.gov.au/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;this website&lt;/a&gt; and registering phone numbers that they don&#039;t want to receive such calls at.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;&lt;b&gt;How does the register work?&lt;/b&gt;&lt;br /&gt;
Under the Do Not Call Register Act 2006, telemarketers can check their calling lists against the Do Not Call Register. If a telemarketer calls a number on the Do Not Call Register, they may be in breach of the Act, and may face penalties. &lt;/blockquote&gt;&lt;br /&gt;
I firmly believe that it should be the other way around (ie. register if you &lt;b&gt;do&lt;/b&gt; want to receive such calls), but that would of course offend big business. As it stands, there&#039;s plenty of exceptions on there they can use to call you anyway.&lt;br /&gt;
&lt;br /&gt;
Still, better than nothing I guess.&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Tue, 08 May 2007 11:31:44 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/338-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>One-man bands</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/334-One-man-bands.html</link>
            <category>Bands</category>
            <category>Computers</category>
            <category>Music</category>
            <category>Technology</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/334-One-man-bands.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=334</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=334</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1256&amp;amp;entry_id=334&quot; title=&quot;http://www.smh.com.au/news/home-audio/oneman-bands/2007/04/10/1175971104205.html&quot;  onmouseover=&quot;window.status=&#039;http://www.smh.com.au/news/home-audio/oneman-bands/2007/04/10/1175971104205.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;This story at SMH&lt;/a&gt; reminded me that I haven&#039;t posted anything about the conversion of the room off our kitchen from a &quot;random storage of boxes&quot; room. Into something far better. A music room. &lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1257&amp;amp;entry_id=334&quot; title=&quot;http://www.flickr.com/photos/reverb/468251972/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/468251972/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Behold!&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I&#039;m still working my way through most of the technology, but the guts are in place and it&#039;s now at the point where I can&#039;t blame lack of anything for my lack of musical output recently.&lt;br /&gt;
&lt;br /&gt;
Long-time readers (I&#039;ve had a web presence since 1997 or so - guess I should have an anniversary or something but I don&#039;t know exact dates) may recall I used to have a music page available, with all sorts of information on bands I was in, MIDI files I&#039;d created, my instruments and influences, fun stuff like that. Perhaps I&#039;ll get around to resurrecting that if my output increases, although it seems that all the cool kids are on MySpace these days. 
    </content:encoded>

    <pubDate>Sun, 22 Apr 2007 23:32:23 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/334-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Catchup Blogging</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/317-Catchup-Blogging.html</link>
            <category>Cycling</category>
            <category>Deutschland</category>
            <category>Europe 2002-3</category>
            <category>Europe 2006</category>
            <category>Hardware</category>
            <category>Jersey Kerb</category>
            <category>Music</category>
            <category>Real Life</category>
            <category>Software</category>
            <category>Sydney</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/317-Catchup-Blogging.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=317</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=317</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    OK, News time. It&#039;s been a while.&lt;br /&gt;
I&#039;ve uploaded some photos to &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1136&amp;amp;entry_id=317&quot; title=&quot;http://www.flickr.com/photos/reverb/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;my Flickr account&lt;/a&gt; which have titles showing a pictorial version of what we&#039;ve been doing recently.&lt;br /&gt;
There&#039;s some from Adelaide (&lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1137&amp;amp;entry_id=317&quot; title=&quot;http://www.flickr.com/photos/reverb/408498215/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/408498215/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;1&lt;/a&gt; &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1138&amp;amp;entry_id=317&quot; title=&quot;http://www.flickr.com/photos/reverb/408498217/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/408498217/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;2&lt;/a&gt; &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1139&amp;amp;entry_id=317&quot; title=&quot;http://www.flickr.com/photos/reverb/408498221/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/408498221/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;3&lt;/a&gt; &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1140&amp;amp;entry_id=317&quot; title=&quot;http://www.flickr.com/photos/reverb/408498222/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/408498222/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;4&lt;/a&gt;), some from our recent weekend back up to the Hunter Valley to celebrate our wedding anniversary (yep, it&#039;s been over a year now...) (&lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1141&amp;amp;entry_id=317&quot; title=&quot;http://www.flickr.com/photos/reverb/408498226/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/408498226/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;1&lt;/a&gt; &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1142&amp;amp;entry_id=317&quot; title=&quot;http://www.flickr.com/photos/reverb/408502678/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/408502678/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;2&lt;/a&gt;), and even an &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1143&amp;amp;entry_id=317&quot; title=&quot;http://www.flickr.com/photos/reverb/408502679/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/408502679/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;ugly product of our veggie patch&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Margaret&#039;s house has been on the market for a while and is now sold, she&#039;s looking for a place to buy and has a few in mind. She may be moving in with us during the change-over period.&lt;br /&gt;
&lt;br /&gt;
So we&#039;ve re-organised the house a bit. We&#039;ve now got a separate (small) room devoted to music. It&#039;s good to have everything out and in the one place, and I&#039;ve been inspired to do some recording, helped out with &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1144&amp;amp;entry_id=317&quot; title=&quot;http://www.m-audio.com/products/en_us/FireWire1814-main.html&quot;  onmouseover=&quot;window.status=&#039;http://www.m-audio.com/products/en_us/FireWire1814-main.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;a computer audio interface I found cheap on eBay&lt;/a&gt;. Still trying to decide what software I want to use with it though.&lt;br /&gt;
&lt;br /&gt;
The junk that used to be in that room has now sort-of migrated to the spare room, but it could be consolidated to make room for Margaret should the need arise. &lt;br /&gt;
&lt;br /&gt;
Around the house, I&#039;ve been cleaning out gutters and getting things organised in preparation for the arrival of our &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1145&amp;amp;entry_id=317&quot; title=&quot;http://www.tankworks.com.au/&quot;  onmouseover=&quot;window.status=&#039;http://www.tankworks.com.au/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;water tanks&lt;/a&gt;. The fact that it&#039;s been raining a lot recently has been annoying us, thinking of the wastage. It looks like we&#039;d have to vote capital-L Liberal to get the government to do something about water recycling, so becoming as detached as possible from it all is appealing.&lt;br /&gt;
&lt;br /&gt;
Put some of the wine from our Hunter trip (came back with three cases!) under the house in a sort-of cellar arrangement. The conditions are good but it&#039;s hard to get to. Should be good for medium-long-term storage though.&lt;br /&gt;
&lt;br /&gt;
We headed off to the &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1146&amp;amp;entry_id=317&quot; title=&quot;http://www.whiskeyexperience.com.au/&quot;  onmouseover=&quot;window.status=&#039;http://www.whiskeyexperience.com.au/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Whiskey Experience&lt;/a&gt; again a few days ago - a great fun evening which we figure is just to raise brand awareness. Not that many people around us were aware of things around themselves by the end of proceedings!&lt;br /&gt;
&lt;br /&gt;
One of Liz&#039;s birthday celebrations this year was a trip to the &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1147&amp;amp;entry_id=317&quot; title=&quot;http://www.lowenbrau.com.au/&quot;  onmouseover=&quot;window.status=&#039;http://www.lowenbrau.com.au/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Löwenbräu Keller&lt;/a&gt;, something I haven&#039;t done for years and an evening we thoroughly enjoyed. The band there seems to do the same show every night, but it&#039;s very entertaining. Plus we get to drink great beer and practice our German.&lt;br /&gt;
&lt;br /&gt;
... Which is good, because &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1148&amp;amp;entry_id=317&quot; title=&quot;http://www.sschnell.net/&quot;  onmouseover=&quot;window.status=&#039;http://www.sschnell.net/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Sebastian Schnelle&lt;/a&gt; (whom we stayed with &lt;a href=&quot;/cgi-bin/blosxom_europe.cgi/Europe2002/Europe/Deutschland/Deutschland_1&quot;&gt;at&lt;/a&gt; &lt;a href=&quot;/cgi-bin/blosxom_europe.cgi/Europe2002/Europe/Deutschland/Deutschland_2&quot;&gt;least&lt;/a&gt; &lt;a href=&quot;/cgi-bin/blosxom_europe.cgi/Europe2002/Europe/Deutschland/Deutschland_4&quot;&gt;three&lt;/a&gt; times in Europe 2002-3 and caught up with again &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/categories/53-Deutschland&quot;&gt;early last year&lt;/a&gt;) is back in the country to do his PhD in Brisbane. He and his girlfriend Jana flew into Sydney last week and we caught up a few times. She&#039;s still in learn-English mode, so we had a few conversations with me speaking German and her English, and my lack of skill there seemed to give her more confidence.&lt;br /&gt;
&lt;br /&gt;
Oh, and I buggered my knee badly about a month ago, which is the worst it&#039;s ever been. I&#039;ve had plenty of days working from home and far less cycling. I have a specialist appointment next week, so hopefully I can get something done about it.&lt;br /&gt;
&lt;br /&gt;
Another &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1153&amp;amp;entry_id=317&quot; title=&quot;http://www.jkband.com.au/&quot;  onmouseover=&quot;window.status=&#039;http://www.jkband.com.au/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Jersey Kerb&lt;/a&gt; gig happened last Friday - the first with Jono playing keyboards and me back on bass after &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1154&amp;amp;entry_id=317&quot; title=&quot;http://monted.livejournal.com/&quot;  onmouseover=&quot;window.status=&#039;http://monted.livejournal.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Ed&lt;/a&gt; left for England&lt;/a&gt;. We played pretty well I thought, but the crowd was both thin and lacking energy. I think we have a job for our manager to get us sorted in a new venue or with some more aggressive advertising. Still great fun though.&lt;br /&gt;
&lt;br /&gt;
Surely that&#039;s enough topic-hopping for now. Congratulations if you made it this far! 
    </content:encoded>

    <pubDate>Sat, 03 Mar 2007 17:46:44 -0600</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/317-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>linux.conf.au 2007</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/312-linux.conf.au-2007.html</link>
            <category>Computers</category>
            <category>Linux</category>
            <category>Open-Source</category>
            <category>Work</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/312-linux.conf.au-2007.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=312</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=312</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    I&#039;m out at New South Wales university this week for &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1109&amp;amp;entry_id=312&quot; title=&quot;http://lca2007.linux.org.au/&quot;  onmouseover=&quot;window.status=&#039;http://lca2007.linux.org.au/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;linux.conf.au&lt;/a&gt;, a tech-oriented conference. This is the fourth time I&#039;ve been along to one of these (they run every year), and this year it&#039;s being held in Sydney, back where the first one was that I came to in 2001.&lt;br /&gt;
The free software culture is generating some amazing things - one of the highlights for me has been the talks on the &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1110&amp;amp;entry_id=312&quot; title=&quot;http://www.laptop.org/&quot;  onmouseover=&quot;window.status=&#039;http://www.laptop.org/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;One Laptop Per Child&lt;/a&gt; project - these guys are really thinking how to bring technology to huge numbers of people (their target market is one billion children in the world), which involves quite a lot of rethinking existing ways of doing things. One telling statistic is that 60% of the children in the world have &lt;b&gt;no power&lt;/b&gt; at their place of residence, so requiring a device to be able to draw power off the grid just was never going to work.&lt;br /&gt;
Plenty of talks more related to my work as well, the details of which I won&#039;t bore my mostly non-technical audience with! Suffice to say it&#039;s a nice break from work in the pleasant campus surroundings. 
    </content:encoded>

    <pubDate>Thu, 18 Jan 2007 12:42:28 -0600</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/312-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>For Sale: Powerbook G4 15&quot;</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/309-For-Sale-Powerbook-G4-15.html</link>
            <category>Computers</category>
            <category>Hardware</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/309-For-Sale-Powerbook-G4-15.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=309</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=309</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1100&amp;amp;entry_id=309&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/photos/reverb/345180277/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Photo Sharing&quot;&gt;&lt;img src=&quot;http://farm1.static.flickr.com/131/345180277_78ffc3b810_o.jpg&quot; width=&quot;400&quot; height=&quot;300&quot; alt=&quot;Powerbook Open&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;My old faithful Powerbook is &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1101&amp;amp;entry_id=309&quot; title=&quot;http://cgi.ebay.com.au/ws/eBayISAPI.dll?ViewItem&amp;amp;ih=020&amp;amp;sspagename=STRK%3AMESE%3AIT&amp;amp;viewitem=&amp;amp;item=300066843021&amp;amp;rd=1&amp;amp;rd=1&quot;  onmouseover=&quot;window.status=&#039;http://cgi.ebay.com.au/ws/eBayISAPI.dll?ViewItem&amp;amp;ih=020&amp;amp;sspagename=STRK%3AMESE%3AIT&amp;amp;viewitem=&amp;amp;item=300066843021&amp;amp;rd=1&amp;amp;rd=1&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;up for auction on eBay&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Drop by and bid if you are interested!&lt;br /&gt;
  
    </content:encoded>

    <pubDate>Thu, 04 Jan 2007 19:21:01 -0600</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/309-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Gadget Lust Strikes Again</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/291-Gadget-Lust-Strikes-Again.html</link>
            <category>Apple</category>
            <category>Cycling</category>
            <category>Hardware</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/291-Gadget-Lust-Strikes-Again.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=291</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=291</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    I held out for longer than most around me expected - but the shiny things got the better of me in the end. I&#039;ve just ordered a new &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1033&amp;amp;entry_id=291&quot; title=&quot;http://www.apple.com/au/macbook/macbook.html&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/au/macbook/macbook.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;MacBook&lt;/a&gt;, stacked to the hilt with good bits.&lt;br /&gt;
My poor Powerbook has been working nicely for a while, but the combination of wanting a smaller machine to cycle most days with and the slowness of the current one mostly due to lack of RAM meant that I&#039;ve been looking for a while at what was on offer.&lt;br /&gt;
The fact that Apple has made the RAM upgrades much cheaper now, along with bunging in the latest Core 2 Duo processor (finally) meant that I&#039;d run out of excuses. &lt;br /&gt;
Even the tax situation will work out as I&#039;ve pretty much finished writing off the current machine.&lt;br /&gt;
&lt;br /&gt;
I was thinking about the &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=1034&amp;amp;entry_id=291&quot; title=&quot;http://www.apple.com/au/macbookpro/&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/au/macbookpro/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;MacBook Pros&lt;/a&gt; but the new prices for those are crazy, and I can&#039;t justify the $1000 difference vs. the Macbook for what amounts to a bigger screen (that I don&#039;t want), marginally faster CPU, a Firewire 800 port (that I&#039;ve never used) and a better graphics card. I have another machine for playing games on, so the awesome graphics card in my current laptop has been completely wasted since I&#039;ve had it.&lt;br /&gt;
&lt;br /&gt;
Anyone want a pre-loved-by-Mac-addict Powerbook before it hits eBay? 
    </content:encoded>

    <pubDate>Fri, 17 Nov 2006 11:46:19 -0600</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/291-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Low-voltage home wiring</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/280-Low-voltage-home-wiring.html</link>
            <category>Computers</category>
            <category>Environment</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/280-Low-voltage-home-wiring.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=280</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=280</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    I was talking with the two most clever electrically-minded people I know about the idea of running a low-power DC voltage around modern homes a couple of months ago, as everything from your PC to your mobile phone takes the 240v from the wall and converts it down to 3.5-12v, loosing power and heat in the process.&lt;br /&gt;
&lt;br /&gt;
So imagine my surprise today to see that &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=975&amp;amp;entry_id=280&quot; title=&quot;http://www.treehugger.com/files/2006/09/google_pushes_f.php#perma&quot;  onmouseover=&quot;window.status=&#039;http://www.treehugger.com/files/2006/09/google_pushes_f.php#perma&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Google is promoting the same thing&lt;/a&gt;. Must have been a good idea after all. Go Google.&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Thu, 28 Sep 2006 21:09:04 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/280-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Greener Apples</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/279-Greener-Apples.html</link>
            <category>Hardware</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/279-Greener-Apples.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=279</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=279</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    Just to prove that I don&#039;t blindly love &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=973&amp;amp;entry_id=279&quot; title=&quot;http://www.apple.com/&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Apple&lt;/a&gt;&#039;s stuff, here&#039;s &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=974&amp;amp;entry_id=279&quot; title=&quot;http://www.greenpeace.org/apple/&quot;  onmouseover=&quot;window.status=&#039;http://www.greenpeace.org/apple/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Greenpeace&#039;s campaign&lt;/a&gt; to get Apple to clean up its act in terms of nasty chemicals used in the production of their hardware. 
    </content:encoded>

    <pubDate>Thu, 28 Sep 2006 09:19:13 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/279-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Like you didn't know already</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/246-Like-you-didnt-know-already.html</link>
            <category>Computers</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/246-Like-you-didnt-know-already.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=246</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=246</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    I&#039;m a geek.&lt;br /&gt;
&lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url=aHR0cDovL3d3dy5uZXJkdGVzdHMuY29tL2Z0X2NnLnBocD9pbQ==&amp;amp;entry_id=246&quot; title=&quot;http://www.nerdtests.com/ft_cg.php?im&quot;  onmouseover=&quot;window.status=&#039;http://www.nerdtests.com/ft_cg.php?im&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.nerdtests.com/images/ft/cg.php?val=5816&quot; alt=&quot;My computer geek score is greater than 92% of all people in the world! How do you compare? Click here to find out!&quot;&gt; &lt;/a&gt; 
    </content:encoded>

    <pubDate>Sun, 18 Jun 2006 21:28:35 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/246-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Broken FIFA</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/243-Broken-FIFA.html</link>
            <category>Software</category>
            <category>Sport</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/243-Broken-FIFA.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=243</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=243</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    Any good suggestions as to why &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=895&amp;amp;entry_id=243&quot; title=&quot;http://fifaworldcup.yahoo.com/06/en/w/match/template.html?id=1&quot;  onmouseover=&quot;window.status=&#039;http://fifaworldcup.yahoo.com/06/en/w/match/template.html?id=1&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;FIFA&#039;s live match thingy&lt;/a&gt; only works on a Mac if you use Safari, not Firefox? That&#039;s pretty ugly.&lt;br /&gt;
Oh well, watching the game anyway - bring on the next month!&lt;br /&gt;
Have a nasty cold so haven&#039;t slept and feel horrible. Not sure how late I will last. 
    </content:encoded>

    <pubDate>Sat, 10 Jun 2006 02:58:24 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/243-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>I hate things that spin</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/150-I-hate-things-that-spin.html</link>
            <category>Europe 2006</category>
            <category>Hardware</category>
            <category>Wedding</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/150-I-hate-things-that-spin.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=150</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=150</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    Grrr. Woke up this morning, came into the computer room and heard a nasty grinding whirring noise. At first thought it was the fan on the laptop, perhaps gone bad with a dodgy bearing as they some times do.&lt;br /&gt;
Next, noticed it wouldn&#039;t get out of screen saver. They crash sometimes, so no worries really. Then noticed I couldn&#039;t connect to it in any way from my other computer. Also not too bad.&lt;br /&gt;
So, power it off, leave it for a while so that the fans won&#039;t have to run, and then start it up. Uh oh, this time a very sad looking &quot;No home folder&quot; icon flashing. Not good. By now some of you may have guessed that my laptop&#039;s hard drive has in fact crashed. I&#039;ve tried target disk mode onto both my linux box and Liz&#039;s laptop but no luck there. The linux box shows me:&lt;br /&gt;
&lt;blockquote&gt;[292836.278829] ieee1394: Error parsing configrom for node 0-00:1023&lt;br /&gt;
[292836.278980] ieee1394: Node changed: 0-00:1023 -&gt; 0-01:1023&lt;/blockquote&gt;&lt;br /&gt;
Eeeck. So, I&#039;m going to have to grab another disk, pull the thing apart and perform some surgery. Luckily, I backed up the contents of my home folder to a computer at work this week just gone, so I shouldn&#039;t loose too much.&lt;br /&gt;
&lt;br /&gt;
It&#039;s amazing how costs spring out of nowhere when you think you have a budget for a wedding and travel all organised. 
    </content:encoded>

    <pubDate>Sat, 21 Jan 2006 13:53:13 -0600</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/150-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Google Earth + GPS = Bliss</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/141-Google-Earth-+-GPS-Bliss.html</link>
            <category>Europe 2002-3</category>
            <category>Mobile Devices</category>
            <category>Net</category>
            <category>Photography</category>
            <category>Technology</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/141-Google-Earth-+-GPS-Bliss.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=141</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=141</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=703&amp;amp;entry_id=141&quot; title=&quot;http://earth.google.com/&quot;  onmouseover=&quot;window.status=&#039;http://earth.google.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Google Earth&lt;/a&gt; really rocks our world. It is the killer app - especially since I stumbled across a non-official Mac version :)&lt;br /&gt;
Before Liz and I left for our trip to Europe last time, my over-kind work mates &lt;a href=&quot;/~reverb/cgi-bin/blosxom_europe.cgi/Europe2002/Oceania/Australia/Before_Leaving#2002Aug17_01&quot;&gt;gave me GPS&lt;/a&gt;. This was a fun toy to carry around the place, but the true value has only just been made apparent to me.&lt;br /&gt;
You see, anywhere we were, we could make a waypoint, kind of a &quot;we were here&quot; mark in space. Now, many years later, I managed to get my brain in gear enough to work out how to get those waypoints over to the ultra-fantastic tool that is Google Earth.&lt;br /&gt;
The results are totally engrossing - witness here the &lt;a href=&quot;/europe2002-3/europeSlideShow.php?album=Ireland%201&amp;date=20030628&amp;width=200&amp;exif=&amp;image=20030628-0011&quot;&gt;original photo&lt;/a&gt; of where Liz and I sat on top of Mount Errigal in Ireland, and as we had enough fore-thought to make a waypoint to prove that we actually made it, here&#039;s &lt;a href=&quot;/tgould/images/AnEaragail_GE.png&quot;&gt;how it looks&lt;/a&gt; in Google Earth (&lt;a href=&quot;/tgould/images/AnEaragail.kmz&quot;&gt;kmz&lt;/a&gt;).&lt;br /&gt;
Homework for the reader - use that kmz link (which should load in Google Earth), and fly around, comparing it to pictures before and after the one of Liz and I linked above (use the arrows above each picture). Remember that the highest-resolution data isn&#039;t even available for this particular location - others look far better.&lt;br /&gt;
We can do this for so many places we stayed, climbed, visited or just wanted to remember that it is now amazing seeing this information overlayed on the planet.&lt;br /&gt;
&lt;b&gt;Edit:&lt;/b&gt; Sorry, comments disabled on this post due to spam. I guess that&#039;s the price of being noticed... 
    </content:encoded>

    <pubDate>Fri, 23 Dec 2005 18:08:50 -0600</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/141-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Finger Frenzy</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/136-Finger-Frenzy.html</link>
            <category>Net</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/136-Finger-Frenzy.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=136</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=136</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    Can YOU beat 3.95 at &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=677&amp;amp;entry_id=136&quot; title=&quot;http://frenzy.morpheme.co.uk/frenzy/&quot;  onmouseover=&quot;window.status=&#039;http://frenzy.morpheme.co.uk/frenzy/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Finger Frenzy&lt;/a&gt;? Only 2 seconds faster and I&#039;m in the big league :)&lt;div class=&quot;serendipity_imageComment_center&quot; style=&quot;width: 110px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;img width=&#039;110&#039; height=&#039;71&#039; border=&#039;0&#039; hspace=&#039;5&#039; src=&#039;http://www.reverb.com.au/tgould/blog/uploads/frenzy395.serendipityThumb.png&#039; alt=&#039;&#039; /&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;3.95 seconds&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;Edit&lt;/b&gt;: I&#039;m down to 3.13, but Ed fluked a 2.8 and apparently &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=678&amp;amp;entry_id=136&quot; title=&quot;http://www.livejournal.com/users/n3pn3p/&quot;  onmouseover=&quot;window.status=&#039;http://www.livejournal.com/users/n3pn3p/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Penny&lt;/a&gt; can get 2.2 due to some weird freak keyboard thing. All natural QWERTY-powered here, my friends. 
    </content:encoded>

    <pubDate>Tue, 29 Nov 2005 08:19:03 -0600</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/136-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>ThoughtThing 0.4</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/124-ThoughtThing-0.4.html</link>
            <category>Open-Source</category>
            <category>Thoughtthing</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/124-ThoughtThing-0.4.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=124</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=124</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    It&#039;s been a long while since the last update, but I&#039;ve just released version 0.4 of my toy software project &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=599&amp;amp;entry_id=124&quot; title=&quot;http://sourceforge.net/projects/thoughtthing/&quot;  onmouseover=&quot;window.status=&#039;http://sourceforge.net/projects/thoughtthing/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;ThoughtThing&lt;/a&gt;. You can read more about what it does &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/archives/60-ThoughtThing-0.1-Released.html&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
In the great spirit of Open Source software, someone else did most of the work by changing my code for his purposes, and then sent the changes back to me so I could share them with everyone else. A bit of polish and everyone benefits.&lt;br /&gt;
He actually used the software to track the organisation of a conference with other people - it&#039;s quite nice when something I developed as something to do while looking for work when first back in Sydney has helped someone on the other side of the world organise a conference. 
    </content:encoded>

    <pubDate>Sun, 09 Oct 2005 21:20:56 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/124-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Optical Illusions</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/116-Optical-Illusions.html</link>
            <category>Net</category>
            <category>Technology</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/116-Optical-Illusions.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=116</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=116</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=565&amp;amp;entry_id=116&quot; title=&quot;http://www.michaelbach.de/ot/index.html&quot;  onmouseover=&quot;window.status=&#039;http://www.michaelbach.de/ot/index.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;This page&lt;/a&gt; of optical illusions totally rocks. Lots of time-wasting potential. 
    </content:encoded>

    <pubDate>Tue, 06 Sep 2005 23:27:51 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/116-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Flickr</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/114-Flickr.html</link>
            <category>Blogging</category>
            <category>Honeymakers</category>
            <category>Photography</category>
            <category>Site News</category>
            <category>Software</category>
            <category>Technology</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/114-Flickr.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=114</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=114</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    I&#039;m playing around with &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=616&amp;amp;entry_id=114&quot; title=&quot;http://www.flickr.com/&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Flickr&lt;/a&gt;, an online photo-sharing site.&lt;br /&gt;
All of my photos are stored in &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=617&amp;amp;entry_id=114&quot; title=&quot;http://www.apple.com/iphoto/&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/iphoto/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;iPhoto&lt;/a&gt;, and there&#039;s a great &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=618&amp;amp;entry_id=114&quot; title=&quot;http://connectedflow.com/flickrexport/&quot;  onmouseover=&quot;window.status=&#039;http://connectedflow.com/flickrexport/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;plugin&lt;/a&gt; you can load into it to give it the ability to upload photos to Flickr from right within iPhoto itself.&lt;br /&gt;
So, it happens that about an hour after I had finished a gig with The Honeymakers today, I uploaded a couple of pictures and within five minutes other people somewhere had viewed them. You can find photos based on &quot;tags&quot;, so for example I tagged these photos as &quot;jazz&quot;, &quot;music&quot;, &quot;saxophone&quot;, etc. Anyone who searches for these keywords will find my photos, along with those of anyone else who has used the same tags.&lt;br /&gt;
Also, if you scroll down this page and look on the left you&#039;ll see the latest three photos I have put up on Flickr, without having to leave this page.&lt;br /&gt;
If you already track my RSS feed, you may also like to add &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=619&amp;amp;entry_id=114&quot; title=&quot;http://www.flickr.com/services/feeds/photos_public.gne?id=26835249@N00&amp;amp;format=rss_200&quot;  onmouseover=&quot;window.status=&#039;http://www.flickr.com/services/feeds/photos_public.gne?id=26835249@N00&amp;amp;format=rss_200&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;this one&lt;/a&gt;, which will give you an entry every time I upload a photo. 
    </content:encoded>

    <pubDate>Sat, 03 Sep 2005 21:55:18 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/114-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Men At Work</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/112-Men-At-Work.html</link>
            <category>Music</category>
            <category>Net</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/112-Men-At-Work.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=112</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=112</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    From &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=545&amp;amp;entry_id=112&quot; title=&quot;http://www.somethingawful.com/articles.php?a=3143&quot;  onmouseover=&quot;window.status=&#039;http://www.somethingawful.com/articles.php?a=3143&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;somethingawful.com&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;serendipity_imageComment_right&quot; style=&quot;width: 178px&quot;&gt;&lt;div class=&quot;serendipity_imageComment_img&quot;&gt;&lt;img width=&#039;178&#039; height=&#039;243&#039; border=&#039;0&#039; hspace=&#039;5&#039; align=&#039;right&#039; src=&#039;http://www.reverb.com.au/tgould/blog/uploads/blog_images/downunder.gif&#039; alt=&#039;&#039; /&gt;&lt;/div&gt;&lt;div class=&quot;serendipity_imageComment_txt&quot;&gt;Men at Work&lt;/div&gt;&lt;/div&gt; 
    </content:encoded>

    <pubDate>Sat, 20 Aug 2005 13:57:48 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/112-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Skype</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/110-Skype.html</link>
            <category>Net</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/110-Skype.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=110</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=110</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    We now have a machine semi-permanently set up running &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=542&amp;amp;entry_id=110&quot; title=&quot;http://www.skype.com/&quot;  onmouseover=&quot;window.status=&#039;http://www.skype.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Skype&lt;/a&gt;. If you do too and feel like a chat, Skype us at &quot;tim.gould&quot;. It&#039;s free for both us and you.&lt;br /&gt;
Being able to call out to the world for not a lot of money is rather useful also. I&#039;ll be playing with that for the while, as I have purchased a bit of SkypeOut credit. This means you can call normal telephones anywhere in the world for &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=543&amp;amp;entry_id=110&quot; title=&quot;http://www.skype.com/products/skypeout/rates/&quot;  onmouseover=&quot;window.status=&#039;http://www.skype.com/products/skypeout/rates/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;very very reasonable rates&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Sat, 13 Aug 2005 21:59:51 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/110-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Clean-out time</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/108-Clean-out-time.html</link>
            <category>Computers</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/108-Clean-out-time.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=108</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=108</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    Liz is working nights and I&#039;m trying to stay up so our clocks are at least vaguely synchronised.&lt;br /&gt;
As such, I&#039;ve had time to place my &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=536&amp;amp;entry_id=108&quot; title=&quot;http://cgi.ebay.com.au/ws/eBayISAPI.dll?ViewItem&amp;amp;category=4313&amp;amp;item=5224919838&quot;  onmouseover=&quot;window.status=&#039;http://cgi.ebay.com.au/ws/eBayISAPI.dll?ViewItem&amp;amp;category=4313&amp;amp;item=5224919838&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Dreamcast on eBay&lt;/a&gt;. Didn&#039;t have much success last time around on eBay so here&#039;s hoping.&lt;br /&gt;
May whack a few more things up there while I&#039;m at it. I&#039;m forced to admit their listing fees are quite a bit more reasonable that I remember.&lt;br /&gt;
&lt;b&gt;Edit&lt;/b&gt;: The &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=537&amp;amp;entry_id=108&quot; title=&quot;http://cgi.ebay.com.au/ws/eBayISAPI.dll?ViewItem&amp;amp;rd=1&amp;amp;item=8208656178&quot;  onmouseover=&quot;window.status=&#039;http://cgi.ebay.com.au/ws/eBayISAPI.dll?ViewItem&amp;amp;rd=1&amp;amp;item=8208656178&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Gameboy Advance&lt;/a&gt; we purchased while &lt;a href=&quot;/cgi/blosxom_europe.cgi/2003/07#2003Jul05_01&quot;&gt;in Ireland&lt;/a&gt; is up there now too. 
    </content:encoded>

    <pubDate>Sat, 30 Jul 2005 02:16:16 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/108-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Google Maps</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/103-Google-Maps.html</link>
            <category>Europe 2002-3</category>
            <category>Net</category>
            <category>Sydney</category>
            <category>Technology</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/103-Google-Maps.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=103</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=103</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    If you love maps and want to loose &lt;b&gt;huge&lt;/b&gt; amounts of your free time, check out &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=518&amp;amp;entry_id=103&quot; title=&quot;http://maps.google.com/&quot;  onmouseover=&quot;window.status=&#039;http://maps.google.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Google Maps&lt;/a&gt;.&lt;br /&gt;
Satellite images of the entire world are now online, and depending on where you are the resolution can be good enough to spot the gazebo in your back yard. Like for our house, for example.&lt;br /&gt;
Liz and I spent a few hours locating interesting landmarks of our trip, such as the Colosseum, Eiffel Tower, our places in London, Istanbul, etc. There&#039;s cars on the road and planes at the airports.&lt;br /&gt;
I just keep think it&#039;s like SimCity all over again, except it&#039;s real out there somewhere. Slashdot has some &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=519&amp;amp;entry_id=103&quot; title=&quot;http://slashdot.org/article.pl?sid=05/06/26/0139251&amp;amp;tid=217&quot;  onmouseover=&quot;window.status=&#039;http://slashdot.org/article.pl?sid=05/06/26/0139251&amp;amp;tid=217&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;good finds&lt;/a&gt; to get you started.&lt;br /&gt;
Or how about all of the &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=520&amp;amp;entry_id=103&quot; title=&quot;http://www.templetons.com/brad/unesco/&quot;  onmouseover=&quot;window.status=&#039;http://www.templetons.com/brad/unesco/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;UNESCO World Heritage Sites&lt;/a&gt;? 
    </content:encoded>

    <pubDate>Mon, 27 Jun 2005 21:49:55 -0500</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/103-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>
<item>
    <title>Yahoo! Creative Commons search</title>
    <link>http://www.reverb.com.au/tgould/blog/index.php?/archives/84-Yahoo!-Creative-Commons-search.html</link>
            <category>Net</category>
            <category>Site News</category>
    
    <comments>http://www.reverb.com.au/tgould/blog/index.php?/archives/84-Yahoo!-Creative-Commons-search.html#comments</comments>
    <wfw:comment>http://www.reverb.com.au/tgould/blog/wfwcomment.php?cid=84</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.reverb.com.au/tgould/blog/rss.php?version=2.0&amp;type=comments&amp;cid=84</wfw:commentRss>
    

    <author>webmaster@reverb.com.au (reverb)</author>
    <content:encoded>
    I noticed that this blog is the &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=453&amp;amp;entry_id=84&quot; title=&quot;http://search.yahoo.com/search?ei=UTF-8&amp;amp;fr=sfp&amp;amp;p=reverberations&amp;amp;cc=1&quot;  onmouseover=&quot;window.status=&#039;http://search.yahoo.com/search?ei=UTF-8&amp;amp;fr=sfp&amp;amp;p=reverberations&amp;amp;cc=1&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;number one result&lt;/a&gt; for &quot;reverberations&quot; over at Yahoo!&#039;s new Creative Commons search.&lt;br /&gt;
Not entirely sure how this works, but as you can see from the right-hand column down there, I have tagged this page as being licensed under Creative Commons, so they must understand that somehow.&lt;br /&gt;
If you, however, &lt;i&gt;don&#039;t&lt;/i&gt; understand what I&#039;m going on about, go have a look at &lt;a href=&quot;http://www.reverb.com.au/tgould/blog/exit.php?url_id=454&amp;amp;entry_id=84&quot; title=&quot;http://creativecommons.org/&quot;  onmouseover=&quot;window.status=&#039;http://creativecommons.org/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;this page&lt;/a&gt; which explains that CC is basically a well-defined and easily understood way of defining copyright on my work here. It ends up giving a bunch of common-sense and quite fair rights to anyone else who wants to do things with my work like quoting it or linking to it, and is the polar opposite of people trying to restrict your fair use rights.&lt;br /&gt;
It&#039;s the first time I&#039;ve ever come out as the top result for any web search (as far as I know). Wonder if it will ever happen again? 
    </content:encoded>

    <pubDate>Sat, 26 Mar 2005 00:05:00 -0600</pubDate>
    <guid isPermaLink="false">http://www.reverb.com.au/tgould/blog/index.php?/archives/84-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license>
</item>

</channel>
</rss>