<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ramblings of a Spooky Possum</title>
	<atom:link href="http://www.spooky-possum.org/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.spooky-possum.org/wordpress</link>
	<description></description>
	<lastBuildDate>Sun, 02 Jan 2011 20:08:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>1995? Again?</title>
		<link>http://www.spooky-possum.org/wordpress/?p=194</link>
		<comments>http://www.spooky-possum.org/wordpress/?p=194#comments</comments>
		<pubDate>Fri, 02 Jul 2010 20:27:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spooky-possum.org/wordpress/?p=194</guid>
		<description><![CDATA[Yesterday at work I ended up using perl to generate VRML. What decade is this?]]></description>
			<content:encoded><![CDATA[<p>Yesterday at work I ended up using <a title="perl" href="http://www.perl.org/">perl</a> to generate <a title="VRML" href="http://www.w3.org/MarkUp/VRML/">VRML</a>. What decade is this?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spooky-possum.org/wordpress/?feed=rss2&#038;p=194</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A New Job</title>
		<link>http://www.spooky-possum.org/wordpress/?p=1</link>
		<comments>http://www.spooky-possum.org/wordpress/?p=1#comments</comments>
		<pubDate>Thu, 02 Jul 2009 08:47:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.spooky-possum.org/wordpress/?p=1</guid>
		<description><![CDATA[For those who are wondering: I have started my new job. I am a visions systems engineer in the robotics and automation divison ofÂ  Scott Technology. Specifically I&#8217;m dealing with the automation of freezing works. This means my job involves: X-rays. Robots with spinning blades. Interfering with sheep. Two of these are actually mentioned in [...]]]></description>
			<content:encoded><![CDATA[<p>For those who are wondering: I have started my new job. I am a visions systems engineer in the robotics and automation divison ofÂ  <a href="http://www.scott.co.nz/">Scott Technology. </a>Specifically I&#8217;m dealing with the <a href="http://www.scott.co.nz/the_rtl_vision">automation of freezing works</a>. This means my job involves:</p>
<ul>
<li>X-rays.</li>
<li>Robots with spinning blades.</li>
<li>Interfering with sheep.</li>
</ul>
<p>Two of these are actually mentioned in my job description.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spooky-possum.org/wordpress/?feed=rss2&#038;p=1</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Could Possibly go Wrong?</title>
		<link>http://www.spooky-possum.org/wordpress/?p=7</link>
		<comments>http://www.spooky-possum.org/wordpress/?p=7#comments</comments>
		<pubDate>Fri, 26 Sep 2008 03:29:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spooky-possum.org/cgi-bin/pyblosxom.cgi/harmless.html</guid>
		<description><![CDATA[Just on the 2.24 code freeze a memory leak in the trash applet was pointed out to me. The proposed patch was simple: } g_object_unref (icon); + g_object_unref (info); } static void It came from a trusted contributor. I checked that the the info variable really did need unrefing. I ran it past the release [...]]]></description>
			<content:encoded><![CDATA[<p>Just on the 2.24 code freeze a memory leak in the trash applet was pointed out to me. The proposed patch was simple:</p>
<p>
<pre>
     }

   g_object_unref (icon);
+  g_object_unref (info);
 }

 static void
</pre>
</p>
<p>It came from a trusted contributor. I checked that the the <tt>info</tt> variable really did need unrefing. I ran it past the release team to get their approval for a freeze-break. So I applied the patch and sent 2.24.0 out the door.</p>
<p>The one thing I didn&#8217;t do was test the applet thoroughly with the patch applied. If you run the trash applet from 2.24.0 and empty the trash from the context menu then it will crash a few seconds later. Fortunately for me, by the time I woke up and got the bug report in my morning email, the team of  Pedro Villavicencio, Sebastien Bacher and Matthias Clasen had identified the root cause of the problem and the fix was tested and committed to SVN by lunchtime. (Vincent Untz rolled a 2.24.0.1 just in time for the official GNOME 2.24 release.)</p>
<p>So what went wrong with such a simple patch? The fix for the memory leak looks correct &#8211; and it is. The problem is the line above it: <tt>g_object_unref (icon);</tt>, <tt>icon</tt> is an object that should not be unrefed. The leaked <tt>info</tt> object was somehow protecting it from being overwritten once freed and the other code relying on it would go on quite happily. With the fix applied, the <tt>icon</tt> object was being overwritten and a segfault occurred the next time it was accessed.</p>
<p>There are two morals to this story: The first is that there is no such thing as a trivial patch. The second is that testing is essential: either by doing it in an automated way or by farming it out to all the people prepared to run beta versions. There are various stupid reasons why applets are hard to test, something I intend addressing in the coming release cycle, but my most immediate resolution is to respect the code freeze for everything that isn&#8217;t actually causing a crash (I fully expect to have forgotten this in six months time).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spooky-possum.org/wordpress/?feed=rss2&#038;p=7</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anya&#8217;s photos: updated</title>
		<link>http://www.spooky-possum.org/wordpress/?p=8</link>
		<comments>http://www.spooky-possum.org/wordpress/?p=8#comments</comments>
		<pubDate>Thu, 05 Jun 2008 10:31:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spooky-possum.org/cgi-bin/pyblosxom.cgi/anya-photos2.html</guid>
		<description><![CDATA[For my family, more photos. The photos are now in two sections, the first part is the same as the photo-set that was previously there, the new photos are all in part II.]]></description>
			<content:encoded><![CDATA[<p>For my family, <a href="http://www.spooky-possum.org/anya/pics/">more photos</a>. The photos are now in two sections, the first part is the same as the photo-set that was previously there, the new photos are all in part II.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spooky-possum.org/wordpress/?feed=rss2&#038;p=8</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anya&#8217;s photos: the first four days</title>
		<link>http://www.spooky-possum.org/wordpress/?p=9</link>
		<comments>http://www.spooky-possum.org/wordpress/?p=9#comments</comments>
		<pubDate>Sun, 25 May 2008 10:15:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spooky-possum.org/cgi-bin/pyblosxom.cgi/anya-photos.html</guid>
		<description><![CDATA[For my family, the first four days of Anya&#8217;s life in photos. Its one big page with all the photos, so be warned if you&#8217;re on a slow connection.]]></description>
			<content:encoded><![CDATA[<p>For my family, <a href="http://www.spooky-possum.org/anya/pics/">the first four days of Anya&#8217;s life in photos</a>. Its one big page with all the photos, so be warned if you&#8217;re on a slow connection.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spooky-possum.org/wordpress/?feed=rss2&#038;p=9</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anya Lynn McKinney</title>
		<link>http://www.spooky-possum.org/wordpress/?p=10</link>
		<comments>http://www.spooky-possum.org/wordpress/?p=10#comments</comments>
		<pubDate>Thu, 22 May 2008 11:06:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spooky-possum.org/cgi-bin/pyblosxom.cgi/anya.html</guid>
		<description><![CDATA[My daughter. Born at 5.13am, weighing 1.9 kg and 6 weeks premature. Mother and baby are doing well. Rage! &#8211; Anya at 30 minutes old. The labour was fast (four hours &#8211; this is a first child) and went well despite Anya coming bum first. At six weeks premature, Anya&#8217;s in the newborn intensive care [...]]]></description>
			<content:encoded><![CDATA[<p>My daughter. Born at 5.13am, weighing 1.9 kg and 6 weeks premature. Mother and baby are doing well.</p>
<p align="center"><img src="http://www.spooky-possum.org/callum/pics/anya-20070522-0600.jpg"/><br/><b>Rage!</b> &#8211; Anya at 30 minutes old.</p>
<p>The labour was fast (four hours &#8211; this is a first child) and went well despite Anya coming bum first. At six weeks premature, Anya&#8217;s in the newborn intensive care unit, but she&#8217;s breathing unaided and is suffering no problems other than the normal ones for her age.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spooky-possum.org/wordpress/?feed=rss2&#038;p=10</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The New Look Invest Applet</title>
		<link>http://www.spooky-possum.org/wordpress/?p=12</link>
		<comments>http://www.spooky-possum.org/wordpress/?p=12#comments</comments>
		<pubDate>Thu, 08 May 2008 10:39:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spooky-possum.org/cgi-bin/pyblosxom.cgi/invest-applet.html</guid>
		<description><![CDATA[Thanks to the superb work of Matteo Zandi the invest applet has undergone some major improvements. If you ever worried about the strange grey square, then the next gnome-applets release if for you. The stock-health indicator has been integrated with the main icon, it now looks better and takes less space. Spark-lines show recent activity. [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to the superb work of <a href="http://www.bayesfor.eu/wiki/user/matteo_zandi">Matteo Zandi</a> the invest applet has undergone some major improvements. If you ever worried about the strange grey square, then the next gnome-applets release if for you.</p>
<ul>
<li>The stock-health indicator has been integrated with the main icon, it now looks better and takes less space.</li>
<li>Spark-lines show recent activity.</li>
<li>Non-US stocks have better support.</li>
<li>Column headings are now printed: you don&#8217;t have to guess what the numbers mean.</li>
<li>You don&#8217;t have to right-click in exactly the right place to get the menu.</li>
</ul>
<p>Matteo has more improvements in the pipeline, but for now here are the before and after shots.</p>
<p align="center"><img src="http://www.spooky-possum.org/callum/pics/invest-before.jpg"/><br/><br/><b>before</b><br/></p>
<p align="center"><img src="http://www.spooky-possum.org/callum/pics/invest-after.jpg"/><br/><br/><b>after</b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spooky-possum.org/wordpress/?feed=rss2&#038;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Pram</title>
		<link>http://www.spooky-possum.org/wordpress/?p=13</link>
		<comments>http://www.spooky-possum.org/wordpress/?p=13#comments</comments>
		<pubDate>Tue, 06 May 2008 10:09:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spooky-possum.org/cgi-bin/pyblosxom.cgi/pram.html</guid>
		<description><![CDATA[This pram was the first serious thing we purchased in anticipation of Anya&#8217;s arrival. Since I&#8217;ve finally downloaded the photo off the camera I thought I&#8217;d better let my mother see it. The first thing of any sort we purchased for Anya was a strange woolen clown that everyone thinks is an octopus. The arms [...]]]></description>
			<content:encoded><![CDATA[<p>This pram was the first serious thing we purchased in anticipation of Anya&#8217;s arrival. Since I&#8217;ve finally downloaded the photo off the camera I thought I&#8217;d better let my mother see it.</p>
<p align="center"><img src="http://www.spooky-possum.org/callum/pics/pram.jpg"/></p>
<p>The first thing of any sort we purchased for Anya was a strange woolen clown that everyone thinks is an octopus. The arms and legs are crocheted spirals that look suspiciously like tentacles. I don&#8217;t have a photo yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spooky-possum.org/wordpress/?feed=rss2&#038;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>World45 is dead, long live World45</title>
		<link>http://www.spooky-possum.org/wordpress/?p=14</link>
		<comments>http://www.spooky-possum.org/wordpress/?p=14#comments</comments>
		<pubDate>Tue, 08 Apr 2008 10:34:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spooky-possum.org/cgi-bin/pyblosxom.cgi/w45isdead.html</guid>
		<description><![CDATA[Just over three weeks ago, World45&#8242;s sole investor decided to cut his losses and close the company. From his perspective I suppose this made a lot of sense, but it was rather sudden. The ironic bit is that I think we&#8217;d finally figured out how to get the company to the break even point. Unfortunately, [...]]]></description>
			<content:encoded><![CDATA[<p>Just over three weeks ago, World45&#8242;s sole investor decided to cut his losses and close the company. From his perspective I suppose this made a lot of sense, but it was rather sudden. The ironic bit is that I think we&#8217;d finally figured out how to get the company to the break even point. Unfortunately, the mistakes up until that point hadn&#8217;t given him a lot of confidence. At the end of the day it was his company and his choice.</p>
<p>There is hope for a World45 Mk II. Mariusz and Lipi are going to pick up the contracts we had lined up and World45 (2008) ltd. looks like it will rise from the ashes. It will be leaner and won&#8217;t have a lot of money behind it, but we&#8217;ve got a good source of contracts to form a base to our work. If you&#8217;re looking for experts in multi-core programming and optimisation: see <a href="http://www.world45.com">www.world45.com</a> (that bit about &#8220;we&#8217;re hiring&#8221; on the front page &#8211; probably a lie, but we might be able to find work for the right person).</p>
<p>Personally, I&#8217;m back in employment next week &#8211; working as a research associate in the local physics department. Back to lasers, atoms and PhD students. It will be a fun, but temporary, diversion. In the meantime I&#8217;ve been painting the house, preparing for the baby and doing all the odd-jobs that I&#8217;ve put off. Unemployment is hard work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spooky-possum.org/wordpress/?feed=rss2&#038;p=14</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>World45 is Hiring</title>
		<link>http://www.spooky-possum.org/wordpress/?p=15</link>
		<comments>http://www.spooky-possum.org/wordpress/?p=15#comments</comments>
		<pubDate>Sat, 01 Dec 2007 20:42:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spooky-possum.org/cgi-bin/pyblosxom.cgi/jobadvert.html</guid>
		<description><![CDATA[Do you fancy a bit of a challenge writing low-level C code to go as fast as possible on multi-core machines in a bare-metal sparc environment? Or do you like kernel hacking (Solaris and Linux)? Then we have the job for you at World45. Details can be found at www.world45.com. The catch? We want you [...]]]></description>
			<content:encoded><![CDATA[<p>Do you fancy a bit of a challenge writing low-level C code to go as fast as possible on multi-core machines in a bare-metal sparc environment? Or do you like kernel hacking (Solaris and Linux)? Then we have the job for you at <a href="http://www.world45.com">World45</a>. Details can be found at <a href="http://www.world45.com">www.world45.com</a>. The catch? We want you to start soon, and we&#8217;d like you to work in Dunedin, New Zealand. If you can&#8217;t handle either of these conditions feel free to send in a CV anyway; we&#8217;re often looking for people for contract work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spooky-possum.org/wordpress/?feed=rss2&#038;p=15</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

