<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for mwh.geek.nz</title>
	<atom:link href="http://mwh.geek.nz/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mwh.geek.nz</link>
	<description></description>
	<lastBuildDate>Thu, 03 Jun 2010 20:56:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Scripts 2.10.2 and Compile 1.13.3 released by Michael</title>
		<link>http://mwh.geek.nz/2010/04/27/scripts-2-10-2-and-compile-1-13-3-released/comment-page-1/#comment-503</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Thu, 03 Jun 2010 20:56:26 +0000</pubDate>
		<guid isPermaLink="false">http://mwh.geek.nz/?p=192#comment-503</guid>
		<description>There may be a new snapshot that approaches being usable sometime soonish. Hisham and Jonas are working on it mostly, and Hisham has something up and running locally that I think he plans to use as the basis for a prerelease. I don&#039;t know what&#039;s in it or what the state of the installer is.</description>
		<content:encoded><![CDATA[<p>There may be a new snapshot that approaches being usable sometime soonish. Hisham and Jonas are working on it mostly, and Hisham has something up and running locally that I think he plans to use as the basis for a prerelease. I don&#8217;t know what&#8217;s in it or what the state of the installer is.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Scripts 2.10.2 and Compile 1.13.3 released by ford</title>
		<link>http://mwh.geek.nz/2010/04/27/scripts-2-10-2-and-compile-1-13-3-released/comment-page-1/#comment-502</link>
		<dc:creator>ford</dc:creator>
		<pubDate>Thu, 03 Jun 2010 13:23:44 +0000</pubDate>
		<guid isPermaLink="false">http://mwh.geek.nz/?p=192#comment-502</guid>
		<description>Any news regarding the release of a 015 iso? So far, there have been many updates to packages, especially critical ones such as Scripts and Compile. The old isos do not support hardware in use by many people, and the pre015 isos have a few issues... I would be happy with a fix to the grub installer or the availability of LILO + btrfs during the installation process. Maybe I am asking to much...</description>
		<content:encoded><![CDATA[<p>Any news regarding the release of a 015 iso? So far, there have been many updates to packages, especially critical ones such as Scripts and Compile. The old isos do not support hardware in use by many people, and the pre015 isos have a few issues&#8230; I would be happy with a fix to the grub installer or the availability of LILO + btrfs during the installation process. Maybe I am asking to much&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Python Damerau-Levenshtein distance implementation by numerix</title>
		<link>http://mwh.geek.nz/2009/04/26/python-damerau-levenshtein-distance/comment-page-1/#comment-500</link>
		<dc:creator>numerix</dc:creator>
		<pubDate>Thu, 27 May 2010 13:12:53 +0000</pubDate>
		<guid isPermaLink="false">http://mwh.geek.nz/?p=85#comment-500</guid>
		<description>Thanks Michael, for pointing that out. I was not aware of that difference!</description>
		<content:encoded><![CDATA[<p>Thanks Michael, for pointing that out. I was not aware of that difference!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Python Damerau-Levenshtein distance implementation by Michael</title>
		<link>http://mwh.geek.nz/2009/04/26/python-damerau-levenshtein-distance/comment-page-1/#comment-496</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 25 May 2010 02:49:28 +0000</pubDate>
		<guid isPermaLink="false">http://mwh.geek.nz/?p=85#comment-496</guid>
		<description>numerix, it works perfectly well. You need to note the difference between the Levenshtein distance (described in the SPOJ problem and the calculator you link to) and the Damerau-Levenshtein distance, which allows transpositions.

Both algorithms give the correct answer for that pair: delete H, U, R, replace B with K, transpose O and H, replace P with Z. Six steps.</description>
		<content:encoded><![CDATA[<p>numerix, it works perfectly well. You need to note the difference between the Levenshtein distance (described in the SPOJ problem and the calculator you link to) and the Damerau-Levenshtein distance, which allows transpositions.</p>
<p>Both algorithms give the correct answer for that pair: delete H, U, R, replace B with K, transpose O and H, replace P with Z. Six steps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Python Damerau-Levenshtein distance implementation by numerix</title>
		<link>http://mwh.geek.nz/2009/04/26/python-damerau-levenshtein-distance/comment-page-1/#comment-495</link>
		<dc:creator>numerix</dc:creator>
		<pubDate>Mon, 24 May 2010 11:56:19 +0000</pubDate>
		<guid isPermaLink="false">http://mwh.geek.nz/?p=85#comment-495</guid>
		<description>J. Reagle is right according to the speed of the algorithm, but the algorithms doesn&#039;t work correctly.
You find more information about that in my comment to this code: http://www.guyrutenberg.com/2008/12/15/damerau-levenshtein-distance-in-python/comment-page-1/</description>
		<content:encoded><![CDATA[<p>J. Reagle is right according to the speed of the algorithm, but the algorithms doesn&#8217;t work correctly.<br />
You find more information about that in my comment to this code: <a href="http://www.guyrutenberg.com/2008/12/15/damerau-levenshtein-distance-in-python/comment-page-1/" rel="nofollow">http://www.guyrutenberg.com/2008/12/15/damerau-levenshtein-distance-in-python/comment-page-1/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Compile 1.13.2 released; 015 branch to be merged by solenskiner</title>
		<link>http://mwh.geek.nz/2010/02/16/compile-1-13-2-released-015-branch-to-be-merged/comment-page-1/#comment-479</link>
		<dc:creator>solenskiner</dc:creator>
		<pubDate>Thu, 22 Apr 2010 13:21:49 +0000</pubDate>
		<guid isPermaLink="false">http://mwh.geek.nz/?p=185#comment-479</guid>
		<description>It wont boot in a kvm virtual machine.
when the bootprocess tries &quot;Starting language select dialog&quot; it spews out 3 or 4 squashfs errors, and retries infinitly.</description>
		<content:encoded><![CDATA[<p>It wont boot in a kvm virtual machine.<br />
when the bootprocess tries &#8220;Starting language select dialog&#8221; it spews out 3 or 4 squashfs errors, and retries infinitly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Compile 1.13.2 released; 015 branch to be merged by Ford</title>
		<link>http://mwh.geek.nz/2010/02/16/compile-1-13-2-released-015-branch-to-be-merged/comment-page-1/#comment-475</link>
		<dc:creator>Ford</dc:creator>
		<pubDate>Thu, 18 Mar 2010 15:53:20 +0000</pubDate>
		<guid isPermaLink="false">http://mwh.geek.nz/?p=185#comment-475</guid>
		<description>I loved the new ISO, but I am looking forward to the next one... which will hopefully have a working Grub installation process. It wasn&#039;t hard to get Grub installed... just nice icing on the cake.</description>
		<content:encoded><![CDATA[<p>I loved the new ISO, but I am looking forward to the next one&#8230; which will hopefully have a working Grub installation process. It wasn&#8217;t hard to get Grub installed&#8230; just nice icing on the cake.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Compile 1.13.2 released; 015 branch to be merged by frontsideair</title>
		<link>http://mwh.geek.nz/2010/02/16/compile-1-13-2-released-015-branch-to-be-merged/comment-page-1/#comment-448</link>
		<dc:creator>frontsideair</dc:creator>
		<pubDate>Thu, 18 Feb 2010 23:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://mwh.geek.nz/?p=185#comment-448</guid>
		<description>So, when will be 015 out? I&#039;m thinking buying a new PC and I&#039;d very much like to install new Gobo on it. ^^ I hope it&#039;ll be soon.</description>
		<content:encoded><![CDATA[<p>So, when will be 015 out? I&#8217;m thinking buying a new PC and I&#8217;d very much like to install new Gobo on it. ^^ I hope it&#8217;ll be soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Compile 1.13.2 released; 015 branch to be merged by vazub</title>
		<link>http://mwh.geek.nz/2010/02/16/compile-1-13-2-released-015-branch-to-be-merged/comment-page-1/#comment-445</link>
		<dc:creator>vazub</dc:creator>
		<pubDate>Tue, 16 Feb 2010 09:03:52 +0000</pubDate>
		<guid isPermaLink="false">http://mwh.geek.nz/?p=185#comment-445</guid>
		<description>Good work! Looking forward to test the iso.

BTW, the text in this post is duped, and somehow I&#039;m quite sure it wasn&#039;t intentional :)</description>
		<content:encoded><![CDATA[<p>Good work! Looking forward to test the iso.</p>
<p>BTW, the text in this post is duped, and somehow I&#8217;m quite sure it wasn&#8217;t intentional <img src='http://mwh.geek.nz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on First talk over at linux.conf.au by Eric</title>
		<link>http://mwh.geek.nz/2010/01/18/first-talk-over-at-linux-conf-au/comment-page-1/#comment-409</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Wed, 20 Jan 2010 12:58:26 +0000</pubDate>
		<guid isPermaLink="false">http://mwh.geek.nz/?p=176#comment-409</guid>
		<description>Nice! It&#039;s great that you are able to present these ideas, especially the Aliens idea, I think it is the best vision for the future of desktop linux that I know of (2nd best is GoboHide offcourse :P). All the best with the talk tomorrow.</description>
		<content:encoded><![CDATA[<p>Nice! It&#8217;s great that you are able to present these ideas, especially the Aliens idea, I think it is the best vision for the future of desktop linux that I know of (2nd best is GoboHide offcourse <img src='http://mwh.geek.nz/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ). All the best with the talk tomorrow.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
