<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for As Thick As Two Short Planks - Mark Fowler&#039;s Blog</title>
	<atom:link href="http://blog.twoshortplanks.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.twoshortplanks.com</link>
	<description></description>
	<lastBuildDate>Mon, 16 Jan 2012 17:17:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Once is Enough by 2shortplanks</title>
		<link>http://blog.twoshortplanks.com/2012/01/13/entities/#comment-373</link>
		<dc:creator><![CDATA[2shortplanks]]></dc:creator>
		<pubDate>Mon, 16 Jan 2012 17:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.twoshortplanks.com/?p=298#comment-373</guid>
		<description><![CDATA[Hello Anonymous whoever you are!

I&#039;m a UTF-8 junkie;  I&#039;ve done enough i18n programming to know that you should probably always be using UTF-8 unless you&#039;ve got a very good reason not to (e.g. you need a fixed width binary representation or you&#039;re using a lot of very high bit characters, in which case UTF-32 or its ilk might be better.)

This said, I do prefer to output characters in the ASCII range (even if I am generating UTF-8) and use HTML entities.  Until you&#039;ve suddenly had part of your CMS re-written to embed text in emails for inclusion into webmail clients you&#039;ve not known the pain of using character encodings.  Another point worth noting is that the output character encoding often influences the character encoding the browser will submit form data back in and care needs to be taken there.  In short...there&#039;s no short answer to this.]]></description>
		<content:encoded><![CDATA[<p>Hello Anonymous whoever you are!</p>
<p>I&#8217;m a UTF-8 junkie;  I&#8217;ve done enough i18n programming to know that you should probably always be using UTF-8 unless you&#8217;ve got a very good reason not to (e.g. you need a fixed width binary representation or you&#8217;re using a lot of very high bit characters, in which case UTF-32 or its ilk might be better.)</p>
<p>This said, I do prefer to output characters in the ASCII range (even if I am generating UTF-8) and use HTML entities.  Until you&#8217;ve suddenly had part of your CMS re-written to embed text in emails for inclusion into webmail clients you&#8217;ve not known the pain of using character encodings.  Another point worth noting is that the output character encoding often influences the character encoding the browser will submit form data back in and care needs to be taken there.  In short&#8230;there&#8217;s no short answer to this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Todo List Processing in Perl by 2shortplanks</title>
		<link>http://blog.twoshortplanks.com/2012/01/07/291/#comment-372</link>
		<dc:creator><![CDATA[2shortplanks]]></dc:creator>
		<pubDate>Mon, 16 Jan 2012 14:36:16 +0000</pubDate>
		<guid isPermaLink="false">https://twoshortplanks.wordpress.com/?p=291#comment-372</guid>
		<description><![CDATA[That might be an arguably cleaner interface, but it wouldn&#039;t actually do what I wanted in terms of altering the original tied file.

The &lt;code&gt;filter&lt;/code&gt; already exists in List::MoreUtils - it&#039;s called &lt;code&gt;part&lt;/code&gt; and requires the function to return the number of the array it should place the result into.  For example:

&lt;code&gt;my ($fail, $pass) = part { /Lion/ } qw(MufasaLion JosieCat PinkPanther SimbaLion)&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>That might be an arguably cleaner interface, but it wouldn&#8217;t actually do what I wanted in terms of altering the original tied file.</p>
<p>The <code>filter</code> already exists in List::MoreUtils &#8211; it&#8217;s called <code>part</code> and requires the function to return the number of the array it should place the result into.  For example:</p>
<p><code>my ($fail, $pass) = part { /Lion/ } qw(MufasaLion JosieCat PinkPanther SimbaLion)</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Todo List Processing in Perl by Mark Stosberg</title>
		<link>http://blog.twoshortplanks.com/2012/01/07/291/#comment-371</link>
		<dc:creator><![CDATA[Mark Stosberg]]></dc:creator>
		<pubDate>Mon, 16 Jan 2012 14:28:12 +0000</pubDate>
		<guid isPermaLink="false">https://twoshortplanks.wordpress.com/?p=291#comment-371</guid>
		<description><![CDATA[I use todo.txt for a text-based TODO handling system: http://todotxt.com/

It has a good number of features, plugins and front-ends which make it pleasant to use]]></description>
		<content:encoded><![CDATA[<p>I use todo.txt for a text-based TODO handling system: <a href="http://todotxt.com/" rel="nofollow">http://todotxt.com/</a></p>
<p>It has a good number of features, plugins and front-ends which make it pleasant to use</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Todo List Processing in Perl by Gabor Szabo</title>
		<link>http://blog.twoshortplanks.com/2012/01/07/291/#comment-370</link>
		<dc:creator><![CDATA[Gabor Szabo]]></dc:creator>
		<pubDate>Mon, 16 Jan 2012 07:42:31 +0000</pubDate>
		<guid isPermaLink="false">https://twoshortplanks.wordpress.com/?p=291#comment-370</guid>
		<description><![CDATA[I am far from being a &quot;clean code experte&quot; so I just wonder if instead of the extract() function, wouldn&#039;t it be cleaner code if there was a filter 

my ($pass, $fail) = filter { ... } @source;

that would move the success elements in one array ref and the failure elements in another array ref?]]></description>
		<content:encoded><![CDATA[<p>I am far from being a &#8220;clean code experte&#8221; so I just wonder if instead of the extract() function, wouldn&#8217;t it be cleaner code if there was a filter </p>
<p>my ($pass, $fail) = filter { &#8230; } @source;</p>
<p>that would move the success elements in one array ref and the failure elements in another array ref?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Once is Enough by Anonymous</title>
		<link>http://blog.twoshortplanks.com/2012/01/13/entities/#comment-367</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Mon, 16 Jan 2012 04:46:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.twoshortplanks.com/?p=298#comment-367</guid>
		<description><![CDATA[You teach a tool, but neglected to tell the circumstances when it should not be used and when it should. W3C [tutorial-char-enc] recommends: &quot;Save your pages as UTF-8, whenever you can. … Avoid using character escapes, except for invisible or ambiguous characters.&quot; The details are in [qa-escapes].

http://www.w3.org/International/tutorials/tutorial-char-enc/Overview.en#quicksummary
http://www.w3.org/International/questions/qa-escapes.en]]></description>
		<content:encoded><![CDATA[<p>You teach a tool, but neglected to tell the circumstances when it should not be used and when it should. W3C [tutorial-char-enc] recommends: &#8220;Save your pages as UTF-8, whenever you can. … Avoid using character escapes, except for invisible or ambiguous characters.&#8221; The details are in [qa-escapes].</p>
<p><a href="http://www.w3.org/International/tutorials/tutorial-char-enc/Overview.en#quicksummary" rel="nofollow">http://www.w3.org/International/tutorials/tutorial-char-enc/Overview.en#quicksummary</a><br />
<a href="http://www.w3.org/International/questions/qa-escapes.en" rel="nofollow">http://www.w3.org/International/questions/qa-escapes.en</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Once is Enough by realdavorg</title>
		<link>http://blog.twoshortplanks.com/2012/01/13/entities/#comment-364</link>
		<dc:creator><![CDATA[realdavorg]]></dc:creator>
		<pubDate>Sun, 15 Jan 2012 10:55:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.twoshortplanks.com/?p=298#comment-364</guid>
		<description><![CDATA[Bizarre how it&#039;s being too clever for the numeric entities but exactly the right level of clever for the named entities.]]></description>
		<content:encoded><![CDATA[<p>Bizarre how it&#8217;s being too clever for the numeric entities but exactly the right level of clever for the named entities.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Once is Enough by 2shortplanks</title>
		<link>http://blog.twoshortplanks.com/2012/01/13/entities/#comment-363</link>
		<dc:creator><![CDATA[2shortplanks]]></dc:creator>
		<pubDate>Sun, 15 Jan 2012 10:50:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.twoshortplanks.com/?p=298#comment-363</guid>
		<description><![CDATA[Wordpress.com is being way too clever here. I&#039;m tempted to move away to a self hosted solution here!]]></description>
		<content:encoded><![CDATA[<p>WordPress.com is being way too clever here. I&#8217;m tempted to move away to a self hosted solution here!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Once is Enough by realdavorg</title>
		<link>http://blog.twoshortplanks.com/2012/01/13/entities/#comment-362</link>
		<dc:creator><![CDATA[realdavorg]]></dc:creator>
		<pubDate>Sat, 14 Jan 2012 22:06:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.twoshortplanks.com/?p=298#comment-362</guid>
		<description><![CDATA[And, of course, some times you specifically want double-encoded entities - so that you can show the entities in HTML output, as in the table near the top of this post. But it looks like either you or Wordpress are being too clever here, as I&#039;m seeing the third column as the same as the first column.]]></description>
		<content:encoded><![CDATA[<p>And, of course, some times you specifically want double-encoded entities &#8211; so that you can show the entities in HTML output, as in the table near the top of this post. But it looks like either you or WordPress are being too clever here, as I&#8217;m seeing the third column as the same as the first column.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Once is Enough by 2shortplanks</title>
		<link>http://blog.twoshortplanks.com/2012/01/13/entities/#comment-361</link>
		<dc:creator><![CDATA[2shortplanks]]></dc:creator>
		<pubDate>Sat, 14 Jan 2012 00:15:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.twoshortplanks.com/?p=298#comment-361</guid>
		<description><![CDATA[Some of the text in the example at the end of this post is garbled;  This is because wordpress seems to not be allowing me to put in the double encoded entities I need to complete the example.]]></description>
		<content:encoded><![CDATA[<p>Some of the text in the example at the end of this post is garbled;  This is because wordpress seems to not be allowing me to put in the double encoded entities I need to complete the example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Once a week, every week by Philippe Bruhat (BooK)</title>
		<link>http://blog.twoshortplanks.com/2011/12/31/once-a-week-every-week/#comment-358</link>
		<dc:creator><![CDATA[Philippe Bruhat (BooK)]]></dc:creator>
		<pubDate>Sat, 07 Jan 2012 23:41:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.twoshortplanks.com/?p=289#comment-358</guid>
		<description><![CDATA[Indeed.

And then you&#039;ll have to compete not only with authors of 2012, but also authors since the beginning of CPAN.

I have a chain that is almost two years long in 2005-2006... ;-)

Anyway, only 20 minutes left to push my first module of 2012 to CPAN. Gotta hurry!]]></description>
		<content:encoded><![CDATA[<p>Indeed.</p>
<p>And then you&#8217;ll have to compete not only with authors of 2012, but also authors since the beginning of CPAN.</p>
<p>I have a chain that is almost two years long in 2005-2006&#8230; ;-)</p>
<p>Anyway, only 20 minutes left to push my first module of 2012 to CPAN. Gotta hurry!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

