<?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"
	>

<channel>
	<title>Will's Web Miscellany</title>
	<atom:link href="http://willj.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://willj.net/blog</link>
	<description>will.thoughts.pop</description>
	<pubDate>Mon, 23 Jun 2008 09:29:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Seen on a list recently</title>
		<link>http://willj.net/blog/2008/06/22/seen-on-a-list-recently/</link>
		<comments>http://willj.net/blog/2008/06/22/seen-on-a-list-recently/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 08:48:20 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://willj.net/blog/?p=346</guid>
		<description><![CDATA[Remember, top-posting because that&#8217;s where the cursor happened to be is like shitting in your pants because that&#8217;s where your arsehole happened to be.
]]></description>
			<content:encoded><![CDATA[<blockquote><p>Remember, top-posting because that&#8217;s where the cursor happened to be is like shitting in your pants because that&#8217;s where your arsehole happened to be.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://willj.net/blog/2008/06/22/seen-on-a-list-recently/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Q. Does GTA San Andreas work on a MacBook Pro using WinXP and Boot Camp?</title>
		<link>http://willj.net/blog/2008/06/13/gta-san-andreas-on-a-macbook-pro/</link>
		<comments>http://willj.net/blog/2008/06/13/gta-san-andreas-on-a-macbook-pro/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 16:27:00 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Mac]]></category>

		<category><![CDATA[Tech]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[games]]></category>

		<guid isPermaLink="false">http://willj.net/blog/?p=338</guid>
		<description><![CDATA[A. Yes it does, perfectly and at the highest detail level.
]]></description>
			<content:encoded><![CDATA[<p>A. Yes it does, perfectly and at the highest detail level.</p>
]]></content:encoded>
			<wfw:commentRss>http://willj.net/blog/2008/06/13/gta-san-andreas-on-a-macbook-pro/feed/</wfw:commentRss>
		</item>
		<item>
		<title>This is going to take a while&#8230;</title>
		<link>http://willj.net/blog/2008/06/12/this-is-going-to-take-a-while/</link>
		<comments>http://willj.net/blog/2008/06/12/this-is-going-to-take-a-while/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 10:12:33 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Mac]]></category>

		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://willj.net/blog/?p=336</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://willj.net/blog/wp-content/uploads/2008/06/picture-5.png"><img class="aligncenter size-full wp-image-337" title="Time machine backup" src="http://willj.net/blog/wp-content/uploads/2008/06/picture-5.png" alt="" width="435" height="125" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://willj.net/blog/2008/06/12/this-is-going-to-take-a-while/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flushing memcached servers the easy way</title>
		<link>http://willj.net/blog/2008/06/10/flushing-memcached-servers-the-easy-way/</link>
		<comments>http://willj.net/blog/2008/06/10/flushing-memcached-servers-the-easy-way/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 17:14:13 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Rails]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[engineyard]]></category>

		<guid isPermaLink="false">http://willj.net/blog/?p=335</guid>
		<description><![CDATA[This is easy right?  Can&#8217;t you just restart the memcached server? Well yes, but you may cause errors in applications that are already connected to it. You can follow your memcached restart with an application restart, eg for a Ruby on Rails app:
# /etc/init.d/memcached restart &#38;&#38; mongrel_rails cluster::restart
Of course if you have more than one [...]]]></description>
			<content:encoded><![CDATA[<p>This is easy right?  Can&#8217;t you just restart the memcached server? Well yes, but you may cause errors in applications that are already connected to it. You can follow your memcached restart with an application restart, eg for a Ruby on Rails app:</p>
<p># /etc/init.d/memcached restart &amp;&amp; mongrel_rails cluster::restart</p>
<p>Of course if you have more than one application server you have to restart your app on every single one. This would work on an engineyard slice assuming you have the eycap gem installed:</p>
<p>$ cap production memcached:restart<br />
$ cap production mongrel:restart</p>
<p>Restarting your application is not ideal however, you will lose anything cached in memory, cause delays to users trying to access your site, that sort of thing.</p>
<p>So what can be done? The answer is really simple. Assuming a memcached running on the local machine on the default port:</p>
<p>$ echo &#8221;flush_all&#8221; | nc localhost 11211</p>
<p>Easy!</p>
]]></content:encoded>
			<wfw:commentRss>http://willj.net/blog/2008/06/10/flushing-memcached-servers-the-easy-way/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Funny wireless network names</title>
		<link>http://willj.net/blog/2008/04/29/funny-wireless-network-names/</link>
		<comments>http://willj.net/blog/2008/04/29/funny-wireless-network-names/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 19:32:26 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://willj.net/blog/?p=333</guid>
		<description><![CDATA[I saw these amusing wireless network names on my way into Manchester to meet Paul Robinson the other week.  Not had a chance to post them until now.
My wireless network is less imaginatively named &#8216;foo&#8217;.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://willj.net/blog/wp-content/uploads/2008/04/picture-51.png"><img class="alignleft size-full wp-image-334" title="wireless network names" src="http://willj.net/blog/wp-content/uploads/2008/04/picture-51.png" alt="" width="277" height="237" /></a>I saw these amusing wireless network names on my way into Manchester to meet <a title="Paul Robinson" href="http://blog.vagueware.com/">Paul Robinson</a> the other week.  Not had a chance to post them until now.</p>
<p>My wireless network is less imaginatively named &#8216;foo&#8217;.</p>
]]></content:encoded>
			<wfw:commentRss>http://willj.net/blog/2008/04/29/funny-wireless-network-names/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How did they not sell? How?</title>
		<link>http://willj.net/blog/2008/04/22/how-did-they-not-sell-how/</link>
		<comments>http://willj.net/blog/2008/04/22/how-did-they-not-sell-how/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 20:58:21 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://willj.net/blog/?p=331</guid>
		<description><![CDATA[I despair of eBay, and the internet in general. How did these not sell? How?

I mean, who wouldn&#8217;t want 8 mouse balls, especially when posed so artfully.  They are pleasantly rubbery, quite heavy; obviously good quality. Someone missed a bargain today, they really did.
]]></description>
			<content:encoded><![CDATA[<p>I despair of eBay, and the internet in general. How did these not sell? How?</p>
<p><a href="http://willj.net/blog/wp-content/uploads/2008/04/picture-5.png"><img class="alignnone size-medium wp-image-332" title="8 mouse balls" src="http://willj.net/blog/wp-content/uploads/2008/04/picture-5-300x161.png" alt="8 mouse balls" width="300" height="161" /></a></p>
<p>I mean, who wouldn&#8217;t want 8 mouse balls, especially when posed so artfully.  They are pleasantly rubbery, quite heavy; obviously good quality. Someone missed a bargain today, they really did.</p>
]]></content:encoded>
			<wfw:commentRss>http://willj.net/blog/2008/04/22/how-did-they-not-sell-how/feed/</wfw:commentRss>
		</item>
		<item>
		<title>duh-bert</title>
		<link>http://willj.net/blog/2008/04/22/duh-bert/</link>
		<comments>http://willj.net/blog/2008/04/22/duh-bert/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 19:05:19 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://willj.net/blog/?p=330</guid>
		<description><![CDATA[
Dear &#8216;People who run the dilbert.com site&#8217;,
Your website makes my eyes bleed.
Thank you.

]]></description>
			<content:encoded><![CDATA[<div>
<p>Dear &#8216;People who run the dilbert.com site&#8217;,</p>
<p>Your website makes my eyes bleed.</p>
<p>Thank you.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://willj.net/blog/2008/04/22/duh-bert/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Metal/Explosive/Weapon Detectors on the London Underground</title>
		<link>http://willj.net/blog/2008/04/20/metalexplosiveweapon-detectors-on-the-london-underground/</link>
		<comments>http://willj.net/blog/2008/04/20/metalexplosiveweapon-detectors-on-the-london-underground/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 18:51:51 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://willj.net/blog/?p=326</guid>
		<description><![CDATA[I am posting this a a blog entry because I can&#8217;t see an obvious way to leave comments on Sam Clark&#8217;s blog where he wrote about the subject of metal detectors on the London Underground (LU).
Boris (and everyone else who promotes the idea of detectors) seems to be ignoring the fact that whilst creating a [...]]]></description>
			<content:encoded><![CDATA[<p>I am posting this a a blog entry because I can&#8217;t see an obvious way to leave comments on <a title="Sam Clark" href="http://sam.clark.name/">Sam Clark&#8217;s blog</a> where he wrote about the subject of <a title="Debunking Boris" href="http://sam.clark.name/2008/04/19/debunking-boris/">metal detectors on the London Underground (LU)</a>.</p>
<p>Boris (and everyone else who promotes the idea of detectors) seems to be ignoring the fact that whilst creating a target with the size of queues they will undoubtedly cause, the scanners will only deter the most incompetent terrorists.</p>
<p>Why? Because the LU is a huge, open system.  You can simply climb a small fence and from there get to any other part of the system. Securing the stations alone will not make a difference, and will almost certainly lead to a false sense of security which could put travelers in a worse situation than before as their guard will be lowered.</p>
<p>You could solve this by securing the entire of the underground system; closing it off, but that is going to cost an astronomic amount of money and will only be as reliable as the least secure part of the whole system. Or you could spend the money on gathering better intelligence, more policing and maybe starting to solve some of the fundamental problems that drive people to terrorism.</p>
<p>People who advocate detectors at LU stations either don&#8217;t understand the security situation, or are only interested in the &#8220;fell good&#8221; response the suggestion would have with the public.</p>
<p>There are a couple of good <a title="Geoff Dunmore on LU security" href="http://www.kablenet.com/kd.nsf/Frontpage/85C58F53F411521180257132005EF49F?OpenDocument">quotes from Geoff Dunmore</a>, operational security manager (March 2006) for LU:</p>
<p style="padding-left: 30px; ">&#8220;&#8230;the network would not be the right environment for the technology.&#8221;</p>
<p style="padding-left: 30px; ">&#8220;Basically, what we know is that it&#8217;s not practical&#8221;</p>
<p style="padding-left: 30px;">&#8220;Finally there&#8217;s also the risk that you actually create another target with people queuing up and congregating at the screening points.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://willj.net/blog/2008/04/20/metalexplosiveweapon-detectors-on-the-london-underground/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Slightly naughty</title>
		<link>http://willj.net/blog/2008/04/04/slightly_naughty/</link>
		<comments>http://willj.net/blog/2008/04/04/slightly_naughty/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 18:30:57 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://willj.net/blog/?p=321</guid>
		<description><![CDATA[In IRC:
Wlll: &#8220;My name is Anne van Kesteren and contrary to what many people think, I’m a male.&#8221;
Wlll: The internet needs more laydees.
Wlll: 3D laydees that is.
ciaran29d: :&#124;
Wlll: ones who can program Ruby
Wlll: And are hot.
ciaran29d: heh
Wlll: And slightly naughty.
Wlll: You get the idea.
ciaran29d: like, they use PHP?
Wlll: No, that&#8217;s just bad.
]]></description>
			<content:encoded><![CDATA[<p>In IRC:</p>
<p>Wlll: &#8220;My name is <a title="Anne van Kesteren" href="http://annevankesteren.nl/">Anne van Kesteren</a> and contrary to what many people think, I’m a male.&#8221;<br />
Wlll: The internet needs more laydees.<br />
Wlll: 3D laydees that is.<br />
ciaran29d: :|<br />
Wlll: ones who can program Ruby<br />
Wlll: And are hot.<br />
ciaran29d: heh<br />
Wlll: And slightly naughty.<br />
Wlll: You get the idea.<br />
ciaran29d: like, they use PHP?<br />
Wlll: No, that&#8217;s just bad.</p>
]]></content:encoded>
			<wfw:commentRss>http://willj.net/blog/2008/04/04/slightly_naughty/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Penetrating Wagner&#8217;s Ring</title>
		<link>http://willj.net/blog/2008/04/04/penetrating_wagners_ring/</link>
		<comments>http://willj.net/blog/2008/04/04/penetrating_wagners_ring/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 14:17:38 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://willj.net/blog/?p=317</guid>
		<description><![CDATA[Really, who thought &#8220;Penetrating Wagner&#8217;s Ring&#8221; was a good title for a book?

The reviews are great:
As implied by the title, this collection probes deeply into Wagner&#8217;s vast Ring piece. Accusations of anti-semitism make Wagner&#8217;s Ring a sensitive area today, but it continues to offer pleasure to many. This is a masterful work of musical scholarship [...]]]></description>
			<content:encoded><![CDATA[<p>Really, who thought &#8220;<a title="Penetrating Wagner's Ring" href="http://www.amazon.co.uk/gp/product/customer-reviews/0306804379/ref=cm_rev_next?ie=UTF8&amp;customer-reviews.sort%5Fby=-OverallRating&amp;n=266239&amp;s=books&amp;customer-reviews.start=11" target="_self">Penetrating Wagner&#8217;s Ring</a>&#8221; was a good title for a book?</p>
<p><span style="color: #0000ee; text-decoration: underline;"><a href="http://willj.net/blog/wp-content/uploads/2008/04/51414yn9cgl-1_ss500_1.jpg"><img class="alignleft size-medium wp-image-320" title="51414yn9cgl-1_ss500_1" src="http://willj.net/blog/wp-content/uploads/2008/04/51414yn9cgl-1_ss500_1-196x300.jpg" alt="Penetrating Wagner\'s Ring" width="196" height="300" /></a></span></p>
<p>The reviews are great:</p>
<blockquote><p>As implied by the title, this collection probes deeply into Wagner&#8217;s vast Ring piece. Accusations of anti-semitism make Wagner&#8217;s Ring a sensitive area today, but it continues to offer pleasure to many. This is a masterful work of musical scholarship that deserves a place on any sturdy shelf. No doubt it will influence appreciation of Wagner&#8217;s Ring for many years to come. Among the highlights is the revealing chapter on the many characters than Wagner has managed to cram into his Ring. Also covered are the brass instruments that Wagner designed specifically for insertion within the Ring. There will always be those who are opposed to musical analysis (just the same as there will always be those who resort to juvenile humour, regarding the title). They will say that Wagner&#8217;s Ring is &#8216;violated&#8217; with excessive force of scholarship. For this reviewer, however, Wagner&#8217;s Ring remains quite intact and is indeed tightened by the exploration. In short, this stimulating venture in and out of Wagner&#8217;s Ring has resulted in a seminal, fluid output.</p></blockquote>
<p>More <a title="Amazon Oddities" href="http://www.amazon.com/tag/amazon%20oddities/">amazon weirdness</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://willj.net/blog/2008/04/04/penetrating_wagners_ring/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
