<?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>Rich of March House</title>
    <link>http://rich.marchhouse.net/</link>
    <description>It's all gone horribly wrong again</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.1.2 - http://www.s9y.org/</generator>
    <pubDate>Sun, 01 Aug 2010 05:06:12 GMT</pubDate>

    <image>
        <url>http://rich.marchhouse.net/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Rich of March House - It's all gone horribly wrong again</title>
        <link>http://rich.marchhouse.net/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Racism?</title>
    <link>http://rich.marchhouse.net/archives/599-Racism.html</link>
            <category>Rant</category>
    
    <comments>http://rich.marchhouse.net/archives/599-Racism.html#comments</comments>
    <wfw:comment>http://rich.marchhouse.net/wfwcomment.php?cid=599</wfw:comment>

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

    <author>nospam@example.com (Rich)</author>
    <content:encoded>
    &lt;br /&gt;
&lt;p&gt;I&#039;ve uncovered a major diversity issue - a clear disadvantage based on colour and I think it requires immediate action to resolve.&lt;/p&gt;&lt;p&gt;In painting the primary colours are red, blue and yellow, right?  Well, if you take some blue paint and add some white paint to it then you end up with light blue paint and if you add white paint to yellow paint then you get light yellow paint.  However, if you add white paint to red paint then do you get light red paint? No - you get pink paint.  Why is red so special that its light version is a whole new colour but poor old blue and yellow have to make do with lighter versions of themselves?  There should be equality.  Either we need to rename pink to light red, or we need to invent names for light blue and light yellow.  Who&#039;s with me?  Down with this sort of thing!&lt;/p&gt;&lt;br /&gt;
  
    </content:encoded>

    <pubDate>Sat, 31 Jul 2010 08:33:26 -0700</pubDate>
    <guid isPermaLink="false">http://rich.marchhouse.net/archives/599-guid.html</guid>
    
</item>
<item>
    <title>There's an App for That</title>
    <link>http://rich.marchhouse.net/archives/598-Theres-an-App-for-That.html</link>
            <category>Diary</category>
            <category>Diversions</category>
            <category>Musings</category>
    
    <comments>http://rich.marchhouse.net/archives/598-Theres-an-App-for-That.html#comments</comments>
    <wfw:comment>http://rich.marchhouse.net/wfwcomment.php?cid=598</wfw:comment>

    <slash:comments>5</slash:comments>
    <wfw:commentRss>http://rich.marchhouse.net/rss.php?version=2.0&amp;type=comments&amp;cid=598</wfw:commentRss>
    

    <author>nospam@example.com (Rich)</author>
    <content:encoded>
    &lt;br /&gt;
&lt;p /&gt;&lt;p&gt;&lt;b&gt;Rich&#039;s First Law of Internet Content: &lt;/b&gt;There is absolutely no application that you can think of that doesn&#039;t already exist on the internet.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Rich&#039;s Second Law of Internet Content: &lt;/b&gt;You will continually fall foul of the First Law.  Time and energy will be wasted recreating something that already exists and is better than yours.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Rich&#039;s Third Law of Internet Content:  &lt;/b&gt;I bet these Laws already exist somewhere on the internet, in a better format.&lt;/p&gt;&lt;p /&gt;&lt;p&gt;Determined to never again buy the same book twice due to a limited brain capacity for remembering titles, authors and plots, I decided to create a web-based database that would enable me to catalog all of the March House library, storing titles and authors.  This would let me check whether I already own a book by accessing the database from mobile phone while stood with the potential purchase in my hands in the bookshop.&lt;/p&gt;&lt;p&gt;Initially this was going to be dead easy - a very basic no-frills php/mySQL setup with only three fields.  But then I thought how tedious it would be to have to sit there typing in all this information.  It needed to be more efficient, probably by stealing someone elses work.&lt;/p&gt;&lt;p&gt;The first refinement was to discover the online &lt;a href=&quot;http://isbndb.com/&quot;&gt;ISBN database&lt;/a&gt;.  Version 2 of my application let me simply type in the ISBN of a book (and better yet, use my barcode scanner to capture the number) and it then queried the ISBN site, scraped title, author and publisher information from the search results page and inserted it automagically into my own database.&lt;/p&gt;&lt;p&gt;This was a bit clunky but after some sniffing around I discovered that the site has a &lt;a href=&quot;http://isbndb.com/data-intro.html&quot;&gt;useful API&lt;/a&gt;, which returns the data I was after as XML without any of the kludgey scraping needed at all.&lt;/p&gt;&lt;p&gt;However, I&#039;m not very good at extracting the actual data from XML using PHP so I had to learn &lt;a href=&quot;http://www.php.net/manual/en/book.xml.php&quot;&gt;lots of new functions&lt;/a&gt; to do that.  It ended up working after a fashion but had pages of code that didn&#039;t all look entirely necessary.  Fortunately a little bit of further research - reading the PHP documentation - led me to a &lt;a href=&quot;http://www.php.net/manual/en/ref.xml.php#78678&quot;&gt;function someone else had written&lt;/a&gt; in the comments that did exactly what I wanted.  I pasted this into my increasingly efficient application.&lt;/p&gt;&lt;p&gt;That was all well and good but then I discovered the age old problem of things with apostrophes in them causing grumpiness on the part of the constructed SQL insert statement.  Fortunately, after an invaluable tip-off this gave me the ideal opportunity to learn all about &lt;a href=&quot;http://www.php.net/manual/en/mysqli.prepare.php&quot;&gt;prepare&lt;/a&gt; statements, with the added bonus of making my application slightly more secure than a Group 9 security van (anyone remember that incident?).&lt;/p&gt;&lt;p&gt;The next refinement came about as a result of wanting to do something a bit prettier.  Wouldn&#039;t it be nice to show the front covers of all my books?  Rather than having to scan them all in, the obvious method for achieving this seemed to be to steal someone elses work.  &lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.amazon.co.uk&quot;&gt;Amazon&lt;/a&gt; is a small comany that sells books.  All I had to do was to get my application to send a search request to Amazon with the ISBN and to scrape the data from the returned results page, identifying a suitable image to automatically steal.  As I started the chore of writing this I suddently decided to have a flash of inspiration and to learn from my ISBN database experience.  Would Amazon would have an API to let me do exactly what I wanted without all the unpleasantness I was intending?  &lt;a href=&quot;http://aws.amazon.com/&quot;&gt;Yes they would&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;This API was way more complex, involving advertising or something.  I wasn&#039;t entirely happy so I did a bit more googling during which I found the &lt;a href=&quot;http://www.librarything.com&quot;&gt;Library Thing&lt;/a&gt; and scrapped my project. &lt;/p&gt;&lt;p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/p&gt;  
    </content:encoded>

    <pubDate>Tue, 13 Jul 2010 08:23:11 -0700</pubDate>
    <guid isPermaLink="false">http://rich.marchhouse.net/archives/598-guid.html</guid>
    
</item>
<item>
    <title>School Fête</title>
    <link>http://rich.marchhouse.net/archives/597-School-Fete.html</link>
            <category>Diary</category>
    
    <comments>http://rich.marchhouse.net/archives/597-School-Fete.html#comments</comments>
    <wfw:comment>http://rich.marchhouse.net/wfwcomment.php?cid=597</wfw:comment>

    <slash:comments>8</slash:comments>
    <wfw:commentRss>http://rich.marchhouse.net/rss.php?version=2.0&amp;type=comments&amp;cid=597</wfw:commentRss>
    

    <author>nospam@example.com (Rich)</author>
    <content:encoded>
    &lt;p&gt;This afternoon was the school fête and we went along to see what was happening.  While Claire was roped into helping out on the shove-ha&#039;penny stall I meandered around looking for something interesting until I stumbled across the Tombola. Three tickets for two pounds and anything ending in a 0 or a 5 resulted in a prize.&lt;/p&gt;&lt;p&gt;I never win at these things so I had a couple of goes and something went horribly right!  I won!  I won some prizes!  Look at this lot.&lt;/p&gt;&lt;p&gt;&lt;a  class=&quot;serendipity_image_link&quot;  rel=&quot;lightbox&quot; href=&quot;http://rich.marchhouse.net/uploads/winnings.jpg&quot;&gt;&lt;!-- s9ymdb:182 --&gt;&lt;img width=&quot;110&quot; height=&quot;83&quot; style=&quot;float: right; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; padding-left: 5px; padding-right: 5px; &quot; src=&quot;http://rich.marchhouse.net/uploads/winnings.serendipityThumb.jpg&quot; /&gt;&lt;/a&gt;That&#039;s:&lt;/p&gt;&lt;p&gt;&lt;ul&gt;&lt;li&gt;A big tin of Cornish clotted cream fudge, shortbread and nuts;&lt;/li&gt;&lt;li&gt;A wooden box of &amp;quot;Christmas spices&amp;quot; from Past Times (shelf price £15);&lt;/li&gt;&lt;li&gt;A bottle of Cava;&lt;/li&gt;&lt;li&gt;A bottle of Moët &amp;amp; Chandon fizz.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;I reckon that&#039;s about £40 worth of prizes for a £4 outlay.  I might have to take up tombolling professionally.&lt;/p&gt;  
    </content:encoded>

    <pubDate>Sat, 26 Jun 2010 16:30:58 -0700</pubDate>
    <guid isPermaLink="false">http://rich.marchhouse.net/archives/597-guid.html</guid>
    
</item>
<item>
    <title>Discovery in Garden</title>
    <link>http://rich.marchhouse.net/archives/596-Discovery-in-Garden.html</link>
            <category>Diary</category>
    
    <comments>http://rich.marchhouse.net/archives/596-Discovery-in-Garden.html#comments</comments>
    <wfw:comment>http://rich.marchhouse.net/wfwcomment.php?cid=596</wfw:comment>

    <slash:comments>7</slash:comments>
    <wfw:commentRss>http://rich.marchhouse.net/rss.php?version=2.0&amp;type=comments&amp;cid=596</wfw:commentRss>
    

    <author>nospam@example.com (Rich)</author>
    <content:encoded>
    &lt;a  class=&quot;serendipity_image_link&quot;  rel=&quot;lightbox&quot; href=&quot;http://rich.marchhouse.net/uploads/Toad001Medium.JPG&quot;&gt;&lt;!-- s9ymdb:181 --&gt;&lt;img width=&quot;110&quot; height=&quot;83&quot; style=&quot;float: left; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; padding-left: 5px; padding-right: 5px; &quot; src=&quot;http://rich.marchhouse.net/uploads/Toad001Medium.serendipityThumb.JPG&quot; /&gt;&lt;/a&gt;Look what we found while we worked in the garden &lt;s&gt;toady&lt;/s&gt; today.  This chap was sheltering under a huge pile of branches destined for taking to the tip.  He&#039;s got some small woodlousey pals too.&lt;p&gt;(clickety for biggety)&lt;/p&gt;  
    </content:encoded>

    <pubDate>Sun, 13 Jun 2010 17:41:11 -0700</pubDate>
    <guid isPermaLink="false">http://rich.marchhouse.net/archives/596-guid.html</guid>
    
</item>
<item>
    <title>International Inconsistency Emergency</title>
    <link>http://rich.marchhouse.net/archives/595-International-Inconsistency-Emergency.html</link>
            <category>Musings</category>
    
    <comments>http://rich.marchhouse.net/archives/595-International-Inconsistency-Emergency.html#comments</comments>
    <wfw:comment>http://rich.marchhouse.net/wfwcomment.php?cid=595</wfw:comment>

    <slash:comments>7</slash:comments>
    <wfw:commentRss>http://rich.marchhouse.net/rss.php?version=2.0&amp;type=comments&amp;cid=595</wfw:commentRss>
    

    <author>nospam@example.com (Rich)</author>
    <content:encoded>
    &lt;p&gt;As I was sat in an interesting meeting this afternoon looking at the nameplates of 29 other nations my mind started pondering something.&lt;/p&gt;&lt;p&gt;In French, the USA is &lt;i&gt;Etats Unis&lt;/i&gt; and the UK is &lt;i&gt;Royaume Uni&lt;/i&gt;.  Since the states that are united are plural the &#039;unis&#039; gets an s on the end, but because the kingdom that is united is singular we have an s-less uni instead.  That&#039;s fair enough but it got me thinking about the whole &#039;united&#039; adjective in place names and I reckon we&#039;ve got an unliveablewith inconsistency that needs sorting here and now.  Either:&lt;/p&gt;&lt;p&gt;a) it should remain as &#039;United States of America&#039; but the UK should become &#039;United Countries of Great Britain and Northern Ireland&#039;, or even better, simply &#039;Kingdom&#039; (of Great Britain and Northern Ireland) because a single Kingdom must be united anyway, making the &#039;United&#039; redundant, or&lt;/p&gt;&lt;p&gt;b) it should be the &#039;United Country of States of America&#039; and the &#039;United Kingdom&#039; if the united is referring to the fact that a bunch of things got bundled together to make a single thing.&lt;/p&gt;&lt;p&gt;On balance I reckon option a) is the winner for me, which means we don&#039;t need to change the UN organisation to &amp;quot;United World of Nations&amp;quot; or &amp;quot;Nations&amp;quot; but we do need to change the football club to &amp;quot;Bits of Manchester United&amp;quot; (or maybe just &amp;quot;Manchester&amp;quot;).&lt;/p&gt;&lt;p&gt;(On rereading none of this makes as much sense as it does in my head)&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  
    </content:encoded>

    <pubDate>Mon, 07 Jun 2010 16:07:17 -0700</pubDate>
    <guid isPermaLink="false">http://rich.marchhouse.net/archives/595-guid.html</guid>
    
</item>
<item>
    <title>Also...</title>
    <link>http://rich.marchhouse.net/archives/593-Also....html</link>
    
    <comments>http://rich.marchhouse.net/archives/593-Also....html#comments</comments>
    <wfw:comment>http://rich.marchhouse.net/wfwcomment.php?cid=593</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://rich.marchhouse.net/rss.php?version=2.0&amp;type=comments&amp;cid=593</wfw:commentRss>
    

    <author>nospam@example.com (Rich)</author>
    <content:encoded>
    Please be a bit cheery.  I might kill myself after Ukraine&#039;s entry.  
    </content:encoded>

    <pubDate>Sat, 29 May 2010 21:17:12 -0700</pubDate>
    <guid isPermaLink="false">http://rich.marchhouse.net/archives/593-guid.html</guid>
    
</item>
<item>
    <title>How to Win at Eurovision</title>
    <link>http://rich.marchhouse.net/archives/592-How-to-Win-at-Eurovision.html</link>
    
    <comments>http://rich.marchhouse.net/archives/592-How-to-Win-at-Eurovision.html#comments</comments>
    <wfw:comment>http://rich.marchhouse.net/wfwcomment.php?cid=592</wfw:comment>

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

    <author>nospam@example.com (Rich)</author>
    <content:encoded>
    &lt;p&gt;1) Start your song off with a big bang or effect or something.  Honestly - these countries who start off softly with silly balletical movements and wind in their hair are on to a loser.  So far, Moldova and Greece win this aspect for me.  They started off how they meant to go on.&lt;/p&gt;&lt;p&gt;2) Have an unusual musical instrument.  No-one wants to see a dull grand piano - get yourself a neon blue violin like Moldova or, better yet, an angle grinder like Turkey.  Woo!&lt;/p&gt;&lt;p&gt;3) Be Spain and bribe the judges to get yourself another go at the end of the evening.&lt;/p&gt;&lt;p&gt;4) Don&#039;t be UK.&lt;/p&gt;&lt;p&gt;That&#039;s my running commentary for now - we&#039;re only up to Albania so about halfway through.  Might post some more words of winning later.&lt;/p&gt;  
    </content:encoded>

    <pubDate>Sat, 29 May 2010 21:04:56 -0700</pubDate>
    <guid isPermaLink="false">http://rich.marchhouse.net/archives/592-guid.html</guid>
    
</item>
<item>
    <title>Leather on Willow</title>
    <link>http://rich.marchhouse.net/archives/591-Leather-on-Willow.html</link>
            <category>Diary</category>
    
    <comments>http://rich.marchhouse.net/archives/591-Leather-on-Willow.html#comments</comments>
    <wfw:comment>http://rich.marchhouse.net/wfwcomment.php?cid=591</wfw:comment>

    <slash:comments>7</slash:comments>
    <wfw:commentRss>http://rich.marchhouse.net/rss.php?version=2.0&amp;type=comments&amp;cid=591</wfw:commentRss>
    

    <author>nospam@example.com (Rich)</author>
    <content:encoded>
    &lt;p&gt;It&#039;s cricket!  Click for bigness.&lt;/p&gt;&lt;p&gt;The world-class batsman stands at the crease, contemplating his first shot...&lt;/p&gt;&lt;p&gt;&lt;a  class=&quot;serendipity_image_link&quot;  rel=&quot;lightbox&quot; href=&quot;http://rich.marchhouse.net/uploads/cricket/sam09Medium.jpg&quot;&gt;&lt;!-- s9ymdb:180 --&gt;&lt;img width=&quot;80&quot; height=&quot;110&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; padding-left: 5px; padding-right: 5px; &quot; src=&quot;http://rich.marchhouse.net/uploads/cricket/sam09Medium.serendipityThumb.jpg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a  class=&quot;serendipity_image_link&quot;  rel=&quot;lightbox&quot; href=&quot;http://rich.marchhouse.net/uploads/cricket/sam09Medium.jpg&quot;&gt;&lt;/a&gt;The ball is delivered - a tricky, spinning, fast bowl down the off side.  The batsman relies on his well-honed reflexes to take a strike at it, planning its trajectory with infinite precision...&lt;/p&gt;&lt;p&gt;&lt;a  class=&quot;serendipity_image_link&quot;  rel=&quot;lightbox&quot; href=&quot;http://rich.marchhouse.net/uploads/cricket/sam05Medium.jpg&quot;&gt;&lt;!-- s9ymdb:178 --&gt;&lt;img width=&quot;110&quot; height=&quot;86&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; padding-left: 5px; padding-right: 5px; &quot; src=&quot;http://rich.marchhouse.net/uploads/cricket/sam05Medium.serendipityThumb.jpg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a  class=&quot;serendipity_image_link&quot;  rel=&quot;lightbox&quot; href=&quot;http://rich.marchhouse.net/uploads/cricket/sam05Medium.jpg&quot;&gt;&lt;/a&gt;He makes contact with the sweet spot on the bat, and the ball is sent off towards the boundary, the fielders lost in its wake...&lt;/p&gt;&lt;p&gt;&lt;a  class=&quot;serendipity_image_link&quot;  rel=&quot;lightbox&quot; href=&quot;http://rich.marchhouse.net/uploads/cricket/sam06Medium.jpg&quot;&gt;&lt;!-- s9ymdb:177 --&gt;&lt;img width=&quot;110&quot; height=&quot;83&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; padding-left: 5px; padding-right: 5px; &quot; src=&quot;http://rich.marchhouse.net/uploads/cricket/sam06Medium.serendipityThumb.jpg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a  class=&quot;serendipity_image_link&quot;  rel=&quot;lightbox&quot; href=&quot;http://rich.marchhouse.net/uploads/cricket/sam06Medium.jpg&quot;&gt;&lt;/a&gt;Feeling confident, the intrepid batsman faces the second ball of the over, smiling wryly to himself.  There is everything to play for in this most important of all matches...&lt;/p&gt;&lt;p&gt; &lt;a  class=&quot;serendipity_image_link&quot;  rel=&quot;lightbox&quot; href=&quot;http://rich.marchhouse.net/uploads/cricket/sam03Medium.jpg&quot;&gt;&lt;!-- s9ymdb:176 --&gt;&lt;img width=&quot;81&quot; height=&quot;110&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; padding-left: 5px; padding-right: 5px; &quot; src=&quot;http://rich.marchhouse.net/uploads/cricket/sam03Medium.serendipityThumb.jpg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a  class=&quot;serendipity_image_link&quot;  rel=&quot;lightbox&quot; href=&quot;http://rich.marchhouse.net/uploads/cricket/sam03Medium.jpg&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Oops.&lt;/p&gt;&lt;p&gt;&lt;a  class=&quot;serendipity_image_link&quot;  rel=&quot;lightbox&quot; href=&quot;http://rich.marchhouse.net/uploads/cricket/sam08Medium.jpg&quot;&gt;&lt;!-- s9ymdb:179 --&gt;&lt;img width=&quot;110&quot; height=&quot;86&quot; style=&quot;border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; padding-left: 5px; padding-right: 5px; &quot; src=&quot;http://rich.marchhouse.net/uploads/cricket/sam08Medium.serendipityThumb.jpg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;  
    </content:encoded>

    <pubDate>Tue, 25 May 2010 15:38:29 -0700</pubDate>
    <guid isPermaLink="false">http://rich.marchhouse.net/archives/591-guid.html</guid>
    
</item>
<item>
    <title>Brush off the cobwebs</title>
    <link>http://rich.marchhouse.net/archives/588-Brush-off-the-cobwebs.html</link>
            <category>Admin</category>
    
    <comments>http://rich.marchhouse.net/archives/588-Brush-off-the-cobwebs.html#comments</comments>
    <wfw:comment>http://rich.marchhouse.net/wfwcomment.php?cid=588</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://rich.marchhouse.net/rss.php?version=2.0&amp;type=comments&amp;cid=588</wfw:commentRss>
    

    <author>nospam@example.com (Rich)</author>
    <content:encoded>
    &lt;br /&gt;
Right, time to get this place back into a habitable status.  No blog entries for quite a while and things are a bit stale.  I&#039;m going to have a Return! &lt;br /&gt;
  
    </content:encoded>

    <pubDate>Fri, 21 May 2010 17:11:41 -0700</pubDate>
    <guid isPermaLink="false">http://rich.marchhouse.net/archives/588-guid.html</guid>
    
</item>
<item>
    <title>Roundabout Competition</title>
    <link>http://rich.marchhouse.net/archives/589-Roundabout-Competition.html</link>
            <category>Rant</category>
    
    <comments>http://rich.marchhouse.net/archives/589-Roundabout-Competition.html#comments</comments>
    <wfw:comment>http://rich.marchhouse.net/wfwcomment.php?cid=589</wfw:comment>

    <slash:comments>6</slash:comments>
    <wfw:commentRss>http://rich.marchhouse.net/rss.php?version=2.0&amp;type=comments&amp;cid=589</wfw:commentRss>
    

    <author>nospam@example.com (Rich)</author>
    <content:encoded>
    &lt;br /&gt;
&lt;p&gt;I learned to drive in and around Hemel.  Here&#039;s an interesting comparison table.  Which is more challenging?:&lt;/p&gt;&lt;p&gt;&lt;table style=&quot;width: 100%; &quot; border=&quot;1&quot; cellspacing=&quot;1&quot; cellpadding=&quot;1&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width: 33%; &quot;&gt;&lt;b&gt;Feature&lt;/b&gt;&lt;/td&gt;&lt;td style=&quot;width: 33%; &quot;&gt;&lt;b&gt;Swindon Magic Roundabout&lt;/b&gt;&lt;/td&gt;&lt;td style=&quot;width: 33%; &quot;&gt;&lt;b&gt;Hemel Hempstead Magic Roundabout&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;width: 33%; &quot;&gt;What are you on about?&lt;/td&gt;&lt;td style=&quot;width: 33%; &quot;&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Magic_Roundabout_(Swindon)&quot;&gt;This&lt;/a&gt;&lt;/td&gt;&lt;td style=&quot;width: 33%; &quot;&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Magic_Roundabout_(Hemel_Hempstead)&quot;&gt;This&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://www.googlefight.com/index.php?lang=en_GB&amp;word1=Swindon+Magic+Roundabout&amp;word2=Hemel+Magic+Roundabout&quot;&gt;Number of mentions on internet&lt;/a&gt;&lt;/td&gt;&lt;td&gt;Lots&lt;/td&gt;&lt;td&gt;Half as many lots&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;width: 33%; &quot;&gt;Number of mini roundabouts involved&lt;/td&gt;&lt;td style=&quot;width: 33%; &quot;&gt;Five&lt;/td&gt;&lt;td style=&quot;width: 33%; &quot;&gt;A monsterous SIX!&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;width: 33%; &quot;&gt;Number of cul-de-sacs off roundabout&lt;/td&gt;&lt;td style=&quot;width: 33%; &quot;&gt;One&lt;/td&gt;&lt;td style=&quot;width: 33%; &quot;&gt;NONE!  Ha!  Much more traffic&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;width: 33%; &quot;&gt;Steep hills from M1 to roundabout&lt;/td&gt;&lt;td style=&quot;width: 33%; &quot;&gt;None&lt;/td&gt;&lt;td style=&quot;width: 33%; &quot;&gt;ONE!  A whopper!  All the way down from Adeyfield, and a dual carriageway too!&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;width: 33%; &quot;&gt;Vehicle escape lanes required&lt;/td&gt;&lt;td style=&quot;width: 33%; &quot;&gt;None&lt;/td&gt;&lt;td style=&quot;width: 33%; &quot;&gt;ONE!  And it didn&#039;t always work because I remember a lorry once ended up in the RIVER in the middle of the roundabout!  Ooh that reminds me...&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Number of rivers in roundabout&lt;/td&gt;&lt;td&gt;None!  Ha!&lt;/td&gt;&lt;td&gt;ONE!  Beat that, Swindon!&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;Hemel wins!&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
  
    </content:encoded>

    <pubDate>Fri, 21 May 2010 19:46:50 -0700</pubDate>
    <guid isPermaLink="false">http://rich.marchhouse.net/archives/589-guid.html</guid>
    
</item>
<item>
    <title>RIP Genius</title>
    <link>http://rich.marchhouse.net/archives/590-RIP-Genius.html</link>
            <category>Maths</category>
    
    <comments>http://rich.marchhouse.net/archives/590-RIP-Genius.html#comments</comments>
    <wfw:comment>http://rich.marchhouse.net/wfwcomment.php?cid=590</wfw:comment>

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

    <author>nospam@example.com (Rich)</author>
    <content:encoded>
    &lt;p&gt;&lt;br /&gt;
I was much saddened by the recent death of Martin Gardner, prolific author, puzzler and &amp;quot;polymath&amp;quot; as the NY Times called him in his &lt;a href=&quot;http://www.nytimes.com/2010/05/24/us/24gardner.html&quot;&gt;obituary&lt;/a&gt;.  I have thoroughly enjoyed all of his books, particularly those on recreational mathematics.  Recreational mathematics is a brilliant method for getting people who don&#039;t enjoy maths to give it a go and explore what fun it really is.  Martin Gardner invented the concept - or at least popularised it - as far as I&#039;m concerned.  If you haven&#039;t read any of them, I&#039;d advise you to &lt;a href=&quot;http://www.amazon.co.uk/s/ref=nb_sb_ss_c_1_14?url=search-alias%3Dstripbooks&amp;field-keywords=martin+gardner&amp;sprefix=martin+gardner&quot;&gt;give them a go&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;What&#039;s disappointing is that, as my brother pointed out, the BBC didn&#039;t even recognise his death as significant - no mention at all. &lt;/p&gt;  
    </content:encoded>

    <pubDate>Mon, 24 May 2010 20:00:18 -0700</pubDate>
    <guid isPermaLink="false">http://rich.marchhouse.net/archives/590-guid.html</guid>
    
</item>

</channel>
</rss>