<?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>Apathy Sketchpad &#187; Internet</title>
	<atom:link href="http://www.apathysketchpad.com/blog/category/computers/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.apathysketchpad.com/blog</link>
	<description>Floccinaucinihilipilificating antidisestablishmentarianism since 2001.</description>
	<pubDate>Thu, 02 Jul 2009 22:47:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>GMail &#8216;View In Full Inbox&#8217; bookmarklet.</title>
		<link>http://www.apathysketchpad.com/blog/2009/06/05/gmail-view-in-full-inbox-bookmarklet/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/06/05/gmail-view-in-full-inbox-bookmarklet/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 15:53:01 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=1024</guid>
		<description><![CDATA[I don&#8217;t know if this will be of use to anyone, but nonetheless. When I get email, Google Talk alerts me. If I click the alert, I just get the message in Chrome, not the full GMail interface. This doesn&#8217;t have a button, for example, to apply a label to the message, so I wrote [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know if this will be of use to anyone, but nonetheless. When I get email, Google Talk alerts me. If I click the alert, I just get the message in Chrome, not the full GMail interface. This doesn&#8217;t have a button, for example, to apply a label to the message, so I wrote a bookmarklet that takes me to the equivalent page in the full interface. It&#8217;s here if you want it:</p>
<p style="text-align: center;"><a href="javascript:var temp=window.location.href.replace(/^(https?:\/\/mail.google.com\/mail\/\?).*th=([0-9a-f]+)\&amp;.*$/i,&quot;$1view=tl&amp;search=inbox#inbox/$2&quot;);if (temp==window.location.href) window.location.href=&quot;https://mail.google.com/mail&quot;; else window.location.href=temp;">GMail</a></p>
<p style="text-align: left;">To install, drag it to your bookmarks bar. To save you having two bookmarklets, if you are viewing any other page, it will open GMail.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/06/05/gmail-view-in-full-inbox-bookmarklet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pseudo-Random Musings</title>
		<link>http://www.apathysketchpad.com/blog/2009/05/31/pseudo-random-musings/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/05/31/pseudo-random-musings/#comments</comments>
		<pubDate>Sun, 31 May 2009 21:13:58 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Internet]]></category>

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

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=1023</guid>
		<description><![CDATA[I&#8217;ve just read about a thing called the Dice-O-Matic. The gist is that the operator of GamesByEmail.com requires a lot of random numbers between one and six inclusive to feed his collection of online dice-games. And inevitably, people have complained that the numbers he&#8217;s used are insufficiently random.
And maybe they were, once. Originally, GamesByEmail used [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just read about a thing called the Dice-O-Matic. The gist is that the operator of <a href="http://gamesbyemail.com/">GamesByEmail.com</a> requires a lot of random numbers between one and six inclusive to feed his collection of online dice-games. And inevitably, people have complained that the numbers he&#8217;s used are insufficiently random.</p>
<p>And maybe they were, once. Originally, GamesByEmail used the pseudo-random number generator built into whatever the games are written in. Once ‘seeded’ with a starting number, such an algorithm will spit out a string of numbers which will have all the same properties as random numbers, except that if you know the seed, they&#8217;re totally reproducible (although still essentially unpredictable, much like the digits of π*). They&#8217;re generally seeded from a high-resolution timer, so this should never be a problem. They also repeat if you run it for long enough, so you should re-seed periodically. In theory, this should be fine, but you have to be very careful not to accidentally bias the selection.</p>
<p>Unfortunately, it&#8217;s very difficult to tell if your numbers are random enough or not. For example, some episodes of the dreary logical fallacy roadshow that is <em style="font-style: italic;">Deal Or No Deal</em> used an Excel spreadsheet to randomise the assignment of 22 sums of money to 22 boxes &#8212; for which <a href="http://www25.wolframalpha.com/input/?i=22!">there are probably more sequences than there are grains of sand in the world</a> &#8212; and the seeding was bad enough that <a href="http://www.bothersbar.co.uk/cellar/March2006.htm">only twelve of them arose in over forty shows</a>. You can experience this for yourself: whether by accident or design, <a href="http://faqs.neoseeker.com/Games/NES/super_mario_brothers_3_card.png">the Concentration mini-game in <em>Super Mario Brothers III</em> only ever shows players eight out of a possible 58 billion permutations of cards</a>. The producers of <em>Deal or No Deal</em> switched over to drawing lots by hand.</p>
<p style="text-align: center;">&nbsp;<a href="http://xkcd.com/221/"><img src="http://imgs.xkcd.com/comics/random_number.png" alt="" align="baseline" width="400" height="144" />&nbsp;</a><br />
<em><a href="http://xkcd.com/221/">xkcd&#8217;s &#8216;Random&#8217; comic</a>, which illustrates the difference between </em>actual<em> randomness and unpredictability, which is far more useful.</em></p>
<p>So (I infer) GamesByEmail switched to using <a href="http://random.org">random.org</a> for their random numbers. Random.org link to <a href="http://www.rotten.com/library/conspiracy/press-your-luck/">their own story of a quiz show failing to randomise</a>, this time costing them $100,000 in prize money (not that it brought anyone any happiness), and solve the problem of generating random numbers by means of four cheap radio antennae in Dublin, tuned into nothing in particular. The waveform of the white noise between radio stations is recorded, and the least significant bit (the last digit in binary; 0 for even numbers and 1 for odd) is recorded. <a href="http://random.org/statistics/source-purity/">Then, the stream of numbers are chunked into pairs</a>, so 01001101 would become 01 00 11 01. 00 and 11 would be discarded as insufficiently random, and the first digits of the remaining pairs would be kept, so 01001101 gives two zeros. They throw away about 97% of the radio data, keeping only the most unpredictable bits possible. Your TV does a similar thing in reverse, when it blocks out random data and replaces it with a blue screen, while foolishly allowing <em>Deal Or No Deal</em> through unimpeded. It&#8217;s as near to pure randomness as you&#8217;ll get without invoking quantum theory (which states that some events in the universe are totally random, and indeed <a href="http://www.idquantique.com/products/quantis.htm">you can buy modules for your computer to generate random numbers in this way</a>).</p>
<p>Of course, people still complain about the numbers from random.org. Of course they do. Random numbers, by their very nature, don&#8217;t look random. People believe in winning streaks, lucky socks, <a href="http://twitter.com/BrandNewAtheist/status/1983303101">and prayer</a> for exactly this reason. If I recall correctly, ball 44 was well known for a time in the National Lottery because it came up more than the others in the first few weeks, even though actually there were several sets of balls in use. Partly this is because humans have evolved to be shit-hot at spotting patterns, because in the wild that can stop us being killed. Natural selection favours the caveman who won&#8217;t eat the same berries that Ug, Thag and Og ate right before they died. In fact, generally people will eschew the berries after just one person dies. That&#8217;s a good plan for surviving in the wild, but it does make us spot patterns where none exist. Try it. <a href="http://random.org/dice/?num=16">Have random.org roll 16 virtual dice for you</a>. I did it, and the sequence started 1155. That doesn&#8217;t look random. It had a 123 in it too. And there was only one 4. People tend to think numbers are random if they&#8217;re uniform: if I shuffled the numbers 1–6 into a random order (say, 341625), people would rather believe that was the result of six dice rolls than 115561, the first six that random.org gave me &#8212; but really the odds of getting one of every number are less than 2%.</p>
<p>If you encourage people to spot patterns, they can be relied upon to do so, regardless of whether the patterns exist. <a href="http://psychclassics.yorku.ca/Skinner/Pigeon/">B F Skinner demonstrated this in pigeons in 1947</a>. Pigeons were put in cages and fed periodically, &#8220;with no reference whatsoever to the bird&#8217;s behaviour&#8221;. At least six out of eight of them became totally convinced that they could cause food to be delivered by repeating some arbitrary motion such as turning anticlockwise. This has been replicated with humans, <a href="http://www.channel4.com/entertainment/tv/microsites/D/derrenbrown/pictures/trickortreat2/episode6/gallery_2_index.html">perhaps most famously by Derren Brown in <em>Trick Or Treat</em></a>, proving that Channel Four cater for both ends of the intellectual spectrum<span style="font-style: normal;">. Five guests were put in a room full of toys and instructed to accumulate 100 points to win a prize. In fact the points counter was controlled by two fish swimming around at random in another room (i.e., a poisson distribution). At the end of the game, four of the five guests were totally convinced they&#8217;d figured out a sure-fire way to score points. <a href="http://www.channel4.com/entertainment/tv/microsites/D/derrenbrown/pictures/trickortreat2/episode6/index.html">The other guest was Doctor Who. This may or may not be significant</a>.</p>
<p>Random.org solved this problem by <a href="http://random.org/statistics/">running constant statistical tests on their numbers</a>. The numbers are expected to pass these tests most of the time &#8212; but not too often, or else that would be suspicious. GamesByEmail.com felt they needed something a bit more accessible to the kind of person who plays dice-games on the internet, so <a href="http://gamesbyemail.com/News/DiceOMatic">they built the brilliantly terrifying &#8220;Dice-O-Matic Mark II&#8221;</a>. It is, in their words, &#8220;a 7 foot tall, 104 pound, dice-eating monster, capable of generating 1.3 million rolls a day&#8221;. It is literally a massive machine full of dice, which scoops them up, flashes them past a camera which notes down what numbers they show, and then flings them onto a ramp, whence they bounce back into the &#8220;pure seething violence&#8221; of the hopper full of dice ready to go round again. It runs about 90 minutes a day, and you can tell when it&#8217;s running from two rooms away. (It also uses some image processing which I found interesting because that&#8217;s what I do. If you want to read about it, <a href="http://gamesbyemail.com/News/DiceOMatic">visit GamesByEmail&#8217;s page</a>.)</p>
<p style="text-align: center;"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/7n8LNxGbZbs&#038;rel=0&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/7n8LNxGbZbs&#038;rel=0&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Ironically, I suppose, it&#8217;s technically <em>less</em> random than the random.org numbers were, but it&#8217;s a great PR move. After all, nobody can say it&#8217;s not a realistic simulation of dice: it <em>is</em> dice. But it neatly demonstrates the problem faced by people like lottery organisers: their job is to provide people with something people are practically designed not to be able to see. This may be why GamesByEmail add:</p>
<blockquote><p>There is no doubt that I will still receive complaints about the rolls, but now I can honestly say I have done all that I can possibly do: the rolls you get are exactly as random as those you would get throwing by hand. As I promised earlier, if you donate to the site and are unhappy about the rolls, let me know and I will pull a die out of the machine, melt it flat and mail it to you, as an object lesson to the other dice.</p></blockquote>
<hr />*Probably. It has never been proven that π behaves in this way.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/05/31/pseudo-random-musings/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Alright, I&#8217;m bored of you now.</title>
		<link>http://www.apathysketchpad.com/blog/2009/05/06/alright-im-bored-of-you-now/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/05/06/alright-im-bored-of-you-now/#comments</comments>
		<pubDate>Tue, 05 May 2009 23:51:00 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Bad Science]]></category>

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

		<category><![CDATA[Swine Flu]]></category>

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=1016</guid>
		<description><![CDATA[This is a long rambling post dissecting the arguments of one Tom Vizzini with regards to swine flu. It may or may not be of interest to you, but I had to get this out of my head so that I can sleep, and to that end I&#8217;ve put it here. Read it if you [...]]]></description>
			<content:encoded><![CDATA[<p>This is a long rambling post dissecting the arguments of one Tom Vizzini with regards to swine flu. It may or may not be of interest to you, but I had to get this out of my head so that I can sleep, and to that end I&#8217;ve put it here. Read it if you want.</p>
<blockquote><p>Andrew,</p>
<p>I have implied nothing. You just don’t seem to be able to read.</p></blockquote>
<p>Nice. That&#8217;s class, right there, isn&#8217;t it? That was the response when I accused Vizzini of &#8220;[implying] that swine flu is a media-invented scare story like wifi or MMR or whatever&#8221;. Now obviously there are two sides to every story, and where one person reads clear implication another might read baseless inference, so I shall paste in the opening of <a href="http://www.essential-skills.com/?p=690">Vizzini&#8217;s blogpost</a> and let you be the judge:</p>
<blockquote><p>Hi folks,</p>
<p>I am sick….sick of the swine flu. I have never seen so much hype over something so stupid.</p></blockquote>
<p>Now I&#8217;d have said that that fairly clearly implies that swine flu is &#8217;stupid&#8217;. A stupid thing to worry about. A silly little disease that poses no threat. Obviously I&#8217;m reading between the lines somewhat here, and you can&#8217;t really get all that from those two and a half sentences, so here&#8217;s a bit more:</p>
<blockquote><p>The excuses have already begun. “Even if the swine virus doesn’t prove as potent as authorities first feared, that doesn’t mean the U.S. and World Health Organization overreacted in racing to prevent a pandemic, or worldwide spread, of a virus never before seen.”</p>
<p>Uh….yes it does. All these ‘experts’ are going to have egg on their face and now they are trying to justify scaring the crap out of your for no good reason.</p></blockquote>
<div style="background:white; margin:5px; border:1px solid #aaa; padding:5px; float:right"><center><a href="http://www.flickr.com/photos/30526059@N06/3489990635/" title="Cubreboca" target="_blank"><img src="http://farm4.static.flickr.com/3650/3489990635_d1ce9294b0_m.jpg" alt="Cubreboca" border="0" /></a><br /><small><a href="http://creativecommons.org/licenses/by/2.0/" title="Attribution License" target="_blank"><img src="http://www.apathysketchpad.com/blog/wp-content/plugins/photo-dropper/images/cc.png" alt="Creative Commons License" border="0" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a href="http://www.flickr.com/photos/30526059@N06/3489990635/" title="■ Guerry" target="_blank">■ Guerry</a></small></center></div>
<p>You see? His point, so he claims, is that people who wear facemasks because they&#8217;re scared of swine flu are stupid. I&#8217;ll come to that in a minute, but those people are not the same people as work for the WHO or the CDC. He&#8217;s veered off onto a tangent here and is mocking the epidemiology experts who have been working to prevent a H1N1 pandemic. That, to me, is not the action of a man who believes there is a risk of widespread infection. That is the action of a man who thinks we should let it run its course and see how many people die. He&#8217;s clearly betting on &#8216;not many&#8217;, and deriding people who disagree. That is an attempt to entirely debunk swine flu as a potential pandemic, and it&#8217;s simply too early to do that. <a href="http://www.badscience.net/2009/04/parmageddon/">Ben Goldacre refused to debunk it three times in the time it took him to write an article about how often he&#8217;s been asked to debunk it</a>.</p>
<p>He may or may not have meant to imply it, but I think that he did. And given that Vizzini&#8217;s post and comments are riddled with non-standard punctuation and typos (to the point where he misspells &#8216;IQ&#8217;), and give the general impression that they were rushed off just as fast as he can type, it seems likely that I&#8217;ve read it more carefully than he wrote it and therefore probably the failure is on his end. Certainly he doesn&#8217;t use language in the most nuanced way I&#8217;ve ever seen. Here, for example, is a selection of his ripostes to my criticism (my emphasis):</p>
<blockquote><p>You mean someone was so stupid that the nest [sic] they could do was make fun of a typo? Bet they were wearing a mask! &#8230; You just don’t seem to be able to read. &#8230; Run around terrified if you want to. &#8230; A mask is a very visible IQ test at this point. To me it is very much the same as people who pick a typo out of an article and use it to invalidate the article. Andrew&#8230;.you failed that test. When you have to use a typo to make a point then you have run out of anything intelligent to offer. &#8230; Frankly Andrew you suck at debate. If points such as spelling are not relevant then don&#8217;t mention them. It makes you appear desperate and ill informed. &#8230; Just another example of your tendency to not be able to focus on the topic. <strong>I always find it funny that someone like you tosses out insults but then is so fragile when they get tossed back at you. Your mentioning a typo was arrogant and&#8230;.stupid.</strong> If you can&#8217;t handle it then learn how to have civil disagreements without acting like a twit. &#8230; Stupid people tend not to be able to think for themselves. You have said nothing to contradict that assertion.</p></blockquote>
<p>That&#8217;s right, he acts as if I&#8217;m wearing a mask. He literally cannot distinguish &#8216;I consider there is a chance of a pandemic in the future&#8217; from &#8216;OH GOD OH GOD I&#8217;M GOING TO DIE WHERE IS MY FACEMASK?&#8217;. I have, for the record, never insulted him. I have criticised his arguments, and he seems incapable of distinguishing that from mindlessly abusing him, which, if I&#8217;m generous, explains his argument style. (Okay, maybe <em>now</em> I&#8217;ve insulted him.) For the record, here is my first comment:</p>
<blockquote><p>That guy&#8217;s massively missed the point. Sure, wearing masks now is dumb, but the fact that 1000 people are sick is a worry because the disease might BECOME pandemic. He conflates the media whipping up a profitable panic with the WHO giving out expert advice, then has a go at them for taking measures to prevent a pandemic because they might work and then he can say &#8216;look, see, there was nothing to worry about&#8217;.</p>
<p>Also, he misspelt &#8216;IQ&#8217;.</p></blockquote>
<p>You can see how I clearly relied on that one typo to invalidate his argument. Clearly there&#8217;s no way that could be a throwaway comment, a joke if you will, finding humour in an unfortunately placed transposition error.</p>
<p>But enough of such frivolity. The main thrust of his argument, he tells me, is this:</p>
<blockquote><p>If you own a business and someone shows up with a mask on….fire them. They are too dumb to work for you. They have no common sense. In a way this is <a href="http://www.qi.com/news/item.php?id=780">an QI test</a> [see?] for your company.</p>
<p>&#8230;</p>
<p>It is stupid. The people in masks are stupid. &#8230; The masks are a visible sign of how stupid they are. &#8230; If you own a business and one of your employees shows up in a mask…find a reason to get rid of them. They are too stupid for whatever job you hired them for.</p></blockquote>
<p>You see how he doesn&#8217;t toss out insults or come across as arrogant at all. But still, is he right? Certainly with the number of cases of swine flu so much lower than the number of cases of regular seasonal flu, and given that facemasks don&#8217;t actually work all that well, wearing them is a bit stupid. (Well, unless you wore them before swine flu. That&#8217;s fair enough. The tube is gross.) But his claim is not &#8216;it is a stupid thing to do&#8217;. It is &#8216;the people who do it are stupid&#8217;. As I said to him,</p>
<blockquote><p>The media, the tabloids particularly, love to scare people, because scared people buy tabloid newspapers &#8212; and they&#8217;ve <span class="text_exposed_show">got very good at it, largely by refusing to be hampered by inconvenient details such as facts. I know that. You know that. Not everyone knows that. I mean, I think it&#8217;s stupid to use Microsoft Word as an HTML editor, but I appreciate that some people don&#8217;t know better and that doesn&#8217;t make them stupid. I think it&#8217;s pretty stupid to imagine that God exists, but I certainly don&#8217;t think all religious people are stupid.</span></p></blockquote>
<p>For the record, his response to this was the phrase &#8216;just another excuse for stupid people&#8217; followed by the last six sentences of the torrent of abuse I quoted earlier. You see how I&#8217;m &#8216;[tossing] out insults&#8217; there, using inflammatory phrases like &#8216;that doesn&#8217;t make them stupid&#8217; and &#8216;I certainly don&#8217;t think [they're] stupid&#8217;.</p>
<p>I just think that if you say &#8216;people are stupid&#8217; and leave it at that, it&#8217;s defeatist and misanthropic, condescending and unhelpful. If you engage with them you can change their minds. If you see the bigger picture you can see where the weaknesses are that we can fix and improve matters. If you just write off humanity as too thick to survive then you become a small part of the problem. His solution is to make them all unemployed. That&#8217;s what we need, a lot of uneducated people with no money. That will definitely solve both swine flu and the credit crunch. I want to think it&#8217;s meant in jest and he&#8217;s actually more progressive than that, but I&#8217;m really not convinced.</p>
<p>I&#8217;ll be interested to see if Vizzini replies to this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/05/06/alright-im-bored-of-you-now/feed/</wfw:commentRss>
		</item>
		<item>
		<title>No Means No.</title>
		<link>http://www.apathysketchpad.com/blog/2009/04/21/no-means-no/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/04/21/no-means-no/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 18:50:47 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Chatlogs]]></category>

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

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

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

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=1009</guid>
		<description><![CDATA[Dear Microsoft,
I am writing in reply to your recent correspondence, reproduced below:



























Dear Windows Live User,
We are contacting you regarding your communication preference settings for Windows Live and MSN.
Currently, your settings do not allow Microsoft to send you promotional information or survey invitations about Windows Live and MSN. We would like to communicate important product updates [...]]]></description>
			<content:encoded><![CDATA[<p>Dear Microsoft,</p>
<p>I am writing in reply to your recent correspondence, reproduced below:</p>
<blockquote>
<div>
<table border="0" cellspacing="0" cellpadding="0" style="background: white !important">
<tbody>
<tr>
<td valign="bottom"><img src="http://ads1.msn.com/ads/pronws/CIQ/HMML/2009_02_reclamation/shadow-top_l.gif" alt="" /></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><img src="http://ads1.msn.com/ads/pronws/CIQ/HMML/2009_02_reclamation/logo-windowslivenewsletter.gif" border="0" alt="Windows Live Newsletter" /></td>
</tr>
</tbody>
</table>
</td>
<td valign="bottom"><img src="http://ads1.msn.com/ads/pronws/CIQ/HMML/2009_02_reclamation/shadow-top_r.gif" alt="" /></td>
</tr>
<tr>
<td><img src="http://ads1.msn.com/ads/pronws/CIQ/HMML/2009_02_reclamation/shadow_l.gif" alt="" height="450" width="13" /></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="10">
<tbody>
<tr>
<td>Dear Windows Live User,</p>
<p>We are contacting you regarding your communication preference settings for Windows Live and MSN.</p>
<p>Currently, your settings do not allow Microsoft to send you promotional information or survey invitations about Windows Live and MSN. We would like to communicate important product updates to you, so if you would like to change your settings, please visit your account profile <a href="/" target="_blank">here</a>to change your preferences.</p>
<p>Sincerely,<br />
The Windows Live Team</p>
<p>Note: You can also change your Account settings by going to your browser and typing in: <strong><a href="/" target="_blank">http://account.live.com</a></strong>. After logging-in to your account, look for &#8216;Additional options&#8217; and click &#8216;Marketing preferences&#8217;. Then uncheck the top preference box and click &#8216;Save&#8217;.</p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td align="right"><img src="http://ads1.msn.com/ads/pronws/CIQ/HMML/2009_02_reclamation/logo-ms.gif" alt="" /></td>
</tr>
<tr>
<td>Microsoft respects your privacy. To learn more, please read our online <a href="/" target="_blank">Privacy Statement</a>.</td>
</tr>
<tr>
<td>Microsoft Corporation<br />
One Microsoft Way<br />
Redmond WA 98052</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<td><img src="http://ads1.msn.com/ads/pronws/CIQ/HMML/2009_02_reclamation/shadow_r.gif" alt="" /></td>
</tr>
<tr>
<td valign="top"><img src="http://ads1.msn.com/ads/pronws/CIQ/HMML/2009_02_reclamation/shadow-btm_l.gif" alt="" /></td>
<td valign="top"></td>
<td valign="top"><img src="http://ads1.msn.com/ads/pronws/CIQ/HMML/2009_02_reclamation/shadow-btm_r.gif" alt="" /></td>
</tr>
</tbody>
</table>
</div>
</blockquote>
<p><em>Fuck off</em>.</p>
<p>Yours faithfully,</p>
<p>Andrew</p>
<p>x</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/04/21/no-means-no/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Being realistic about the Facebook redesign</title>
		<link>http://www.apathysketchpad.com/blog/2009/03/22/being-realistic-about-the-facebook-redesign/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/03/22/being-realistic-about-the-facebook-redesign/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 01:24:58 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Internet]]></category>

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

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

		<category><![CDATA[Morons' Opinions]]></category>

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=1005</guid>
		<description><![CDATA[Since you are reading an internet site, I&#8217;m going to assume you know that Facebook recently changed its look a bit. It did so for several good reasons, and generally the site is better for it. That, of course, has utterly failed to stop loads of idiots crying about it purely because they think nothing [...]]]></description>
			<content:encoded><![CDATA[<p>Since you are reading an internet site, I&#8217;m going to assume you know that <a href="http://www.facebook.com">Facebook</a> recently changed its look a bit. It did so for several good reasons, and <em>generally </em>the site is better for it. That, of course, has utterly failed to stop loads of idiots crying about it purely because they think nothing should ever change. Here, for example, is <a href="http://www.techcrunch.com/2009/03/19/facebook-polls-users-on-redesign-94-hate-it/">a TechCrunch post claiming, falsely, that 94% of users dislike the changes</a>. This is based on <a href="http://apps.facebook.com/layoutvote/">a survey Facebook did</a>. There are a number of reasons why it&#8217;s not interesting or useful information. The most interesting is probably that polling users is actually a massively unhelpful way of finding out what they like. People will report one behaviour and actually exhibit another, or they will report one belief or preference but act on an entirely different one. The only way to test these things is to run both options and see which is most successful. A less interesting reason that the 94% figure is nonsense is the survey&#8217;s response: 800,000 people voted, but <a href="http://www.facebook.com/press/info.php?statistics">Facebook claims to have over 175,000,000 users</a>, so it would be more accurate to say that 0.3% of users hate the new look and 99.7% of users don&#8217;t care enough to register an opinion. Certainly I didn&#8217;t vote, and I rather like the new look. Also, people have only had a few days to get used to the new design, so it&#8217;s like asking someone from Sheffield if they&#8217;d rather use chopsticks or a fork.</p>
<p>This, in case you have forgotten, is what is now known as &#8216;The Old Facebook&#8217; (<a href="http://www.pcmag.com/slideshow_viewer/0,1205,l%253D230209%2526a%253D230131%2526po%253D2,00.asp?p=y">source</a>):</p>
<p><a href="http://www.apathysketchpad.com/blog/wp-content/oldfacebook.png"><img class="aligncenter size-full wp-image-1003" title="The Old Facebook" src="http://www.apathysketchpad.com/blog/wp-content/oldfacebook.png" alt="" width="500" height="426" /></a></p>
<p>This is what the angry shouting Facebook Luddites are demanding be restored, despite the fact that when it was new, the same people hated it and demanded the return of the previous one. I don&#8217;t even remember what that one looked like.</p>
<p>Now that I&#8217;m used to the new look, I find the above rather cluttered. There&#8217;s a pointless separate feed for status updates, and the feed prioritises information like &#8216;Cassandra wrote on Dan&#8217;s wall&#8217; when the real information is the message itself. The New Facebook prioritises that instead (unfortunately, there&#8217;s nothing particularly good to demonstrate this with on my feed at the moment):</p>
<p><img class="aligncenter size-full wp-image-1004" title="The New Facebook" src="http://www.apathysketchpad.com/blog/wp-content/newfacebook.png" alt="" width="500" height="328" /></p>
<p>This is, of course, just stolen wholesale from <a href="http://www.twitter.com">Twitter</a>, and in some aspects too obviously so. (See also, <a href="http://search.yahoo.com/search;_ylt=A0geu5ZykcVJs1sAdk.l87UF?p=not+google&amp;fr=sfp&amp;fr2=&amp;iscqry=">the results page of Yahoo! Search, which looks offensively Google-like</a>.) But it&#8217;s clean, and clear, and simple, which are important. It&#8217;s basically <em>fine</em>. That&#8217;s why 99.7% of people don&#8217;t apparently care about the change. But as with the last redesign, there&#8217;s a subtler change under the hood that goes along with it. Facebook was getting massively complicated. It needed simplifying, so now it&#8217;s almost like a richer version of Twitter (although the differences in implementation mean that in practice the two sites are really not much like each other).</p>
<p>The problem is that that&#8217;s not finished. It has to change <em>more</em>. The status updates are basically gone &#8212; I found that there&#8217;s now no distinction between updating your status and writing on your wall &#8212; but this means that while you can write long treatises on other peoples&#8217; walls, you&#8217;re limited to Twitter-style bullet-points on your own. You&#8217;re expected to write a Note if you want more space, and the whole thing doesn&#8217;t feel coherent. Similarly, the &#8216;wall-to-wall&#8217; thing (which has never worked in any real sense) still needs work. You can&#8217;t post the same thing to multiple walls, and while you can &#8216;comment&#8217; on someone&#8217;s post on their own wall, the standard reply to their posting on your wall is to post on theirs, and that results in a limited one-to-one semi-public conversation with no clear links to tie it together. They&#8217;ve actually stolen some of Twitter&#8217;s most annoying flaws. They need to tie the whole thing together, remove the vestigal traces of the old &#8217;status&#8217; line (which frankly never made any sense), allow the same post to appear on multiple walls, and build a real wall-&#8217;reply&#8217; feature. As part of that, they also need to deprecate the status-&#8217;comments&#8217; system and tie up the &#8216;notifications&#8217; thing, because I get annoyed at having two separate feeds.</p>
<p>Also, if Facebook are still intent on having &#8216;groups&#8217;, they need to make them more prominent: group discussions should appear in your home feed. Otherwise, it takes too long to check them all and conversation dies. It&#8217;s meant to be a social network &#8212; the groups are really not social. People use it as a way of endorsing statements, and there are far better ways of doing that. Lastly, the emails they send out when you get a message or a wall post are currently &#8216;from&#8217; Facebook &#8216;re:&#8217; John sent you a message, when they should be &#8216;from&#8217; John &#8216;re:&#8217; do you want to go to the cinema. This would integrate with Thunderbird and GMail&#8217;s threading features and be generally faster and easier to use. It would also blur the line slightly between email and Facebook messages &#8212; if I could reply to a Facebook message by replying to the message in GMail, that would be great. (If that happened, I&#8217;d also like to be able to have Facebook send me my own messages so that GMail would have a copy.)</p>
<p>The philosophy behind this design seems to be similar to a &#8216;rich-media Twitter&#8217;, and if they pursue that idea then Facebook could become a very friendly and easy site to use. Simple, clean, and consistent. And basically, nothing like <a href="http://www.holytaco.com/what-facebook-will-look-few-years">this fucking stupid suggestion from Holy Taco</a>:</p>
<p style="text-align: center;"><img src="http://cdn.holytaco.com/www/sites/default/files/images/new_facebook_homepage.jpg" alt="" width="500" height="600" /></p>
<p>This is a cutting satire of Facebook&#8217;s increasing clutter, which would perhaps be pretty clever were it not for the fact that there is now <em>less </em>stuff on the Facebook home page than there ever has been. It looks <em>more</em> consistent and coherent, and has clearly made steps in the direction <em>diametrically opposite</em> to what this alleged spoof version is attempting to parody.</p>
<p>In summary, if you prefer the old Facebook then that&#8217;s very probably reasonable. But if your reasons for holding it are sufficiently dumb then it absolutely <em>is</em> possible for an opinion to be flat out wrong. Whoever designed the above image, for example, hates the new Facebook for reasons that demonstrably make no sense, and while he (I presume he is a he) is quite entitled to do so, we would be well advised to ignore him until he starts talking sense.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/03/22/being-realistic-about-the-facebook-redesign/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AskMen IfThey WantTo BeYour BlogWhores. Dot Com.</title>
		<link>http://www.apathysketchpad.com/blog/2009/03/14/askmen-ifthey-wantto-beyour-blogwhores-dot-com/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/03/14/askmen-ifthey-wantto-beyour-blogwhores-dot-com/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 19:04:00 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Chatlogs]]></category>

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

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=998</guid>
		<description><![CDATA[I&#8217;ve been meaning to post this for a while&#8230; But I&#8217;ve not been able to go any further with it. A while back I got this comment on this blog. It&#8217;s an attempt to get me to use my blog to pimp their website, which I have starred out one letter of to (a) hoard [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been meaning to post this for a while&#8230; But I&#8217;ve not been able to go any further with it. A while back I got this comment on this blog. It&#8217;s an attempt to get me to use my blog to pimp their website, which I have starred out one letter of to (a) hoard Google-juice, and (b) make them appear homosexual:</p>
<blockquote><p>Author : Johnny Testa<br />
E-mail : <a href="mailto:Johnny.Testa@askmen.com" target="_blank">Johnny.Testa@askmen.com</a><br />
URL    : http://As*Men.com<br />
Whois  : <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=209.71.197.194" target="_blank">http://ws.arin.net/cgi-bin/whois.pl?queryinput=209.71.197.194</a><br />
Comment:<br />
An article on Penis Fracture by As*Men.com</p>
<p>Hi,</p>
<p>My name is Johnny Testa from As*Men.com – a unit of FOX Interactive Media. As the world&#8217;s largest men&#8217;s web portal, As*Men.com attracts more than 7 million readers each month.</p>
<p>I wanted to take this opportunity to let you know that AskMen.com recently published an article entitled &#8220;Penis Fracture&#8221; that I think would be of particular interest to your readers.</p>
<p>The article goes into detail about what can cause and what exactly is Penal Fracture.</p></blockquote>
<p>You mean, penile fracture? Penal fracture would just be harsh.</p>
<blockquote><p>I know, the title alone runs shivers down your spine, but rest assured this is real and it can happen. I&#8217;m sure you probably know everything about this topic but I thought you might enjoy reading what we have to say about it.</p>
<p>Here&#8217;s the linking URL:</p>
<p>-       http://www.as*men.com/sports/health_200/232_penis-fracture.html</p>
<p>Here are some other articles you may be interested in:</p>
<p>-       http://www.as*men.com/sports/health_150/186_mens_health.html<br />
-       http://www.as*men.com/dating/love_tip_300/391_love_tip.html<br />
-       http://www.as*men.com/dating/love_tip_200/209_love_tip.html<br />
-       http://www.as*men.com/dating/dzimmer_100/102_love_answers.html<br />
-       http://www.as*men.com/specials/top_99_women/</p>
<p>Please feel free to post any portion of our articles, or use our content as you see fit, with credit given to As*Men.com. Please send me the link if you do choose to post any portion of our article.</p>
<p>Please don&#8217;t hesitate to contact me if you have any questions, comments, or suggestions.</p>
<p>I look forward to hearing back from you.</p>
<p>Regards,</p>
<p>Johnny Testa<br />
As*Men.com</p></blockquote>
<p>Er, no thanks.</p>
<blockquote><p> </p>
<div>Hi Johnny,</div>
<div></div>
<div>Thanks, I enjoyed reading the article you sent me. As it happens, I was already aware of Penis Fracture &#8212; a friend of mine is a GP and one of her patients once presented with the condition. He was 15, and one of the boys at his school had told him you could use a bagel to simulate sex but he was too embarrassed to buy one, so he found a stale one in the trash. Apparently, stale bagels are pretty tough cookies. I thought she&#8217;d made the story up, but she says it&#8217;s not the strangest injury she&#8217;s ever had to refer.</div>
<div></div>
<div>I was considering putting the story up on my blog, but I ought to check if that would be against some kind of GP-patient privacy rules. If I do put up a post about it, can I use a paragraph or so from your article to get across to my readers that it&#8217;s a real condition?</div>
<p> </p>
<p>Andrew</p></blockquote>
<p>Thanks to @<a href="http://twitter.com/Estie_Tabernak">Estie_Tabernak</a> for that piece of bullshit.</p>
<blockquote><p> </p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Hey Andrew,</span></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Thanks for getting back to me. I’m glad you enjoyed reading the article. You can definitely use As*Men.com as reference as long as we are given credit and that there is a link leading to the As*Men.com article located somewhere in your post.</span></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>On another note, I cannot understand for the life of me why someone would use a bagel to please themselves, and I don’t know whether to laugh at the boy’s accident or cringe in pain.</span></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Let me know if there is anything else that I can help you with.</span></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Regards,</span></span></p>
<div>
<p><strong><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Johnny Testa</span></span></strong><span style="color: navy;"><span> <br />
</span></span><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Online Marketing Coordinator</span></span><span style="color: navy;"><span> <br />
</span></span><span style="font-family: Arial; color: navy; font-size: x-small;"><span><a href="mailto:johnny.testa@askmen.com" target="_blank">johnny.testa@askmen.com</a></span></span><span style="color: navy;"></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>P: 514-908-2557</span></span><span style="color: navy;"><span> <br />
</span></span><span style="font-family: Arial; color: navy; font-size: x-small;"><span>P: 514-908-2552 ext:257</span></span><span style="color: navy;"></span></p>
<p><span style="font-family: Arial; color: navy; font-size: xx-small;"><span>AskMen.com - No.1 Men&#8217;s Portal Worldwide</span></span><span style="color: navy;"><span> <br />
</span></span><span style="font-family: Arial; color: navy; font-size: xx-small;"><span>http://www.as*men.com</span></span><span style="color: navy;"><span> <br />
</span></span><span style="font-family: Arial; color: navy; font-size: xx-small;"><span>A division of IGN Entertainment, A unit of Fox Interactive Media, Inc.</span></span></p>
</div>
<p> </p></blockquote>
<p>You may have noticed that I&#8217;ve stripped out the links from this &#8216;article&#8217;.</p>
<blockquote><p> </p>
<div class="im">
<blockquote class="gmail_quote">
<div lang="EN-US">
<div>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Thanks for getting back to me. I&#8217;m glad you enjoyed reading the article. You can definitely use As*Men.com as reference as long as we are given credit and that there is a link leading to the As*Men.com article located somewhere in your post.</span></span></p>
</div>
</div>
</blockquote>
</div>
<div>Thanks. At the moment I&#8217;m looking at using it as a kind of a &#8216;cold open&#8217; &#8212; straight into a blockquote. If I&#8217;m quoting a big chunk, I like to open with it. The RSS feed might show a couple of sentences of your article, though, and readers wouldn&#8217;t see the credit unless they clicked through. Is that a problem? I can change it if it is.</div>
<div class="im">
<blockquote class="gmail_quote">
<div lang="EN-US">
<div>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>On another note, I cannot understand for the life of me why someone would use a bagel to please themselves, and I don&#8217;t know whether to laugh at the boy&#8217;s accident or cringe in pain. </span></span></p>
</div>
</div>
</blockquote>
</div>
<div>That was my first thought too. You&#8217;d be better off with a donut &#8212; they&#8217;re softer and cheaper and if you get a cream-filled one it&#8217;d be more realistic. Still, hindsight, eh? (Not a jam one, though &#8212; I mean, each to their own and all that, but for my money that&#8217;s not an appealing visual. Also, jam might have seeds in it. That would sting. Not that I&#8217;ve tried it. Obviously. That would be ridiculous.)</div>
<div class="im">
<blockquote class="gmail_quote">
<div lang="EN-US">
<div>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Let me know if there is anything else that I can help you with.</span></span></p>
</div>
</div>
</blockquote>
</div>
<div>There might be. Do you know if As*Men.com has an article on this topic that I could reference: <a href="http://www.tiscali.co.uk/lifestyle/healthfitness/menshealth/part1_4-1.html" target="_blank">http://www.tiscali.co.uk/lifestyle/healthfitness/menshealth/part1_4-1.html</a> &#8211; specifically about the effects of heat? Only there&#8217;s another story I was hoping to squeeze into the blog post, about keeping things cool, and it would be good to have a quote to introduce that one too. (I won&#8217;t tell you that story unless you ask &#8212; it&#8217;s much, <span>much </span>worse than the bagel one and people don&#8217;t usually thank me for telling it.</div>
<div></div>
<div>Well, you&#8217;ll see it if you read the finished blog post, so don&#8217;t say you weren&#8217;t warned.</div>
<div></div>
<div>Thanks,</div>
<div>Andrew</div>
<p> </p></blockquote>
<p>I wonder if he will read the finished blog post.</p>
<blockquote><p> </p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Hey Andrew, as long as the feed leads to our article than its fine.</span></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>You might find something about your other topic in one of the two links I provided:</span></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>http://www.as*men.com/dating/keywords/sperm-count.html</span></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>http://www.as*men.com/dating/keywords/semen.html</span></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>I’m curious about the story you’re referring to but I think I will read it when you have posted it on your site.</span></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span> Let me know if you need anything else.</span></span></p>
<div>
<p><strong><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Johnny</span></span></strong></p>
</div>
<p> </p></blockquote>
<p>Still, here it is:</p>
<blockquote><p> </p>
<div>Hi Johnny,</div>
<div></div>
<div>I&#8217;ve been having a go at writing this and here is what I have so far. I thought I&#8217;d let you have a check over it before I publish it, to make sure you&#8217;re okay with how I&#8217;ve used your material and because you seem to know about these things. I&#8217;d hate to take a paragraph out of context and change the message or anything. Let me know what you think or if you have any suggestions. (If you don&#8217;t want to read the second half then I entirely understand.) Thanks.</div>
<blockquote>
<blockquote><p><span>Penis fractures are a reality. To call it a &#8220;fracture&#8221; may be a inaccurate when talking about the penis, which has no bone, but the cracking sound, intense pain, and immediate swelling and bruising mimic fractures that occur in bones. Sometimes, blood may appear at the urethra, indicating damage to the urethra itself; this is a more severe type of penis fracture that requires involved surgery to repair.<br />
Penis fractures usually occur when the penis strikes the pubic bone or the perineum of a partner during rigorous sexual activity. Rolling over in bed with an erect penis in the middle of the night has also been implicated as a way to fracture a penis. Penis fractures have also been reported as occurring when a man rushes to get clothed when the penis is erect &#8212; imagine that scenario.</span></p></blockquote>
</blockquote>
<blockquote><p><span>The above is from As*Men.com&#8217;s fascinating but slightly disturbing article on Penis Fracture. You might not want to imagine the scenario they describe, but a friend of mine has little choice: she once treated a patient who suffered a penis fracture at the tender age of 15. At his school there was a story going around that the most realistic way to simulate sex was using a bagel. (A lazy Saturday, a trip to Tesco and the rigorous application of the scientific method are all you need to know that this story is clearly not true.) Of course, the local shop soon figured out what was going on after the tenth or so nervous-looking boy turned up asking for a single bagel and a pack of cream cheese. (I rather suspect they put the story about in the first place.) The hero of this tale was too shy to go to said shop if it meant they&#8217;d know what he wanted to do with their bagel, and he didn&#8217;t think his parents would take kindly to his taking one of theirs. Eventually he looked in the kitchen bin and found one there. He ran off to his room and started to make sweet love to the savoury snack.</p>
<p>He had not eaten a bagel before and didn&#8217;t know what they are supposed to feel like, but now we know that the bagel had been thrown out because it was very, very stale. Fortunately, he managed to get to hospital on time, where presumably he was far more embarrassed than he would have been in the shop. I&#8217;m told he&#8217;s since made a full recovery, although since he was a virgin at the time there&#8217;s really no way to know.</p>
<p>Some people find that story a little hard to hear. If you&#8217;re one of those people then you should definitely not read the next story. If you&#8217;re brave enough to continue, then first you should read this background, again from As*Men.com:<br />
</span></p></blockquote>
<blockquote>
<blockquote><p><span>The reason your testicles hang from your body and don&#8217;t reside inside it like a woman&#8217;s ovaries, is because they need to be a few degrees cooler than the rest of your body. So wearing tight underwear or tight pants that keeps them pressed up against your 98.6° body is not a good idea. As well, sleep naked if you can, to ensure coolness.</span></p></blockquote>
</blockquote>
<blockquote><p><span>Ensuring coolness is undoubtedly important, but there are limits. We all know the attraction of the Cold Shower. But like anything, such things can get addictive. There is a chilling story, told at our university, which has been passed down from one year group to the next. Apparently in 2001 there was a student in the chemistry department (his name was Patrick, but to protect his anonymity I shall call him Brian) who got obsessed with cold showers, to the point where he couldn&#8217;t get turned on unless he was colder and colder. Eventually they weren&#8217;t enough, and he started rolling in snow or taking ice baths. You could see his skin turning redder by the day. There was some concern over how all this was affecting what remained of his sex life (he wasn&#8217;t what you&#8217;d call promiscuous; why do you think he was taking all those cold showers in the first place?) but these concerns suddenly became somewhat academic one Friday afternoon.</p>
<p>At first nobody made the connection. Brian hadn&#8217;t turned up at lectures for almost the whole next week, and one of the lab technicians found two pieces of what appeared to be freshly chopped pork in dusty corners of the floor. It was known that students would occasionally let themselves into the labs after hours to work on their projects &#8212; it wasn&#8217;t really allowed but the professors never complained because it meant they got more work done. The assumption was that someone had had dinner in the lab, but after two days trying to find out who it was, a member of ambulance staff told them what the meat actually was.</p>
<p>It seems that Brian had been working on his final year project after the department closed on the Friday evening, but in the corner of the lab was a large insulated container containing liquid nitrogen. Apparently, after a while, the temptation was too great and it overcame him. Of course, once chilled to 77 Kelvin, the nerves were not responsive, and in his numb frustration he got more vigorous until he collided with something and his frozen penis literally shattered.</p>
<p>While he waited for the ambulance, he gathered up all the shards of his manhood that he could find. They couldn&#8217;t be reattached, and nobody really thinks he ever held out much hope of that, but he did hope to prevent anyone figuring out what had happened.</p>
<p>Obviously he didn&#8217;t manage to keep the event a secret, but if his tale can prevent anyone else from trying such an ill-thought-out method of self abuse then its publication will be worthwhile.</span></p></blockquote>
<div>I look forward to hearing your comments.</div>
<div></div>
<div>Thanks again,</div>
<div>
Andrew</div>
<p> </p></blockquote>
<p>That ought to tip him off.</p>
<blockquote><p> </p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>The article looks good Andrew, no complaints on my end. Let me know when the article goes live on your site.</span></span></p>
<div>
<p><strong><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Johnny</span></span></strong></p>
</div>
<p> </p></blockquote>
<p>Ah.</p>
<blockquote><p> </p>
<div>Hi Johnny,</div>
<div></div>
<p>Bad news, I&#8217;m afraid. My webhosts have said that an article about simulated sex and genital injury would violate their terms and conditions. I tried to explain to them that this isn&#8217;t filth; it&#8217;s a public-spirited warning about genuine dangers that men face, but they said it wasn&#8217;t about blocking pornography but ensuring their sites can be seen behind corporate and educational filters, and that some of the terms I&#8217;d used might cause their sites to be blocked. I&#8217;ve sent them a new version of the article, but I guess I should ask you to look at it too, to make sure you&#8217;re okay with it &#8212; after all, many of the disputed words appear in the quotes from your site. Some parts of it don&#8217;t make much sense, but it has to look like real sentences: can&#8217;t just replace i with ! any more &#8212; the filters are cleverer than that now. If you both okay it, I&#8217;ll post it up. Also any suggestions for better ways to disguise it would be welcome:</p>
<div><span></p>
<blockquote>
<blockquote><p><span>Pen fractures are a reality. To call it a &#8220;fracture&#8221; may be a inaccurate when talking about the pens, which have no bone, but the cracking sound, intense pain, and immediate swelling and bruising mimic fractures that occur in bones. Sometimes, blood may appear Ulrika, indicating damage to Ulrika herself; this is a more severe type of pen fracture that requires involved surgery to repair.<br />
Pen fractures usually occur when the pens strike the public bone or the palladium of a partner during rigorous textual activity. Rolling over in a bid to elect the President in the middle of the night has also been implicated as a way to fracture pens. Pen fractures have also been reported as occurring when a man rushes to get clothed when the President is elect &#8212; imagine that scenario.</span></p></blockquote>
</blockquote>
<blockquote><p><span>The above is from As*Men.com&#8217;s fascinating but slightly disturbing article on Pen Fracture (which you can read unedited on their site). You might not want to imagine the scenario they describe, but a friend of mine has little choice: she once treated a patient who suffered a pen fracture at the tender age of 15. At his school there was a story going around that the most realistic way to emulate a NES was using a bagel. (A lazy Saturday, a trip to Tesco and the rigorous application of the scientific method are all you need to know that this story is clearly not true.) Of course, the local shop soon figured out what was going on after the tenth or so nervous-looking boy turned up asking for a single bagel and a pack of cream cheese. (I rather suspect they put the story about in the first place.) The hero of this tale was too shy to go to said shop if it meant they&#8217;d know what he wanted to do with their bagel, and he didn&#8217;t think his parents would take kindly to his taking one of theirs. Eventually he looked in the kitchen bin and found one there. He ran off to his room and started to whisper sweet nothings to the savoury snack.</p>
<p>He had not eaten a bagel before and didn&#8217;t know what they are supposed to feel like, but now we know that the bagel had been thrown out because it was very, very stale. Fortunately, he managed to get to hospital on time, where presumably he was far more embarrassed than he would have been in the shop. I&#8217;m told he&#8217;s since made a full recovery, although since he was a Virgo at the time there&#8217;s really no way to know.</p>
<div class="im">
Some people find that story a little hard to hear. If you&#8217;re one of those people then you should definitely not read the next story. If you&#8217;re brave enough to continue, then first you should read this background, again from As*Men.com:</div>
<p></span></p></blockquote>
<blockquote>
<blockquote><p><span>The reason your tribunals hang from your body and don&#8217;t reside inside it like a woman&#8217;s nunneries, is because they need to be a few degrees cooler than the rest of your body. So wearing tight underwater or tight paints that keeps them pressed up against your 98.6° body is not a good idea. As well, sleep faked if you can, to ensure coolness.</span></p></blockquote>
</blockquote>
<blockquote><p><span>Ensuring coolness is undoubtedly important, but there are limits. We all know the attraction of the Cold Flower. But like anything, such things can get addictive. There is a chilling story, told at our university, which has been passed down from one year group to the next. Apparently in 2001 there was a student in the chemistry department (his name was Patrick, but to protect his anonymity I shall call him Brian) who got obsessed with cold flowers, to the point where he couldn&#8217;t get tuned in unless he was colder and colder. Eventually they weren&#8217;t enough, and he started rolling in snow or taking ice baths. You could see his skin turning redder by the day. There was some concern over how all this was affecting what remained of his socks life (he wasn&#8217;t what you&#8217;d call Prometheus; why do you think he was taking all those cold flowers in the first place?) but these concerns suddenly became somewhat academic one Friday afternoon.</p>
<div class="im">
At first nobody made the connection. Brian hadn&#8217;t turned up at lectures for almost the whole next week, and one of the lab technicians found two pieces of what appeared to be freshly chopped pork in dusty corners of the floor. It was known that students would occasionally let themselves into the labs after hours to work on their projects &#8212; it wasn&#8217;t really allowed but the professors never complained because it meant they got more work done. The assumption was that someone had had dinner in the lab, but after two days trying to find out who it was, a member of ambulance staff told them what the meat actually was.
</div>
<p>It seems that Brian had been working on his final year project after the department closed on the Friday evening, but in the corner of the lab was a large insulated container containing liquid nitrogen. Apparently, after a while, the temptation was too great and it overcame him. Of course, once chilled to 77 Kelvin, the nerves were not responsive, and in his numb frustration he got more vigorous until he collided with something and his frozen pens literally shattered.</p>
<p>While he waited for the ambulance, he gathered up all the shards of his neighbourhood that he could find. They couldn&#8217;t be reattached, and nobody really thinks he ever held out much hope of that, but he did hope to prevent anyone figuring out what had happened.</p>
<p>Obviously he didn&#8217;t manage to keep the event a secret, but if his tale can prevent anyone else from trying such an ill-thought-out method of self obtuse then its publication will be worthwhile.</span></p></blockquote>
<p></span></p>
<div><span style="color: #888888;">Andrew</span></div>
</div>
<p> </p></blockquote>
<p>Is this bad enough yet?</p>
<blockquote><p> </p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Just word it to say fractures of the groin area. For the record “Penis” is an educational term used to describe a part of the male human anatomy, tell your webhosts that it’s human nature and that it could not possibly block anything to do with education.</span></span></p>
<div class="im">
<div>
<p><strong><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Johnny Testa</span></span></strong><span style="color: navy;"><span> <br />
</span></span><span style="font-family: Arial; color: navy; font-size: x-small;"><span>Online Marketing Coordinator</span></span><span style="color: navy;"><span> <br />
</span></span><span style="font-family: Arial; color: navy; font-size: x-small;"><span><a href="mailto:johnny.testa@askmen.com" target="_blank">johnny.testa@askmen.com</a></span></span><span style="color: navy;"></span></p>
<p><span style="font-family: Arial; color: navy; font-size: x-small;"><span>P: 514-908-2557</span></span><span style="color: navy;"><span> <br />
</span></span><span style="font-family: Arial; color: navy; font-size: x-small;"><span>P: 514-908-2552 ext:257</span></span><span style="color: navy;"></span></p>
<p><span style="font-family: Arial; color: navy; font-size: xx-small;"><span>As*Men.com - No.1 Men&#8217;s Portal Worldwide</span></span><span style="color: navy;"><span> <br />
</span></span><span style="font-family: Arial; color: navy; font-size: xx-small;"><span>http://www.as*men.com</span></span><span style="color: navy;"><span> <br />
</span></span><span style="font-family: Arial; color: navy; font-size: xx-small;"><span>A division of IGN Entertainment, A unit of Fox Interactive Media, Inc.</span></span></p>
</div>
</div>
<p> </p></blockquote>
<p>No.</p>
<blockquote><p> </p>
<div>This is from an email from my hosts: &#8220;We realise &#8220;Penis&#8221; is an educational term, but many schools and companies&#8217; internet services filter based on word lists, and &#8220;Penis&#8221; is a common word on those lists.&#8221;</div>
<div></div>
<div>They said they agree that the article should be posted, but couldn&#8217;t make an exception to their policy. They did suggest using elaborate innuendo to make the point without using my word substitutions. That might be a good idea. Any thoughts?</div>
<p> </p></blockquote>
<p>Apparently not.</p>
<p>But he&#8217;s not replied since, so I think this is over.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/03/14/askmen-ifthey-wantto-beyour-blogwhores-dot-com/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I am being inexpertly censored!</title>
		<link>http://www.apathysketchpad.com/blog/2009/03/07/i-am-being-inexpertly-censored/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/03/07/i-am-being-inexpertly-censored/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 16:26:37 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Bad Science]]></category>

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

		<category><![CDATA[Arguments in the comments]]></category>

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

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=996</guid>
		<description><![CDATA[I have just been hilariously banned from commenting on the homeopathy blog &#8216;homeopathy4health&#8217; after this discussion. Why?
Andrew’s comments are no longer allowed on this blog. This is because he has a tendency to write opinions based on logic and not from experience or facts. He is a programmer by profession.
Dammit, I do have a tendancy [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://homeopathy4health.wordpress.com/2008/05/04/homeopathy-as-effective-as-standard-care-for-eczema/#comment-1882">I have just been hilariously banned from commenting</a> on the homeopathy blog &#8216;homeopathy4health&#8217; after <a href="http://homeopathy4health.wordpress.com/2007/12/10/worldwide-growth-and-acceptance-of-homeopathy/#comment-1850">this discussion</a>. Why?</p>
<blockquote><p>Andrew’s comments are no longer allowed on this blog. This is because he has a tendency to write opinions based on logic and not from experience or facts. He is a programmer by profession.</p></blockquote>
<p>Dammit, I <em>do</em> have a tendancy to write opinions based on logic. Oh, she really nailed me there. &#8216;Zing&#8217;, I should think, and probably even &#8216;oh, snap&#8217;. And so forth. Feel free to visualise Jon Stewart-style gesturing if it helps.</p>
<p>Goodbye, then, anonymous homeopath. Live long and prosper.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/03/07/i-am-being-inexpertly-censored/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8216;Progress&#8217; was a bad idea.</title>
		<link>http://www.apathysketchpad.com/blog/2009/02/27/progress-was-a-bad-idea/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/02/27/progress-was-a-bad-idea/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 22:35:52 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Computers]]></category>

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

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

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

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

		<category><![CDATA[Microsoft Office]]></category>

		<category><![CDATA[Microsoft Word]]></category>

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

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

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

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=992</guid>
		<description><![CDATA[How many people do you know who don&#8217;t understand the difference between IE and the actual Internet? Who refer to Explorer&#8217;s &#8216;filmstrip&#8217; view as &#8216;Powerpoint&#8217;? Who send emails with Word attachments that are just plain text with red underlines under all the British spellings? Who call you over every time they get sent a gzip, [...]]]></description>
			<content:encoded><![CDATA[<p>How many people do you know who don&#8217;t understand the difference between IE and the actual Internet? Who refer to Explorer&#8217;s &#8216;filmstrip&#8217; view as &#8216;Powerpoint&#8217;? Who send emails with Word attachments that are just plain text with red underlines under all the British spellings? Who call you over every time they get sent a gzip, or transfer data between applications via a pencil and paper? I&#8217;ve known at least one person do all of those things, mostly people I worked with.</p>
<p>And that&#8217;s not their fault, generally. Please don&#8217;t think I&#8217;m mocking the ignorant here. My point is that people in charge should fix it. It&#8217;s a massive drain on resources. If you can spend a week training someone to use their computer efficiently, you&#8217;ll get that week back with interest within a year or two. I don&#8217;t understand why companies spend so much money on computers and software, then give them out to all employees without even explaining how to operate them, and then spend even more time and money trying to build a network so secure that their random clicking can&#8217;t do any damage. Why not just teach them how to correctly use the software and then let them get on with it? If you&#8217;re ignorant, you get training to fix it before you do any damage. You don&#8217;t get wrapped in cotton wool. That does nobody any good.</p>
<p>Today at work the IT department sent round information on how to encrypt sensitive data. They recommend <a href="http://www.truecrypt.org/">TrueCrypt</a> and <a href="http://www.axantum.com/AxCrypt">Axcrypt</a>, both of which are free. When something might affect the University&#8217;s reputation like a leak of personal data the IT department (who mostly actually do know what they&#8217;re doing) insist on doing things properly, and that means open-source.</p>
<p>Also today, the Pentagon shut down their website because <a href="https://secure.wikileaks.org/wiki/N1">someone at Wikileaks noticed a series of secret reports left in an unprotected directory on one of their public servers in the form of doc files encrypted with Word&#8217;s built in password feature and cracked them</a>. The password was &#8216;progress&#8217;. That&#8217;s <em>moronic</em>. That&#8217;s the only way to describe it. The files should have been encrypted properly, with different, longer passwords with numbers and capitals and punctuation in. They should have been on a secure server where Joe Cracker couldn&#8217;t get them. Had they done that then the job of cracking them would have been intractable. As it is, it was inevitable.</p>
<p>I know a bit about this stuff, so to me, this is shocking. There is literally no excuse for doing something like that. Nobody that computer-illiterate should be ever have been allowed near the server. If you don&#8217;t know about online security then you might not realise how bad this is, so let&#8217;s be clear: this is much, much dumber than leaving an unencrypted USB stick on a train. I can see how that happens. I can see how you might leave encrypted files on a public server. They&#8217;re encrypted; it shouldn&#8217;t matter if people get hold of them. I cannot see how you accidentally choose a rubbish password and Word&#8217;s in-built encryption for official documents about a war. Ironically the document is about what information is public and what information is secret. This story &#8212; that the Pentagon is crap at security on a monumental scale &#8212; should be huge. <a href="http://news.google.com/news?pz=1&#038;ned=uk&#038;hl=en&#038;q=pentagon+wikileaks">Demonstrably it is not</a>. <a href="http://thepete.com/wikileaks-cracks-pentagon-encryption-my-faith-in-our-leaders-is-restored-or-not/">I discovered it via a blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/02/27/progress-was-a-bad-idea/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Challenge For God</title>
		<link>http://www.apathysketchpad.com/blog/2009/02/21/a-challenge-for-god/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/02/21/a-challenge-for-god/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 17:14:38 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Chatlogs]]></category>

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

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

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

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=989</guid>
		<description><![CDATA[prayforyou RT @Forestpelt Please pray that @Forestpelt&#8217;s 2 atheist friends will find Christ. Pray that God would shine through @Forestpelt to them. about 1 hour ago from web
Andrew_Taylor @prayforyou This ought to be the single most elegant demonstration that prayer doesn&#8217;t work we will ever see. about 1 hour ago from twhirl in reply to prayforyou
prayforyou We have a challenger saying we will only prove [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><span class="entry-content"><strong><a href="http://twitter.com/prayforyou">prayforyou</a></strong> RT @<a href="http://twitter.com/Forestpelt">Forestpelt</a> Please pray that @<a href="http://twitter.com/Forestpelt">Forestpelt</a>&#8217;s 2 atheist friends will find Christ. Pray that God would shine through @<a href="http://twitter.com/Forestpelt">Forestpelt</a> to them. </span><span class="meta entry-meta"><a class="entry-date" rel="bookmark" href="http://twitter.com/prayforyou/status/1234465301"><span class="published" title="2009-02-21T16:15:48+00:00"><em>about 1 hour ago</em></span></a><em> </em><span><em>from web</em></span></span></p>
<p><span class="entry-content"><strong><a href="http://twitter.com/andrew_taylor">Andrew_Taylor</a></strong> @<a href="http://twitter.com/prayforyou">prayforyou</a> This ought to be the single most elegant demonstration that prayer doesn&#8217;t work we will ever see. </span><span class="meta entry-meta"><a class="entry-date" rel="bookmark" href="http://twitter.com/Andrew_Taylor/status/1234474777"><span class="published" title="2009-02-21T16:19:29+00:00"><em>about 1 hour ago</em></span></a><em> </em><span><em>from </em><a href="http://www.twhirl.org/"><em>twhirl</em></a></span><em> </em><a href="http://twitter.com/prayforyou/status/1234465301"><em>in reply to prayforyou</em></a></span></p>
<p><a href="http://twitter.com/prayforyou"><strong>prayforyou</strong></a> <span class="entry-content">We have a challenger saying we will only prove that prayer doesn&#8217;t work. Everyone pray so we&#8217;ll prove to @<a href="http://twitter.com/Andrew_Taylor">Andrew_Taylor</a> the power of prayer. </span><span class="meta entry-meta"><a class="entry-date" rel="bookmark" href="http://twitter.com/prayforyou/status/1234538961"><span class="published" title="2009-02-21T16:44:15+00:00"><em>22 minutes ago</em></span></a><em> </em><span><em>from web</em></span></span></p></blockquote>
<p>Come on then, God. This should be an easy one. Convince two people you exist. I mean, I don&#8217;t want to pour scorn on Your infinite power at all, but I can manage this task pretty easily. I&#8217;m almost sure that everyone at work is totally convinced I exist. So come on, God. Pull Your finger out.</p>
<p>Call me cocky if you like, but I&#8217;m pretty sure I can win this bet. Convincing atheists of his own existence is one of God&#8217;s weakest suits. He&#8217;s much better at tasks that only involve committed theists.</p>
<p>Maybe it&#8217;s all the praying they do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/02/21/a-challenge-for-god/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Open Source Peer-Review</title>
		<link>http://www.apathysketchpad.com/blog/2009/02/16/open-source-peer-review/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/02/16/open-source-peer-review/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 23:52:48 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Internet]]></category>

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

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

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

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=984</guid>
		<description><![CDATA[Scientific journals have genuinely got the best business model in the history of anything ever. Here is how it works, in a nutshell:

Other people, scientists, write their content for no fee.
The journal then gets other scientists to review it. These scientists generally don&#8217;t get paid either.
The authors edit the paper and send it back. Eventually, all [...]]]></description>
			<content:encoded><![CDATA[<p>Scientific journals have genuinely got the best business model in the history of anything ever. Here is how it works, in a nutshell:</p>
<ul>
<li>Other people, scientists, write their content for no fee.</li>
<li>The journal then gets other scientists to review it. These scientists generally don&#8217;t get paid either.</li>
<li>The authors edit the paper and send it back. Eventually, all the scientists reach a version of the paper they can all agree on (or the paper gets withdrawn). Then the authors pay the journal to publish the paper.</li>
<li>The journal then charges anyone who ever wants to read the paper extortionate fees. $50 for a PDF file is not uncommon.</li>
<li>The journal retains the copyright on the words they didn&#8217;t write describing experiments they didn&#8217;t do, and claim fees for reading it at least until the copyright expires and usually long after that.</li>
<li>None of the scientists or their employers ever get paid.</li>
</ul>
<p>This, to me, seems like an insane system. It survives because universities don&#8217;t care if they pay extortionate fees for such things and because it&#8217;s established. And probably when it was established it made sense &#8212; after all, who else but journals could publish things? But now it&#8217;s just academia needlessly funnelling money into a mostly pointless publishing racket. I really don&#8217;t see what it achieves.</p>
<p>I&#8217;ve said before that a better system would just be for universities to publish papers and let anyone who wants to comment on them comment on them. I hadn&#8217;t worked out the details, obviously, so it was one lunchtime rant in the pub opposite the lab and I didn&#8217;t think much more about it until the next time I hit a paywall demanding I give some publishers $75 to read a paper written by my own supervisor. But someone else has worked them out. It&#8217;s not perhaps an ideal system, but it looks pretty good to me <em>and</em> it&#8217;s compatible with the existing system.</p>
<div style="float:right;border:black 1px solid; background:#DDDDDD;width:50%;margin:5px;padding:5px">
<p><strong>Public Key Cryptography</strong> for those who haven&#8217;t heard of it.</p>
<p><em>You have a public key and a private key. You can encrypt something with the private key and it can be decrypted with the public one, so you can use it to prove that you wrote it. I think you can also encrypt something with the public key that only the holder of the private key can read. It&#8217;s basically just magic.</em></p>
</div>
<p>Dubbed <a href="http://code.google.com/p/gpeerreview/">GPeerReview</a> (I don&#8217;t know what the &#8216;G&#8217; stands for but the author&#8217;s name is Gashler so that&#8217;s likely), the idea is that you post your paper on your academic website, email people you think would be interested, and those and any other readers can review it. They sign their review, along with a hash of the paper, with public key cryptography so you know who wrote it and what about. That way, you get an idea of how much support a paper has and, crucially, what kinds of people support it. The author of the paper puts up the most credible supportive reviews they can find. In theory, if it becomes accepted then there&#8217;ll no longer be any need for conventional publication. It&#8217;s a very clever system. (See also, the more established <a href="http://www.ResearchBlogging.org">ResearchBlogging.org</a> &#8211; which <a href="http://groups.google.com/group/gpeerreview/browse_thread/thread/36b4b7fb5b1f3179">Gashler says could be complementary to GPeerReview but covers rather different ground</a>. I think I agree with him on that &#8212; it&#8217;d be great to see things like that running it tandem.)</p>
<p>I&#8217;d love to see something like this made to work across academia. I suspect, though, that what kills it will be that real people don&#8217;t understand nerd stuff like public key cryptography. Everyone else in my research unit gets all annoyed if I try to use LaTeX or Bibtex at them. (Well, the dentists do &#8212; the other physicists love it. I witnessed a long argument about a week ago over the relative merits of Microsoft Project versus the open source alternative, which boiled down in the end to &#8216;well the free software probably is better but if we collaborate with anyone else they&#8217;ll demand we use Project&#8217; which to me seems like a really crappy way of doing things &#8212; I&#8217;d rather piss people off by doing the right thing than pander to idiots and help keep Microsoft&#8217;s monopoly on proprietary, buggy software healthy.) They act as if Word and EndNote are somehow better. In my experience, Word doesn&#8217;t work properly and EndNote formats citations basically at random. LaTeX is a pig to get set up but at least once you&#8217;ve done it it <em>stays</em> set up. To be honest, I think that&#8217;s another thing that needs sorting: we need a specialist scientific markup language. Maybe a form of HTML (or other XML), with a standard equation format and a few extra specialised tags, perhaps including COinS for citations, which the reader software could be configured to render as a conventional reference, or as a hyperlink, or as whatever they like. A CSS-like &#8216;default&#8217; style for a particular paper would be fair enough, but the current system that forcibly changes the format depending on which journal happens to have published the paper is rather silly. I don&#8217;t want a stack of PDF files all formatted differently. I want a folder full of pictures and ASCII-encoded markup that I can process and output how I like. Get into the twenty-first century. That&#8217;s how we do things here, because it&#8217;s a better way of doing it.</p>
<p>And there&#8217;s no reason that all of the above couldn&#8217;t be implemented really very easily, and I&#8217;d love to see peer review evolve into something more open and transparent than the existing system, which still relies on the trustworthiness of journal editors and the word of a few unidentified reviewers per paper. But we need nice, simple user interfaces on every part of it or else Joe Scientist isn&#8217;t going to actually bother to do it. We need a nice WYSIWYG program to edit the papers, then a nice Wordpress-style package to maintain your site, and a nice package to let you write reviews without much effort. Make it simple, and people might adopt it. Which is frustrating, because by rights you&#8217;d think a good scientist would be exactly the kind of person who would leap at the chance to adopt an open, collaborative, technological and free solution to a problem. Those are the qualities that science runs on. And I can&#8217;t see what we&#8217;d lose by switching to such a system, other than a load of jobs at journal publishers &#8212; and I&#8217;m sure the big journals would find a way to adapt. Perhaps they&#8217;d act as aggregators or run interesting comment pieces more often or something. (I should link to this very interesting discussion, <a href="http://groups.google.com/group/gpeerreview/browse_thread/thread/499aac93f9275433">where Gashler explains what journals do that is useful and that GPeerReview doesn&#8217;t do</a>. I&#8217;m not convinced it&#8217;s all really a job for <em>journals</em> per se, but someone will have to keep doing all that. Personally, I think universities should do most of it.)</p>
<p>Bah. I just get frustrated when people cling to what they know instead of adopting obviously better alternatives, like Linux or metric or atheism or not torturing people. I guess that&#8217;s just a failing I have. But I&#8217;d love to know how any of the above could be shoehorned into the modern scientific community.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/02/16/open-source-peer-review/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter</title>
		<link>http://www.apathysketchpad.com/blog/2009/02/15/twitter/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/02/15/twitter/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 01:18:49 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Internet]]></category>

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

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=982</guid>
		<description><![CDATA[My last post got me thinking about what the hell Twitter is actually for. It&#8217;s strange that it did so well when nobody really knew, but it&#8217;s equally strange how long I spent rather enjoying it and not having a good answer when people asked me why. I think partly that&#8217;s because I&#8217;ve not really embraced [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apathysketchpad.com/blog/2009/02/10/news-20/">My last post</a> got me thinking about what the hell <a href="http://twitter.com/">Twitter</a> is actually <em>for</em>. It&#8217;s strange that it did so well when nobody really knew, but it&#8217;s equally strange how long I spent rather enjoying it and not having a good answer when people asked me why. I think partly that&#8217;s because I&#8217;ve not really embraced it until recently. So here&#8217;s what I think is unique about it:</p>
<p><strong>It&#8217;s different to instant messengers</strong> (IM) firstly because it isn&#8217;t instant, but mostly because it&#8217;s public: your tweets can (by default) be seen by anyone in the world. That means it&#8217;s less of a one-on-one conversation and more of a group chat.</p>
<p><strong>It&#8217;s different to blogging</strong> because of the attitude: it asks &#8216;what are you doing&#8217; and it won&#8217;t let you prattle on about even that for more than 140 characters. That means that most tweets you see are pretty trivial stuff you wouldn&#8217;t care if you missed but are, in the moment, of interest. It works best if you follow more people than you could reasonably keep track of, and dip in and out of the stream as if it were an IRC channel, so again it&#8217;s more like group chat, but&#8230;</p>
<p><strong>It&#8217;s different to IRC</strong> because of the &#8216;networking&#8217; side of it: in a chat room (IRC is &#8216;internet relay chat&#8217; and is a form of online group-chat favoured mostly by awful nerds) you see everything in the &#8216;room&#8217; you&#8217;re in, but on Twitter you see what your friends are saying, even if they&#8217;re friends with other people you don&#8217;t know. If you have a good client such as <a href="http://www.twhirl.org/">Twhirl</a> then you can also see what anyone says on a particular topic and anything anyone says that is directed at or that mentions you.</p>
<p>At any given point there are thousands of discussions taking place, and you should generally see whichever are relevant to you by topic or by friendship. You can chime in at any time, even with people you don&#8217;t know. To some extent people find themselves &#8216;grouped&#8217; by a handful of well-known users that loads of people follow &#8212; mostly difficult-to-spell celebrities. The tag &#8216;#<a href="http://search.twitter.com/search?q=badmovieclub+OR+badfilmclub">badmovieclub</a>&#8216; was invented a few days ago because at 9PM yesterday <a href="http://twitter.com/glinner">Graham Linehan</a> watched &#8216;The Happening&#8217; with his Twitter friends, who generated something like 30,000 tweets in 86 minutes. They&#8217;re going to do it again in a month, probably with the 2006 version of The Wicker Man. I honestly don&#8217;t think Linehan could stop them if he wanted to. <a href="http://twitter.com/jupitusphillip/">Phill Jupitus</a> was working that evening, so he organised a second screening at midnight. I&#8217;m sure it could have happened without a celebrity endorsement, but it would have taken longer to spread. So Twitter can create events: for further example, this afternoon a friend of mine (I say friend; I&#8217;ve never met the guy and know him better by <a href="http://twitter.com/krypto">his Twitter username</a> than his real name) went to an event called &#8216;#<a href="http://search.twitter.com/search?q=flashdate">flashdate</a>&#8216; organised on Twitter and met some people. Twitter can also make normal events more social: loads of people watched <a href="http://twitter.com/barackobama">Barack Obama</a>&#8217;s inauguration with a laptop and got live opinion from around the world as they did so. (The BBC have tried this a couple of times, but it worked a lot better on Twitter.) Even small events &#8212; I left Twhirl running while I watched QI this evening and got a couple of comments from relative strangers about that as it was on. And it was the repeat. This afternoon I had a look at <a href="http://www.guardian.co.uk/crossword/">the Guardian crossword</a>, and because that&#8217;s a relatively common Saturday afternoon activity, it was eventually completed by a collaborative effort between hundreds of <a href="http://twitter.com/serafinowicz">Peter Serafinowicz</a>&#8216; followers. When he ran out of crossword he asked his followers to send more cryptic clues for him to solve. Anything you do that other people are doing, you can do together. Anything you are doing at all, if you&#8217;re <a href="http://twitter.com/stephenfry">Stephen Fry</a>. Who knew being stuck in a lift was so interesting?</p>
<p>It&#8217;s also a great place to vent. You can shout at Twitter and if enough people follow you then you&#8217;ll get some sympathy (or told off) and you&#8217;ll never feel like you&#8217;re whining because you&#8217;re <em>supposed</em> to discuss pointless trivia on Twitter. Some companies even watch the feed to see what aspects of their products annoy people. At least once I had someone let me know that the latest version fixed my problem (bizarrely, they replied with a blog comment). I&#8217;m sure I get more done at work since I can tweet from <a href="http://www.launchy.net/">Launchy</a>.</p>
<p>It&#8217;s a strange thing, Twitter, but it&#8217;s a good thing to have around. Oh, and if you don&#8217;t already, <a href="http://twitter.com/Andrew_Taylor">you can follow me</a>. I assume anyone reading this far down my blog might want to do that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/02/15/twitter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>News 2.0</title>
		<link>http://www.apathysketchpad.com/blog/2009/02/10/news-20/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/02/10/news-20/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 01:37:37 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=981</guid>
		<description><![CDATA[This is something I imagine is familiar to a lot of you:
There was a time when I didn&#8217;t know what was in the charts because I was laughably ignorant of music. But then I started listening to it a bit, and after a while I found I was passably interested in the charts and knew [...]]]></description>
			<content:encoded><![CDATA[<p>This is something I imagine is familiar to a lot of you:</p>
<p>There was a time when I didn&#8217;t know what was in the charts because I was laughably ignorant of music. But then I started listening to it a bit, and after a while I found I was passably interested in the charts and knew generally what was there. But then I found that I cared less and less: I&#8217;d found the kinds of music I was interested in, and it mostly wasn&#8217;t anywhere near the charts, whereas the music that <em>was </em>in the charts sounded like the tedious generic pop that it was. I realised I&#8217;d lost touch with the charts when the new wave of indie music hit: to this day I can&#8217;t remember what the difference is between Razorlight, The Killers and Franz Ferdinand. (I vaguely wonder if, like the B in &#8216;R&amp;B&#8217; is now short for &#8216;bass&#8217;, &#8216;indie&#8217; might now be short for &#8216;indistinguishable&#8217;.) But I still find new music that I like. My system works, and it does so without me having to hear whatever drivel has been packaged up and sold to infants and the infantile this week or finding out who won The X Factor at any point (providing they don&#8217;t cover a song people have strong feelings towards). My knowledge of music intersected with the mainstream for a while but then came out the other side.</p>
<p>I mention it because that I realised today that I did the same thing with the news: there was a time when I found it boring and ignored it. Then I began to take an interest, and started watching the news on TV, or reading newspapers. After a while I found I knew mostly what was going on. But now I don&#8217;t watch the TV news. And I don&#8217;t read newspapers. I&#8217;ve found my own sources of news. Google Reader (my RSS reader of choice &#8212; not very good but nevertheless the best) serves up a variety of blogs, select columns from newspapers, and a handful of bloggers&#8217; and my friends&#8217; picks from del.icio.us, tumblr, Facebook and Google Reader Shared Items, and Twitter lets me know what else is on their minds. I find that this works much, much better than the increasingly irrelevant traditional media.</p>
<p>I started doing this by accident, without noticing. I was getting my news from the Internet and I stopped reading newspapers mostly because there wasn&#8217;t one lying around most days. These days I&#8217;ll rarely bother to pick it up if there is. Newspapers are huge, and full of stuff that is not interesting to me, or frequently to anybody else: <a href="www.apathysketchpad.com/blog/tag/stupid-formulae">PR stunts dressed as science</a>, tragic but irrelevant tales of people I will never meet which are in no way representative of life in Britain, made up lies masquerading as news, polite reminders that they still haven&#8217;t found Madeline McCann (because she&#8217;s dead), pages of intractable minutiae about how well rich people I don&#8217;t know played games I don&#8217;t care about, letters from reactionary right-wing lunatics <a href="http://www.bbc.co.uk/blogs/magazinemonitor/2009/02/paper_monitor_621.shtml">which Gordon Brown pretends to read in order to placate the dribbling cretins</a>, cartoons that either make no sense at all or make sense but don&#8217;t work, and which have such lousy caricatures and opaque references in them that all the people and metaphors have to have the names written on them so we know what&#8217;s going on (hint: some politicians have normal-sized ears), conspiracy theories about Diana, horoscopes that would be false even if they were honest, <a href="http://www.guardian.co.uk/politics/2004/mar/29/redbox.annwiddecombe">opinion pieces by people I don&#8217;t even </a><em><a href="http://www.guardian.co.uk/politics/2004/mar/29/redbox.annwiddecombe">slightly</a></em><a href="http://www.guardian.co.uk/politics/2004/mar/29/redbox.annwiddecombe"> respect</a> and analyses done by people I have no reason to trust, comics I wouldn&#8217;t choose to read, uninteresting gossip about celebrities that I wouldn&#8217;t care about even if I thought it were true, news stories I have no reason to believe, propagation of things public figures have said about topics they don&#8217;t understand, more wallcharts than I have the wall to accommodate, grainy mobile phone-camera footage and photos of traffic and snow from the public, the uncontested claims of known idiots, and the megalithic monument to sheer, unadulterated pointlessness that is <em>the bridge column</em>. When I do read stories from newspapers, generally online, they come from a variety of sources, mainly the Guardian, the Times, the Independant, and the Telegraph, in roughly that order, and I almost always find them through other people rather than through the newspaper itself.</p>
<p>With my way, I can amass a legion of amateurs (and some professionals) who filter all the news, including some which gets largely ignored by the mass media, and repost the stuff they find interesting. I&#8217;m interested in human rights and transparency in government, so I have <a href="http://www.protectthehuman.com">Amnesty International</a> and <a href="http://www.mysociety.org/">mySociety</a> feeding news into my gawping brain. I get interesting stuff from <a href="http://delicious.com/bengoldacre">Ben Goldacre&#8217;s del.icio.us feed</a>, the <a href="http://www.secularism.org.uk/whatthepaperssay.html">National Secular Society&#8217;s &#8216;What The Papers Say&#8217; feed</a> plus blogs like <a href="http://www.whydontyou.org.uk/blog/">Why Don&#8217;t You?</a> and <a href="http://www.badscienceblogs.net/">the badsciencebloggers</a>, my more political friends on Facebook and Twitter, and a load of other places. Because they&#8217;re mostly unpaid, they&#8217;re less likely to copy-paste press releases to fill wordcount, and because there&#8217;s a variety of sources, it eliminates all biases except my own (and it cuts down on that by a factor determined by my ineptitude at seeking out sources who share my politics). Large parts of it are still not of interest to me, but the hitrate is far better than TV news, and stories are promoted by interest rather than the whimsy of the media. For example, <a href="http://www.boingboing.net/2009/02/09/final-arguments-in-t.html">this story about a twelve year old black girl who is on trial for &#8216;assault&#8217; after she was beaten up by four police officers who thought she was a prostitute</a> came to my attention <a href="http://twitter.com/Glinner/status/1193345121">via. Graham Linehan</a> (who wrote Father Ted, in case you didn&#8217;t know) who saw <a href="http://www.boingboing.net/2009/02/09/final-arguments-in-t.html">it on Boing Boing</a>. A quick look at Google News suggests to me that <a href="http://news.google.com/news?hl=en&amp;ned=&amp;q=Dymond+Milburn&amp;btnG=Search+News">only two newspapers in the world have bothered to report this story</a>. Similarly, <a href="http://www.apathysketchpad.com/blog/2009/01/17/your-mp-is-probably-a-dick-do-something-about-that/">the recent furore over MPs&#8217; expenses</a> took place almost entirely outside the mainstream media until after the battle had been won. And Twitter lets me watch celebrities I like having impromptu semi-public discussions of said news: I don&#8217;t even need Newsnight any more. Also, I can read clever comics which are neither tired and inane nor <a href="http://www.techflash.com/Online_file_storage_from__Dilbert37846404.html">thinly veiled adverts for Scott Adams&#8217; side-businesses</a>, and <a href="http://guardian.co.uk/crossword/">the Guardian even has its crosswords on the website</a> (although as it goes, my brother sets crosswords for his student newspaper so I can even get those through my vast organic Yahoo Pipe if I ask nicely). Keeping my end of the bargain, I share and comment on news stories I find interesting (among many other things) on <a href="http://friendfeed.com/andrewtaylor">my Shared Items page, this blog and my Twitter feed</a>, and thus I am part of other people&#8217;s vast news-filtering armies (although of course anyone is welcome to leech off the same system if they don&#8217;t want to contribute). This is people power working at its best; this is exactly what the Internet is about.</p>
<p>I presume that at some point some of these people must read newspapers. Some of them work for newspapers. If newspapers and TV news went away, I&#8217;m less sure where the original, unfiltered news would come from. I presume there are enough people anally reading press releases, <a href="http://theyworkforyou.com/">Hansard and so forth</a>, and <a href="http://www.whatdotheyknow.com">badgering officials with Freedom of Information requests</a>, and enough people inside organisations who are willing to leak things they think the public should know, that the system would still work, especially with <a href="http://wikileaks.org/">WikiLeaks hosting it all</a> on secret servers in places with convenient laws.</p>
<p>Actually, come to think of it, most of the above applies to TV guides as well. This applies to pretty-well every kind of information, including humour, music and interesting trivia. I used to live on my own and feel crushingly bored: I need other people to stop myself going stir-crazy. But now I can fire up the computer and get loads of interesting reading material and discuss it with people I like. I can kill an evening without even trying now. If I go out too much, I get overloaded with stuff when I get back, but a new tiering system I devised solves that. (I have a folder in Google Reader called &#8216;low priority&#8217;. Since you can put a feed in multiple folders, I can mark that as read and instantly delete 75% of my least-likely-to-be-interesting unread items.)</p>
<p>This is the great thing about the internet. It took it a while to find its feet, and I&#8217;ve no doubt it will keep getting better, but this is what happens when people can exchange information this easily, and it&#8217;s fantastic.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/02/10/news-20/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JanuaryBiscuit</title>
		<link>http://www.apathysketchpad.com/blog/2009/02/01/januarybiscuit/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/02/01/januarybiscuit/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 23:00:51 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<category><![CDATA[In Character]]></category>

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

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

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

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

		<category><![CDATA[Atheist Bus]]></category>

		<category><![CDATA[Patrick Holford]]></category>

		<category><![CDATA[The Department of Children Schools and Families]]></category>

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

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=967</guid>
		<description><![CDATA[Here are my NewsBiscuit submissions for January 2009. There are quite a few, so I&#8217;ve put one to start off with, then the rest after the fold (i.e., a link at the bottom of the post). They are in no particular order, but they are shuffled to try to keep the Atheist Bus ones separate. [...]]]></description>
			<content:encoded><![CDATA[<p>Here are my <a href="http://newsbiscuit.com/board/2/board.html">NewsBiscuit submissions</a> for January 2009. There are quite a few, so I&#8217;ve put one to start off with, then the rest after the fold (i.e., a link at the bottom of the post). They are in no particular order, but they are shuffled to try to keep the Atheist Bus ones separate. (Atheist buses are a goldmine of comedy, I think, so I repeatedly tried different angles on it. I never came up with anything <a href="http://creativeyear.wordpress.com/2009/01/18/110/">this good</a>, though.)</p>
<p><a id="mSubject42200" rel="mSubject:42200:1231872394" href="http://newsbiscuit.com/board/42/20/0//Christian-Scientists-Split-God.html"><strong>Christian Scientists Split God</strong></a></p>
<p>A group of Christian research scientists in Massachusetts announced this week that they had managed for the first time to split God, also known as the Higgs particle although mostly to annoy physicists, into his component parts. God is believed to have existed in the conditions immediately prior to the Big Bang.</p>
<p>They made the discovery using a machine called the Holy Smoke Chamber. A fragment of the True Cross was accelerated to 40% the speed of light and collided with a King James Bible. The 25m wide device is cooled by a constant stream of holy water. A team of 5 priests work round the clock blessing the inbound pipelines. Researchers were able to detect two of God&#8217;s components in the debris from the explosion.</p>
<p>According to Christian scientific theory, God is composed of three smaller particles called father, son and holy spirit. The trace from the Holy Smoke Chamber clearly shows a trail for the son particle, which curves gracefully through the chamber for five nanoseconds before ascending into heaven, more-or-less in line with the theory. The father particle&#8217;s trace, however, did not agree with calculated predictions. The researchers have admitted that the way the father particle moves is &#8216;mysterious&#8217;, but are confident an explanation will be found. The holy spirit particle was not observed. The Christian scientists believe that this particle passed clean through the chamber like a ghost.</p>
<p>Most Christian scientists agree that the father and son particles could tell us a lot about the universe if we can unlock their secrets. The experiments have been criticised by others, however, who claim that earlier work by Revelation et al suggests that recreating the son particle on earth could trigger a process known as &#8216;armageddon&#8217;, which potentially could wipe out life on Earth.</p>
<p><a id="mSubject40147" rel="mSubject:40147:1231025090" href="http://newsbiscuit.com/board/40/14/7//DCSF-delight-as-exam-results-show-which.html"><strong><span id="more-967"></span>DCSF delight as exam results show which pupils are stupid</strong></a></p>
<p>Schools minister Ed Balls has expressed his delight at a &#8216;mixed bag&#8217; of exam results, which he says &#8216;accurately show which pupils are clever and which are a bit stupid.&#8217; When the results were announced, Gordon Brown described them as &#8216;disappointing,&#8217; saying that &#8216;we had hoped more students might achieve the top grades,&#8217; but Balls now claims that the purpose of exams is to gauge the different ability of students in various subjects and that a good distribution of grades, including fails, is needed to accomplish this.</p>
<p>&#8216;This is absolute nonsense,&#8217; said Beverley Hughes in an interview earlier today. &#8216;The purpose of testing students is to demonstrate how wildly successful our education reforms have been. We had been looking forward to another year of record-breaking exam results, and the exciting possibility of introducing a new top-grade to cope with the number of pupils achieving A* at GCSE, but now the system has been hijacked by teachers who just want to know how their students are doing.&#8217; Insiders say the planned introduction of the new grade, tentatively named &#8216;AA1*+&#8217; was intended to be a much-publicised event designed to underline the runaway success of both students and the Labour Party. The introduction has been put on hold pending an improvement in exam grades.</p>
<p>Employers have praised the latest results, saying that their similarity to the previous years&#8217; results will make it easier to compare job applicants who sat them in different years, as well as clearly showing which pupils are habitual underachievers and should not be considered for important jobs. It is even thought that preventing stupid people from entering highly paid and responsible jobs could help the economy in the long term, and employers have been looking for a system of doing just that for many years, but Children&#8217;s minister Delyth Morgan has said that national exam results should not be used in this way. &#8216;This isn&#8217;t what they were designed to do. They are purely a tool for demonstrating the achievements of our department and the government in general.&#8217; Some employers have gone so far as to suggest that some government ministers have a vested interest in maintaining the status-quo in which unqualified and incompetent people can remain in well paid, high-power jobs simply by engineering a series of spuriously inflated exam results. Ed Balls has strenuously denied these rumours, citing a government spreadsheet which would &#8216;authoritatively debunk these rumours&#8217; had he not left the CD on a bus.</p>
<p><a id="mSubject40233" rel="mSubject:40233:1231107726" href="http://newsbiscuit.com/board/40/23/3//Analogue-Switchoff-Your-Questions-Answe.html"><strong>Analogue Switchoff: Your Questions Answered</strong></a></p>
<p><strong>Will I need to get a new TV?</strong></p>
<p>No. In most cases you will need to purchase a digital receiver box to plug into your existing set. This will enable you to receive digital broadcasts after analogue is turned off. Most analogue TV will be switched off by 2011, but your area may differ.</p>
<p><strong>Will I need to get a new radio?</strong></p>
<p>Eventually. Analogue radio is being continued longer than analogue TV. No date has yet been set for this but sometime around 2015 seems likely. When this happens you will need to purchase a &#8216;DAB&#8217; Digital Radio.</p>
<p><strong>Will I need to get a new clock?</strong></p>
<p>Yes. When analogue time is turned off in 2020, old-style analogue clocks will stop working. You will need to upgrade to a digital clock to enable you to continue telling the time. You will probably already own a digital clock as it will be built into your digital radio.</p>
<p><strong>What other analogue products will need replacing?</strong></p>
<p>If for some reason you still own a video cassette recorder, you will need to replace it with a Digital Versatile Disc (DVD) player. You will also be unable to play vinyl records and audio cassettes and will need to replace these with digital media such as MP3s or CDs.</p>
<p><strong>Is there anything else I should know?</strong></p>
<p>In 2025, analogue description will be turned off. Among other changes, you will no longer be able to describe the height of a person by gesturing and saying &#8216;about this high&#8217;. You will need to give a figure. You may continue give this figure in feet and inches as long as you also provide a metric estimate. For reference, six feet is approximately 1.5m, and two inches is roughly 0.05m.</p>
<p><a id="mSubject41006" rel="mSubject:41006:1231368027" href="http://newsbiscuit.com/board/41/00/6//Atheist-Buses-to-be-followed-by-Agnostic.html"><strong>Atheist Buses to be followed by Agnostic Trams, Troubled Billboards</strong></a></p>
<p>Following the success of the so-called &#8220;Atheist Bus&#8221; campaign, other irreligious groups have launched similar efforts. The atheist message being plastered across buses throughout Britain reads &#8220;There&#8217;s probably no god. Now stop worrying and enjoy your life.&#8221; Next week sees the launch of the &#8220;Agnostic Tram&#8221;, which bears the message &#8220;I don&#8217;t know if there&#8217;s a god - I&#8217;m just a tram.&#8221; The group behind the &#8220;Troubled Billboard&#8221; has not yet managed to agree on a wording, but the current favoured text is &#8220;There must be more to life than just this, but there&#8217;s so much bad stuff in the world&#8230; oh, why is it so complicated? I just try to be nice, what else can you do?&#8221;. The organisers had hoped to get a bus advert too, but it rapidly became apparent that there simply wouldn&#8217;t be enough space.</p>
<p>Commuters in Huddersfield have recently started seeing adverts in train stations which say &#8220;We don&#8217;t know if we actually believe in God, but we <em>are</em> spiritual&#8221;. In one case, this advert is running right next to one that reads &#8220;I don&#8217;t know whether or not there&#8217;s a God, but there definitely aren&#8217;t any Thetans.&#8221; Nobody yet knows who paid for the double-page advert in Monday&#8217;s Telegraph which simply stated &#8220;oh, God, I&#8217;m so depressed.&#8221;</p>
<p>Surprisingly, a recent MORI poll asking which religious beliefs were most common found that most Britons agreed with the statement &#8220;I don&#8217;t care enough either way that I feel I have to paint it on a bus&#8221;.</p>
<p><a id="mSubject41007" rel="mSubject:41007:1231368124" href="http://newsbiscuit.com/board/41/00/7//Civilian-deaths-in-Gaza-More-soon.html"><strong>Civilian deaths in Gaza. More soon.</strong></a></p>
<p><a id="mSubject45140" rel="mSubject:45140:1233438387" href="http://newsbiscuit.com/board/45/14/0//UN-Troops-Help-Woman-With-Own-Personal-B.html"><strong>UN Troops Help Woman With Own Personal Battle Against Cancer</strong></a></p>
<p>Long-term cancer patient Amanda Myers, 42, was surprised earlier this month when fifty UN troops arrived in her hospital ward to help with what had previously been her own personal battle against cancer. Also surprised were the soldiers, who had previously been deployed keeping the peace in the Middle East. &#8216;They didn&#8217;t seem to know why they were there,&#8217; said Myers. &#8216;They&#8217;ve been very helpful, though. Supportive and always happy to pop to the shops when I need something.&#8217;</p>
<p>President of the UN Security Council Jean-Maurice Ripart told the press that after accusations that the UN did nothing about the oppressive regime of Saddam Hussein, the UN was keen to regain popularity by fighting something that everyone would support. What happened next is unclear, but it is known that the council discussed removing a rogue head of state, but had difficulty coming up with anybody suitably unpopular. After a number of names were dismissed as either only ambiguously dangerous or too obscure, the British delegate suggested cancer, having forgotten that English humour is not always understood by other nations.</p>
<p>A representative of the hospital where Myers is being treated said &#8217;strictly, we&#8217;re not supposed to allow visitors to stay in the ward 24/7, but when I explained this to the sergeant, he said &#8220;I don&#8217;t think so, Sir&#8221; and didn&#8217;t move. In the end we just let them stay. They haven&#8217;t caused any problems, apart from the two trasnsplant patients killed last week by friendly fire.&#8217;</p>
<p>So far, the UN say, the tumour in Myers&#8217; lung has &#8217;stubbornly refused to negotiate&#8217;, but they remain confident of victory.</p>
<p><a id="mSubject41737" rel="mSubject:41737:1231680399" href="http://newsbiscuit.com/board/41/73/7//Terrorist-changes-mind-after-seeing-athe.html"><strong>Terrorist changes mind after seeing atheist bus advert</strong></a></p>
<p>Police were called to a bus in London yesterday after a man was seen emptying an unidentified liquid onto the floor of the vehicle. Witnesses say he then dropped the bag and ran out of the bus laughing. Police analysis confirmed that the liquid was an explosive mixture of flour and peroxide which the would-be terrorist had apparently chosen not to detonate.</p>
<p>&#8216;I spotted him as soon as he got on the bus,&#8217; one witness said. &#8216;He looked troubled and was carrying a large bag. He seemed to get more and more agitated until he ripped open his bag, jumped out of his seat, and got off as quickly as he could at the next set of traffic lights.&#8217;</p>
<p>Following a brief investigation, police believe the man was an Islamic fundamentalist, most likely working alone, who was plotting to blow up the bus in protest at supposedly immoral western culture, but when getting onto the bus had read the advert on the side which says &#8216;there&#8217;s probably no God, now stop worrying and enjoy your life.&#8217;</p>
<p>The man has not yet been identified, but someone matching his description was seen that evening, sitting in the corner of a strip club with a bottle of tequila and a copy of &#8216;Unweaving the Rainbow&#8217;.</p>
<p><a id="mSubject41127" rel="mSubject:41127:1231419580" href="http://newsbiscuit.com/board/41/12/7//Bush-refuses-to-let-Obama-move-into-Blai.html"><strong>Bush refuses to let Obama move into Blair House early</strong></a></p>
<p>&#8220;I know the feeling&#8221; - Gordon Brown</p>
<p><a id="mSubject43014" rel="mSubject:43014:1232213412" href="http://newsbiscuit.com/board/43/01/4//Crop-circle-found-that-says-there-proba.html"><strong>Crop circle found that says &#8216;there probably is&#8217;.</strong></a></p>
<p><a id="mSubject41763" rel="mSubject:41763:1231699108" href="http://newsbiscuit.com/board/41/76/3//OfCom-say-Prince-Harry-video-outside-re.html"><strong>OfCom say Prince Harry video &#8216;outside remit&#8217;</strong></a></p>
<p>Despite receiving hundreds of complaints, OfCom have refused to rule on the alleged racial slur in a video made by Prince Harry three years ago and released recently by the News of the World, claiming that home videos are not subject to their guidelines.</p>
<p>One complaint, leaked to newspapers, reads &#8216;I would like to complain in the strongest possible terms about the despicable language used by &#8220;Prince&#8221; Harry in the recent programme &#8220;That Video He Made&#8221;. Although I myself am not in Harry&#8217;s squad and did not see the events in question, I found the seven seconds of out-of-context commentary which I read about in a reputable newspaper [sic] three years later deeply offensive, and I would like to know what measures will be put in place to prevent it happening again.&#8217; OfCom described the letter as &#8216;typical&#8217;.</p>
<p>Prince Harry, who made the offending remark, has already issued a statement saying that the term was used &#8216;without malice&#8217; and &#8216;as a nickname&#8217;. However, in an interview with BBC News the soldier&#8217;s uncle, who wasn&#8217;t there, has never met Harry, and knows only what his nephew chooses to tell him about their relationship, claims otherwise.</p>
<p>The Daily Express has already announced that it intends to escalate the incident to the level of Scandal, and claims to have found a series of similar incidents involving racist remarks or actions by other members of the royal family. A spokesperson for the palace told reporters that he thought it &#8216;highly unlikely&#8217; that the newspaper had unearthed such events, describing the royals as &#8216;highly reputable members of the international community&#8217; who &#8216;would not engage in racism or stereotyping.&#8217;</p>
<p><a id="mSubject42850" rel="mSubject:42850:1232120714" href="http://newsbiscuit.com/board/42/85/0//Scientists-admit-Hadron-Collider-created.html"><strong>Scientists admit Hadron Collider created Financial Black Hole</strong></a></p>
<p><span style="text-decoration: underline;"><a id="mSubject43088" rel="mSubject:43088:1232299667" href="http://newsbiscuit.com/board/43/08/8//New-compression-algorithm-discards-infor.html"><strong>New compression algorithm discards information listeners are too uncouth to appreciate</strong></a></span></p>
<p>Apple have launched a new compression algorithm developed to further extend the capacity of their iPod music players. The format, called XF2, works by discarding any information that the listener won&#8217;t appreciate anyway. For example, the best selling XF2 file at the moment is Alexandra Burke&#8217;s cover of Hallelujah, which when compressed contains no Biblical imagery or dark undertones at all.</p>
<p>Audiophiles have been outraged by the announcement and are boycotting the new technology, however the general public have warmed to it immensely. One user told reporters &#8220;it&#8217;s great; I&#8217;ve managed to get the entire back catalogue of Girls Aloud, Hearsay and Britney Spears onto my iPod, and there&#8217;s still loads of space left.&#8221; A spokesperson for Apple commented on this review saying &#8220;what&#8217;s really good is that in this case the algorithm produces lossless compression, because there was never really anything to that music to begin with. This allows the system to shrink the songs greatly without losing anything. Many so-called &#8216;boy band&#8217; songs can actually be reconstituted entirely just from the titles.&#8221;</p>
<p>Some users have got more out of it than others. Michael Simon, a builder from Oldham, has found that most songs are very small files that download very fast, but Jason Cockburn, a writer from London, says that the music he downloads seems hardly to have compressed at all, with the exception of Don McClean&#8217;s American Pie. &#8220;That&#8217;s probably because it&#8217;s a stupid nonsense song anyway,&#8221; he said.</p>
<p>Apple have admitted the new system does still have some bugs: currently the algorithm crashes when trying to compress Bohemian Rhapsody.</p>
<p>The name &#8216;XF2&#8242; does not stand for anything. In production the project had a much longer, cleverer name which was a reference to Dante, but that name has not been announced because the press release was XF2 encoded and it was felt that journalists wouldn&#8217;t get it.</p>
<p><a id="mSubject43070" rel="mSubject:43070:1232290295" href="http://newsbiscuit.com/board/43/07/0//Atheist-bus-on-collision-course-with-Chu.html"><strong>Atheist bus on collision course with Church</strong></a></p>
<p><a id="mSubject44063" rel="mSubject:44063:1232814678" href="http://newsbiscuit.com/board/44/06/3//Could-Apple-Juice-Be-Cure-For-Hiccups.html"><strong>Could Apple Juice Be Cure For Hiccups?</strong></a></p>
<p>According to Professor David Cook of Durham University, the answer may be &#8216;yes&#8217;. The discovery was made yesterday, when Cook had hiccups and noticed they were gone later that afternoon. In an exclusive interview secured by chance in a bar, he said &#8220;I don&#8217;t know what did it. Possibly they just went away on their own. I know I&#8217;d had a glass of apple juice. I suppose that might have helped.&#8221;</p>
<p>This ground-breaking clinical research offers hope to millions of sufferers worldwide, and nutritionist Patrick Holford has already launched his own range of apple-juice based pills which you should buy. In a press-release, he said that healthy adults should probably drink fifteen glasses of apple juice every two hours or, failing that, take just one of his &#8216;Cidex&#8217; brand apple-juice supplements.</p>
<p>Holford explains that the active ingredient in apples is the cell wall, which is much thicker than the membrane in human cells and therefore stronger. This means that the cells can be used to strengthen aspects of the human body such as the immune system, allowing patients to naturally fight off viruses such as the hiccups.</p>
<p>Sufferers of the hiccups are already demanding access to this new cure on the NHS, but NICE have remained adamant, saying that the treatment is unproven and therefore not cost effective. Newly founded support group JUICE has described this as &#8216;blatant bias and discrimination&#8217; against sufferers of &#8216;a serious disease which is often under-reported&#8217;. They say that experimental treatments such as this should be made available automatically.</p>
<p>If you would like more information on where to get this amazing new medicine, contact Cidex Ltd. immediately, on 0845 123 4789.</p>
<hr />While I was writing the last one, <a href="http://www.mailwatch.co.uk/2009/01/26/saturdays-mail-express/#comments">the Daily Express published this front page</a>. A little sooner and I could have been Terrifyingly Prescient. Maybe I&#8217;m cleverer than I realised.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/02/01/januarybiscuit/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My Response To SarahPAC</title>
		<link>http://www.apathysketchpad.com/blog/2009/01/31/my-response-to-sarahpac/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/01/31/my-response-to-sarahpac/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 19:00:11 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Internet]]></category>

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

		<category><![CDATA[John McCain]]></category>

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

		<category><![CDATA[Sarah Palin]]></category>

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

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=977</guid>
		<description><![CDATA[To be honest, I feel a little sorry for Sarah Palin. She was just minding her own business, being the slightly corrupt and occasionally lying govenor of an unimportant state, and to be honest the fact that she abused that position is not massively important to me. Such things happen, and I genuinely think her [...]]]></description>
			<content:encoded><![CDATA[<p>To be honest, I feel a little sorry for Sarah Palin. She was just minding her own business, being the <a href="http://johnmcgaffe.com/2008/08/sarah-palin-lies-and-investigation.html">slightly corrupt</a> and <a href="http://www.jedreport.com/2008/09/gullible-at-best.html">occasionally lying</a> govenor of an unimportant state, and to be honest the fact that <a href="http://cnnwire.blogs.cnn.com/2008/10/10/palin-abused-power-but-didnt-break-law-in-trooper-case/">she abused that position</a> is not massively important to me. Such things happen, and I genuinely think her various transgressions are the result of incompetence, not malice.</p>
<p>Here is what I think happened: Sarah Palin is a victim of circumstance. Her meteoric rise to infamy is the fault of the people of Alaska and the Republican party rather than her own. Palin&#8217;s problem is that she has no internal barometer of her own ability to do any given job. When she saw an ad saying &#8216;mayor needed, job may involve constructing coherent sentences&#8217; she (wrongly) assumed she could do it. When the gubernatorial elections rolled around she assumed she could do that too. Whether she asked to be considered for vice-president or whether someone approached her, I don&#8217;t think it ever occured to her that she might actually not be smart enough to run the entire country. And there will always be people like her, as evidenced by the paper <a href="http://www.apa.org/journals/features/psp7761121.pdf"><em>Unskilled and unaware of it: how difficulties in recognising one&#8217;s own incompetence lead to inflated self-assessments</em></a> (link is to PDF, title will worry the self-employed). That&#8217;s why we have systems of exams and qualifications and job interviews &#8212; and indeed elections &#8212; in place to prevent the incompetent from being given important jobs they are likely to mess up. It doesn&#8217;t always work, but it&#8217;s usually effective. Think of all the cretins you&#8217;ve ever met. Was any of them a doctor or a teacher or an MP? Probably relatively few of them were.</p>
<p>But because now <em>other people</em> have put the idea into Palin&#8217;s head that she might actually be qualified to be President, it&#8217;s going to be very difficult to convince her otherwise which is, presumably, why she launched SarahPAC. A PAC is, I&#8217;m told, an organisation that collects money and turns it into political capital, and is often a precursor to a Presidential campaign. Exactly what else hers might be for is unclear, but given the timing, the five-page or so website, <a rel="nofollow" href="http://www.sarahpac.com/">SarahPAC.com</a>, is generally assumed to indicate that she&#8217;s planning a campaign for 2012.</p>
<p>I dont&#8217;t think we can make Sarah Palin go away, but I think we can ensure her campaign fails. I don&#8217;t think we can stop the far-right lunatic fringes of the Republican party from supporting her, but I think we can stop anyone else making that mistake. I don&#8217;t think contempt is appropriate, but I don&#8217;t think that pity is going to stop her. I propose that ridicule is the answer. People have to see how completely absurd it is that someone <a href="http://politicalticker.blogs.cnn.com/2008/09/18/palins-transparency-proposal-already-exists-in-dc/">so utterly useless</a> could become President.</p>
<p>That&#8217;s why my response to SarahPAC.com was <a href="http://www.pacsarah.com">to register PacSARAH.com and put up my own page</a>. I like to think it is no less insane than hers.</p>
<p><a href="http://www.pacsarah.com">PacSARAH.com</a>. Spread the word.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/01/31/my-response-to-sarahpac/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Your MP Is Probably A Dick. Do Something About That.</title>
		<link>http://www.apathysketchpad.com/blog/2009/01/17/your-mp-is-probably-a-dick-do-something-about-that/</link>
		<comments>http://www.apathysketchpad.com/blog/2009/01/17/your-mp-is-probably-a-dick-do-something-about-that/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 16:58:23 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
		
		<category><![CDATA[Internet]]></category>

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

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

		<guid isPermaLink="false">http://www.apathysketchpad.com/blog/?p=975</guid>
		<description><![CDATA[I read today on mySociety&#8217;s blog about a plan to block the publication of MP&#8217;s expenses. They link to two newspaper reports, saying in the Facebook group (although this text has since been replaced) &#8220;when the Daily Mail and the Guardian are in full throated agreement, you know something dodgy is happening.&#8221; (A couple of [...]]]></description>
			<content:encoded><![CDATA[<p>I read today <a href="http://www.mysociety.org/2009/01/17/6-days-to-stop-mps-concealing-their-expenses/">on mySociety&#8217;s blog</a> about a plan to block the publication of MP&#8217;s expenses. They link to two newspaper reports, saying in <a href="http://www.facebook.com/group.php?gid=50061011231">the Facebook group</a> (although this text has since been replaced) &#8220;when <a href="http://www.dailymail.co.uk/news/article-1120119/Taxpayers-foot-1m-publication-expenses-MPs-STILL-want-cover-up.html">the Daily Mail</a> and <a href="http://www.guardian.co.uk/politics/2009/jan/16/mps-expenses-exemption">the Guardian</a> are in full throated agreement, you know something dodgy is happening.&#8221; (A couple of hours ago when I started writing this, that group had eighteen members; now it has 119.) <a href="http://www.timesonline.co.uk/tol/news/politics/article5527007.ece">According to The Times</a>, too*,</p>
<blockquote><p>A document from the committee led by Michael Martin, the Commons Speaker, said: “It has been argued that it would be excessively burdensome for Members to have provided receipts for all transactions and that additional costs incurred &#8230; would be likely disproportionate.”</p></blockquote>
<p>Which seems almost reasonable except that <a href="http://www.timesonline.co.uk/tol/comment/letters/article5532685.ece">a reader quickly wrote in</a> to point out that</p>
<blockquote><p>As a self-employed person I am instructed by my local tax office to keep, log and report all expenses, down to a sandwich or coffee, for five years. Failure to do so will mean I cannot claim these expenses against legitimate business expenses and hence mitigate my tax bill.</p></blockquote>
<p>MPs don&#8217;t just claim the top 28% back from public funds, remember, they get this stuff for free, entirely from taxes. Now I&#8217;m not against that, obviously; they have as much right to an expense account as everyone else. (That means they also have as much obligation to let the people paying for it know what they use it for as everyone else. <a href="http://timesonline.typepad.com/politics/2009/01/a-good-day-to-a.html">I&#8217;m sure we can all think of at least a couple of examples where MPs have been caught abusing this system and their carreers have been damaged as a result</a>. That&#8217;s what this would stop.) If they want the self-employed to log these things in exchange for a small fraction of this money, it seems reasonable to suppose they&#8217;d be willing to do it themselves for the full amount. But then, it would seem reasonable that if MPs were willing to ban smoking in all workplaces including bars (which again, I support) that they would include in that ban the bars in the Houses of Parliament. It should be a clue that they&#8217;re not fit to govern when they enforce rules and then refuse to live by them. It is especially so given that MPs are the people whom it is most important are subject to scrutiny: we entrust them with great power and it&#8217;s only fair that we can watch to see what they do with it.</p>
<p>Here is <a href="http://www.commonsleader.gov.uk/OutPut/Page2698.asp">the actual proposal</a>:</p>
<blockquote><p>This Order amends the entries for the House of Commons and the House of Lords in Part 1 of Schedule 1 to the Freedom of Information Act 2000 (&#8221;the Act&#8221;).  In respect of Members of Parliament it removes most expenditure information held by either House of Parliament from the scope of the Act.</p></blockquote>
<p>It strikes me as either lazy and stupid or just massively dishonest. The whole premise of democracy rests somewhat on transparency and openness: if the people aren&#8217;t given all the information, how are they supposed to make a decision? Worse, if they&#8217;re drip-fed information by the government, then they&#8217;ll only know things that make the government look good, and that will just serve to keep the same government in power forever.</p>
<p>It&#8217;s vitally important that such things are opposed, because systems naturally fall into that rut anyway. For example, <a href="http://www.publications.parliament.uk/pa/cm/cmpbpolitical.htm">the recent Political Parties and Elections Bill Committee</a> discussed making it more difficult for large, well-funded parties to pour endless money into local elections relatively free of scrutiny by working around the rules. That such a bill is needed is a clue that the system is naturally rigged in favour of whoever is in power. That we&#8217;ve only ever had two parties in power, or even with a reasonable shot at government. And apparently the discussion was largely controlled by the chairs, who were all Labour and Conservative members, who primarily selected trivial amendments tabled by Labour and Conservative members, and apparently the way these committees work is that rather than continuing until you reach an agreement or have discussed every idea, you talk until four o&#8217;clock then call it a day. That&#8217;s not democracy; that&#8217;s <em style="font-style: italic;">cricket</em>! It even ends up being abused <a href="http://www.apathysketchpad.com/blog/2005/08/14/col-cricket2/">in the same way as the rules of cricket</a>. The upshot is that the rules to stop big parties abusing their positions end up being controlled by big parties, and the people with the power to change <em style="font-style: italic;">that </em>are the people it&#8217;s protecting. The only way around it is for the public to be aware and determined, until it stops being viable for MPs to behave that way. After all, they win nothing if they protect the system and immediately get voted out of it. But we&#8217;re a very long way from that at the moment.</p>
<p>And now, some MPs are planning on voting themselves out of having to publish details of their expenses. They say this is because it is too time-consuming and expensive to do so (although presumably it would be cheaper in the long run <em style="font-style: italic;">not</em> to give them carte-blanche to buy any expensive telly they&#8217;d like), and they cite as an example details already logged, collated and scheduled for publication, which apparently cost the taxpayer £500,000. That being the case, why are the new proposals so carefully timed and retrospectively acting so as to block the publication of <em style="font-style: italic;">those</em> details? They&#8217;re effectively free: we&#8217;ve paid for them already. There&#8217;s no means to an end in blocking them: the only plausible end is simply keeping your spending a secret, and at that, keeping it a secret from the people who end up footing the bill. This, at the same time as they&#8217;re <a href="http://www.guardian.co.uk/uk/2008/dec/31/privacy-civil-liberties">trying to design an invasive and frankly rather stupid database</a> containing details of emails, phone calls, internet activity and text messages for everyone in the country whether or not there is even the slightest suggestion that they may have done anything wrong, which they are presumably going to leave on a train or something. The hypocricy that they show in fighting for their own rights and privacy while trampling everyone else&#8217;s is staggering. And we only really have one means of recourse:</p>
<p>MPs have the power to keep their expenses secret if they win the vote, but they do not have the power to keep their voting secret. Not only the results of this vote will be published, but also a full list of MPs who backed it, opposed it, and didn&#8217;t vote (which, let&#8217;s not forget, is a cowardly way of looking like you object while actually helping the bill to pass). <a href="http://www.writetothem.com/?a=westminstermp">Pester yours to vote the right way</a>. Then, after the vote (whether it passes or not), <a href="http://www.theyworkforyou.com/mp/">see how they voted</a>. And bear that in mind when you decide if you want to sack them at the next opportunity.</p>
<hr />*Actual quote is on page 45 of the <a href="http://www.parliament.uk/documents/upload/Revisedgreenbook0809.pdf">Revised Green Book and audit of members&#8217; allowances</a> (link is to PDF). It&#8217;s one of those long, massively boring documents that we employ journalists to read for us and never usually know if they do or not. Openness and transparency at their best, isn&#8217;t it? This paragraph, by the way, immediately follows one which notes that the <a href="http://www.parliament.uk/parliamentary_committees/mec.cfm">committee set up to decide these things</a> reccomended againts exactly this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apathysketchpad.com/blog/2009/01/17/your-mp-is-probably-a-dick-do-something-about-that/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
