<?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/"
   >
<channel>
    <title>Drab as a fool, aloof as a bard</title>
    <link>http://drabasablog.net/</link>
    <description>My home on the web...</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.4.1 - http://www.s9y.org/</generator>
    <pubDate>Mon, 30 Aug 2010 20:59:00 GMT</pubDate>

    <image>
        <url>http://drabasablog.net/templates/bulletproof/img/s9y_banner_small.png</url>
        <title>RSS: Drab as a fool, aloof as a bard - My home on the web...</title>
        <link>http://drabasablog.net/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Implementing Genesis in Java</title>
    <link>http://drabasablog.net/archives/post-141.html</link>
    
    <comments>http://drabasablog.net/archives/post-141.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=141</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=141</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;I got talking to a colleague from work about the philosophical issues of morality and surveillance (does being surveilled make people more moral?) and we ended up discussing the moral and societal framework of the Garden of Eden, as described in the book of Genesis, in the Old Testament of the Bible.  He made an interesting point that, being unaware of the existence or nature of evil, Adam and Eve may not have been best equipped to determine whether a statement was a lie, or even know to ask themselves the question of whether something was a lie or not, being unaware of such things.  As programmers, one natural way to express ourselves clearly on such important theological questions was to write some software, and sure enough my colleague wrote a PHP implementation of the Human class, and pointed out the inherent flaw in the design, which was, he claimed, a flaw in the design described in Genesis.  I was not so convinced that he had implemented the Genesis specification correctly, however, which perhaps shows that Intelligent Design should be left up to God (and even God might want to implement it via an evolutionary algorithm instead), but I decided to give it a go myself, confident that, whatever language God used, I would stand a better chance using Java than I would PHP.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Mon, 30 Aug 2010 20:59:00 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-141.html</guid>
    
</item>
<item>
    <title>Using the DIV tag to replace tables</title>
    <link>http://drabasablog.net/archives/post-140.html</link>
    
    <comments>http://drabasablog.net/archives/post-140.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=140</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=140</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;This month I attended an enjoyable party which happened to have some A-list celebrities (of the Free Software world) present.  I did feel slightly out of my depth when the topic of conversation turned to compiler optimisation bugs, but as luck would have it, I found myself listening to a conversation about web design.  &amp;#8220;I know this!&amp;#8221; I thought, as the conversation developed into a good-humoured flame war about the semantic validity and practicality of using the TABLE tag for presentation.  Fortunately I was not the only one to believe that using the TABLE tag this should be avoided at all costs, and that meant I didn&amp;#8217;t have to argue the point.  I did end up, however, talking to someone trying to understand the precise use case they had in mind that encouraged them to use tables, and they weren&amp;#8217;t even happy with the result, so I knew it was my duty to educate myself and others about what the alternative DIV-based design would be.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Mon, 30 Aug 2010 19:49:00 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-140.html</guid>
    
</item>
<item>
    <title>Checking PHP security with PHP</title>
    <link>http://drabasablog.net/archives/post-139.html</link>
            <category>Programming</category>
    
    <comments>http://drabasablog.net/archives/post-139.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=139</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=139</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;One interesting thing about software is that because it is written in a language that a computer can understand, it is also possible, in theory, to get the computer to tell you things about that software.  There are various classes of utilities from static analysers to code style checkers, but I have recently been considering how possible it is to check for uses of specific deprecated functions and classes in a PHP project.  The actual checker I was thinking of creating would be written in PHP itself, but because the process would be a static analysis one, which I hoped didn&amp;#8217;t have to resort to tokenising the PHP source code it was examining, this checker could in fact be written in any language just as (if not more) easily.  As is often the case in my blog posts about PHP recently, it turns out that various &amp;#8220;features&amp;#8221; of PHP make things more difficult (regardless of the language that the checker is written in), although trying to solve a problem the wrong way doesn&amp;#8217;t help either.&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-139.html#extended&quot;&gt;Continue reading &quot;Checking PHP security with PHP&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sat, 31 Jul 2010 18:20:00 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-139.html</guid>
    
</item>
<item>
    <title>The problems with banks</title>
    <link>http://drabasablog.net/archives/post-138.html</link>
    
    <comments>http://drabasablog.net/archives/post-138.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=138</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=138</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;I recently had trouble buying something online and this resulted in me having to go into a local branch of the bank with which I had the account I was trying to use.  There had actually been several issues which had been accumulating with this account, and so I thought that attending in person might be the quickest way to get things sorted out, but the process ended up taking a lot longer than I thought.  Fortunately along the way I had an enlightening and somewhat amusing conversation with the cashier who was trying to help me, and I thought that I should share some of the things I have learnt.  For privacy reasons I will not go into details about the current state of my account, nor will I disclose which bank it is I have this account with, but I hope it will give people a benchmark to compare their banks against, and I would be interested to know which banks don&amp;#8217;t have the same problems as the ones I describe (or have other problems).&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-138.html#extended&quot;&gt;Continue reading &quot;The problems with banks&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sat, 31 Jul 2010 18:04:00 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-138.html</guid>
    
</item>
<item>
    <title>Hacking the dependencies of a downloaded Debian package</title>
    <link>http://drabasablog.net/archives/post-137.html</link>
    
    <comments>http://drabasablog.net/archives/post-137.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=137</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=137</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;Yet again I have found myself on the wrong side of Debian&amp;#8217;s strict packaging policy.  There is a piece of software that I want to install which isn&amp;#8217;t packaged for Debian, but which fortunately is packaged for the sister distro, Ubuntu.  This alternative source of packages is only useful, though, if Ubuntu uses sufficiently similar package names and version numbers, otherwise the Debian package management tools will treat the package as invalid due to dependency problems.  The last time I had to deal with this sort of problem was with an earlier version of the same package, &lt;tt&gt;plasma-widget-adjustableclock&lt;/tt&gt;, but this time the dependency problem is slightly different and I&amp;#8217;ve tried fixing the problem in a different way too.  Below I detail what the problem is, and my not-entirely-successful efforts at solving it.&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-137.html#extended&quot;&gt;Continue reading &quot;Hacking the dependencies of a downloaded Debian package&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Tue, 29 Jun 2010 21:36:00 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-137.html</guid>
    
</item>
<item>
    <title>EU state flowers</title>
    <link>http://drabasablog.net/archives/post-136.html</link>
    
    <comments>http://drabasablog.net/archives/post-136.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=136</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=136</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;The opportunity to speak with Americans about their federal system is one I rarely turn down, as it helps me understand &lt;a href=&quot;http://en.wikipedia.org/wiki/Federal_Europe#Present_situation&quot;&gt;Europe&amp;#8217;s federal system&lt;/a&gt;.  While talking to a particular American, I found that, &lt;a href=&quot;http://www.youtube.com/watch?v=ftg1EtdgbHI&quot;&gt;despite&lt;/a&gt; the &lt;a href=&quot;http://www.youtube.com/watch?v=ANTDkfkoBaI&quot;&gt;stereotypes&lt;/a&gt;, they did not believe that the EU was a federal country, and although this meant they agreed with the vast majority of Europeans on the matter, I decided to dismiss their view as uninformed and presented them with a &lt;a href=&quot;http://www.ep-president.eu/president/ressource/static/videos/en/ref70060W.mp4&quot;&gt;video&lt;/a&gt; of the &lt;a href=&quot;http://en.wikipedia.org/wiki/President_of_the_European_Parliament&quot;&gt;EU &lt;span title=&quot;President of the European Parliament&quot;&gt;president&lt;/span&gt;&lt;/a&gt; celebrating the &lt;a href=&quot;http://en.wikipedia.org/wiki/Europe_Day&quot;&gt;EU national day&lt;/a&gt; by reading a speech and watching the &lt;a href=&quot;http://en.wikipedia.org/wiki/Flag_of_Europe&quot;&gt;EU flag&lt;/a&gt; being lifted by members of the &lt;a href=&quot;http://en.wikipedia.org/wiki/Eurocorps&quot;&gt;EU army&lt;/a&gt;, followed by a military band performance of the &lt;a href=&quot;http://en.wikipedia.org/wiki/Anthem_of_Europe&quot;&gt;EU national anthem&lt;/a&gt;.  I feel, though, that to really convince an American (and possibly a European too) that the EU is a country, I must provide a list of the &lt;a href=&quot;http://en.wikipedia.org/wiki/List_of_U.S._state_flowers&quot;&gt;state flowers&lt;/a&gt; of each of the EU states, which was, as I explained in an earlier &lt;a href=&quot;http://drabasablog.net/archives/post-90.html&quot;&gt;blog post&lt;/a&gt;, one of the only things the EU was missing.&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-136.html#extended&quot;&gt;Continue reading &quot;EU state flowers&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Mon, 28 Jun 2010 23:13:22 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-136.html</guid>
    
</item>
<item>
    <title>Getting a domain name</title>
    <link>http://drabasablog.net/archives/post-135.html</link>
            <category>Blogging</category>
    
    <comments>http://drabasablog.net/archives/post-135.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=135</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=135</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;I&amp;#8217;ve recently made a few changes to my blog and thought that, in the &lt;a href=&quot;http://technorati.com/blogging/&quot;&gt;self-referential&lt;/a&gt; tradition of bloggers, I should mention some of the decisions I made and how they affect my blog.  The most external change, and the one mentioned in the title of this post, is that I do now have a domain to host this blog on.  By &amp;#8220;external&amp;#8221; I don&amp;#8217;t just mean it is potentially visible in your address bar when you visit any page of the blog, I also mean that it involved interaction with various third parties.  It is a change I had been meaning to make for a while now, and one I should have made long ago, but hopefully it should last a long time.&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-135.html#extended&quot;&gt;Continue reading &quot;Getting a domain name&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Mon, 31 May 2010 20:58:37 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-135.html</guid>
    
</item>
<item>
    <title>The only other problem with PHP</title>
    <link>http://drabasablog.net/archives/post-134.html</link>
            <category>Programming</category>
    
    <comments>http://drabasablog.net/archives/post-134.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=134</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=134</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;By a strange coincidence, I&amp;#8217;ve recently bumped into another PHP &lt;a href=&quot;http://catb.org/jargon/html/G/gotcha.html&quot;&gt;gotcha&lt;/a&gt;, well, actually three of them depending on how you&amp;#8217;re counting, but I&amp;#8217;m sure that these must be the last three unexpected things about PHP and I won&amp;#8217;t soon have to write another blog post detailing something else unintuitive that PHP does.  The reason these could be seen as one gotcha is that they all involve PHP&amp;#8217;s support for &lt;a href=&quot;http://en.wikipedia.org/wiki/Floating_point&quot;&gt;floating point numbers&lt;/a&gt;, so one workaround would just be to not use that datatype at all in your programs.  As I will show though, it is harder than you might think to avoid them, so perhaps the best advice is to avoid using numbers at all.  To be on the safe side though, maybe you should just use a different programming language.&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-134.html#extended&quot;&gt;Continue reading &quot;The only other problem with PHP&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Mon, 31 May 2010 20:10:57 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-134.html</guid>
    
</item>
<item>
    <title>Spelling conventions for software projects</title>
    <link>http://drabasablog.net/archives/post-133.html</link>
            <category>Programming</category>
            <category>Standards</category>
    
    <comments>http://drabasablog.net/archives/post-133.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=133</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=133</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;A project at work recently reached an interesting crossroads where it had to be decided what the spelling convention should be for some code which the company&amp;#8217;s partners would have to interact with.  The use of English as a common language had been uncontroversial up to that point, but there had crept into the software words which had different spellings between American English (en_US) and British English (en_GB).  As a passionate European, it &lt;a href=&quot;http://en.wikipedia.org/wiki/Anglo-Frisian_languages&quot;&gt;made sense&lt;/a&gt; to me to choose the version of English spoken by the English, but the more I researched it, the more I realised that the correct international standard really was en_US.  Perhaps the deciding factor for me was that the coding standard for the European Space Agency requires the use of en_US spelling, which I will mention below in my depressingly convincing argument for that same linguistic standard.&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-133.html#extended&quot;&gt;Continue reading &quot;Spelling conventions for software projects&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Fri, 30 Apr 2010 19:53:22 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-133.html</guid>
    
</item>
<item>
    <title>Is that all that's wrong with PHP?</title>
    <link>http://drabasablog.net/archives/post-132.html</link>
            <category>Programming</category>
    
    <comments>http://drabasablog.net/archives/post-132.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=132</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=132</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;While my &lt;a href=&quot;http://uranus.mtveurope.org/~hagfish/blog/archives/post-131.html&quot;&gt;previous&lt;/a&gt; blog post covered what may be an actual bug in PHP, there are still a couple of &lt;a href=&quot;http://en.wikipedia.org/wiki/Gotcha_%28programming%29&quot;&gt;gotchas&lt;/a&gt; which might be worth mentioning.  Firstly there is the inconsistent way it deals with single and double quotes around strings, and then there are the undesirable consequences of how it juggles variable types, for which I have an example.  Of course, all languages have their problems, with the obvious exception of &lt;a href=&quot;http://groovy.codehaus.org/&quot;&gt;Groovy&lt;/a&gt;, the superiority of which I will demonstrate with a one-liner, possibly accompanied by an excuse to explain why that simple one-liner was so hard to write.&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-132.html#extended&quot;&gt;Continue reading &quot;Is that all that&#039;s wrong with PHP?&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Fri, 30 Apr 2010 19:40:22 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-132.html</guid>
    
</item>
<item>
    <title>Hate PHP</title>
    <link>http://drabasablog.net/archives/post-131.html</link>
            <category>Programming</category>
    
    <comments>http://drabasablog.net/archives/post-131.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=131</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=131</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;The title of this post is even less helpful (and less fair) than the title of the blog post which &lt;a href=&quot;http://uranus.mtveurope.org/~hagfish/blog/archives/post-98.html&quot;&gt;inspired&lt;/a&gt; it, so it should probably be viewed as parody.  However, I do sadly have a file on my computer called &lt;tt&gt;hate.php&lt;/tt&gt; containing a series of lines of valid PHP source code which produce unexpected and even perplexing results.  Admittedly there are only 6 lines, and the behaviour of half of them is as documented, but I hold PHP to a higher standard than I would a &amp;#8220;messy&amp;#8221; language like Perl, so I thought this deserved a blog post.&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-131.html#extended&quot;&gt;Continue reading &quot;Hate PHP&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Wed, 31 Mar 2010 18:53:16 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-131.html</guid>
    
</item>
<item>
    <title>What is the Protestant way to mark Lent?</title>
    <link>http://drabasablog.net/archives/post-130.html</link>
    
    <comments>http://drabasablog.net/archives/post-130.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=130</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=130</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;One of the things I have noticed in the lead up to &lt;a href=&quot;http://en.wiktionary.org/wiki/Pasch&quot;&gt;Pasch&lt;/a&gt; is what a benefit it is to have friends of several different Christian denominations and backgrounds, as they have provided me with interesting insights into different Christian traditions.  Having done some research myself into the history of Lent, and comparing the different modern practices, I have noticed a gap in the apologetical literature, a gap which I have decided to treat as a challenge.  I aim to construct (although not explicitly define) a Protestant position on Lent (for some value of &amp;#8220;&lt;a href=&quot;http://uranus.mtveurope.org/~hagfish/blog/archives/post-112.html&quot;&gt;Protestant&lt;/a&gt;&amp;#8221;), based on Church history and the Bible.  The resulting position may not actually match the position of any particular Protestant group, or even intersect with any, but I think it is a thought-provoking task with an equally thought-provoking result.&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-130.html#extended&quot;&gt;Continue reading &quot;What is the Protestant way to mark Lent?&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Wed, 31 Mar 2010 18:38:51 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-130.html</guid>
    
</item>
<item>
    <title>ICANN, you can't</title>
    <link>http://drabasablog.net/archives/post-129.html</link>
    
    <comments>http://drabasablog.net/archives/post-129.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=129</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=129</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;I am always a little shocked to hear people &lt;a href=&quot;http://tech.slashdot.org/comments.pl?sid=140328&amp;amp;threshold=1&amp;amp;commentsort=0&amp;amp;mode=thread&amp;amp;no_d2=1&amp;amp;cid=11755673&quot;&gt;defend&lt;/a&gt; the level of control that the American government has over the Internet through its influence of &lt;abbr title=&quot;Internet Corporation for Assigned Names and Numbers&quot;&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/ICANN&quot;&gt;ICANN&lt;/a&gt;&lt;/abbr&gt;, and just as shocked to hear people&amp;#8217;s paranoid &lt;a href=&quot;http://tech.slashdot.org/comments.pl?sid=140328&amp;amp;cid=11751740&quot;&gt;speculation&lt;/a&gt; that having America&amp;#8217;s role transferred to a &lt;abbr title=&quot;United Nations&quot;&gt;UN&lt;/abbr&gt; body would somehow lead to massive censorship and spying taking place, as if that&amp;#8217;s never been &lt;a href=&quot;http://en.wikipedia.org/wiki/Room_641A&quot;&gt;possible&lt;/a&gt; in America, and as if &lt;a href=&quot;http://en.wikipedia.org/wiki/Universal_Postal_Union&quot;&gt;UN&lt;/a&gt; &lt;a href=&quot;http://en.wikipedia.org/wiki/International_Telecommunication_Union&quot;&gt;technical&lt;/a&gt; &lt;a href=&quot;http://en.wikipedia.org/wiki/International_Civil_Aviation_Organization&quot;&gt;bodies&lt;/a&gt; have any history of doing that.  It is understandable when people fall into the logical fallacy of &lt;a href=&quot;http://en.wikipedia.org/wiki/Argument_from_ignorance&quot;&gt;argumentum ad ignorantiam&lt;/a&gt;, with an &amp;#8220;if it ain&amp;#8217;t broke don&amp;#8217;t fix it&amp;#8221; attitude, but even if we don&amp;#8217;t know what a future UN solution might look like, we &lt;em&gt;do&lt;/em&gt; know what America&amp;#8217;s record of managing ICANN is, and it is not something about which you can say &amp;#8220;it ain&amp;#8217;t broke&amp;#8221;.  A friend of mine said that it was too stressful talking about these complicated technical and political matters early in the morning while I was driving us to catch a train, but hopefully none of my readers will be browsing my blog in that sort of situation.  Anyway, below I will list some past actions of ICANN that are causes for concern, and explain why they were the result of American governmental influence.&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-129.html#extended&quot;&gt;Continue reading &quot;ICANN, you can&#039;t&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sun, 28 Feb 2010 22:53:05 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-129.html</guid>
    
</item>
<item>
    <title>Splitting arbitrary length strings</title>
    <link>http://drabasablog.net/archives/post-128.html</link>
            <category>Programming</category>
    
    <comments>http://drabasablog.net/archives/post-128.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=128</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=128</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;A friend of mine was apparently inspired by my &lt;a href=&quot;http://uranus.mtveurope.org/~hagfish/blog/archives/post-106.html&quot;&gt;solution&lt;/a&gt; to the problem of finding the first 10 digit prime number in the digits of &lt;tt&gt;e&lt;/tt&gt;, and he told me about a seemingly similar problem he faced while trying to manipulate a text file he had created in a custom format.  While some techniques from solving the &lt;tt&gt;e&lt;/tt&gt; problem may be applicable, his data format allowed for arbitrary length strings, rather than having this 10 digit limitation, which made the problem suddenly much harder.  I will detail the exact problem below, as well as listing some of the methods we used to tackle it.&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-128.html#extended&quot;&gt;Continue reading &quot;Splitting arbitrary length strings&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sun, 28 Feb 2010 22:47:46 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-128.html</guid>
    
</item>
<item>
    <title>How does cryptography work?</title>
    <link>http://drabasablog.net/archives/post-127.html</link>
            <category>Lemmas</category>
    
    <comments>http://drabasablog.net/archives/post-127.html#comments</comments>
    <wfw:comment>http://drabasablog.net/wfwcomment.php?cid=127</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://drabasablog.net/rss.php?version=2.0&amp;type=comments&amp;cid=127</wfw:commentRss>
    

    <author>nospam@example.com (Hagfish)</author>
    <content:encoded>
    &lt;p&gt;A lot of my blog posts seem to be &lt;a href=&quot;http://uranus.mtveurope.org/~hagfish/blog/archives/post-116.html&quot;&gt;about&lt;/a&gt; cryptography, or at least mention issues &lt;a href=&quot;http://uranus.mtveurope.org/~hagfish/blog/archives/post-126.html&quot;&gt;related&lt;/a&gt; to it, and I am aware that this may make my posts harder to understand.  I am also aware that there do not appear to be any helpful introductions to cryptography out there, or rather none which is accessible to the non-expert but still gives a sense of the underlying mathematics.  In my mind I have often imagined that I could write such an introduction, and recently I have been motivated to do so after discussion with a school-age relative who said &amp;#8220;Cryptography sounds really interesting&amp;#8221;.  She may not think that way after she&amp;#8217;s read all this, but I hope to at least convince myself that a relatively concise explanation of cryptography, from the ground up, is possible.  As cryptography is a rather large field, though, I will only cover &lt;a href=&quot;http://en.wikipedia.org/wiki/RSA&quot;&gt;RSA&lt;/a&gt; public key cryptography.&lt;/p&gt;
 &lt;br /&gt;&lt;a href=&quot;http://drabasablog.net/archives/post-127.html#extended&quot;&gt;Continue reading &quot;How does cryptography work?&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sun, 31 Jan 2010 22:57:07 +0000</pubDate>
    <guid isPermaLink="false">http://drabasablog.net/archives/post-127.html</guid>
    
</item>

</channel>
</rss>