<?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>mwh.geek.nz</title>
	<atom:link href="http://mwh.geek.nz/feed/" rel="self" type="application/rss+xml" />
	<link>http://mwh.geek.nz</link>
	<description></description>
	<lastBuildDate>Sun, 27 Nov 2011 03:40:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Election visualisation</title>
		<link>http://mwh.geek.nz/2011/11/27/election-visualisation/</link>
		<comments>http://mwh.geek.nz/2011/11/27/election-visualisation/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 00:31:45 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mwh.geek.nz/?p=216</guid>
		<description><![CDATA[I have hacked up a booth-by-booth visualisation of votes in Wellington Central. The visible (non-occluded) area of each circle is proportionate to the party vote received, and the circles proceed inwards from most votes. It only shows the top three five parties at each booth at the moment (from skimming over the data, further down [...]]]></description>
			<content:encoded><![CDATA[<p>I have hacked up a booth-by-booth <a href="http://mwh.geek.nz/elec2011/wellington-central.html">visualisation of votes in Wellington Central</a>. The visible (non-occluded) area of each circle is proportionate to the party vote received, and the circles proceed inwards from most votes. It only shows the top <del>three</del> five parties at each booth at the moment (from skimming over the data, further down than that they become negligibly small). It&#8217;s not really as interesting as I&#8217;d hoped, but I may try it on other electorates that might show something better later on.</p>
<p><strong>Update:</strong> I&#8217;ve extended it to the top five, rather than three, parties, and it gets a little more interesting then. The fifth-place party varies quite a bit.</p>
<p><strong>Update 2:</strong> More electorates:</p>
<ul>
<li><a href="http://mwh.geek.nz/elec2011/auckland-central.html">Auckland Central</a></li>
<li><a href="http://mwh.geek.nz/elec2011/christchurch-central.html">Christchurch Central</a></li>
<li><a href="http://mwh.geek.nz/elec2011/epsom.html">Epsom</a></li>
<li><a href="http://mwh.geek.nz/elec2011/mana.html">Mana</a></li>
<li><a href="http://mwh.geek.nz/elec2011/mangere.html">Mangere</a></li>
<li><a href="http://mwh.geek.nz/elec2011/manukau-east.html">Manukau East</a></li>
<li><a href="http://mwh.geek.nz/elec2011/mt-albert.html">Mt Albert</a></li>
<li><a href="http://mwh.geek.nz/elec2011/ohariu.html">Ōhariu</a></li>
<li><a href="http://mwh.geek.nz/elec2011/rongotai.html">Rongotai</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://mwh.geek.nz/2011/11/27/election-visualisation/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Announcing retail &#8211; tail with regular expressions</title>
		<link>http://mwh.geek.nz/2011/11/26/announcing-retail-tail-with-regular-expressions/</link>
		<comments>http://mwh.geek.nz/2011/11/26/announcing-retail-tail-with-regular-expressions/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 05:39:08 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mwh.geek.nz/?p=212</guid>
		<description><![CDATA[I have broken down and implemented my own tail command. retail can output that part of a file (or pipe) following the last match of a regular expression, which can be useful for logfiles and various other kinds of data. It is also a fully compliant implementation of the POSIX.1-2008 tail command, so you can [...]]]></description>
			<content:encoded><![CDATA[<p>I have broken down and implemented my own tail command. retail can output that part of a file (or pipe) following the last match of a regular expression, which can be useful for logfiles and various other kinds of data. It is also a fully compliant implementation of the POSIX.1-2008 tail command, so you can theoretically replace your system tail with it.</p>
<p>The driving use case of this for me is log files &#8211; I want to get all of the file after the current occurrence of some event. After establishing that I couldn&#8217;t do that with sed, and that although I probably could with awk it would be a bad idea, I set about writing this in C. It does exactly what I want, and I&#8217;ve also been over the <a href="http://pubs.opengroup.org/onlinepubs/9699919799/utilities/tail.html">POSIX tail spec</a> to add everything from that as well, so it is a usable tail command.</p>
<p>The code is <a href="https://github.com/mwh/retail">on GitHub</a> (for the moment at least), accessible with `git clone git://github.com/mwh/retail.git`, or in an automatic tarball https://github.com/mwh/retail/tarball/master . Although it satisfies my original use-case there are a couple of additions I&#8217;d still like to make along with efficiency improvements, and, of course &#8211; patches welcome.</p>
<p>Some usage examples:</p>
<pre>retail -r Beginning logfile.log</pre>
<p>Output everything after the last occurrence of &#8220;Beginning&#8221; in the file.</p>
<pre>retail -r Beginning -u 'succeeded|error' -f logfile.log</pre>
<p>Same as the last one, and continue reading as any lines are appended until one matches /succeeded|error/ (i.e., it contains either of those words), and then terminate.</p>
<pre>retail -n +10</pre>
<p>Start printing at line 10, until the end of the file. Just like in regular tail. Negative numbers, bare [-+]N, and -c work too.</p>
<p>Once more, <a href="https://github.com/mwh/retail">retail</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://mwh.geek.nz/2011/11/26/announcing-retail-tail-with-regular-expressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LCA video</title>
		<link>http://mwh.geek.nz/2010/10/22/lca-video/</link>
		<comments>http://mwh.geek.nz/2010/10/22/lca-video/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 05:41:29 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[GoboLinux]]></category>
		<category><![CDATA[LCA2010]]></category>

		<guid isPermaLink="false">http://mwh.geek.nz/?p=206</guid>
		<description><![CDATA[The video from my GoboLinux talk at linux.conf.au earlier this year is finally up. I can&#8217;t watch (too many claps), but it&#8217;s there for anybody else who wants. The /System/Aliens talk from the Distro Summit is still missing in action. I&#8217;m not sure whether it&#8217;s coming or not, but it&#8217;s looking unlikely at this point.]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://2009.r2.co.nz/20100118/50181.htm">video</a> from my <a href="http://mwh.geek.nz/2010/01/23/lca-day-5-and-the-gobolinux-talk/">GoboLinux talk</a> at <a href="http://lca2010.linux.org.au/">linux.conf.au</a> earlier this year is finally up. I can&#8217;t watch (too many claps), but <a href="http://2009.r2.co.nz/20100118/50181.htm">it&#8217;s there for anybody else who wants</a>.</p>
<p>The /System/Aliens talk from the Distro Summit is still missing in action. I&#8217;m not sure whether it&#8217;s coming or not, but it&#8217;s looking unlikely at this point.</p>
]]></content:encoded>
			<wfw:commentRss>http://mwh.geek.nz/2010/10/22/lca-video/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>De-Vodafoning the Nexus One</title>
		<link>http://mwh.geek.nz/2010/10/09/de-vodafoning-the-nexus-one/</link>
		<comments>http://mwh.geek.nz/2010/10/09/de-vodafoning-the-nexus-one/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 09:11:55 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mwh.geek.nz/?p=203</guid>
		<description><![CDATA[A few weeks ago I bought a Nexus One from Vodafone, which unfortunately comes with a Vodafone-specific firmware that doesn&#8217;t allow upgrading to any new versions that haven&#8217;t been blessed by corporate in the UK. I&#8217;d prefer to have the stock firmware, and I&#8217;d particularly prefer to have the recent 2.2.1 update, so I have [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I bought a <a href="http://mwh.geek.nz/2010/09/28/nexus-one-cell-data-and-parcels/">Nexus One</a> from Vodafone, which unfortunately comes with a Vodafone-specific firmware that doesn&#8217;t allow upgrading to any new versions that haven&#8217;t been blessed by corporate in the UK. I&#8217;d prefer to have the stock firmware, and I&#8217;d particularly prefer to have the recent 2.2.1 update, so I have reflashed it to the standard Google firmware.</p>
<p>I used the instructions from <a href="http://forum.vodafone.co.uk/topic/75512-google-nexus-one-release-android-221/page__view__findpost__p__490811">here</a> (a Vodafone UK forum thread!), and it all went smoothly. There&#8217;s no unlocking of the boot loader and no rooting of the device involved. The update took fifteen minutes or so and progressed pretty much on its own. I had to set a few things up again afterwards &#8211; the SwiftKey keyboard wasn&#8217;t activated, and Google Earth and Sky Map weren&#8217;t automatically restored the way the other applications were. No major issues.</p>
<p>I&#8217;m now running stock FRG83 Android 2.2.1, automatically upgraded from FRG33 shortly after install (make sure it&#8217;s on wifi not too long after update, or it&#8217;ll pull down 80MB over the mobile network). I started from the Vodafone FRF91, which is distinguished from the stock FRF91 by the kernel version display in &#8220;About Phone&#8221; showing &#8220;haley@&#8230;&#8221; instead of &#8220;android-build@&#8230;&#8221;. Search terms mentioned, I&#8217;ll just say it all went well, even if there were perhaps other things I could have done with my time right now.</p>
]]></content:encoded>
			<wfw:commentRss>http://mwh.geek.nz/2010/10/09/de-vodafoning-the-nexus-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nexus One, cell data, and parcels</title>
		<link>http://mwh.geek.nz/2010/09/28/nexus-one-cell-data-and-parcels/</link>
		<comments>http://mwh.geek.nz/2010/09/28/nexus-one-cell-data-and-parcels/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 07:11:46 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Nexus One]]></category>

		<guid isPermaLink="false">http://mwh.geek.nz/?p=199</guid>
		<description><![CDATA[Since Android seems interesting and the Nexus One looks like the best (and openest) option available, I picked one up the other day. I got it from Vodafone in the end, after a failed attempt to get it from a parallel importer. It&#8217;s cheaper from Vodafone at this point anyway. I&#8217;m using it on 2degrees [...]]]></description>
			<content:encoded><![CDATA[<p>Since Android seems interesting and the Nexus One looks like the best (and openest) option available, I picked one up the other day. I got it from Vodafone in the end, after a failed attempt to get it from a parallel importer. It&#8217;s cheaper from Vodafone at this point anyway. I&#8217;m using it on 2degrees at the moment and will probably make that jump too.</p>
<p>Vodafone has a new shipment of them in, and these ones <strong>don&#8217;t</strong> seem to they do have the Vodafone-specific firmware that the original lot did: they come with 2.2 (Froyo), FRF91, but still tied to Vodafone. I was all <a href="bloginblack.de/2010/07/how-to-upgrade-your-vodafone-google-nexus-one-from-epf30-to-froyo-today/">prepared to reflash to the stock firmware</a> but it isn&#8217;t necessary any more, which is a plus, (or, alternatively, it <strong>is</strong> a Vodafone firmware, they&#8217;ve just stopped showing it in the version number. I will keep the reflashing in mind for the future then, but for the moment I&#8217;m leaving it. <strong>Edit 2: </strong><a href="http://mwh.geek.nz/2010/10/09/de-vodafoning-the-nexus-one/">I updated it</a>). It still excluded Google Goggles, but that was easily installed from the market. It&#8217;s all going well so far but it&#8217;ll take a while longer to make a sensible assessment. I hope to get some development done for the platform in a couple of months, which was a lot of the point of the exercise.</p>
<p>And on the subject of cellphones, mostly for my own reference: a <a href="http://www.geekzone.co.nz/BarTender/7403">database of New Zealand cell tower locations</a>.</p>
<p>One more: <a href="http://redline.nzpost.co.nz/2010/08/wheres-my-parcel.html">NZ Post lets you track parcels via Twitter</a>. That&#8217;s pretty neat.</p>
<p>Link dump completed.</p>
]]></content:encoded>
			<wfw:commentRss>http://mwh.geek.nz/2010/09/28/nexus-one-cell-data-and-parcels/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LaTeX symbol classifier</title>
		<link>http://mwh.geek.nz/2010/05/29/latex-symbol-classifier/</link>
		<comments>http://mwh.geek.nz/2010/05/29/latex-symbol-classifier/#comments</comments>
		<pubDate>Sat, 29 May 2010 05:39:04 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mwh.geek.nz/?p=195</guid>
		<description><![CDATA[This is pretty neat: a tool that lets you draw symbols and tells you the LaTeX name for them. Much easier than searching through the symbol listing.]]></description>
			<content:encoded><![CDATA[<p>This is pretty neat: a <a href="http://detexify.kirelabs.org/classify.html">tool that lets you draw symbols and tells you the LaTeX name for them</a>. Much easier than searching through the symbol listing.</p>
]]></content:encoded>
			<wfw:commentRss>http://mwh.geek.nz/2010/05/29/latex-symbol-classifier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scripts 2.10.2 and Compile 1.13.3 released</title>
		<link>http://mwh.geek.nz/2010/04/27/scripts-2-10-2-and-compile-1-13-3-released/</link>
		<comments>http://mwh.geek.nz/2010/04/27/scripts-2-10-2-and-compile-1-13-3-released/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 10:03:21 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[GoboLinux]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mwh.geek.nz/?p=192</guid>
		<description><![CDATA[More releases, all bugfixes this time. Scripts has a fix for the man directory path in PrepareProgram (actually used by Compile), and handles dependency conversion better. It also includes updates to the database used by the CommandNotFound system as usual. The only notable behaviour change is a special case in the useflag code: having -INSTALLED [...]]]></description>
			<content:encoded><![CDATA[<p>More releases, all bugfixes this time.</p>
<p>Scripts has a fix for the man directory path in PrepareProgram (actually used by Compile), and handles dependency conversion better. It also includes updates to the database used by the CommandNotFound system as usual.</p>
<p>The only notable behaviour change is a special case in the useflag code: having <strong>-INSTALLED</strong> in the environment variable will now disable automatic flags from occurring at all, rather than applying the change at the end of the process. This helps debugging of recipes and is useful for targeted compilation, and the previous more consistent behaviour doesn&#8217;t seem to have a use case.</p>
<p>Compile has a single direct bugfix, affecting a case where a failed direct dependency would not cause the build process to terminate. It also benefits from the changes made within Scripts.</p>
<p>The packages are on the master now and will propagate to the mirrors shortly. You can use `<strong>InstallPackage Scripts 2.10.2</strong>` and `<strong>InstallPackage Compile 1.13.3</strong>` to install them. Please report any bugs you encounter in the bug tracker and request help either on the mailing lists or the forums.</p>
<p>Thanks to all those who contributed to this release, particularly &#8220;Baffo32&#8243; who sent patches to Scripts.</p>
]]></content:encoded>
			<wfw:commentRss>http://mwh.geek.nz/2010/04/27/scripts-2-10-2-and-compile-1-13-3-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Compile 1.13.2 released; 015 branch to be merged</title>
		<link>http://mwh.geek.nz/2010/02/16/compile-1-13-2-released-015-branch-to-be-merged/</link>
		<comments>http://mwh.geek.nz/2010/02/16/compile-1-13-2-released-015-branch-to-be-merged/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 00:26:41 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[GoboLinux]]></category>

		<guid isPermaLink="false">http://mwh.geek.nz/?p=185</guid>
		<description><![CDATA[There&#8217;s a new version of Compile out, with all bug fixes this time. This release fixes building from CMake recipes and corrects the behaviour of the using_X() useflag functions, which was lost in the last reorganisation. using_X() can now set environment variables and override variables set in the recipe again, while CMake recipes have their [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a new version of Compile out, with all bug fixes this time.  This release fixes building from CMake recipes and corrects the  behaviour of the using_X() useflag functions, which was lost in the last  reorganisation. using_X() can now set environment variables and  override variables set in the recipe again, while CMake recipes have  their build directory correctly created.</p>
<p>The package is out and making its way to the mirrors now; <strong>InstallPackage  Compile 1.13.2</strong> should pick it up. There is no corresponding release  of Scripts this time around because all fixes are within Compile  itself. The latest Scripts release remains 2.10.1.</p>
<p>Following this release the 015 branches for Scripts and Compile will  be merged into trunk to allow them to bed in, get more testing, and pick  up the new developments in the trunk. That may cause some disruption to  users who are tracking trunk tools; it may be best to hold off updating  your snapshots for a few days after the merge, or be prepared to  revert.</p>
<p>There is also a new 015 prerelease available for testing, snapshotting the state of work right now. It is available from <a href="http://karlsson.sytes.net/gobo/015/iso/GoboLinux-20100214.iso">http://karlsson.sytes.net/gobo/015/iso/GoboLinux-20100214.iso</a> and should be functional. Testing, especially on different hardware, would be appreciated. It should boot and be able to start X correctly; where it doesn&#8217;t please make a report with as much detail as possible to the mailing list or on #gobolinux.</p>
]]></content:encoded>
			<wfw:commentRss>http://mwh.geek.nz/2010/02/16/compile-1-13-2-released-015-branch-to-be-merged/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>LCA day 5 and the GoboLinux talk</title>
		<link>http://mwh.geek.nz/2010/01/23/lca-day-5-and-the-gobolinux-talk/</link>
		<comments>http://mwh.geek.nz/2010/01/23/lca-day-5-and-the-gobolinux-talk/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 06:27:58 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[GoboLinux]]></category>
		<category><![CDATA[LCA2010]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://mwh.geek.nz/?p=182</guid>
		<description><![CDATA[The last day brought the reason I was really there, my GoboLinux presentation in the very last speaking slot. Before then I made it into Sarah Sharp&#8217;s USB 3 talk, the photo management BOF, which was less useful than anticipated, and Rusty&#8217;s Wiimote presentation. The latter was both amazing and adorable, and well worth watching [...]]]></description>
			<content:encoded><![CDATA[<p>The last day brought the reason I was really there, my GoboLinux presentation in the very last speaking slot. Before then I made it into <a href="http://www.lca2010.org.nz/programme/schedule/view_talk/50230?day=friday">Sarah Sharp&#8217;s USB 3 talk</a>, the photo management BOF, which was less useful than anticipated, and <a href="http://www.lca2010.org.nz/programme/schedule/view_talk/50062?day=friday">Rusty&#8217;s Wiimote presentation</a>. The latter was both amazing and adorable, and well worth watching when the videos come out. The video of the first time it actually worked left me open-mouthed from both directions. That was the last talk I got to since I spent the next couple of hours preparing and practicing.</p>
<p>My slot was right before the closing ceremony and not too badly populated given that it was against at least two others I wanted to see. I don&#8217;t think it went too badly, though I did fixate on minor topics at a couple of points, and there were some good questions at the end. Since we were before the ceremony the cutoff was rigorously enforced and we actually ran out of time for them all, but I did have a chat with a couple of interested people at the stage while I was packing up.</p>
<p>Interestingly, and unexpectedly, an <a href="http://www.techworld.com.au/article/333549/smarter_linux_file_structure_aims_ease_software_management">article turned up on TechWorld the next day about my talk and about GoboLinux</a>. Some of the quoting is <em>interesting</em>, but the gist of it is there. The <a href="http://mwh.geek.nz/files/gobo/hierslides.pdf">slides are also available</a> (I think they&#8217;ll be on the conference site too at some point; at least they were collected on a USB stick afterwards), as is <a href="http://mwh.geek.nz/files/gobo/hier.pdf">a more formally written-up version of the presentation</a>. It doesn&#8217;t have all the content the talk did, since I added a few parts, including the whole Rootless section, in the aftermath of Monday&#8217;s <a href="http://distrosummit.org/">Distro Summit</a> discussion. Video should be available in a couple of weeks.</p>
<p>The closing ceremony was good enough, but ran long (and started late, so we didn&#8217;t really need to have rushed the questions so much&#8230;). Mostly that was to fit in thanks to the organisers and helpers, who really did do a fantastic job, so no complaints. Next year&#8217;s conference is in Brisbane. I&#8217;m not sure whether I&#8217;ll go or not yet, but it was definitely valuable this time so I will consider it. No speaking maybe ever again though. The Penguin Dinner that night was all right but also lagged a bit. The entertaining part of it was the <a href="http://www.lifeflight.org.nz/">Life Flight Trust</a> donations race, which had a fivefold increase in the donation volume in just a couple of hours. I left early to get some actual sleep, so I&#8217;m not sure how high it got by the end, but it was approaching $20,000 last I saw.</p>
<p>I was hoping to find out the total at the open day today, but it didn&#8217;t appear to be up anywhere. I did get a lot of brochures and blurbs instead, and there was free stuff everywhere too. I didn&#8217;t end up with much of that; it was probably more appreciated by my later companion, who got all klepto (but not as klepto as she wanted to be, which seemed like a wasted opportunity). Most appreciated was the koala pen from the <a href="http://www.followtheflow.org/">LCA2011</a> booth, so good marketing on their part. It was cute.</p>
<p>That&#8217;s a wrap. Later I&#8217;ll write up something on the various community engagement presentations I attended, which I think we can get some value out of. There were some others I didn&#8217;t make it into that I&#8217;ll watch when the videos become available. Right now I&#8217;m appreciating the opportunity to do something non-conference-related for a while.</p>
]]></content:encoded>
			<wfw:commentRss>http://mwh.geek.nz/2010/01/23/lca-day-5-and-the-gobolinux-talk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LCA days 2-4</title>
		<link>http://mwh.geek.nz/2010/01/22/lca-days-2-4/</link>
		<comments>http://mwh.geek.nz/2010/01/22/lca-days-2-4/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 04:00:59 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[LCA2010]]></category>

		<guid isPermaLink="false">http://mwh.geek.nz/?p=179</guid>
		<description><![CDATA[Tuesday I didn&#8217;t have a talk, so I got to enjoy the conference itself instead of repeated practice. First up was Gabriella Coleman&#8216;s keynote, which was just fantastic. She&#8217;s basically a geek anthropologist and it was one of the most interesting talks I&#8217;ve been to. I spent the whole day at the Open in the [...]]]></description>
			<content:encoded><![CDATA[<p>Tuesday I didn&#8217;t have a talk, so I got to enjoy the conference itself instead of repeated practice. First up was <a href="http://www.gabriellacoleman.org/">Gabriella Coleman</a>&#8216;s keynote, which was just fantastic. She&#8217;s basically a geek anthropologist and it was one of the most interesting talks I&#8217;ve been to.</p>
<p>I spent the whole day at the Open in the Public Sector miniconf, where I have plenty of interest but no experience. There were a few great talks there. Pia Waugh&#8217;s especially was brilliant and had a good point about the need for transparency in how public enagement is run. She&#8217;s the ICT advisor to an Australian Senator and it seems like both she and her boss get it. I liked her advice to other politicians: &#8220;get yourself an open-source geek&#8221;. The panel discussion with Clare Curran and Pia again was interesting, though Clare went on a bit sometimes. Trevor Mallard was there but not speaking, but he was pretty impressive in informal chat in the breaks. After that was the Speakers Dinner at Te Papa, which was nice enough. I did get to sit at a table with Ted Ts&#8217;o and Keith Packard. I left a little early and was still pretty shattered afterwards and the next day.</p>
<p>Wednesday was the first day of the conference proper. The highlight for me was <a href="http://www.lca2010.org.nz/programme/schedule/view_talk/50178?day=wednesday">Matthew Garrett&#8217;s talk on social conduct in the community</a>, and Sage Weil from Dreamhost talking about their Ceph distributed filesystem (and mentioning that if you want to try it, and don&#8217;t have a huge cluster, you can sign up to Dreamhost with code &#8220;ceph&#8221;). Nothing on that night, so I was able to get some sleep.</p>
<p>Thursday brought two talks from Leslie Hawthorn on community management, mentoring, and bringing in new contributors. The <a href="http://www.lca2010.org.nz/programme/schedule/view_talk/50249?day=thursday">mentoring talk</a> was the most valuable and had a lot of content I think we need to take note of. I have good notes on both of those that I&#8217;ll bring to the mailing list later. The Professional Delegates&#8217; Networking Session was that night, which I was technically eligible for, but I went home to work on my slides and talk instead. Also to catch up on sleep.</p>
<p>Friday to come later on.</p>
]]></content:encoded>
			<wfw:commentRss>http://mwh.geek.nz/2010/01/22/lca-days-2-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

