<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Neil's Weblog</title>
	<atom:link href="http://neilmadden.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://neilmadden.wordpress.com</link>
	<description>Incoherent ramblings</description>
	<lastBuildDate>Wed, 23 Sep 2009 09:47:25 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='neilmadden.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/385140162ad8bea3152bb38609d7cff6?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Neil's Weblog</title>
		<link>http://neilmadden.wordpress.com</link>
	</image>
			<item>
		<title>Where is the Web going?</title>
		<link>http://neilmadden.wordpress.com/2009/08/24/where-is-the-web-going/</link>
		<comments>http://neilmadden.wordpress.com/2009/08/24/where-is-the-web-going/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 01:46:46 +0000</pubDate>
		<dc:creator>Neil Madden</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://neilmadden.wordpress.com/?p=24</guid>
		<description><![CDATA[I&#8217;m becoming increasingly confused about what direction the Web is heading in. More precisely, I&#8217;m slightly concerned that the direction the Web is heading in is completely different to the direction in which various researchers believe it is heading in.
In my field of research, I often run into material on the “Semantic Web”. This is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=24&subd=neilmadden&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m becoming increasingly confused about what direction the Web is heading in. More precisely, I&#8217;m slightly concerned that the direction the Web is heading in is completely different to the direction in which various researchers believe it is heading in.</p>
<p><span id="more-24"></span>In my field of research, I often run into material on the <a href="http://en.wikipedia.org/wiki/Semantic_Web">“Semantic Web”</a>. This is supposed to be the vision of where the Web is going: more structured mark-up of information using tags from well-defined, domain-specific vocabularies (so-called “ontologies”). On top of this, we can then build intelligent applications (“agents”) that can draw together information from diverse sources, integrate it, make inferences from it, and generally use this <em>knowledge</em> to act on our behalf. This is a vision I have some sympathy with, although there are clearly huge obstacles to overcome before it becomes anything like a reality. We&#8217;re still not sure what logic dialect(s) to base it all on, and that&#8217;s just the first step!</p>
<p>But the problems I see with the Semantic Web are not primarily technical. The main problem I see is that the Web is actively evolving in the opposite direction. Just take a look at the <a href="http://dev.w3.org/html5/spec/Overview.html">HTML 5 (draft) specification</a>. While some lip-service is paid to “semantics” in the introduction, in actual fact the spec moves further away from a declarative, logical language, and instead embraces vacuous tags such as <code>&lt;canvas&gt;</code>. This tag exists solely to provide a context into which to render, procedurally in JavaScript, arbitrary 2D graphics (or 3D graphics with the emerging <em>WebGL</em> standards). While I welcome the attempt to provide an open alternative to technologies such as Flash, I&#8217;m not sure that <code>&lt;canvas&gt;</code> really delivers. Indeed, it seems that it suffers many of the same drawbacks of Flash. If the goal was to continue to evolve the more meaningful distinction between different tags, why didn&#8217;t they develop a set of specific-purpose tags rather than developing another procedural API? For general graphics, the <a href="http://www.w3.org/Graphics/SVG/">SVG</a> standard already exists. For charts and graphs, why not introduce a more meaningful <code>chart</code> element, with declarative descriptions of axes, data points, formulae, etc? For example, suppose we wish to plot a 2D chart of the formula <em>y = x<sup>2</sup></em>. In the current HTML 5 specification we could “mark-up” this formula as follows:</p>
<pre>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;&lt;title&gt;Test of HTML 5 Canvas Tag&lt;/title&gt;
&lt;script&gt;
function point(x, y) { this.x = x; this.y = y; }
function axis(min, max, scale) {
    this.min = min; this.max = max; this.scale = scale;
    this.start = min * scale;
    this.end   = max * scale;
}
function xSquaredChart() {
    var chart = {
        origin:     new point(100, 0),
        xAxis:      new axis(-10, 10, 10),
        yAxis:      new axis(0, 100, 1),
        interval:   0.1
    };
    chart.f = function(x) { return Math.pow(x,2); }
    return chart;
}
function drawChart(ctx, chart) {
    var H = 100;
    var o = chart.origin;

    // Draw the axes
    ctx.fillStyle = "rgb(0,0,200)";
    ctx.fillRect(chart.xAxis.start+o.x, H-o.y, chart.xAxis.end+o.x, -1);
    ctx.fillRect(o.x, chart.yAxis.start, 1, chart.yAxis.end);

    // Plot the data
    ctx.fillStyle = "rgb(200,0,0)";

    for (x = chart.xAxis.min; x &lt;= chart.xAxis.max; x += chart.interval) {
        var y = chart.f(x);
        ctx.fillRect(x * chart.xAxis.scale + chart.origin.x,
                     H - (y * chart.yAxis.scale + chart.origin.y),
                     1, 1);
    }
}
function draw() {
    var chart = xSquaredChart();
    var canvas = document.getElementById("canvas");
    if (canvas.getContext) {
        var ctx = canvas.getContext('2d');
        drawChart(ctx, chart);
    }
}
&lt;/script&gt;
&lt;/head&gt;
&lt;body onload="draw();"&gt;
    &lt;canvas id="canvas" width="200" height="100"&gt;A canvas should be here.&lt;/canvas&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>If you try this out in a modern browser such as Firefox or Safari, that supports the canvas tag, you should indeed see a plot of the formula for values of <em>x</em> between -10 and 10. My point is not so much about the length of code needed to plot this simple function—indeed, I have deliberately made the code longer than it needs to be for generality—but more the total opacity of its purpose or meaning. The best we can hope for is that libraries become available for such common tasks, and that authors take the time to also supply marked-up comments and captions that identify that it is a chart and what it is a chart of. Consider a hypothetical alternative if HTML 5 directly supported tags for marking up charts:</p>
<pre>&lt;chart id="x-squared" type="line"&gt;
  &lt;axis id="x"&gt;
    &lt;range from="-10" to="10" step="0.1"/&gt;
    &lt;legend&gt;x&lt;/legend&gt;
  &lt;/axis&gt;
  &lt;axis id="y"&gt;
    &lt;formula&gt;y = x^2&lt;/formula&gt;
    &lt;legend&gt;x&lt;sup&gt;2&lt;/sup&gt;&lt;/legend&gt;
  &lt;/axis&gt;
  &lt;caption&gt;Plot of x&lt;sup&gt;2&lt;/sup&gt;.&lt;/caption&gt;
&lt;/chart&gt;</pre>
<p>The <code>formula</code> element could be specified in MathML content tags or even in JavaScript. Explicit data points could be given with a <code>datum</code> tag supporting error bars and other features. The browser can add all kinds of nifty features, such as the ability to edit data or change ranges on the chart and automatically display the new values, like a spreadsheet. However, the main point is that the mark-up is much clearer, and more importantly, its purpose is easily extracted by automated tools. Other uses of the canvas tag could also be handled by special-purpose tags, such as animation, presentation slides, logos, simulations and even games.</p>
<p>At this point you may be thinking to yourself: OK, but surely you can&#8217;t cover <em>every</em> possible use of the canvas tag with special purpose tags? Indeed, you probably can&#8217;t. That doesn&#8217;t mean that we should try, though. By including special-purpose tags alongside the canvas tag we can encourage people to use them when they fit, and only resort to procedural APIs when all else fails. After all, custom tags should be much simpler to use, more maintainable and readable, and offer the possibility of much more efficient implementations within the browser rather than in JavaScript. Another much more powerful alternative also exists: an ability to define your own custom tags and tag-views. A further post will expand on this topic soon!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neilmadden.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neilmadden.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neilmadden.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neilmadden.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neilmadden.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neilmadden.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neilmadden.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neilmadden.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neilmadden.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neilmadden.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=24&subd=neilmadden&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neilmadden.wordpress.com/2009/08/24/where-is-the-web-going/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">neilmadden</media:title>
		</media:content>
	</item>
		<item>
		<title>SecureCode, ClickSafe etc</title>
		<link>http://neilmadden.wordpress.com/2009/06/21/securecode-clicksafe-etc/</link>
		<comments>http://neilmadden.wordpress.com/2009/06/21/securecode-clicksafe-etc/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 15:42:26 +0000</pubDate>
		<dc:creator>Neil Madden</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neilmadden.wordpress.com/?p=20</guid>
		<description><![CDATA[What is the point of MasterCard SecureCode and friends (Lloyds TSB ClickSafe as I see it)? What extra security does having to remember yet another password actually bring? As far as I can tell, very little, as I continually forget my password (made worse as I am then forbidden from using a previous password) and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=20&subd=neilmadden&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>What is the point of MasterCard SecureCode and friends (Lloyds TSB ClickSafe as I see it)? What extra security does having to remember yet another password actually bring? As far as I can tell, very little, as I continually forget my password (made worse as I am then forbidden from using a previous password) and then answer a few basic &#8220;security questions&#8221; (all of which you could probably answer within 5 minutes of Googling my name), and am allowed to make the payment anyway. I&#8217;ve gone through about 10 passwords in the last year, and now simply enter random gibberish, &#8220;secure&#8221; in the knowledge that I will just have to remember my date of birth next time. Utter useless rubbish foisted on us by the incompetent banking companies to give a slight appearance of added security but in fact just making online shopping more cumbersome.</p>
<p>Does anyone know how to disable it? The &#8220;FAQ&#8221; says nothing about opting-out.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neilmadden.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neilmadden.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neilmadden.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neilmadden.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neilmadden.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neilmadden.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neilmadden.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neilmadden.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neilmadden.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neilmadden.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=20&subd=neilmadden&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neilmadden.wordpress.com/2009/06/21/securecode-clicksafe-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">neilmadden</media:title>
		</media:content>
	</item>
		<item>
		<title>Aeroplanes and Treadmills</title>
		<link>http://neilmadden.wordpress.com/2008/09/08/aeroplanes-and-treadmills/</link>
		<comments>http://neilmadden.wordpress.com/2008/09/08/aeroplanes-and-treadmills/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 14:49:17 +0000</pubDate>
		<dc:creator>Neil Madden</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://neilmadden.wordpress.com/?p=16</guid>
		<description><![CDATA[I came across this ridiculous Internet argument today, via xkcd. I find it both amusing, and worrying, the number of people who insist that the plane will not take off. This is a classic example of what philosophers call a thought experiment, and demonstrates only what most thought experiments demonstrate: that our intuitions about even [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=16&subd=neilmadden&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I came across <a href="http://pogue.blogs.nytimes.com/2006/12/11/the-airplane-treadmill-conundrum/">this ridiculous Internet argument</a> today, via <a href="http://xkcd.com/473/">xkcd</a>. I find it both amusing, and worrying, the number of people who insist that the plane will not take off. This is a classic example of what philosophers call a thought experiment, and demonstrates only what most thought experiments demonstrate: that our intuitions about even quite simple phenomena are often very wide of the mark. In this case, the intuition is that a vehicle on a treadmill will not move if the treadmill matches the speed of its wheels. While this is true for vehicles (and people) that get their forward thrust from pushing against the ground, an aeroplane certainly doesn&#8217;t. The thrust here comes from the propellers or jet turbines that push against the air. These generate an enormous force backwards, which, as per Newton, generates an equal and opposite force pushing the plane forward. If you draw a diagram and label the force arrows (as in school physics lessons), you will see an enormous forward arrow with the only opposing forces being air resistance and a tiny amount of friction from the wheels. It is a basic law of mechanics that when there is a net force acting on an object in a certain direction, then that object <em>will</em> accelerate in that direction. No amount of fast spinning treadmills can reverse the laws of physics. As others mentioned, the wheels will simply spin faster, as they are acted on by forces both from the aeroplane and the treadmill. The wheels decouple the rest of the plane from this treadmill force, and thus the transferred force is negligible. This is, after all, the entire point of having wheels on a plane, and not for instance just having skis.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/neilmadden.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/neilmadden.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neilmadden.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neilmadden.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neilmadden.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neilmadden.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neilmadden.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neilmadden.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neilmadden.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neilmadden.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neilmadden.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neilmadden.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=16&subd=neilmadden&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neilmadden.wordpress.com/2008/09/08/aeroplanes-and-treadmills/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">neilmadden</media:title>
		</media:content>
	</item>
		<item>
		<title>Computers and numbers</title>
		<link>http://neilmadden.wordpress.com/2008/08/07/computers-and-numbers/</link>
		<comments>http://neilmadden.wordpress.com/2008/08/07/computers-and-numbers/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 11:42:50 +0000</pubDate>
		<dc:creator>Neil Madden</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://neilmadden.wordpress.com/?p=11</guid>
		<description><![CDATA[A pet peeve of mine is the ongoing public misperception that computers are really all about numbers. This is constantly reinforced by the mainstream (and even IT) media. Take, for instance, this quote from a BBC News story today:

The DNS acts as the internet&#8217;s address books and helps computers translate the website names people prefer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=11&subd=neilmadden&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A pet peeve of mine is the ongoing public misperception that computers are really all about numbers. This is constantly reinforced by the mainstream (and even IT) media. Take, for instance, this quote from a <a href="http://news.bbc.co.uk/1/hi/technology/7546557.stm">BBC News story</a> today:</p>
<blockquote><p>
The DNS acts as the internet&#8217;s address books and helps computers translate the website names people prefer (such as bbc.co.uk) into the numbers computers use (212.58.224.131).
</p></blockquote>
<p>What this quote means to say is <em>&ldquo;DNS transforms textual domain names (such as bbc.co.uk) into the numeric dotted-form (212.58.224.131) that is used by the Internet Protocol (IP)&rdquo;</em>. To the actual computer, both of these are just patterns of bits that represent symbols. A numeric interpretation is no more or less convenient for the computer than any other symbolic representation: it&#8217;s all just patterns of electrical charge as far as the machine is concerned. The inventors of IP could just as easily have chosen to use a DNS-style address representation. It happens that the sort of symbol shifting that computers do is very good for numerical tasks, and it also happens that we know a lot about how to do things with numbers, and so numbers are useful in a lot of applications of computers. In this case, the numeric form can be compactly represented, and efficiently manipulated. That was an engineering decision, not a fundamental limitation of computers.</p>
<p>My love of computers stems from a fascination with language, logic, and fundamental notions of representation and interpretation. Diving into computing has brought me into contact with all sorts of ideas from philosophy, physics, mathematics, linguistics, psychology, cognitive science, and AI. It saddens me that people miss out on these extraordinarily beautiful ideas because of a persistent belief that its all really about numbers, which puts a lot of people off.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/neilmadden.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/neilmadden.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neilmadden.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neilmadden.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neilmadden.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neilmadden.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neilmadden.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neilmadden.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neilmadden.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neilmadden.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neilmadden.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neilmadden.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=11&subd=neilmadden&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neilmadden.wordpress.com/2008/08/07/computers-and-numbers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">neilmadden</media:title>
		</media:content>
	</item>
		<item>
		<title>The Decline of Violence</title>
		<link>http://neilmadden.wordpress.com/2008/08/06/the-decline-of-violence/</link>
		<comments>http://neilmadden.wordpress.com/2008/08/06/the-decline-of-violence/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 16:30:00 +0000</pubDate>
		<dc:creator>Neil Madden</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://neilmadden.wordpress.com/?p=8</guid>
		<description><![CDATA[Steven Pinker has an interesting talk on the TED conference website, debunking the idea that we are living in an increasingly violent society. As Pinker shows, over pretty much any timescale you care to look at, violent death rates have been dropped considerably, and we now live in the safest time ever. Fascinating and cheering.
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=8&subd=neilmadden&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Steven Pinker has an interesting <a href="http://www.ted.com/index.php/talks/steven_pinker_on_the_myth_of_violence.html">talk</a> on the TED conference website, debunking the idea that we are living in an increasingly violent society. As Pinker shows, over pretty much any timescale you care to look at, violent death rates have been dropped considerably, and we now live in the safest time ever. Fascinating and cheering.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/neilmadden.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/neilmadden.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neilmadden.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neilmadden.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neilmadden.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neilmadden.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neilmadden.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neilmadden.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neilmadden.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neilmadden.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neilmadden.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neilmadden.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=8&subd=neilmadden&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neilmadden.wordpress.com/2008/08/06/the-decline-of-violence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">neilmadden</media:title>
		</media:content>
	</item>
		<item>
		<title>60 Years since The Baby</title>
		<link>http://neilmadden.wordpress.com/2008/06/21/60-years-since-the-baby/</link>
		<comments>http://neilmadden.wordpress.com/2008/06/21/60-years-since-the-baby/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 12:48:29 +0000</pubDate>
		<dc:creator>Neil Madden</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://neilmadden.wordpress.com/?p=6</guid>
		<description><![CDATA[Manchester is celebrating the 60th anniversary of the first stored program computer, &#8220;The Baby&#8221;. A link to this was circulated around the Comp Sci email at Nottingham. A fascinating website. It&#8217;s amazing to see how far we&#8217;ve come in 60 years, but also how sophisticated those early machines already were.
      [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=6&subd=neilmadden&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Manchester is celebrating the <a href="http://www.digital60.org/">60th anniversary of the first stored program computer</a>, &#8220;The Baby&#8221;. A link to this was circulated around the Comp Sci email at Nottingham. A fascinating website. It&#8217;s amazing to see how far we&#8217;ve come in 60 years, but also how sophisticated those early machines already were.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/neilmadden.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/neilmadden.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neilmadden.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neilmadden.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neilmadden.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neilmadden.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neilmadden.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neilmadden.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neilmadden.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neilmadden.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neilmadden.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neilmadden.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=6&subd=neilmadden&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neilmadden.wordpress.com/2008/06/21/60-years-since-the-baby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">neilmadden</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://neilmadden.wordpress.com/2008/05/18/hello-world/</link>
		<comments>http://neilmadden.wordpress.com/2008/05/18/hello-world/#comments</comments>
		<pubDate>Sun, 18 May 2008 03:40:03 +0000</pubDate>
		<dc:creator>Neil Madden</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I thought I&#8217;d get myself a blog, separate from my university pages. Hopefully from now on I can use this as a place to put various essays and ideas that I have that are not directly relevant to my academic career. For now, I need to get ready for my trip to Toulouse on Monday, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=1&subd=neilmadden&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I thought I&#8217;d get myself a blog, separate from my <a title="Neil Madden" href="http://www.cs.nott.ac.uk/~nem/">university</a> pages. Hopefully from now on I can use this as a place to put various essays and ideas that I have that are not directly relevant to my academic career. For now, I need to get ready for my trip to Toulouse on Monday, so not much will appear here for a little while.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/neilmadden.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/neilmadden.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neilmadden.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neilmadden.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neilmadden.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neilmadden.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neilmadden.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neilmadden.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neilmadden.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neilmadden.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neilmadden.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neilmadden.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neilmadden.wordpress.com&blog=3754709&post=1&subd=neilmadden&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://neilmadden.wordpress.com/2008/05/18/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">neilmadden</media:title>
		</media:content>
	</item>
	</channel>
</rss>