<?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>Wrdprss!</title>
	<atom:link href="http://blench.org/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://blench.org/wordpress</link>
	<description>Tom Blench</description>
	<lastBuildDate>Fri, 10 May 2013 11:38:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Alt-J &#8211; Greasemonkey script to replace Wingdings</title>
		<link>http://blench.org/wordpress/2013/05/10/alt-j-greasemonkey-script-to-replace-wingdings/</link>
		<comments>http://blench.org/wordpress/2013/05/10/alt-j-greasemonkey-script-to-replace-wingdings/#comments</comments>
		<pubDate>Fri, 10 May 2013 11:21:50 +0000</pubDate>
		<dc:creator>tomblench</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blench.org/wordpress/?p=146</guid>
		<description><![CDATA[Here&#8217;s a Greasemonkey script to get rid of those horrible &#8220;J&#8221; characters we see when an Outlook user tries to send you a smiley. (Thanks to Abhinay Omkar&#8217;s &#8220;J for Smile&#8221; script which was the inspiration here.) I don&#8217;t really &#8230; <a href="http://blench.org/wordpress/2013/05/10/alt-j-greasemonkey-script-to-replace-wingdings/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a Greasemonkey script to get rid of those horrible &#8220;J&#8221; characters we see when an Outlook user tries to send you a smiley.</p>
<p>(Thanks to <a href="http://userscripts.org/scripts/review/83513">Abhinay Omkar&#8217;s &#8220;J for Smile&#8221; script</a> which was the inspiration here.)</p>
<p>I don&#8217;t really use Greasemonkey but it seems that most people put their scripts on userscripts.org &#8211; however this seems to be a repository for Chinese spam and other garbage. So here it is:</p>
<pre class="brush: jscript; title: ; notranslate">
// ==UserScript==
// @name        Alt J
// @namespace   http://blench.org
// @description Replace J with smiley etc
// @include     https://outlook.hslive.net/*
// @grant       none
// @version     1
// ==/UserScript==

function makeSmiley(sm)
{
    switch(sm)
    {
        case &quot;J&quot;:
        return &quot;☺&quot;;
        case &quot;K&quot;:
        return &quot;😐&quot;;
        case &quot;L&quot;:
        return &quot;☹&quot;;
        default:
        return sm;
    }
}

function makeSmileys(){

    var fonts = document.getElementsByTagName('font');
    for (var key in fonts)
    {
        var font = fonts[key];
        if (font != null)
        {
            var face = font.face;
            if (face != null &amp;&amp; face.indexOf('Wingdings') != -1)
            {
                font.innerHTML = makeSmiley(font.innerHTML);
            }
        }
    }

    var spans = document.getElementsByTagName('span');
    for (var key in spans)
    {
        var span = spans[key];
        if (span != null)
        {
            var style = span.style.cssText;
            if (style != null &amp;&amp; style.indexOf('Wingdings') != -1)
            {
                span.innerHTML = makeSmiley(span.innerHTML);
            }
        }
    }
}

makeSmileys();
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blench.org/wordpress/2013/05/10/alt-j-greasemonkey-script-to-replace-wingdings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C stdio &#8211; disable buffering</title>
		<link>http://blench.org/wordpress/2012/09/27/c-stdio-disable-buffering/</link>
		<comments>http://blench.org/wordpress/2012/09/27/c-stdio-disable-buffering/#comments</comments>
		<pubDate>Thu, 27 Sep 2012 07:30:13 +0000</pubDate>
		<dc:creator>tomblench</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blench.org/wordpress/?p=144</guid>
		<description><![CDATA[Sometimes it&#8217;s useful to disable buffering for printf/fprintf etc. This is especially the case when you&#8217;re trying to debug a program and you&#8217;re not sure if it&#8217;s going to exit prematurely, before the output buffer gets flushed. It&#8217;s a pain &#8230; <a href="http://blench.org/wordpress/2012/09/27/c-stdio-disable-buffering/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sometimes it&#8217;s useful to disable buffering for printf/fprintf etc. This is especially the case when you&#8217;re trying to debug a program and you&#8217;re not sure if it&#8217;s going to exit prematurely, before the output buffer gets flushed.</p>
<p>It&#8217;s a pain to stick fflush() after every fprintf. The proper way to do it is:</p>
<pre class="brush: plain; title: ; notranslate">
setbuf(stream, NULL);
</pre>
<p>The manpage assures us this is equivalent to the more verbose</p>
<pre class="brush: plain; title: ; notranslate">
setvbuf(stream, NULL, _IONBF, BUFSIZ);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blench.org/wordpress/2012/09/27/c-stdio-disable-buffering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Array equality in JavaScript &#8211; functional style</title>
		<link>http://blench.org/wordpress/2012/03/15/array-equality-in-javascript-functional-style/</link>
		<comments>http://blench.org/wordpress/2012/03/15/array-equality-in-javascript-functional-style/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 15:12:53 +0000</pubDate>
		<dc:creator>tomblench</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blench.org/wordpress/?p=140</guid>
		<description><![CDATA[So it turns out there is no built-in test for array equality in JavaScript. There are some suggestions here on StackOverflow, but I wanted to see if there was a simple answer using Functional Javascript. Here&#8217;s my attempt: Reading from &#8230; <a href="http://blench.org/wordpress/2012/03/15/array-equality-in-javascript-functional-style/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So it turns out there is no built-in test for array equality in JavaScript. There are some suggestions <a href="http://stackoverflow.com/questions/3115982/how-to-check-javascript-array-equals">here on StackOverflow</a>, but I wanted to see if there was a simple answer using <a href="http://osteele.com/sources/javascript/functional/">Functional Javascript</a>.</p>
<p>Here&#8217;s my attempt:</p>
<pre class="brush: jscript; title: ; notranslate">
ArrayEq: function(a1,a2) {
    return reduce(&quot;x &amp;&amp; y&quot;,true,map(&quot;x[0]==x[1]&quot;,zip(a1,a2)));
}
</pre>
<p>Reading from right to left, the zip transforms them into an array of pairs, then each pair is compared, and then the reduce applies the &#038;&#038; operator to each boolean result in turn.</p>
]]></content:encoded>
			<wfw:commentRss>http://blench.org/wordpress/2012/03/15/array-equality-in-javascript-functional-style/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick random passwords</title>
		<link>http://blench.org/wordpress/2012/03/07/quick-random-passwords/</link>
		<comments>http://blench.org/wordpress/2012/03/07/quick-random-passwords/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 08:48:23 +0000</pubDate>
		<dc:creator>tomblench</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blench.org/wordpress/?p=138</guid>
		<description><![CDATA[I&#8217;m sure there are lots of password generators out there, but a quick way of achieving this at the command line is something like cat /dev/urandom &#124; dd count=1 2> /dev/null &#124; base64 Then copy and paste as much as &#8230; <a href="http://blench.org/wordpress/2012/03/07/quick-random-passwords/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure there are lots of password generators out there, but a quick way of achieving this at the command line is something like</p>
<p><code><br />
cat /dev/urandom | dd count=1 2> /dev/null | base64<br />
</code></p>
<p>Then copy and paste as much as you need. The result will be fairly unmemorable, but apart from OS login passwords which need to be typed, most logins can be automated, eg by using user:pass@host style URLs.</p>
]]></content:encoded>
			<wfw:commentRss>http://blench.org/wordpress/2012/03/07/quick-random-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitch Mix #4</title>
		<link>http://blench.org/wordpress/2012/02/03/twitch-mix-4/</link>
		<comments>http://blench.org/wordpress/2012/02/03/twitch-mix-4/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 15:07:12 +0000</pubDate>
		<dc:creator>tomblench</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blench.org/wordpress/?p=130</guid>
		<description><![CDATA[50 Min Indie Disco/Noise/Electro jwplayer("mediaplayer_twitch4").setup({ flashplayer: "/mediaplayer/player.swf", file: "/media/music/twitch_mix_4.m4a", image: "/media/pics/twitch.jpg" }); Tracklisting The Presets: This Boy&#8217;s in Love (Lifelike Remix) Pryda: Rakfunk (Original Mix) Alex Metric: Deadly on a Mission (Alex Metrix Remix) The Presets: My People (D.I.M. Remix) &#8230; <a href="http://blench.org/wordpress/2012/02/03/twitch-mix-4/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>50 Min Indie Disco/Noise/Electro</strong></p>
<p><script type="text/javascript" src="/mediaplayer/jwplayer.js"></script></p>
<div id="mediaplayer_twitch4">
</div>
<p><script type="text/javascript">
                jwplayer("mediaplayer_twitch4").setup({
                        flashplayer: "/mediaplayer/player.swf",
                        file: "/media/music/twitch_mix_4.m4a",
                        image: "/media/pics/twitch.jpg"
                });
</script></p>
<p><strong>Tracklisting</strong></p>
<p><strong>The Presets:</strong> This Boy&#8217;s in Love (Lifelike Remix)<br />
<strong>Pryda:</strong> Rakfunk (Original Mix)<br />
<strong>Alex Metric:</strong> Deadly on a Mission (Alex Metrix Remix)<br />
<strong>The Presets:</strong> My People (D.I.M. Remix)<br />
<strong>Bonsai Kat:</strong> Bla Bla (Original Mix)<br />
<strong>Shirley Lites:</strong> Heat You Up (Melt You Down) (Gard&#8217;s 4lux Edit)<br />
<strong>Parsa Vahid:</strong> Morning Sun (Original Mix)<br />
<strong>Ali Wilson, Lee Osborne:</strong> Armageddon (Original Mix)<br />
<strong>Boys Noize, Erol Alkan:</strong> Lemonade (Justin Robertson&#8217;s Deadstocks 33&#8242;s Remix)<br />
<strong>Punks Jump Up:</strong> Get Down (Alex Gopher Remix)</p>
]]></content:encoded>
			<wfw:commentRss>http://blench.org/wordpress/2012/02/03/twitch-mix-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I store long strings with Firebird, NHibernate and NHibernate.Mapping.Attributes?</title>
		<link>http://blench.org/wordpress/2012/02/02/how-do-i-store-long-strings-with-firebird-nhibernate-and-nhibernate-mapping-attributes/</link>
		<comments>http://blench.org/wordpress/2012/02/02/how-do-i-store-long-strings-with-firebird-nhibernate-and-nhibernate-mapping-attributes/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 15:56:47 +0000</pubDate>
		<dc:creator>tomblench</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[nhibernate]]></category>

		<guid isPermaLink="false">http://blench.org/wordpress/?p=122</guid>
		<description><![CDATA[Yes, I know, it&#8217;s the hot question of the moment which everyone is asking. Anyway, I figured that someone else might want to know this, since Firebird is a supported database for NHibernate, and the embedded version is very handy. &#8230; <a href="http://blench.org/wordpress/2012/02/02/how-do-i-store-long-strings-with-firebird-nhibernate-and-nhibernate-mapping-attributes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yes, I know, it&#8217;s the hot question of the moment which everyone is asking.</p>
<p>Anyway, I figured that someone else might want to know this, since Firebird is a supported database for NHibernate, and the embedded version is very handy.</p>
<p>This is what the declaration for a member called &#8220;Detail&#8221; should look like (I think you can omit the &#8220;Name&#8221; attribute if you want):</p>
<pre class="brush: csharp; title: ; notranslate">
[Property(0, Type=&quot;StringClob&quot;)]
[Column(1, Name=&quot;Detail&quot;, SqlType = &quot;BLOB SUB_TYPE 1&quot;)]
public virtual string Detail { get; set; }
</pre>
<p>So the SqlType bit is Firebird-specific, and I don&#8217;t think it was very obviously documented anywhere in the Firebird docs. It feels a bit nasty to write code like this because it means I&#8217;m locked in to one database backend FOREVER.</p>
<p>For a fun bonus rant, the <a href="http://www.nhforge.org/doc/nh/en/index.html">NHibernate page</a> seems to be down at the moment. You can say what you want about Java, but the open-source tools and community are so much richer for Java than they are for C#. In fact, I&#8217;d say that C# is at around the Java 1.2 level on this basis.</p>
]]></content:encoded>
			<wfw:commentRss>http://blench.org/wordpress/2012/02/02/how-do-i-store-long-strings-with-firebird-nhibernate-and-nhibernate-mapping-attributes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitch Mix #3</title>
		<link>http://blench.org/wordpress/2012/01/06/twitch-mix-3/</link>
		<comments>http://blench.org/wordpress/2012/01/06/twitch-mix-3/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 16:45:44 +0000</pubDate>
		<dc:creator>tomblench</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blench.org/wordpress/?p=96</guid>
		<description><![CDATA[One Hour Eclectic Mix jwplayer("mediaplayer_twitch3").setup({ flashplayer: "/mediaplayer/player.swf", file: "/media/music/sixtyminmix-AAC 128Kbps.m4a", image: "/media/pics/twitch.jpg" }); Tracklisting Metronomy: The Bay (2 Bears Mix) Gossip: Standing In The Way Of Control (Tronik Youth Remix) Dave Clarke: No One&#8217;s Driving (Chemical Brothers Remix) DJ Sneak: &#8230; <a href="http://blench.org/wordpress/2012/01/06/twitch-mix-3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>One Hour Eclectic Mix</strong></p>
<p><script type="text/javascript" src="/mediaplayer/jwplayer.js"></script></p>
<div id="mediaplayer_twitch3">
</div>
<p><script type="text/javascript">
                jwplayer("mediaplayer_twitch3").setup({
                        flashplayer: "/mediaplayer/player.swf",
                        file: "/media/music/sixtyminmix-AAC 128Kbps.m4a",
                        image: "/media/pics/twitch.jpg"
                });
</script></p>
<p><strong>Tracklisting</strong></p>
<p><strong>Metronomy</strong>: The Bay (2 Bears Mix)<br />
<strong>Gossip</strong>: Standing In The Way Of Control (Tronik Youth Remix)<br />
<strong>Dave Clarke</strong>: No One&#8217;s Driving (Chemical Brothers Remix)<br />
<strong>DJ Sneak</strong>: You Can&#8217;t Hide From Your Bud<br />
<strong>Fedde Le Grand</strong>: So Much Love (Original Club Mix)<br />
<strong>Paolo Mojo</strong>: Wasted Youth (Original Mix)<br />
<strong>Booka Shade</strong>: Scaramanga (Dusty Kid Remix)<br />
<strong>Michael Calfan</strong>: Resurrection (Axwell&#8217;s Recut Club Version)<br />
<strong>Sarah Vaughan</strong>: Fever (Adam Freeland Remix)<br />
<strong>Fatboy Slim</strong>: Tweaker&#8217;s Delight<br />
<strong>Faithless featuring Blancmange</strong>: Feel Me<br />
<strong>Oliver Koletzki</strong>: Music From The Heart (Original Mix)<br />
<strong>Felix da Housecat</strong>: What Does It Feel Like? (Röyksopp Return To The Sun Remix)<br />
<strong>Crystal Castles featuring Robert Smith</strong>: Not In Love</p>
]]></content:encoded>
			<wfw:commentRss>http://blench.org/wordpress/2012/01/06/twitch-mix-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitch Mix #2</title>
		<link>http://blench.org/wordpress/2012/01/06/twitch-mix-2/</link>
		<comments>http://blench.org/wordpress/2012/01/06/twitch-mix-2/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 16:44:12 +0000</pubDate>
		<dc:creator>tomblench</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blench.org/wordpress/?p=93</guid>
		<description><![CDATA[How&#8217;s Your Evening So Far? Indie Disco / Electro Mix (tracklisting below) jwplayer("mediaplayer_twitch2").setup({ flashplayer: "/mediaplayer/player.swf", file: "/media/music/128sessionscrewup-AAC 128Kbps.m4a", image: "/media/pics/twitch.jpg" }); Tracklisting Wink: How&#8217;s Your Evening So Far (Filtered Mix) [Intro] Metronomy: The Look (Fred Falke Remix) Chris Lake: Changes &#8230; <a href="http://blench.org/wordpress/2012/01/06/twitch-mix-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>How&#8217;s Your Evening So Far?</strong></p>
<p>Indie Disco / Electro Mix (tracklisting below)</p>
<p><script type="text/javascript" src="/mediaplayer/jwplayer.js"></script></p>
<div id="mediaplayer_twitch2">
</div>
<p><script type="text/javascript">
                jwplayer("mediaplayer_twitch2").setup({
                        flashplayer: "/mediaplayer/player.swf",
                        file: "/media/music/128sessionscrewup-AAC 128Kbps.m4a",
                        image: "/media/pics/twitch.jpg"
                });
</script></p>
<p><strong>Tracklisting</strong></p>
<p><strong>Wink</strong>: How&#8217;s Your Evening So Far (Filtered Mix) [Intro]<br />
<strong>Metronomy</strong>: The Look (Fred Falke Remix)<br />
<strong>Chris Lake</strong>: Changes (Main Mix)<br />
<strong>Felix da Housecat</strong>: Silver Screen Shower Scene (Chuckie &#038; Silvio Ecomo Dirty Acid Remix)<br />
<strong>Yeah Yeah Yeahs</strong>: Heads Will Roll (A-Trak Club Mix)<br />
<strong>Basement Jaxx</strong>: Where&#8217;s Your Head At?<br />
<strong>Röyksopp</strong>: The Girl And The Robot<br />
<strong>DJ Tiësto &#038; Ferry Corsten</strong>: Gouryella (Rawdirt Remix) [Outro]</p>
]]></content:encoded>
			<wfw:commentRss>http://blench.org/wordpress/2012/01/06/twitch-mix-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitch Mix #1</title>
		<link>http://blench.org/wordpress/2012/01/06/twitch-mix-1/</link>
		<comments>http://blench.org/wordpress/2012/01/06/twitch-mix-1/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 16:41:38 +0000</pubDate>
		<dc:creator>tomblench</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blench.org/wordpress/?p=88</guid>
		<description><![CDATA[The first in a series of my Twitch Mixes, 50 minutes of progressive house and trance, on my Novation Twitch with Serato Itch. Some of these mixes are hosted on SoundCloud, but I&#8217;ve only got limited space on there, so &#8230; <a href="http://blench.org/wordpress/2012/01/06/twitch-mix-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The first in a series of my <strong>Twitch Mixes</strong>, 50 minutes of progressive house and trance, on my Novation Twitch with Serato Itch.</p>
<p>Some of these mixes are hosted on <a href="http://soundcloud.com/tom-blench">SoundCloud</a>, but I&#8217;ve only got limited space on there, so the complete lot are hosted here.</p>
<p><script type="text/javascript" src="/mediaplayer/jwplayer.js"></script></p>
<div id="mediaplayer_twitch1">
</div>
<p><script type="text/javascript">
                jwplayer("mediaplayer_twitch1").setup({
                        flashplayer: "/mediaplayer/player.swf",
                        file: "/media/music/50 minmix-AAC 128Kbps.m4a",
                        image: "/media/pics/twitch.jpg"
                });
</script></p>
<p><strong>Tracklisting</strong></p>
<p><strong>Nick Warren</strong>: Buenos Aires (Original Mix)<br />
<strong>Way Out West</strong>: The Gift (Michael Woods Remix)<br />
<strong>Tom Blench</strong>: Third Interval (WIP)<br />
<strong>Simian Mobile Disco &#038; Beth Ditto</strong>: Cruel Intentions (DJ Pierre Remix)<br />
<strong>Adam Freeland</strong>: We Want Your Soul (Infusion Mix)<br />
<strong>Jerome Isma-Ae / OT Quartet</strong>: Hold That Sucker Down (Instrumental)<br />
<strong>Inner City</strong>: Big Fun (Simian Mobile Disco Remix)<br />
<strong>Adonis</strong>: No Way Back<br />
<strong>The Temper Trap</strong>: Sweet Disposition (Evil Nine Mix)</p>
]]></content:encoded>
			<wfw:commentRss>http://blench.org/wordpress/2012/01/06/twitch-mix-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Richard Stallman&#8217;s Rider</title>
		<link>http://blench.org/wordpress/2011/10/29/richard-stallmans-rider/</link>
		<comments>http://blench.org/wordpress/2011/10/29/richard-stallmans-rider/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 14:48:25 +0000</pubDate>
		<dc:creator>tomblench</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blench.org/wordpress/?p=73</guid>
		<description><![CDATA[Thanks to The Register, whose story linked to an email which details RMS&#8217; rider and requirements for making speeches in tedious detail. Honestly, this stuff makes &#8220;a bowl of blue M&#038;Ms&#8221; look trivial. We learn that he doesn&#8217;t like dogs, &#8230; <a href="http://blench.org/wordpress/2011/10/29/richard-stallmans-rider/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://www.theregister.co.uk/2011/10/28/stallman_criticises_steve_jobs_again/">The Register</a>, whose story linked to an email which details RMS&#8217; rider and requirements for making speeches in <a href="https://secure.mysociety.org/admin/lists/pipermail/developers-public/2011-October/007647.html">tedious detail</a>.</p>
<p>Honestly, this stuff makes &#8220;a bowl of blue M&#038;Ms&#8221; look trivial. We learn that he doesn&#8217;t like dogs, can&#8217;t sleep if the temperature is higher than 22°C, and that &#8220;I like some wines…but I don&#8217;t remember the names of wines I have liked&#8221;.</p>
<p>Even if I thought this guy was the messiah of free software (I <em>am</em> an avid emacs user), I don&#8217;t think I would want to host such a fussy and childish person.</p>
]]></content:encoded>
			<wfw:commentRss>http://blench.org/wordpress/2011/10/29/richard-stallmans-rider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
