<?xml version="1.0"?>
<rss version="2.0">

<channel>
	<title>Planet Wolves</title>
	<link>http://www.wolveslug.org.uk/planet/</link>
	<language>en</language>
	<description>Planet Wolves - http://www.wolveslug.org.uk/planet/</description>

<item>
	<title>Aq: Not blocking the UI in tight JavaScript loops</title>
	<guid>http://www.kryogenix.org/days/?p=1771</guid>
	<link>http://www.kryogenix.org/days/2009/07/03/not-blocking-the-ui-in-tight-javascript-loops</link>
	<description>&lt;p&gt;Everyone&amp;#8217;s written a JavaScript loop that just loops over all the {LIs, links, divs} on a page&lt;span title=&quot;well, everyone who's a JavaScript hacker, and everyone who isn't is clearly unimportant and wrong and not as well-endowed and handsome as us&quot;&gt;*&lt;/span&gt;, and it&amp;#8217;s pretty standard. Something like&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;var lis = document.getElementsByTagName(&quot;li&quot;);
for (var i=0; i&amp;lt;lis.length; i++) { // yes this could be more efficient, don't care
  // do something here to lis[i]
};&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;or, if you&amp;#8217;re using jQuery:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$(&quot;li&quot;).each(function() {
  // do something here to this
});&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This is problematic if there are, say, 2000 LI elements on the page, and what you&amp;#8217;re doing in the loop is semi-intensive (imagine you&amp;#8217;re creating a couple of extra elements to append to each of those LIs, or something like that). The reason this is a problem is that JavaScript is single-threaded. A tight loop like this hangs the browser until it&amp;#8217;s finished, you get the &amp;#8220;this script has been running for a long time&amp;#8221; dialog, and the user interface doesn&amp;#8217;t update while you&amp;#8217;re in this kind of loop. You might think: aha, this will take a long time, so I&amp;#8217;ll have some sort of a progress monitor thing:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;var lis = document.getElementsByTagName(&quot;li&quot;);
for (var i=0; i&amp;lt;lis.length; i++) { // yes this could be more efficient, don't care
  // do something here to lis[i]
  progressMonitor.innerHTML = &quot;processing list item &quot; + i; // fail
};&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;but that doesn&amp;#8217;t work. What happens is that the browser freezes until the loop finishes. Annoying, but there it is.&lt;/p&gt;
&lt;p&gt;One approach to getting around this is with timeouts rather than a &lt;code&gt;for&lt;/code&gt; loop.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;var lis = document.getElementsByTagName(&quot;li&quot;);
var counter = 0;
function doWork() {
  // do something here to lis[i]
  counter += 1;
  progressMonitor.innerHTML = &quot;processing list item &quot; + counter;
  if (counter &amp;lt; lis.length) {
    setTimeout(doWork, 1);
  }
};
setTimeout(doWork, 1);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;so you move the bit of work you need to do into a function, and that function re-schedules itself repeatedly, using &lt;code&gt;setTimeout&lt;/code&gt;. This time, your user interface will indeed update, and your progress monitor will show where you&amp;#8217;re up to. There are a couple of caveats with this: it&amp;#8217;ll take a bit longer, and you&amp;#8217;re no longer guaranteed to have things processed in the order you expect, but they&amp;#8217;re minor issues.&lt;/p&gt;
&lt;p&gt;For doing this in jQuery, a tiny plugin:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;jQuery.eachCallback = function(arr, process, callback) {
    var cnt = 0;
    function work() {
        var item = arr[cnt];
        process.apply(item);
        callback.apply(item, [cnt]);
        cnt += 1;
        if (cnt &amp;lt; arr.length) {
            setTimeout(work, 1);
        }
    }
    setTimeout(work, 1);
};
jQuery.fn.eachCallback = function(process, callback) {
    var cnt = 0;
    var jq = this;
    function work() {
        var item = jq.get(cnt);
        process.apply(item);
        callback.apply(item, [cnt]);
        cnt += 1;
        if (cnt &amp;lt; jq.length) {
            setTimeout(work, 1);
        }
    }
    setTimeout(work, 1);
};&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and now you can do &lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$.eachCallback(someArray, function() {
  // &quot;this&quot; is the array item, just like $.each
}, function(loopcount) {
  // here you get to do some UI updating
  // loopcount is how far into the loop you are
});

$(&quot;li&quot;).eachCallback(function() {
  // do something to this
}, function(loopcount) {
  // update the UI
});&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Not always a useful technique, but when you need it, you need it.&lt;/p&gt;</description>
	<pubDate>Fri, 03 Jul 2009 00:55:54 +0000</pubDate>
</item>
<item>
	<title>David Goodwin: Timberhonger 10k Race - June 2009</title>
	<guid>http://codepoets.co.uk/525 at http://codepoets.co.uk</guid>
	<link>http://codepoets.co.uk/timberhonger-10k-race-june-2009</link>
	<description>&lt;p&gt;I came 29th - with a time of 42 minutes 50 seconds - it was pretty hot, and I was therefore quite pleased with my time - which was better than last year.&lt;/p&gt;
&lt;p&gt;thanks to the organisers; more info &lt;a href=&quot;http://www.timberhonger10k.co.uk/&quot;&gt;here&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Mon, 29 Jun 2009 06:38:44 +0000</pubDate>
</item>
<item>
	<title>Peter Cannon: Sunday Update</title>
	<guid>http://cannon-linux.co.uk/blogs/general-stuff/68-howls-in-the-dark/258-sunday-update</guid>
	<link>http://cannon-linux.co.uk/blogs/general-stuff/68-howls-in-the-dark/258-sunday-update</link>
	<description>Its been a while since I posted anything here,  to be honest I've been really busy what with LugRadio Live stuff my other blog on http://www.archlinux.me/dick_turpin Micro Blogging not to mention IRC.&lt;br /&gt;&lt;br /&gt;Now I'm working on yet another project which is going to be awesome and is to do with AcrhLinux. I cant say too much yet but most of the stuff is in place its just a case of putting all together.</description>
	<pubDate>Sun, 28 Jun 2009 09:56:08 +0000</pubDate>
	<author>joomla-admin@cannon-linux.co.uk (Peter Cannon)</author>
</item>
<item>
	<title>Jono Bacon: Tracking Ubuntu Community Issues</title>
	<guid>http://www.jonobacon.org/?p=1748</guid>
	<link>http://www.jonobacon.org/2009/06/27/tracking-ubuntu-community-issues/</link>
	<description>&lt;p class=&quot;first-child &quot;&gt;&lt;span title=&quot;R&quot; class=&quot;cap&quot;&gt;&lt;span&gt;R&lt;/span&gt;&lt;/span&gt;ecently &lt;a href=&quot;http://www.geekosophical.net/?p=273&quot;&gt;Melissa wrote a post&lt;/a&gt; about how we track problems with community, and how she feels that blogging about community problems is a reasonable approach. As part of her post she says:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Blogging about problems we see in our community should be seen as a &lt;em&gt;good&lt;/em&gt; thing, not a bad thing. Why? Because this blogging is action. The alternative is no action, and that is much worse.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Firstly, I entirely agree with Melissa that we need a better way to track issues with community, which I will get to a little later in this post. While blogging has become a tremendous tool in online communities and enabled community members to have a platform in which to share their opinions, ideas, perspectives and achievements, I don&amp;#8217;t feel blogging is the most suitable means of tracking community issues, improvements and regressions.&lt;/p&gt;

&lt;p&gt;Blog entries are single shot capsules of feedback, wisdom and opinion ejected onto the Internet and often aggregated in places such as &lt;a href=&quot;http://planet.ubuntu.com/&quot;&gt;Planet Ubuntu&lt;/a&gt;. They are typically highly personalized, lurking in personally-driven locations (such as a homepage or personal blog), have no facilities for applying status, assignment, milestones or priority, provide little or no means to subscribe to specific problems, and lack facilities for communicating when a problem has been solved: if the issue is resolved the blog is sometimes updated and sometimes not.&lt;/p&gt;

&lt;p&gt;While a blog entry can express a concern about something, they are not really useful for finding solutions to the problem. Notification of a problem is one tiny element in the issue-tracking process and although blogs can indeed be used for this, it is equivalent to asking your neighbour to move his car by opening your window and yelling out through a loudspeaker. Aside from more elegant and better directed methods of communicating that a problem exists, we ideally want to attach problem-solving capabilities to the reporting of an issue: I care only a small amount about hearing the problem, what I am really interested in is collaborating with that person and others in trying to find a solution. Blog entries are not really cut out for that kind of collaboration.&lt;/p&gt;

&lt;p&gt;Bugs are though.&lt;/p&gt;

&lt;p&gt;Bug reporting systems were designed to allow people to collaborate around defects in software and include facilities to identify, track, prioritize, milestone, subscribe and share information. Although everyone complains about bug reporting systems, they are generally productive in finding problems, developing solutions and having visibility over the lifespan of a problem.&lt;/p&gt;

&lt;p&gt;I think it could be useful for us to use Launchpad for filing bugs for community, process and governance issues. To this end I have registered the &lt;a href=&quot;https://edge.launchpad.net/ubuntu-community&quot;&gt;Ubuntu Community project&lt;/a&gt; in Launchpad which we can use for tracking these kinds of bugs. There are some benefits to this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Visibility - this is going to help everyone keep visible on community issues. On a slightly selfish note, this will also help me keep visibility over issues for me and my team at Canonical. This should mean more bang for your buck with your friendly horsemen.&lt;/li&gt;
&lt;li&gt;Tracking / Triage - this will make tracking, prioritization, feedback and potential milestoning much easier.&lt;/li&gt;
&lt;li&gt;Assignment - this improved visibility will help us assign bugs better to the right people.&lt;/li&gt;
&lt;li&gt;Familiar - many of us live and breath bug reports: the interface is part of the furniture. No new systems to learn, no random blog entries to keep an eye on.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Before I wrap up, there is one simple caveat here. I have literally just set up the project this afternoon and we will need some documentation, guidance and best practise written and shared around these bugs, and this will take a little while to be developed. As such, you may have some questions which we will need to document the answers to over the coming weeks. In the meantime we can work with existing bugs and file new bugs there. Feedback on this is of course welcome!&lt;/p&gt;</description>
	<pubDate>Sat, 27 Jun 2009 00:57:06 +0000</pubDate>
</item>
<item>
	<title>Aq: Why not to use domain sockets for a desktop CouchDB</title>
	<guid>http://www.kryogenix.org/days/?p=1769</guid>
	<link>http://www.kryogenix.org/days/2009/06/26/why-not-to-use-domain-sockets-for-a-desktop-couchdb</link>
	<description>&lt;p&gt;The obvious idea that pops into everyone&amp;#8217;s head, including mine, when talking about having a running CouchDB that&amp;#8217;s specific to me is: why use TCP for it? Why not just use a unix domain socket? Then you don&amp;#8217;t have to worry about other people on the same machine trying to access it. Everyone thinks this, and on balance it&amp;#8217;s not the way to go. This is why.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;You can&amp;#8217;t browse to a unix domain socket in your web browser. This, by itself, is enough to kill the idea for me. I genuinely love the idea that applications store their data and then I can see that data in my browser using Futon, the CouchDB web UI. I can edit that data. That&amp;#8217;s fantastic. Using unix sockets would break that.&lt;/li&gt;
&lt;li&gt;One other nice thing about CouchDB is that you can do replication between two different databases; I like this because I can have the same data on my laptop and my netbook if I want. That doesn&amp;#8217;t work if you use domain sockets, because the two CouchDBs can&amp;#8217;t see one another.&lt;/li&gt;
&lt;li&gt;As far as I can tell, Mochiweb, the underlying Erlang HTTP library that Couch uses, doesn&amp;#8217;t do domain sockets anyway. (Obviously fixing this is only a Small Matter Of Programming.)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;This has been a public service broadcast on behalf of the Write These Reasons Down So I Have Them To Hand Next Time Someone Suggests Unix Domain Sockets party.&lt;/p&gt;</description>
	<pubDate>Fri, 26 Jun 2009 09:47:28 +0000</pubDate>
</item>
<item>
	<title>Jono Bacon: VMWare: Rock and Roll</title>
	<guid>http://www.jonobacon.org/?p=1746</guid>
	<link>http://www.jonobacon.org/2009/06/25/vmware-rock-and-roll/</link>
	<description>&lt;p class=&quot;first-child &quot;&gt;&lt;span title=&quot;I&quot; class=&quot;cap&quot;&gt;&lt;span&gt;I&lt;/span&gt;&lt;/span&gt;n a world where most companies would give their hind teeth to get your email address into their marketing database, it was refreshing to see this from &lt;a href=&quot;http://vmware.com/&quot;&gt;VMWare&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Thank you for your past interest in VMware. As part of our routine scheduled maintenance, we will be removing email addresses and associated subscription information from our marketing database for contacts who have not updated their profile and/or subscription preferences within the last 6 months.&lt;/p&gt;
  
  &lt;p&gt;If you would like to remain on our mailing list and wish to receive updates on news, specific solutions, offers and much more, then please update your current profile.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is great: it clearly states that if you are not engaging with VMWare, they won&amp;#8217;t spam you. Good work. Let&amp;#8217;s see more of this from other companies.&lt;/p&gt;</description>
	<pubDate>Thu, 25 Jun 2009 00:34:09 +0000</pubDate>
</item>
<item>
	<title>Jono Bacon: Ubuntu Free Culture Showcase Deadline Draws Near</title>
	<guid>http://www.jonobacon.org/?p=1740</guid>
	<link>http://www.jonobacon.org/2009/06/24/ubuntu-free-culture-showcase-deadline-draws-near/</link>
	<description>&lt;p class=&quot;first-child &quot;&gt;&lt;span title=&quot;J&quot; class=&quot;cap&quot;&gt;&lt;span&gt;J&lt;/span&gt;&lt;/span&gt;ust a quick note to you lovely folks that the &lt;a href=&quot;https://wiki.ubuntu.com/UbuntuFreeCultureShowcase&quot;&gt;Ubuntu Free Culture Showcase&lt;/a&gt;, a competition to have your audio, video or imagery included on millions of Ubuntu systems, has it&amp;#8217;s deadline drawing near on &lt;em&gt;16th July 2009&lt;/em&gt;. If you know some creative types who you think would love the opportunity to have their art on all those delicious Ubuntu systems, point their beady eyes in the direction of &lt;a href=&quot;https://wiki.ubuntu.com/UbuntuFreeCultureShowcase&quot;&gt;this page&lt;/a&gt; and tell them to get cracking. &lt;img src=&quot;http://www.jonobacon.org/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:-)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;

&lt;p&gt;Also, thanks to our &lt;a href=&quot;http://creativecommons.org/weblog/entry/15420&quot;&gt;friends at the Creative Commons for blogging the competition&lt;/a&gt;.&lt;/p&gt;</description>
	<pubDate>Wed, 24 Jun 2009 14:03:09 +0000</pubDate>
</item>
<item>
	<title>Jono Bacon: Learn How To Run a Jam</title>
	<guid>http://www.jonobacon.org/?p=1738</guid>
	<link>http://www.jonobacon.org/2009/06/24/learn-how-to-run-a-jam/</link>
	<description>&lt;p class=&quot;first-child &quot;&gt;&lt;span title=&quot;R&quot; class=&quot;cap&quot;&gt;&lt;span&gt;R&lt;/span&gt;&lt;/span&gt;ecently we announced to epic &lt;a href=&quot;https://wiki.ubuntu.com/UbuntuGlobalJam&quot;&gt;Ubuntu Global Jam&lt;/a&gt; that is set to go down from &lt;strong&gt;2nd - 4th Oct 2009&lt;/strong&gt;. In this event hundreds of Ubuntu fans and contributors get together in their local area to work on Ubuntu, get to know each other and just have a big &amp;#8216;ol barrel of fun. With the scheme &lt;a href=&quot;http://www.jonobacon.org/2009/06/16/the-ubuntu-global-jam/&quot;&gt;recently announced&lt;/a&gt; we are still building up the &lt;a href=&quot;https://wiki.ubuntu.com/UbuntuGlobalJam/Events&quot;&gt;list of events&lt;/a&gt; and are looking for you wonderful people to start organizing events. Sound interesting but don&amp;#8217;t know how?&lt;/p&gt;

&lt;p&gt;Well, I have good news.&lt;/p&gt;

&lt;p&gt;We have organized a number of tuition sessions and events that will help you get started organizing a rocking Ubuntu Global Jam event. Here&amp;#8217; the skinny:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Live Video Tutorial&lt;/strong&gt; - Mon 29th June @ 6pm UTC - I will be hosting a live video tutorial with a live Q+A. You can watch it &lt;a href=&quot;http://www.ustream.tv/channel/at-home-with-jono-bacon&quot;&gt;here&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;IRC Tuition&lt;/strong&gt; - Jorge Castro will be running some IRC tuition sessions on these dates:

&lt;ul&gt;
&lt;li&gt;June 27 - 1500UTC - #ubuntu-classroom&lt;/li&gt;
&lt;li&gt;Sept 4 - 2100UTC - #ubuntu-classroom&lt;/li&gt;
&lt;li&gt;Sept 18 - 1500UTC - #ubuntu-classroom&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So there you have it, a good solid toolkit for how to get started. Go &lt;em&gt;learn&lt;/em&gt;, &lt;em&gt;organize&lt;/em&gt; and &lt;em&gt;have a great time&lt;/em&gt;. If you need further help, be sure to ask the rather nice folks in &lt;code&gt;#ubuntu-locoteams&lt;/code&gt; on Freenode. &lt;img src=&quot;http://www.jonobacon.org/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:-)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;UPDATE&lt;/strong&gt;: I have needed to re-schedule the video tutorial until Monday 29th June 2009 at the same time (6pm UTC).&lt;/p&gt;</description>
	<pubDate>Wed, 24 Jun 2009 05:58:06 +0000</pubDate>
</item>
<item>
	<title>David Goodwin: Go away spammers</title>
	<guid>http://codepoets.co.uk/524 at http://codepoets.co.uk</guid>
	<link>http://codepoets.co.uk/go-away-spammers</link>
	<description>&lt;p&gt;Since I've been messing around with this drupal site, and upgrading/downgrading etc, I seem to have lost my spam protection/armour. Since Saturday, the approval queue today (48 hours later) contained 1500+ comment spam things.&lt;/p&gt;
&lt;p&gt;Like FFS... I know you're not reading this M[rs]{1} Spammer, but really - just don't bother trying. I won't let you get through.&lt;/p&gt;
&lt;p&gt;I've now installed some ASCII art anti-spam stuff, hopefully this will work better than whatever chocolate teapot there was before.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;DELETE FROM comments WHERE status = 1&lt;/code&gt;&lt;/p&gt;</description>
	<pubDate>Mon, 22 Jun 2009 14:05:40 +0000</pubDate>
</item>
<item>
	<title>David Goodwin: iphone hippy geek freak</title>
	<guid>http://codepoets.co.uk/523 at http://codepoets.co.uk</guid>
	<link>http://codepoets.co.uk/iphone-hippy-geek-freak</link>
	<description>&lt;p&gt;On Friday, I bought an iphone 3gs, it comes with a 24 month sentance to pay &lt;a href=&quot;http://www.o2.co.uk&quot;&gt;o2&lt;/a&gt; a load of money.&lt;/p&gt;
&lt;p&gt;On the positive side of things ....&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It's easy to use and has an excellent UI&lt;/li&gt;
&lt;li&gt;Great for passing the time&lt;/li&gt;
&lt;li&gt;Using &lt;a href=&quot;http://trails.lamouroux.de/&quot;&gt;Trails&lt;/a&gt; I can log where I run/walk etc, so perhaps I'll finally be of some use to OpenStreetMap (e.g. I logged Sunday's run which gave me times/speeds/elevations etc)&lt;/li&gt;
&lt;li&gt;Means I'm no longer ever away from work (is this good?)&lt;/li&gt;
&lt;li&gt;It's dead easy to take and upload pictures to the internet (flickr, facebook, email etc etc)&lt;/li&gt;
&lt;li&gt;It can also take and upload videos (youtube) in one simple motion&lt;/li&gt;
&lt;li&gt;It's very easy to install additional stuff (e.g. &lt;a href=&quot;http://iconfactory.com/software/twitterrific&quot;&gt;Twitterific&lt;/a&gt;, Bejewlled 2, Fring, Simcity, SpaceX, BBC Iplayer, Skype, Remote, Sudoku, Traffic Info and other crap).&lt;/li&gt;
&lt;li&gt;It supports even my mail server configuration with no issue&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Bad points :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Cost&lt;/li&gt;
&lt;li&gt;Apple Monopoly++&lt;/li&gt;
&lt;li&gt;Can't run stuff in the background (e.g. I can't keep an instant messenger running while browsing the web)&lt;/li&gt;
&lt;li&gt;Battery life - it will last a day... but if you plan to watch video on it for more than a few hours, or spend sometime browing the web - you'll probably need a charger)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Not sure about :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Voice commands - it started dialling a taxi company when I asked it to phone Kat....&lt;/li&gt;
&lt;/ul&gt;</description>
	<pubDate>Mon, 22 Jun 2009 13:56:15 +0000</pubDate>
</item>
<item>
	<title>Aq: Using CouchDB to store contacts</title>
	<guid>http://www.kryogenix.org/days/?p=1761</guid>
	<link>http://www.kryogenix.org/days/2009/06/19/using-couchdb-to-store-contacts</link>
	<description>&lt;p&gt;One of the things I&amp;#8217;m looking at is using CouchDB to store data for applications on your desktop as part of the &lt;a href=&quot;http://blogs.gnome.org/rodrigo/2009/06/03/desktop-datasettings-replication/&quot;&gt;desktop data/settings&lt;/a&gt; idea that Rodrigo&amp;#8217;s already written about. Obviously one of the great things here is that applications can collaborate on data stored in there; obviously one of the pre-requisites for collaboration is that everyone&amp;#8217;s speaking the same language! So various people working on a number of different mail clients for the Linux desktop and so on are working out what the schema for contact records in CouchDB should look like.&lt;/p&gt;
&lt;p&gt;Being able to browse around your database with a web browser is dead handy for writing this sort of thing, I have to say :-)&lt;/p&gt;
&lt;p&gt;At the moment, this is the sort of direction we&amp;#8217;re heading in. A CouchDB document is JSON, and an example contact looks like this:&lt;/p&gt;
&lt;pre&gt;{
   &quot;_id&quot;: &quot;362cbeae5f408d6863bb70892d5ba345&quot;,
   &quot;_rev&quot;: &quot;1-182987891&quot;,

   &quot;record_type&quot;: &quot;http://example.com/contact-record&quot;,
   &quot;record_type_version&quot;: &quot;1.0&quot;,

   &quot;first_name&quot;: &quot;Joshua&quot;,
   &quot;last_name&quot;: &quot;Molby&quot;,
   &quot;birth_date&quot;: &quot;1945-07-04&quot;,

   &quot;addresses&quot;: {
       &quot;85cf156f-fcf6-4901-9201-82ee90859213&quot;: {
           &quot;city&quot;: &quot;Bedford&quot;,
           &quot;state&quot;: &quot;&quot;,
           &quot;description&quot;: &quot;home&quot;,
           &quot;country&quot;: &quot;Scotland&quot;,
           &quot;postalcode&quot;: &quot;cw12 3hi&quot;,
           &quot;address1&quot;: &quot;Nicol Street&quot;,
           &quot;address2&quot;: &quot;&quot;,
           &quot;pobox&quot;: &quot;&quot;
       },
       &quot;d20f7364-e80b-47a2-a7e7-0677cb293745&quot;: {
           &quot;city&quot;: &quot;Bedford&quot;,
           &quot;state&quot;: &quot;&quot;,
           &quot;description&quot;: &quot;work&quot;,
           &quot;country&quot;: &quot;England&quot;,
           &quot;postalcode&quot;: &quot;dk12 3av&quot;,
           &quot;address1&quot;: &quot;Rush Street&quot;,
           &quot;address2&quot;: &quot;&quot;,
           &quot;pobox&quot;: &quot;&quot;
       }
   },
   &quot;phone_numbers&quot;: {
       &quot;f0bac2a0-83a3-46f9-b079-d41533b87391&quot;: {
           &quot;priority&quot;: 0,
           &quot;number&quot;: &quot;+84 63 6220 9178&quot;,
           &quot;description&quot;: &quot;work&quot;
       },
       &quot;cf01fc9c-703b-4ae4-b303-fcc6f8ce5a53&quot;: {
           &quot;priority&quot;: 0,
           &quot;number&quot;: &quot;+91 99 6920 2837&quot;,
           &quot;description&quot;: &quot;home&quot;
       },
       &quot;f0c05bf4-de4a-48f2-bbaf-f9698e52d491&quot;: {
           &quot;priority&quot;: 0,
           &quot;number&quot;: &quot;+97 52 9211 6455&quot;,
           &quot;description&quot;: &quot;other&quot;
       }
   },
   &quot;email_addresses&quot;: {
       &quot;6e3178d8-fee6-45b1-b95a-2c76be090e2b&quot;: {
           &quot;description&quot;: &quot;home&quot;,
           &quot;address&quot;: &quot;Joshua1.Molby@uck.com&quot;
       },
       &quot;adb1fc2a-0468-4deb-bb6c-974db23ef7fd&quot;: {
           &quot;description&quot;: &quot;work&quot;,
           &quot;address&quot;: &quot;Joshua1.Molby@vkc.com&quot;
       }
   },
   &quot;application_annotations&quot;: {
       &quot;Funambol&quot;: {
             &quot;jobTitle&quot;: &quot;Director&quot;,
             &quot;company&quot;: &quot;ACME Ltd&quot;
       }
   }
}&lt;/pre&gt;
&lt;p&gt;Fields in this are as follows:&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;CouchDB fields&lt;/dt&gt;
&lt;dd&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;code&gt;_id&lt;/code&gt;&lt;/dt&gt;
&lt;dd&gt;Unique document ID, provided by CouchDB (or you can choose it explicitly if you want)&lt;/dd&gt;
&lt;dt&gt;&lt;code&gt;_rev&lt;/code&gt;&lt;/dt&gt;
&lt;dd&gt;revision number for this document. Managed by CouchDB.&lt;/dd&gt;
&lt;/dl&gt;
&lt;/dd&gt;
&lt;dt&gt;Contact schema fields&lt;/dt&gt;
&lt;dd&gt;The contact schema is the list of fields that are stored for a contact. Since this is a shared schema, everyone can rely on it. Fields that aren&amp;#8217;t in this list can be stored by applications in &lt;code&gt;application_annotations&lt;/code&gt;, if an application cares about extra stuff.&lt;/dd&gt;
&lt;dd&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;first_name&lt;/code&gt; (string)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;last_name&lt;/code&gt; (string)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;birth_date&lt;/code&gt; (string, &amp;#8220;YYYY-MM-DD&amp;#8221;)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;addresses&lt;/code&gt; (MergeableSet of &amp;#8220;address&amp;#8221; dictionaries)
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;city&lt;/code&gt; (string)
      &lt;/li&gt;
&lt;li&gt;&lt;code&gt;address1&lt;/code&gt; (string)
      &lt;/li&gt;
&lt;li&gt;&lt;code&gt;address2&lt;/code&gt; (string)
      &lt;/li&gt;
&lt;li&gt;&lt;code&gt;pobox&lt;/code&gt; (string)
      &lt;/li&gt;
&lt;li&gt;&lt;code&gt;state&lt;/code&gt; (string)
      &lt;/li&gt;
&lt;li&gt;&lt;code&gt;country&lt;/code&gt; (string)
      &lt;/li&gt;
&lt;li&gt;&lt;code&gt;postalcode&lt;/code&gt; (string)
      &lt;/li&gt;
&lt;li&gt;&lt;code&gt;description&lt;/code&gt; (string, e.g., &amp;#8220;Home&amp;#8221;)
      &lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;code&gt;email_addresses&lt;/code&gt; (MergeableSet of &amp;#8220;emailaddress&amp;#8221; dictionaries)
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;address&lt;/code&gt; (string),
      &lt;/li&gt;
&lt;li&gt;&lt;code&gt;description&lt;/code&gt; (string)
      &lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;code&gt;phone_numbers&lt;/code&gt; (MergeableSet of &amp;#8220;phone number&amp;#8221; dictionaries)
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;number&lt;/code&gt; (string)
      &lt;/li&gt;
&lt;li&gt;&lt;code&gt;description&lt;/code&gt; (string)
      &lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/dd&gt;
&lt;dt&gt;Basic &amp;#8220;record schema&amp;#8221; fields&lt;/dt&gt;
&lt;dd&gt;The record schema is the basic format we&amp;#8217;re talking about for storing &lt;em&gt;any&lt;/em&gt; data in CouchDB; it&amp;#8217;s a couple of fields that are in every record that everyone can rely on.&lt;/dd&gt;
&lt;dd&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;code&gt;record_type&lt;/code&gt;&lt;/dt&gt;
&lt;dd&gt;A URL which is a unique identifier for this type of record. It would be good if that URL had a page at it describing the record schema, but (importantly) this is not a reference to some sort of JSON DTD or anything&lt;/dd&gt;
&lt;dt&gt;&lt;code&gt;record_type_version&lt;/code&gt;&lt;/dt&gt;
&lt;dd&gt;Version of this record type schema (so you can make updated versions if you want to make changes to field names, etc)&lt;/dd&gt;
&lt;dt&gt;&lt;code&gt;application_annotations&lt;/code&gt;&lt;/dt&gt;
&lt;dd&gt;
    The &lt;code&gt;application_annotations&lt;/code&gt; section of the document is where apps put their own data that isn&amp;#8217;t part of the schema. For example, Funambol knows about &amp;#8220;company&amp;#8221; for a contact, but the contact schema doesn&amp;#8217;t directly include that field. So Funambol stores it on the contact record in a Funambol-specific section, so it can happily get it back later. If it turns out that everyone&amp;#8217;s storing their own version of the same field, then that field is probably a good candidate for being in the schema (making this sort of change is what the &lt;code&gt;record_type_version&lt;/code&gt; field is for :))
&lt;/dd&gt;
&lt;/dl&gt;
&lt;/dd&gt;
&lt;/dl&gt;
&lt;p&gt;Quick script to drop contacts in this schema into a CouchDB database: &lt;a href=&quot;http://www.kryogenix.org/code/createCouchContacts.py.txt&quot;&gt;createCouchContacts.py&lt;/a&gt;. Requires python-couchdb (and Couch, obviously). &lt;/p&gt;</description>
	<pubDate>Fri, 19 Jun 2009 11:51:20 +0000</pubDate>
</item>
<item>
	<title>Rob Annable: Links for 2009-06-18 [del.icio.us]</title>
	<guid>http://del.icio.us/eversion/linklog#2009-06-18</guid>
	<link>http://feedproxy.google.com/~r/no2self/~3/rIr8NMt2sOg/linklog</link>
	<description>&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://schulzeandwebb.com/blog/2009/06/17/maps-as-service-design-the-incidental/&quot;&gt;Pulse Laser: Maps as service design: The Incidental&lt;/a&gt;&lt;br /&gt;
&amp;#039;...One thing that’s very interesting to us that is using this rapidly-produced thing then becomes a ’social object’: creating conversations, collecting scribbles, instigating adventures – which then get collected and redistributed...&amp;#039;&lt;/li&gt;
&lt;/ul&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/no2self/~4/rIr8NMt2sOg&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 19 Jun 2009 07:00:00 +0000</pubDate>
</item>
<item>
	<title>David Goodwin: Marin Rough Ride 2009 - Kington Mountain Biking</title>
	<guid>http://codepoets.co.uk/522 at http://codepoets.co.uk</guid>
	<link>http://codepoets.co.uk/marin-rough-ride-2009-kington</link>
	<description>&lt;p&gt;Sunday saw me cycling 75km across random moorland and hills around Kington on the &lt;a href=&quot;http://www.roughride.co.uk&quot;&gt;Rough Ride&lt;/a&gt;. I found it slow going, a little too hot - but fun (looking back at least, during the event I was happily cursing to myself and listening to &lt;a href=&quot;http://www.djsteveboy.com&quot;&gt;Groove Electric&lt;/a&gt;). For the first time ever I nearly passed out from pushing myself too hard near the finish (I did the last 5k as fast as I could, overtook lots of people - but was nearly thwarted by a short uphill to get to the finish, which nearly finished me off!). Annoyingly I wasn't wearing my heart monitor so I don't have any interesting numbers to look at.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.muddlingthroughmotherhood.co.uk&quot;&gt;Kat&lt;/a&gt; &amp;amp; Rowan had been waiting at the finish line for me - but they'd given up by the time I got back (it took me about 7 and a half hours :-( , I'd guessed before hand that it would take somewhere between 4 and 6).&lt;/p&gt;
&lt;p&gt;Thankfully the rehydration salts I had seemed to work really well, and although I had a slight headache most of the time, it was no where near as bad as previous years. &lt;/p&gt;
&lt;p&gt;I took some &lt;a href=&quot;http://pictures.codepoets.co.uk/2009_06_14&quot;&gt;random photos on the way around&lt;/a&gt;- not many feature other riders, but they might give some idea as to the scenery and terrain. I didn't take any pictures in the last 10k as I was too busy trying to go quicker.... &lt;/p&gt;
&lt;p&gt;Anyway, as a summary, it was an well organised event (as always) and the route had changed sufficiently from the last time I did it to stop me knowing what was around the next corner. Perhaps obviously, there was bugger all phone signal on 99% of the course, so the various rude text messages I sent probably never got through the &quot;Hill/Sheep firewall&quot;.&lt;/p&gt;
&lt;p&gt;Afterwards, we went to the &lt;a href=&quot;http://www.harpinnradnor.co.uk/&quot;&gt;Harp at Old Radnor&lt;/a&gt;, where we had a really nice meal (even Rowan liked it) (thanks for paying Caroline!)&lt;/p&gt;</description>
	<pubDate>Wed, 17 Jun 2009 13:51:52 +0000</pubDate>
</item>
<item>
	<title>David Goodwin: fscking drupal</title>
	<guid>http://codepoets.co.uk/521 at http://codepoets.co.uk</guid>
	<link>http://codepoets.co.uk/node/521</link>
	<description>&lt;p&gt;Well, I thought this site had upgraded fine without problem to Drupal 6. Wasn't I wrong.&lt;/p&gt;
&lt;p&gt;The taxonomy was totally lost, and I wasn't able to make new posts (stupid failure to write code that works on a database other than MySQL)... *grr*&lt;/p&gt;
&lt;p&gt;So I've now rolled back to Drupal 5. If I could I'd move to wordpress, but I think that would be too difficult as I'm using PostgreSQL.&lt;/p&gt;
&lt;p&gt;Now, perhaps - finally - I can make my blog post about the Marin Rough Ride 2009...&lt;/p&gt;</description>
	<pubDate>Wed, 17 Jun 2009 13:41:58 +0000</pubDate>
</item>
<item>
	<title>Jono Bacon: The Ubuntu Global Jam</title>
	<guid>http://www.jonobacon.org/?p=1729</guid>
	<link>http://www.jonobacon.org/2009/06/16/the-ubuntu-global-jam/</link>
	<description>&lt;p class=&quot;first-child &quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3035/2438530549_c8631c259e_o.png&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;span title=&quot;I&quot; class=&quot;cap&quot;&gt;&lt;span&gt;I&lt;/span&gt;&lt;/span&gt;n the last few cycles we have organized and run an event called the &lt;em&gt;Ubuntu Global Bug Jam&lt;/em&gt;. The idea was simple: encourage our awesome global Ubuntu community to get together in the same room to find, triage and fix bugs. And they did, all over the world, as can be seen &lt;a href=&quot;http://www.jonobacon.org/2009/02/24/ubuntu-global-bug-jam-success/&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Well, at the recent &lt;a href=&quot;https://wiki.ubuntu.com/UDS&quot;&gt;Ubuntu Developer Summit&lt;/a&gt; we were having a good &amp;#8216;ol chinwag about the Ubuntu Global Bug Jam and we came to an important and sage conclusion:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Why limit the event to just bugs?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;As such, I am proud to announce &lt;a href=&quot;https://wiki.ubuntu.com/UbuntuGlobalJam&quot;&gt;Ubuntu Global Jam&lt;/a&gt; - &lt;em&gt;more jam but with the same great taste!&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Based upon all the feedback from the UDS session we have scheduled the Ubuntu Global Jam from the &lt;strong&gt;2nd - 4th October 2009&lt;/strong&gt;. To make the event as simple and accessible as possible, we have picked four topic areas and we are encouraging you lovely people to organize an event with one or more of them:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Bugs&lt;/strong&gt; - finding, triaging and fixing bugs.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Testing&lt;/strong&gt; - testing the new release and reporting your feedback.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Documentation&lt;/strong&gt; - writing documentation about how to use Ubuntu and how to join the community.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Translations&lt;/strong&gt; - translating Ubuntu and helping to make it available in everyone&amp;#8217;s local language.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;With four primary methods of getting involved, there is something for &lt;em&gt;everyone&lt;/em&gt; in this rocking global event.&lt;/p&gt;

&lt;p&gt;One thing that I am keen that everyone remembers: you don&amp;#8217;t have to be an official developer, packager or programmer to take part in the Ubuntu Global Jam. Also, lets not forget that Ubuntu Global Bug Jam events are a fantastic place to learn and improve your skills: you can sit next to someone who can show you how to do something or explain something in more detail.&lt;/p&gt;

&lt;p&gt;To get this campaign off on the right foot, we have organized an IRC meeting to discuss the event and how can get as many people involved as possible. Here&amp;#8217;s the skinny:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;WHEN&lt;/strong&gt; - Third Thursday of every month (next meeting is Thurs 18th June 2009) at 6pm UTC.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;WHERE&lt;/strong&gt; - &lt;code&gt;#ubuntu-meeting&lt;/code&gt; on &lt;a href=&quot;http://freenode.net/&quot;&gt;Freenode&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If this is all sounding right up your street and you fancy organizing an event, go and read &lt;a href=&quot;https://wiki.ubuntu.com/Jams&quot;&gt;this page&lt;/a&gt; and then add your event to &lt;a href=&quot;https://wiki.ubuntu.com/UbuntuGlobalJam/Events&quot;&gt;this page&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Rock and roll: let&amp;#8217;s make this one to remember. Start your engines, folks&amp;#8230;&lt;/p&gt;</description>
	<pubDate>Tue, 16 Jun 2009 00:25:44 +0000</pubDate>
</item>
<item>
	<title>Jono Bacon: Art Of Community Reviews</title>
	<guid>http://www.jonobacon.org/?p=1727</guid>
	<link>http://www.jonobacon.org/2009/06/15/art-of-community-reviews/</link>
	<description>&lt;p class=&quot;first-child &quot;&gt;&lt;span title=&quot;R&quot; class=&quot;cap&quot;&gt;&lt;span&gt;R&lt;/span&gt;&lt;/span&gt;ecently I have been sending the completed &lt;a href=&quot;http://www.artofcommunityonline.org/&quot;&gt;Art Of Community&lt;/a&gt; manuscript out to a number of people who are well respected in various communities to get there feedback on the completed book. Some of these quotes are &lt;a href=&quot;http://www.artofcommunityonline.org/reviews/&quot;&gt;here&lt;/a&gt;. Wow.&lt;/p&gt;</description>
	<pubDate>Mon, 15 Jun 2009 19:59:26 +0000</pubDate>
</item>
<item>
	<title>Rob Annable: Links for 2009-06-14 [del.icio.us]</title>
	<guid>http://del.icio.us/eversion/linklog#2009-06-14</guid>
	<link>http://feedproxy.google.com/~r/no2self/~3/7uq8DcLoIUs/linklog</link>
	<description>&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://proboscis.org.uk/1207/dana-centre-demo/&quot;&gt;Sensory Threads demonstration - Proboscis&lt;/a&gt;&lt;br /&gt;
&amp;#039;...demo at the London Science Museum’s Dana Centre on June 23rd 2009 as part of the Surface Tension event. We will be demonstrating the prototype Wearable Sensors and the Rumbler and inviting participants to test out the system during the day...&amp;#039;&lt;/li&gt;
&lt;/ul&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/no2self/~4/7uq8DcLoIUs&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 15 Jun 2009 07:00:00 +0000</pubDate>
</item>
<item>
	<title>Adam Sweet: Dark Days, Baby</title>
	<guid>http://blog.adamsweet.org/?p=363</guid>
	<link>http://blog.adamsweet.org/?p=363</link>
	<description>It's been a difficult time recently, a lot has happened and you'll have noticed my tail off in blogging. In the last few months I got a cat, bought a house, broke up with my girlfriend, made my first Ebay sale, thought I was cracking up, didn't crack up, thought ...</description>
	<pubDate>Sun, 14 Jun 2009 00:57:06 +0000</pubDate>
</item>
<item>
	<title>Adam Sweet: New Hardware</title>
	<guid>http://blog.adamsweet.org/?p=358</guid>
	<link>http://blog.adamsweet.org/?p=358</link>
	<description>I was bored this evening and I started playing around with some stuff I had lying around, like the USB Missile Launcher I bought in 2007, known as a Dream Cheeky Missle Launcher, for which I never found a GUI control tool under Linux. I never got that guy's code ...</description>
	<pubDate>Sat, 13 Jun 2009 23:57:12 +0000</pubDate>
</item>
<item>
	<title>Jono Bacon: Community Leadership Summit Update</title>
	<guid>http://www.jonobacon.org/?p=1725</guid>
	<link>http://www.jonobacon.org/2009/06/13/community-leadership-summit-update/</link>
	<description>&lt;p class=&quot;first-child &quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3335/3432437765_914490f5e9.jpg&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;span title=&quot;A&quot; class=&quot;cap&quot;&gt;&lt;span&gt;A&lt;/span&gt;&lt;/span&gt; while back I &lt;a href=&quot;http://www.jonobacon.org/2009/04/12/community-leadership-summit-2009/&quot;&gt;announced&lt;/a&gt; the &lt;a href=&quot;http://www.communityleadershipsummit.com/&quot;&gt;Community Leadership Summit 2009&lt;/a&gt; in San Jose on the 18th and 19th July 2009. Well, I think it is time for lil&amp;#8217; update on what is shaping up to be a rocking event.&lt;/p&gt;

&lt;p&gt;The aim of the summit is get community managers, leaders and organizers together to discuss, debate and share ideas on building great community in a vendor-neutral environment. The event is entirely free (although I ask everyone to &lt;a href=&quot;http://www.communityleadershipsummit.com/register/&quot;&gt;go and register&lt;/a&gt; and it takes place the weekend immediately before OSCON, in the same venue: the San Jose McEnery Convention Center. Details of how to get there are &lt;a href=&quot;http://www.communityleadershipsummit.com/travel-hotel/&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Since I announced the event, the response has been stunning and over 150 people have registered with a fantastic and diverse range of contributors signed up to attend. You can see this &lt;a href=&quot;http://www.communityleadershipsummit.com/attendees/&quot;&gt;awesome list of attendees here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The the aim and purpose of the event to provide an open, transparent and vendor-neutral environment for discussion, and I have been really keen to make sure this is an unconference (an event in which an empty schedule is available at the start of the event, and attendees can go and add topics). The reason for this is to ensure the sessions are as diverse as possible and not merely what &lt;em&gt;I&lt;/em&gt; think we should discuss. The openness of the scheduling means that anyone can add a session that they think would be of interest to the other attendees.&lt;/p&gt;

&lt;p&gt;If you are coming along and interested in running a session, feel free to discuss &lt;a href=&quot;http://www.communityleadershipsummit.com/wiki/index.php/Session_Ideas&quot;&gt;it on this wiki page&lt;/a&gt; with the other attendees: you may find some other people who would like to help with the session. Speaking of the wiki, we also have &lt;a href=&quot;http://www.communityleadershipsummit.com/wiki/index.php/Rideshare&quot;&gt;rideshare&lt;/a&gt;, &lt;a href=&quot;http://www.communityleadershipsummit.com/wiki/index.php/Roomshare&quot;&gt;roomshare&lt;/a&gt; and other pages springing up to make attending the event as easy and enjoyable as possible.&lt;/p&gt;

&lt;p&gt;I have another update on the event half-penned, but I will send that over in the coming week. Stay tuned, and go and &lt;a href=&quot;http://www.communityleadershipsummit.com/register/&quot;&gt;register&lt;/a&gt;! I hope to see you there!&lt;/p&gt;</description>
	<pubDate>Sat, 13 Jun 2009 19:09:14 +0000</pubDate>
</item>
<item>
	<title>Jono Bacon: The Ubuntu Free Culture Showcase Kicks Off</title>
	<guid>http://www.jonobacon.org/?p=1723</guid>
	<link>http://www.jonobacon.org/2009/06/13/the-ubuntu-free-culture-showcase-kicks-off/</link>
	<description>&lt;p class=&quot;first-child &quot;&gt;&lt;span title=&quot;F&quot; class=&quot;cap&quot;&gt;&lt;span&gt;F&lt;/span&gt;&lt;/span&gt;olks, we are back with another &lt;a href=&quot;https://wiki.ubuntu.com/UbuntuFreeCultureShowcase&quot;&gt;Ubuntu Free Culture Showcase&lt;/a&gt;!&lt;/p&gt;

&lt;p&gt;The Ubuntu Free Culture Showcase is an opportunity to bring the best of two great worlds together by showing off high quality Free Culture content in Ubuntu. At the heart of Ubuntu&amp;#8217;s ethos is a belief in showcasing Free Software and Free Culture, and with each development cycle we present the opportunity for any Free Culture artist to put their work in front of millions of Ubuntu users around the world. Although the space restrictions are tight, and we are limited to how much content we can include, the Ubuntu Free Culture Showcase is an excellent opportunity for artists everywhere. I am always hugely inspired by the wonderful entries that we recieve in each competition and I am excited about the opportunities we have to ship awesome Free Culture content with Karmic!&lt;/p&gt;

&lt;p&gt;The winning submissions will be made available on the shipped CDs and download images of the Ubuntu 9.04 release. Every user will be able to find the content in the &lt;code&gt;Examples/&lt;/code&gt; folder in a home directory.&lt;/p&gt;

&lt;p&gt;With this competition we are accepting submissions for audio, video, and graphic/photo submissions. We have a winner to find for each category, and the competition closes on &lt;strong&gt;16th July 2009&lt;/strong&gt;. The time is short on this competition, so you better get cracking on some stunning entries!&lt;/p&gt;

&lt;p&gt;Entering the showcase is simple:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your submission must be one of the following:

&lt;ul&gt;
&lt;li&gt;Audio Entries - no larger than 1MB in size - made available in Ogg Vorbis format.&lt;/li&gt;
&lt;li&gt;Video Entries - no larger than 2.5MB in size - made available in Ogg Theora format.&lt;/li&gt;
&lt;li&gt;Photo/Graphic Entries - no larger than 0.5MB in size - made available in PNG or JPG formats.&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;All entries must be licensed and distributable under the &lt;a href=&quot;http://creativecommons.org/licenses/by-sa/3.0/&quot;&gt;Creative Commons Attribution ShareAlike&lt;/a&gt; or &lt;a href=&quot;http://creativecommons.org/licenses/by/3.0/&quot;&gt;Creative Commons Attribution&lt;/a&gt; license.&lt;/li&gt;
&lt;li&gt;Upload your submission somewhere online (there are lots of free hosting solutions available such as archive.org). Do not email any of the organisers or judges with your submissions.&lt;/li&gt;
&lt;li&gt;Add your entry to one of the submission tables at &lt;a href=&quot;http://wiki.ubuntu.com/UbuntuFreeCultureShowcase&quot;&gt;http://wiki.ubuntu.com/UbuntuFreeCultureShowcase&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;When the deadline for submissions closes, our panel of judges will pick a shortlist, and the Community Council will then pick the final winners from the shortlist.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The deadline is &lt;strong&gt;16th July 2009&lt;/strong&gt; and you can read more about it at &lt;a href=&quot;http://wiki.ubuntu.com/UbuntuFreeCultureShowcase&quot;&gt;http://wiki.ubuntu.com/UbuntuFreeCultureShowcase&lt;/a&gt;.&lt;/p&gt;</description>
	<pubDate>Fri, 12 Jun 2009 23:01:35 +0000</pubDate>
</item>
<item>
	<title>Aq: Filmage</title>
	<guid>http://www.kryogenix.org/days/?p=1758</guid>
	<link>http://www.kryogenix.org/days/2009/06/11/filmage</link>
	<description>&lt;p&gt;So, me &amp;amp; &lt;a href=&quot;http://www.whizzy.org/2009/06/film-spotify/&quot;&gt;Bill&lt;/a&gt; are making a film. It’s going to be along the same sort of lines as &lt;a href=&quot;http://www.bbsdocumentary.com/&quot;&gt;http://www.bbsdocumentary.com/&lt;/a&gt;. The plan at the moment is to document how we came to be interested in all things Internet and computers in general, and then move on to document our momentous trip to &lt;a href=&quot;http://www.har2009.nl&quot;&gt;http://www.har2009.nl&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;m under strict instructions that I&amp;#8217;m not allowed to help with the soundtrack because my music tastes suck. The experience of thinking about a script gives you a new appreciation for the work that scriptwriters do, though. Just thinking of how it all fits together is hard. Me, personally, I&amp;#8217;d like it to feel like a Top Gear film (it won&amp;#8217;t look like it, since they have the best camera work in the industry, but it might have the same sort of atmosphere, if we&amp;#8217;re really really good).&lt;/p&gt;
&lt;p&gt;Didn&amp;#8217;t I see something about a script-writing program for Linux somewhere? At the moment we&amp;#8217;re using a Google document&amp;#8230;&lt;/p&gt;</description>
	<pubDate>Thu, 11 Jun 2009 18:11:05 +0000</pubDate>
</item>
<item>
	<title>Richard Smedley: links for 2009-06-10</title>
	<guid>http://www.goodgnus.org/2009/06/links-for-2009-06-10/</guid>
	<link>http://www.goodgnus.org/2009/06/links-for-2009-06-10/</link>
	<description>Why I’m not voting Green : Dan Wilson : eBay expert, social networking, online community, ecommerce, stuff
Amazingly wlllful misreading of Green policy from labour activist which seems based on some of the best bits of the Green's policies!
(tags: green politics science badscience distortion misrepresentation bigotry anti-green)</description>
	<pubDate>Thu, 11 Jun 2009 01:30:30 +0000</pubDate>
</item>
<item>
	<title>Aq: Working with CouchDB</title>
	<guid>http://www.kryogenix.org/days/?p=1756</guid>
	<link>http://www.kryogenix.org/days/2009/06/11/working-with-couchdb</link>
	<description>&lt;p&gt;I&amp;#8217;ve been working with CouchDB as a database in which applications can store their data; there&amp;#8217;s an increasing trend recently for applications to start using databases to store their data rather than flat files, and I personally think it&amp;#8217;s a jolly good trend. There&amp;#8217;s been rumours for years about the idea of a database-backed filesystem, where instead of pathnames you use queries and so on; that&amp;#8217;s never happened (and I&amp;#8217;m not convinced it will ever happen), but individual apps can get most of the benefits of that by using a database to store their data. I like CouchDB for this because it has a number of advantages over simple databases like SQLite; for example, CouchDB does replication, meaning that I can get all my data on all my machines. This is a genuinely lovely property. It&amp;#8217;s been really interesting talking to the Tomboy team about how this sort of procedure ties in with what they&amp;#8217;re doing; we&amp;#8217;ve been working on their Snowy server and talking about its API and how it should work, too. Cool times ahead for this stuff. I&amp;#8217;m really excited!&lt;/p&gt;</description>
	<pubDate>Wed, 10 Jun 2009 23:14:33 +0000</pubDate>
</item>
<item>
	<title>Jono Bacon: Live Burnout Videocast</title>
	<guid>http://www.jonobacon.org/?p=1721</guid>
	<link>http://www.jonobacon.org/2009/06/10/live-burnout-videocast/</link>
	<description>&lt;p class=&quot;first-child &quot;&gt;&lt;span title=&quot;R&quot; class=&quot;cap&quot;&gt;&lt;span&gt;R&lt;/span&gt;&lt;/span&gt;ecently I have been pointing my beady eye at the topic of &lt;em&gt;burnout&lt;/em&gt;. My interest was originally sparked while researching content for &lt;a href=&quot;http://www.artofcommunityonline.org/&quot;&gt;The Art of Community&lt;/a&gt;, but I have also had something of a personal interest in it as I myself burned out a few years back. It sucked, and I felt compelled to confront the topic in the book as it is a very real issue in every community, particularly technical ones.&lt;/p&gt;

&lt;p&gt;While reading up on the subject I was looking for some concrete methods of identifying the symptoms of burnout and found a fascinating piece of research called &lt;em&gt;The Burnout Cycle&lt;/em&gt; with it&amp;#8217;s twelve stages. Not only did I feature this in the book, but I also prepared a presentation for Allhands and the Ubuntu Developer Summit. The presentation really resonated with folks and I heard countless stories of how people had burned out in different ways.&lt;/p&gt;

&lt;p&gt;Well, recently I have been doing a live videocast called &lt;a href=&quot;http://www.ustream.tv/channel/at-home-with-jono-bacon&quot;&gt;At Home With Jono Bacon&lt;/a&gt; on ustream.tv and I thought it could be useful to repeat the presentation, which would then obviously be recorded.&lt;/p&gt;

&lt;p&gt;So, tomorrow (Wed 10th June) at 6pm UTC / 11am Pacific / 2pm Eastern I will be doing the presentation and also have a Q+A. You can watch it live &lt;a href=&quot;http://www.ustream.tv/channel/at-home-with-jono-bacon&quot;&gt;here&lt;/a&gt;. I really hope it helps. &lt;img src=&quot;http://www.jonobacon.org/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:-)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;</description>
	<pubDate>Wed, 10 Jun 2009 05:10:03 +0000</pubDate>
</item>
<item>
	<title>Jono Bacon: Well, Hello</title>
	<guid>http://www.jonobacon.org/?p=1717</guid>
	<link>http://www.jonobacon.org/2009/06/09/well-hello/</link>
	<description>&lt;p class=&quot;first-child &quot;&gt;&lt;span title=&quot;O&quot; class=&quot;cap&quot;&gt;&lt;span&gt;O&lt;/span&gt;&lt;/span&gt;i oi folks. Well, hasn&amp;#8217;t it been a while? It seems I have been on a little blogging hiatus recently, and I think the simple reason is that &lt;a href=&quot;http://artofcommunityonline.org/&quot;&gt;I have been writing a lot more than usual recently&lt;/a&gt; so my blogging tendencies have suffered from all the writing. Well, as I will share in a few paragraphs, I am largely done with the writing, so the blogging is coming back.&lt;/p&gt;

&lt;p&gt;So, before we get back into the normal blogging flow&amp;#8230;a quick update with what has been keeping me busy recently.&lt;/p&gt;

&lt;h2&gt;Ubuntu&lt;/h2&gt;

&lt;p&gt;It has been a busy time in Ubuntu-land recently. A few weeks back we had our &lt;a href=&quot;http://wiki.ubuntu.com/UDS&quot;&gt;Ubuntu Developer Summit&lt;/a&gt; in Spain and the week before that we had our Canonical Allhands conference. The time building up to UDS is hugely intense: weeks of planning the venue, schedule (which had doubled in size to over 450 sessions), merch, social events, plenaries, presentations and more. Thankfully, it was an awesome event and the response was really positive. Many people who had been to UDS before felt it was one of the most productive events we have run. Thanks to Jorge, Claire, James, Maria and the other organizers and thanks to my fellow track-leads for a sterling job!&lt;/p&gt;

&lt;p&gt;David Planella also joined my team recently and he is doing a rocking job. David is focused on growing our translations community and I have been learning more about translations by joining the &lt;a href=&quot;https://edge.launchpad.net/~ubuntu-l10n-en-gb&quot;&gt;Ubuntu UK Translations Team&lt;/a&gt;. At the heart of the Ubuntu ethos is a belief that everyone should have access to high quality software in their local language. While we have an incredible existing community, we have many challenges ahead to refine and smooth our translations workflow and how we can unite our community betwee. We have some exciting plans around translations so stay tuned, and keep an eye on &lt;a href=&quot;http://davidplanella.wordpress.com/&quot;&gt;David&amp;#8217;s blog&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;In the interests of being concise (and not having much time to blog), I won&amp;#8217;t go into all the details about what I have been focused on recently but it includes the LoCo directory, initiatives for this cycle (Ubuntu Open Week, Ubuntu Developer Week, Ubuntu Free Culture Showcase, LoCo Docs Days, UDS Planning) as well as some key projects for the cycle such as ArchiveReorg, Ayatana, Upstream Relations, Bug Triage best practise, Design community workflow and structuring the LoCo project. I am also really keen to get back on the ground more in this cycle: the last cycle had me busy with some of the growth inside Canonical, and I am keen to reseat the balance with our wider community. Exciting times!&lt;/p&gt;

&lt;h2&gt;The Art of Community&lt;/h2&gt;

&lt;p&gt;As some of you will know, I have been writing a book called &lt;a href=&quot;http://artofcommunityonline.org/&quot;&gt;The Art of Community&lt;/a&gt; to be published by O&amp;#8217;Reilly in mid-August. Well, the book is written and has been through the primary edit phase, the review edit phase and is now in copy-editing. As such, the content is complete but we are checking in for little types and grammar issues before it goes off to be typeset. I am really excited about the content: it feels good and I am really hoping the content will be useful for many different types of community. There has also been a fantastic amount of buzz around the book: thanks to everyone for supporting the project!&lt;/p&gt;

&lt;p&gt;Last week I also confirmed that &lt;a href=&quot;http://leoville.com/&quot;&gt;Leo Laporte&lt;/a&gt; is writing the foreword for the book. I emailed Leo about it a few weeks back and he confirmed live on air shortly before we recorded &lt;a href=&quot;http://twit.tv/FLOSS&quot;&gt;FLOSSWeekly&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The book will be available under a Creative Commons Non-Commercial ShareAlike license and available to buy in print in all good bookstores. The book is also available to pre-order on Amazon: you can find out more &lt;a href=&quot;http://www.artofcommunityonline.org/get/&quot;&gt;here&lt;/a&gt;. If you pre-order it, do stick a button on your website. &lt;img src=&quot;http://www.jonobacon.org/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:-)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;

&lt;h2&gt;Community Leadership Summit&lt;/h2&gt;

&lt;p&gt;A little while back I announced an annual summit that I have put together for community leaders, managers and organizers called the &lt;a href=&quot;http://www.communityleadershipsummit.com/&quot;&gt;Community Leadership Summit&lt;/a&gt;. The 2009 event takes place the weekend before OSCON in San Jose on the 18th and 19th July 2009. The take-up and pre-registration for the event has been fantastic, and I will be updating the website with all the new attendees soon. It is shaping up to be a hugely exciting event with a massively diverse range of participants.&lt;/p&gt;

&lt;p&gt;With the UDS, book and other things keeping me busy I have not updated the website for a few weeks but expect to hear more over the coming week. Stay tuned, folks!&lt;/p&gt;

&lt;h2&gt;FLOSSWeekly / At Home With Jono Bacon&lt;/h2&gt;

&lt;p&gt;Recently I have become a semi-regular co-presenter with Leo Laporte and Randal Schwartz on &lt;a href=&quot;http://twit.tv/FLOSS&quot;&gt;FLOSSWeekly&lt;/a&gt;. I have been having a blast doing it, and I am looking forward to doing more shows with the guys. I will be there on the show on Wednesday to interview Tim O&amp;#8217;Reilly.&lt;/p&gt;

&lt;p&gt;I have also been experimenting with live videocasts and have a show called &lt;a href=&quot;http://www.ustream.tv/channel/at-home-with-jono-bacon&quot;&gt;At Home With Jono Bacon&lt;/a&gt; on ustream.tv. On the show on Wed 10th at 6pm UTC I will be talking through the 12 stages of burnout; a presentation I did recently at UDS. Stay tuned!&lt;/p&gt;

&lt;p&gt;OK, nuff said. More blogging soon. Also, stay tuned with my microblogging madness on &lt;a href=&quot;http://twitter.com/jonobacon&quot;&gt;my Twitter&lt;/a&gt; and &lt;a href=&quot;http://identi.ca/jonobacon&quot;&gt;my identi.ca&lt;/a&gt; feeds. &lt;img src=&quot;http://www.jonobacon.org/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:-)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;</description>
	<pubDate>Tue, 09 Jun 2009 05:58:50 +0000</pubDate>
</item>
<item>
	<title>Dave Morley: UDS Wow</title>
	<guid>tag:blogger.com,1999:blog-21756197.post-5296807488697150422</guid>
	<link>http://davmor2.blogspot.com/2009/06/uds-wow.html</link>
	<description>It's late I know but I was on holiday straight after.&lt;br /&gt;&lt;br /&gt;Firstly, my wife and I would like to thank everybody that took time out to talk to her (Sue the woman knitting in the atrium).&lt;br /&gt;&lt;br /&gt;Secondly, Wow uds was mad.  The talks were great and full of information and laughs.  But more important were the general sessions.&lt;br /&gt;&lt;br /&gt;I mostly followed the QA track, and I was impressed to see how much thought has gone into the whole process.  In general it was based on the process of automated testing and automated bug reporting using checkbox and apport.  These are 2 awesome tools that are in their infancy still.  By all accounts the if the features get added they will instantly mature the apps into a far more robust tools, hopefully with checkbox/apport integration for auto bugrepporting on automatic testing which will be really cool.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/21756197-5296807488697150422?l=davmor2.blogspot.com&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Sat, 06 Jun 2009 22:01:00 +0000</pubDate>
	<author>noreply@blogger.com (Dave Morley)</author>
</item>
<item>
	<title>Peter Cannon: LugRadio Live Countdown</title>
	<guid>http://cannon-linux.co.uk/component/content/article/70-2009/256-lugradio-live-countdown</guid>
	<link>http://cannon-linux.co.uk/component/content/article/70-2009/256-lugradio-live-countdown</link>
	<description>&lt;div class=&quot;block&quot;&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div class=&quot;module-hilite8&quot;&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;p&gt;LugRadio Live Countdown for you're site help us promote this event by displaying it.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.lugradio.org/live/2009/&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://da.mned.co.uk/stuff/lrl/lrl_countdown.png&quot; alt=&quot;Lugradio Live 2009, 24th October 2009,  Newhampton Arts Centre Wolvehampton&quot; height=&quot;251&quot; width=&quot;237&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a target=&quot;_self&quot; href=&quot;http://cannon-linux.co.uk/../component/content/article/255&quot;&gt;Get the code for this countdown&lt;/a&gt; Or &lt;a title=&quot;LugRadio Countdown&quot; href=&quot;http://da.mned.co.uk/&quot;&gt;here&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description>
	<pubDate>Fri, 05 Jun 2009 15:29:52 +0000</pubDate>
	<author>joomla-admin@cannon-linux.co.uk (Peter Cannon)</author>
</item>
<item>
	<title>Peter Cannon: Information Overload</title>
	<guid>http://cannon-linux.co.uk/blogs/general-stuff/68-howls-in-the-dark/254-information-overload</guid>
	<link>http://cannon-linux.co.uk/blogs/general-stuff/68-howls-in-the-dark/254-information-overload</link>
	<description>&lt;p&gt;&lt;span&gt;I really need some clever clogs to write a piece of software with a dashboard that has all of my information in a single location.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a target=&quot;_blank&quot; title=&quot;Larger Image&quot; href=&quot;http://cannon-linux.co.uk/gallery/v/General/my_dashboard.png.html?g2_imageViewsIndex=1&quot;&gt; &lt;img src=&quot;http://cannon-linux.co.uk/gallery/d/158-2/my_dashboard.png&quot; id=&quot;IFid6&quot; class=&quot;ImageFrame_ giThumbnail&quot; alt=&quot;my_dashboard&quot; height=&quot;117&quot; width=&quot;150&quot; /&gt;&lt;/a&gt;Because I'm not a programmer I did this Mock-up to try and explain what I was after, basically I want just a notification area probably via RSS or something. It would tell me how many emails are sitting unread in various accounts I have, any new podcasts that are available, any Micro Blogs such as twitter and the RSS feeds I'm subscribed to.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I did include a 'Submit' element for possibly &lt;a target=&quot;_blank&quot; href=&quot;http://wordpress.org/&quot;&gt;WordPress&lt;/a&gt; and &lt;a href=&quot;http://ping.fm&quot;&gt;ping.fm&lt;/a&gt; but the main idea would be if say I wanted to see what the 5 Emails was about I'd click on the link and Thunderbird would open to view the mails. The same could be said for any RSS stuff.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;If it was a Micro Blog then &lt;a target=&quot;_blank&quot; href=&quot;https://launchpad.net/gwibber&quot;&gt;Gwibber&lt;/a&gt; would open and for Podcasts &lt;a target=&quot;_blank&quot; href=&quot;http://gpodder.org/&quot;&gt;Gpodder&lt;/a&gt; would open. I mentioned this on IRC but apparently iGoogle can do pretty much most of it apart from opening the various applications, I tried explaining that I wanted '&lt;strong&gt;Your Dashboard&lt;/strong&gt;' to be a desktop application as opposed to a web based one but it would seem this is yet another idea that I think is pretty cool but others think is pants.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Talk about piddle on a man's parade &lt;/span&gt;&lt;img src=&quot;http://cannon-linux.co.uk/plugins/editors/jce/tiny_mce/plugins/emotions/img/smiley-cry.gif&quot; alt=&quot;Cry&quot; title=&quot;Cry&quot; border=&quot;0&quot; /&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
	<pubDate>Mon, 01 Jun 2009 10:21:33 +0000</pubDate>
	<author>joomla-admin@cannon-linux.co.uk (Peter Cannon)</author>
</item>
<item>
	<title>Richard Smedley: links for 2009-05-27</title>
	<guid>http://www.goodgnus.org/2009/05/links-for-2009-05-27/</guid>
	<link>http://www.goodgnus.org/2009/05/links-for-2009-05-27/</link>
	<description>Wild Apricot Blog : Social Media for Non-Profits: 26 Great Slideshare Presentations You Can Use
(tags: socialmedia slideshare presentation 3rdsector vcs howto resources)


The Management Myth - The Atlantic (June 2006)
(tags: management philosophy mba ethics capital balderdash)</description>
	<pubDate>Thu, 28 May 2009 01:45:09 +0000</pubDate>
</item>
<item>
	<title>Dave Morley: Day 1 and 2 in the Big Brother House UDS</title>
	<guid>tag:blogger.com,1999:blog-21756197.post-8712174436961572015</guid>
	<link>http://davmor2.blogspot.com/2009/05/day-1-and-2-in-big-brother-house-uds.html</link>
	<description>Dear diary,&lt;br /&gt;&lt;br /&gt;Today I have been mostly in the QA Track. &lt;s&gt;Hopefully throwing a spanner in the works where possible&lt;/s&gt; Helping out ;)  Although some of the talks have been slightly more technical for me to get on with on the whole it's been great.&lt;br /&gt;&lt;br /&gt;The venue is good apart from room 14 avoid it like the plague (It's like a walk in freezer).  The staff and developers are great.  I've meet up with some old friends and met new ones too.&lt;br /&gt;&lt;br /&gt;It looks like there is going to be a lot of work going on to improve the automated testing suites we currently have and a lot more work going on to import these into checkbox.  There should hopefully be some work to get all that info into a database that people can then use in multiple different ways.  That's only from the first 2 days,  tomorrow is going to be a day I can really get on with as most of the discussions in the qa track apply to me.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/21756197-8712174436961572015?l=davmor2.blogspot.com&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Tue, 26 May 2009 18:32:00 +0000</pubDate>
	<author>noreply@blogger.com (Dave Morley)</author>
</item>
<item>
	<title>Dave Morley: First ever flight, UDS and Barcelona</title>
	<guid>tag:blogger.com,1999:blog-21756197.post-1600746492847511631</guid>
	<link>http://davmor2.blogspot.com/2009/05/first-ever-flight-uds-and-barcelona.html</link>
	<description>So my first ever flight was today to get to Barcelona for UDS which starts tomorrow.&lt;br /&gt;&lt;br /&gt;Barcelona is an intriging City a nice mix of old and new for a city of it's size.&lt;br /&gt;&lt;br /&gt;Just can't wait for tomorrow now :)&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/21756197-1600746492847511631?l=davmor2.blogspot.com&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Sun, 24 May 2009 20:41:00 +0000</pubDate>
	<author>noreply@blogger.com (Dave Morley)</author>
</item>
<item>
	<title>Richard Smedley: #SmallSteps @ the[FACT]blog</title>
	<guid>http://www.goodgnus.org/?p=178</guid>
	<link>http://www.goodgnus.org/2009/05/smallsteps-thefactblog/</link>
	<description>During the final weeks of FACT&amp;#8217;s Climate for Change exhibition, our Small Steps to Sustainability workshops have moved from Gallery 1 (as an after-hours social café &amp;#8220;combining beer, conversation, and the jagged interface between technology, networks, and &amp;#8217;saving the world&amp;#8217;&amp;#8221;), to the[FACT]blog (no beer there, I&amp;#8217;m afraid).
This means that I&amp;#8217;ll be posting there with the [...]</description>
	<pubDate>Wed, 20 May 2009 22:59:26 +0000</pubDate>
</item>
<item>
	<title>David Goodwin: Upgrading a server from Etch Xen 3.0 to Lenny Xen 3.2</title>
	<guid>http://codepoets.co.uk/520 at http://codepoets.co.uk</guid>
	<link>http://codepoets.co.uk/upgrading-server-etch-xen-3-0-lenny-xen-3-2</link>
	<description>&lt;p&gt;Right - first off, thanks to the &lt;a href=&quot;http://debian.org&quot;&gt;Debian&lt;/a&gt; developers - this morning I finally finished off upgrading the server this site resides on to be a full Lenny install with the underlying server running Xen 3.2. It was (from my point of view) a hassle free experience (aside from dealing with the config file changes I've made which caused conflicts, but these were easy to resolve).&lt;/p&gt;
&lt;p&gt;Thankfully I didn't encounter any issues - it was pretty much a case of apt-get dist-upgrade and then sit back and wait. Xen 3.0 remains installed incase something does go pear shaped, so it should be easy to roll back.&lt;/p&gt;
&lt;p&gt;While rebooting and faffing around, I decided to add more disk space to this virtual machine - which is why the downtime lasted about 2 hours - rather than 5 minutes - this morning (wanting to be on the safe side, I took a copy of the disk image, ran fsck a few times and so forth - this took far longer than I'd planned, but the 1% chance of everything going pear shaped would have taken far, far longer to fix!)&lt;/p&gt;
&lt;p&gt;Anyhow, onwards and up. And in a semi-relevant twist, I listened to &lt;a href=&quot;http://twit.tv/floss67&quot;&gt;FLOSS weekly's Xen&lt;/a&gt; podcast today too - which was interesting (although for new servers, I think I'll drift towards KVM.&lt;/p&gt;
&lt;p&gt;Minor issues(?) encountered :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Xen appeared to break my Bytemark support shell thingy - this was easily fixed by editing the grub config file at boot time.
&lt;/li&gt;
&lt;li&gt;On upgrading to Etch, udev was introduced - I had to edit one of the files in /etc/udev to make eth0 remain eth0 (this is a well known issue; grep will identify the file you're after anyway).
&lt;/li&gt;
&lt;li&gt;I edited the xen config files, and added&lt;br /&gt;
&lt;code&gt;extra = &quot;console=hvc0 xencons=tty&quot;&lt;/code&gt;&lt;br /&gt;
to each. I've no idea what this does (yet) but it didn't break anything, and other sites on the web seemed to think it was a good idea. (Just like putting your hand in the fire because your best friend does...)&lt;/li&gt;
&lt;li&gt;Edited /etc/xen/scripts/network-route - as per &lt;a href=&quot;http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477525#13&quot;&gt;bugs.debian.org&lt;/a&gt; - again, I didn't try booting without this... but I had no problems with it.&lt;/li&gt;
&lt;/ul&gt;</description>
	<pubDate>Wed, 20 May 2009 20:06:24 +0000</pubDate>
</item>
<item>
	<title>Dave Morley: So off to UDS...</title>
	<guid>tag:blogger.com,1999:blog-21756197.post-1658883553622586355</guid>
	<link>http://davmor2.blogspot.com/2009/05/so-off-to-uds.html</link>
	<description>So I'm getting too excited now.....&lt;br /&gt;&lt;br /&gt;First UDS and I can't wait.&lt;br /&gt;&lt;br /&gt;I'm coming over with my better half, if anyone is taking theirs would it possible to meet up and let the better halves go shopping, site seeing together?  If this is you feel free to drop me a mail at davmor2@davmor2.co.uk&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/21756197-1658883553622586355?l=davmor2.blogspot.com&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Wed, 20 May 2009 13:53:00 +0000</pubDate>
	<author>noreply@blogger.com (Dave Morley)</author>
</item>
<item>
	<title>Richard Smedley: links for 2009-05-18</title>
	<guid>http://www.goodgnus.org/2009/05/links-for-2009-05-18/</guid>
	<link>http://www.goodgnus.org/2009/05/links-for-2009-05-18/</link>
	<description>How Michael Osinski Helped Build the Bomb That Blew Up Wall Street &amp;#8212; New York Magazine
&quot;I wrote the software that turned mortgages into bonds.&quot;
(tags: economics crash recession depression wallstreet banking banks finance economy programming subprime mortgage crisis history)


Frankenstory. The writing game where two heads are better than one.
Frankenstory is super simple to play!  You [...]</description>
	<pubDate>Tue, 19 May 2009 01:08:37 +0000</pubDate>
</item>
<item>
	<title>Rob Annable: data landscape</title>
	<guid>http://no2self.net/?p=1075</guid>
	<link>http://feedproxy.google.com/~r/no2self/~3/uF_WnvYR2Wg/</link>
	<description>&lt;p&gt;&lt;a title=&quot;Mystery by eversion, on Flickr&quot; href=&quot;http://www.flickr.com/photos/eversion/3368428634/&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3642/3368428634_5879a12810.jpg&quot; alt=&quot;Mystery&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/eversion/3368428634/in/photostream/&quot;&gt;Question&lt;/a&gt; answered:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/cityofsound/&quot;&gt;cityofsound&lt;/a&gt; says:&lt;/p&gt;
&lt;p&gt;It was a conversation between Matt Jones and I, wherein he sketched out his idea (using your notebook it would seem) about a kind of perspectival layered data landscape, building up from Dopplr and related web services &amp;#8211; in the manner of the classic New Yorker cover on &amp;#8216;the x view of the world&amp;#8217; &amp;#8230;&lt;/p&gt;
&lt;p&gt;I think.&lt;/p&gt;&lt;/blockquote&gt;
&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/no2self?a=uF_WnvYR2Wg:NnLfVKBS0Bk:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/no2self?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/no2self?a=uF_WnvYR2Wg:NnLfVKBS0Bk:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/no2self?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/no2self?a=uF_WnvYR2Wg:NnLfVKBS0Bk:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/no2self?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/no2self?a=uF_WnvYR2Wg:NnLfVKBS0Bk:F7zBnMyn0Lo&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/no2self?i=uF_WnvYR2Wg:NnLfVKBS0Bk:F7zBnMyn0Lo&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/no2self?a=uF_WnvYR2Wg:NnLfVKBS0Bk:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/no2self?i=uF_WnvYR2Wg:NnLfVKBS0Bk:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/no2self?a=uF_WnvYR2Wg:NnLfVKBS0Bk:D7DqB2pKExk&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/no2self?i=uF_WnvYR2Wg:NnLfVKBS0Bk:D7DqB2pKExk&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/no2self/~4/uF_WnvYR2Wg&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Mon, 18 May 2009 08:18:02 +0000</pubDate>
	<author>rob@annable.co.uk (Rob Annable)</author>
</item>
<item>
	<title>Richard Smedley: Accessible websites</title>
	<guid>http://www.goodgnus.org/?p=151</guid>
	<link>http://www.goodgnus.org/2009/05/accessible-websites/</link>
	<description>Why am I planning to run low-cost courses on website &amp;#38; social media strategy? Because there is a need: not just a need for good websites, and communication strategies for social media, but just getting across the basics of awareness of accessibility.
Local groups
Yesterday I toddled around a hall in the next village, looking at the [...]</description>
	<pubDate>Sun, 17 May 2009 09:03:58 +0000</pubDate>
</item>
<item>
	<title>Ron Wellsted: Vote for my suggestion to improve Ubuntu</title>
	<guid>http://www.wellsted.org.uk/12 at http://www.wellsted.org.uk</guid>
	<link>http://www.wellsted.org.uk/node/12</link>
	<description>&lt;p&gt;If you use webapps on an Ubuntu server, take a look at &lt;a href=&quot;http://brainstorm.ubuntu.com/idea/19766/&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://brainstorm.ubuntu.com/idea/19766/image/1/&quot; /&gt;&lt;br /&gt;
&lt;/a&gt; and vote for it if you feel it is a good idea.&lt;/p&gt;</description>
	<pubDate>Fri, 15 May 2009 11:45:06 +0000</pubDate>
</item>
<item>
	<title>Dave Morley: Ubuntu One (Am I Missing Something)</title>
	<guid>tag:blogger.com,1999:blog-21756197.post-569748606343492294</guid>
	<link>http://davmor2.blogspot.com/2009/05/ubuntu-one-am-i-missing-something.html</link>
	<description>&lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_0&quot;&gt;This is my own personal view only.  You can tak a fence but a gate is more useful&lt;br /&gt;&lt;br /&gt;Ubuntu&lt;/span&gt; is a trademark that belongs to Canonical...&lt;br /&gt;That means it can be applied to any SERVICE they choose.&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;blsp-spelling-error&quot; id=&quot;SPELLING_ERROR_1&quot;&gt;RMS&lt;/span&gt; when he first laid out the lay of the land said &quot;And companies can make money from the services they provide&quot;.&lt;br /&gt;&lt;br /&gt;This is Canonicals first atempt at user level services.  I for one think they are doing the correct thing by linking this service to Ubuntu as that is the intended market.  New users may know the Ubuntu Name but not that Canonical are their sponsor.&lt;br /&gt;&lt;br /&gt;On a final note Why whine?  If your not happy with it don't use it, vote with your feet!  The fact of the matter is there are propriatary drives in Ubuntu and you choose whether to use them or not, why should this service be any different?  To be honest I think that it will still be around it's too useful not to be.&lt;br /&gt;&lt;br /&gt;Congratulations Canonical I hope things go well for your infant service and I can't wait to see what other features you'll add.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/21756197-569748606343492294?l=davmor2.blogspot.com&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Thu, 14 May 2009 22:01:00 +0000</pubDate>
	<author>noreply@blogger.com (Dave Morley)</author>
</item>
<item>
	<title>Richard Smedley: Aide Memoire</title>
	<guid>http://www.goodgnus.org/?p=116</guid>
	<link>http://www.goodgnus.org/2009/05/aide-memoire/</link>
	<description>Most days I&amp;#8217;m either sat at the keyboard, or I&amp;#8217;m out and about and meet a handful of people. Few enough that I can usually remember who they are, as I file away business cards &amp;#38; write short follow-up e-mails the next day. Some days are different.
At networking events (OpenCoffee, Social Enterprise events,Unconferences, etc.) you [...]</description>
	<pubDate>Wed, 13 May 2009 13:42:52 +0000</pubDate>
</item>
<item>
	<title>David Goodwin: Twitter + Identi.ca + irssi</title>
	<guid>http://codepoets.co.uk/518 at http://codepoets.co.uk</guid>
	<link>http://codepoets.co.uk/twitter-identi-ca-irssi</link>
	<description>&lt;p&gt;I tried, and failed, to get the pidgin-twitter plugin to work (installed fine, but what do I click on to use the fricking thing?)&lt;/p&gt;
&lt;p&gt;So, &lt;a href=&quot;http://moobert.co.uk&quot;&gt;Peter&lt;/a&gt; suggested I try &lt;a href=&quot;http://twirssi.com/&quot;&gt;twirssi&lt;/a&gt; - a script for &lt;a href=&quot;http://irssi.org&quot;&gt;irssi&lt;/a&gt; which adds Twitter capabilities. All very well. The website even seems to imply it supports &lt;a href=&quot;http://identi.ca&quot;&gt;identi.ca&lt;/a&gt;, but conviently seems to omit how one does this.&lt;/p&gt;
&lt;p&gt;Here's how -&lt;/p&gt;
&lt;p&gt;/twitter_login thegingerdog twitterpassword&lt;br /&gt;
/twitter_login gingerdog@identica identicapassword&lt;/p&gt;
&lt;p&gt;You can then prefix things with @identica or @twitter elsewhere should you so wish.&lt;/p&gt;
&lt;p&gt;See also the &lt;a href=&quot;http://github.com/zigdon/twirssi/commit/e12967f01425466111483936dc139aa2389cdc78&quot;&gt;changeset&lt;/a&gt; that added this functionality.&lt;/p&gt;</description>
	<pubDate>Wed, 13 May 2009 10:14:59 +0000</pubDate>
</item>
<item>
	<title>Aq: Ubuntu One beta</title>
	<guid>http://www.kryogenix.org/days/?p=1753</guid>
	<link>http://www.kryogenix.org/days/2009/05/13/ubuntu-one-beta</link>
	<description>&lt;p&gt;Cool, the first bit of &lt;a href=&quot;http://www.ubuntuone.com/&quot;&gt;Ubuntu One&lt;/a&gt; is released, which is the project I&amp;#8217;ve been working on since I started at Canonical. We&amp;#8217;re currently in a beta test for the file sharing part of U1; I haven&amp;#8217;t been working on that much, but the team who have are some cool guys. You can sign up for an invite at &lt;a href=&quot;http://www.ubuntuone.com/&quot;&gt;ubuntuone.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;m looking forward to more stuff happening. I was interviewed along with Matt Griffin by the &lt;a href=&quot;http://podcast.ubuntu-uk.org/&quot;&gt;Ubuntu UK podcast&lt;/a&gt; guys last night about the project and what we&amp;#8217;ve done so far (and they&amp;#8217;ve got invites to give away, too). I&amp;#8217;m also &lt;a href=&quot;http://en.oreilly.com/oscon2009/public/schedule/detail/8843&quot;&gt;speaking about Ubuntu One at OSCON&lt;/a&gt;, and the abstract for my talk seems to be being passed around as information about what might be coming up in the future :-) Cool times ahead, especially since today I came a step closer to achieving enlightenment with &lt;a href=&quot;https://edge.launchpad.net/lazr.restful&quot;&gt;lazr.restful&lt;/a&gt;, one of the libraries I&amp;#8217;m using.&lt;/p&gt;</description>
	<pubDate>Tue, 12 May 2009 23:49:07 +0000</pubDate>
</item>
<item>
	<title>Rob Annable: Links for 2009-05-11 [del.icio.us]</title>
	<guid>http://del.icio.us/eversion/linklog#2009-05-11</guid>
	<link>http://feedproxy.google.com/~r/no2self/~3/Z4imH9PJ1VM/linklog</link>
	<description>&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sustrans.org.uk/default.asp?sID=1207754496160&quot;&gt;DIY Streets Pocket Guide&lt;/a&gt;&lt;br /&gt;
&amp;#039;...written for people who would like to do something to improve the safety, condition and general feel of their street...&amp;#039;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.field-office.com/BICIN/?page_id=257&quot;&gt;BiCi_N Urban CT-SCAN&lt;/a&gt;&lt;br /&gt;
&amp;#039;...Our proposal is to equip numerous bicycles in Barcelona&amp;#039;s new public transportation system Bicing with A/V (Audio/Video) and GPS (Global Positioning System) devices in order to collect the everyday qualitative and quantitative aspects of the city via the routine of its inhabitants...&amp;#039;&lt;/li&gt;
&lt;/ul&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/no2self/~4/Z4imH9PJ1VM&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Tue, 12 May 2009 07:00:00 +0000</pubDate>
</item>
<item>
	<title>Ron Wellsted: Lugradio Live 2009</title>
	<guid>http://www.wellsted.org.uk/11 at http://www.wellsted.org.uk</guid>
	<link>http://www.wellsted.org.uk/node/11</link>
	<description>&lt;h2&gt;The leading Linux Community Event in the UK&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;http://www.wellsted.org.uk/sites/default/files/LRLCrew.jpg&quot; /&gt;&lt;/p&gt;
&lt;p&gt;On Saturday 24th October 2009, several hundred Linux users from all over the world will be descending on  The Newhampton Arts Centre,  Wolverhampton, for &lt;a href=&quot;http://lugradio.org/live/2009/&quot;&gt;LugRadio Live 2009&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.wellsted.org.uk/node/11&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Mon, 11 May 2009 13:30:35 +0000</pubDate>
</item>
<item>
	<title>Dave Morley: LRL09....</title>
	<guid>tag:blogger.com,1999:blog-21756197.post-1618157846062048450</guid>
	<link>http://davmor2.blogspot.com/2009/05/lrl09.html</link>
	<description>So hopefully you will of heard that LRL09 is back again.....&lt;br /&gt;&lt;br /&gt;It's happening on the 24th of October at the City Of Dreams (A.K.A. Wolverhampton)&lt;br /&gt;&lt;br /&gt;Get there if you can as fun is had by all :) Honest!&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/tracker/21756197-1618157846062048450?l=davmor2.blogspot.com&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Mon, 11 May 2009 11:10:00 +0000</pubDate>
	<author>noreply@blogger.com (Dave Morley)</author>
</item>
<item>
	<title>Peter Cannon: Lugradio Live 2009</title>
	<guid>http://cannon-linux.co.uk/component/content/article/70-2009/251-lugradio-live-2009</guid>
	<link>http://cannon-linux.co.uk/component/content/article/70-2009/251-lugradio-live-2009</link>
	<description>&lt;div align=&quot;center&quot;&gt;
&lt;table width=&quot;244&quot; border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign=&quot;top&quot; width=&quot;240&quot; align=&quot;center&quot;&gt;
&lt;p align=&quot;left&quot;&gt;&lt;img src=&quot;http://cannon-linux.co.uk/images/stories/lugradio/lrl_come_see.png&quot; width=&quot;240&quot; border=&quot;0&quot; height=&quot;85&quot; /&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width=&quot;240&quot;&gt;
&lt;p align=&quot;center&quot;&gt;&lt;strong&gt;24th  			October 2009&lt;/strong&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;b&gt; &lt;a href=&quot;http://maps.google.co.uk/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=Newhampton+Arts+Centre&amp;amp;sll=53.488046,-4.042969&amp;amp;sspn=19.072107,39.375&amp;amp;ie=UTF8&amp;amp;ll=52.591435,-2.133193&amp;amp;spn=0.018953,0.038452&amp;amp;z=15&quot;&gt; Newhampton Arts Centre&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;strong&gt; Wolverhampton&lt;/strong&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;strong&gt; United Kingdom&lt;/strong&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign=&quot;top&quot; width=&quot;240&quot; align=&quot;center&quot;&gt;
&lt;p&gt;&lt;img src=&quot;http://cannon-linux.co.uk/images/stories/lugradio/crew_member.png&quot; width=&quot;240&quot; border=&quot;0&quot; height=&quot;30&quot; /&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;</description>
	<pubDate>Mon, 11 May 2009 08:55:14 +0000</pubDate>
	<author>joomla-admin@cannon-linux.co.uk (Peter Cannon)</author>
</item>
<item>
	<title>Aq: Absolute beginners guide to Google Maps JavaScript</title>
	<guid>http://www.kryogenix.org/days/?p=1750</guid>
	<link>http://www.kryogenix.org/days/2009/05/10/absolute-beginners-guide-to-google-maps-javascript</link>
	<description>&lt;p&gt;A mate of mine has been building a relatively complex &lt;a href=&quot;http://www.pottononline.net&quot;&gt;website for Potton&lt;/a&gt;, the town he lives in. In six months he&amp;#8217;s gone from knowing nothing about Django or JavaScript to building something pretty cool with lots of Google maps and so on, and he&amp;#8217;s started a series writing up what he&amp;#8217;s learned for other people in the same position. First essay, an &lt;a href=&quot;http://www.whizzy.org/2009/05/absolute-beginners-guide-to-google-maps-javascript/&quot;&gt;Absolute beginners guide to Google Maps JavaScript&lt;/a&gt;.&lt;/p&gt;</description>
	<pubDate>Sun, 10 May 2009 20:47:39 +0000</pubDate>
</item>
<item>
	<title>Aq: Games in pure SVG</title>
	<guid>http://www.kryogenix.org/days/?p=1744</guid>
	<link>http://www.kryogenix.org/days/2009/05/09/games-in-pure-svg</link>
	<description>&lt;p&gt;In the &amp;#8220;stupid experiments&amp;#8221; category&amp;#8230;&lt;/p&gt;
&lt;p&gt;If you&amp;#8217;ve got nothing better to do for three hours in an evening, why not experiment a bit with SVG? That&amp;#8217;s what I thought, earlier on this evening.&lt;/p&gt;
&lt;p&gt;So: &lt;a href=&quot;http://www.kryogenix.org/random/cave.svg&quot;&gt;cave.svg&lt;/a&gt;, a game for people with no graphics criticism ability and only one finger. One single SVG file, with all the controlling JavaScript therein. Inspired by &lt;a href=&quot;http://www.sfcave.com/&quot;&gt;SFCave&lt;/a&gt;, a game I played a million jillion years ago on a Palm IIIx and which I was astounded to discover has a website and a Java version and everything.&lt;/p&gt;
&lt;p&gt;I have discovered the following things about SVG this evening.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;It is dog slow. I mean, &lt;em&gt;slo-o-o-o-o-o-o-ow&lt;/em&gt;. You&amp;#8217;ve-finished-the-exam-and-there&amp;#8217;s-still-an-hour-to-go slow. Sitting in a traffic jam for three hours and the kids keep asking for an ice cream slow.&lt;/li&gt;
&lt;li&gt;It works in Firefox and Opera. I&amp;#8217;ve tested in Midori, which is a WebKit browser, and it seems to work there too except that the fonts display as black-on-black, which means that either (a) Midori misimplents the spec (10% chance) or (b) I&amp;#8217;m doing something wrong (90% chance). It&amp;#8217;s probably broken the same way in Safari too, but the game seems to work.&lt;/li&gt;
&lt;li&gt;You have to care about XML at inopportune moments. I spent twenty minutes trying to work out why &lt;code&gt;createElement&lt;/code&gt; didn&amp;#8217;t work before sighing and using &lt;code&gt;createElementNS&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;You can specify all the sizes in percentages! So it works at any size at all and the browser handles it all for you! Resize the game while you&amp;#8217;re playing and it all still carries on working and scales for you! Do &lt;em&gt;that&lt;/em&gt; with canvas!&lt;/li&gt;
&lt;li&gt;The previous point appears to be the only thing where SVG scores over canvas. For everything else using SVG on the web seems rather like having your scrotum gently resting between a pit bull&amp;#8217;s teeth. It makes everything slightly more awkward than it ought to be&amp;#8230; and any moment now you know the pain is coming.&lt;/li&gt;
&lt;li&gt;Did I mention slow? Can somebody please tell me what kind of a world we live in where my dual-core 2&amp;#215;2GHz PC can&amp;#8217;t render a screen made out of rectangles at more than 10fps without dropping keypress events? I mean, come on.&lt;/li&gt;
&lt;li&gt;It&amp;#8217;s not very optimised code (but it shouldn&amp;#8217;t need to be). It would probably be a lot faster if I actually did things an SVGish way, by which I mean use the &lt;code&gt;transform&lt;/code&gt; attribute and so on, but there are so many things I&amp;#8217;d rather do than matrix arithmetic that it&amp;#8217;s not even funny. Up to and including eating a pound of fish fingers with broken glass in.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;In my head for a while has been a slight disappointment that everyone writing games or graphics things using JavaScript has gone for canvas (which is one step away from being a plugin &amp;#8212; it gives you a white box and you draw in it) rather than the more web-ish SVG (which works like HTML and can be intermixed and everything). I am no longer disappointed. People don&amp;#8217;t avoid dynamic SVG on the web because they&amp;#8217;re wrong. People avoid dynamic SVG on the web because it&amp;#8217;s quite shit.&lt;/p&gt;</description>
	<pubDate>Fri, 08 May 2009 23:33:47 +0000</pubDate>
</item>
<item>
	<title>Jono Bacon: Art Of Community Update and Pre-Order Available</title>
	<guid>http://www.jonobacon.org/?p=1713</guid>
	<link>http://www.jonobacon.org/2009/05/08/art-of-community-update-and-pre-order-available/</link>
	<description>&lt;p class=&quot;first-child &quot;&gt;&lt;img src=&quot;http://oreilly.com/catalog/covers/9780596156718_cat.gif&quot; align=&quot;left&quot; hspace=&quot;10&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;span title=&quot;A&quot; class=&quot;cap&quot;&gt;&lt;span&gt;A&lt;/span&gt;&lt;/span&gt;s some of you will know, I have been writing a book in recent months called &lt;a href=&quot;http://www.artofcommunityonline.org/&quot;&gt;The Art Of Community&lt;/a&gt; to be published by &lt;a href=&quot;http://oreilly.com/catalog/9780596156718/index.html&quot;&gt;O&amp;#8217;Reilly&lt;/a&gt;. The book covers a wide range of topics around building communities including &lt;em&gt;the social science behind community, planning your community growth, communicating clearly, building effective processes, setting up infrastructure, governance, conflict resolution, organising events, how to hire a community manager&lt;/em&gt; and more.&lt;/p&gt;

&lt;p&gt;Well, its been a while since I provided an update on the project, so here are some nuggets of goodness you.&lt;/p&gt;

&lt;p&gt;I started writing the book back in November and I am now nearly complete. Right now I am knee deep in edits and I have merged in all the changes from my editors Andy Oram and Simon St. Laurent. We are also currently in the reviewers phase where &lt;em&gt;The Art Of Community&lt;/em&gt; is gently slid under the noses of a diverse set of readers where they can offer comments on grammatical issues, typos, which content works well and not-so-well and other feedback. This merry band of heroes includes Amber Graner, Stephen Walli and Stuart Langridge. Their comments and attention to detail has been superb, and I want to say a huge thankyou for their efforts. I am looking forward to wrapping these final changes before I head off to the &lt;a href=&quot;https://wiki.ubuntu.com/UDS&quot;&gt;Ubuntu Developer Summit&lt;/a&gt; in Barcelona soon.&lt;/p&gt;

&lt;p&gt;I am also pleased to announce that the book is now available for pre-order. Before we finalised the book specs to go out to the retailers, O&amp;#8217;Reilly and I had a conversation about the pricing. Originally the book was going to be priced at $39.99 but I felt the price could make the book less accessible to communities with limited funds available who wanted a printed copy. O&amp;#8217;Reilly agreed and I am pleased that the book is now available for the more affordable recommended retail price of $29.99. Also, don&amp;#8217;t forget that the book will be available under a Creative Commons Attribution Sharealike Non-Commercial license too. This means that anyone download and read it, but the print edition complete with the expected O&amp;#8217;Reilly quality in materials, print and binding will be affordable too. O&amp;#8217;Reilly have been stunning over the coarse of these discussions; thanks folks!&lt;/p&gt;

&lt;p&gt;So, where can you pre-order it from? Ultimately most good book shops will carry the book but I know that each of the Amazon sites now provides the ablity to pre-order. So, head over to one of the following sites, lay down some wonga and pre-order a solid chunk of community building expertise distilled into an eye-ball friendly fun-fest:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.amazon.ca/Art-Community-Building-New-Participation/dp/0596156715/ref=sr_1_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1241305382&amp;amp;sr=8-1&quot;&gt;Canada&lt;/a&gt; - CDN$ 37.99&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.amazon.fr/Art-Community-Building-New-Participation/dp/0596156715/ref=sr_1_1?ie=UTF8&amp;amp;s=english-books&amp;amp;qid=1241305148&amp;amp;sr=8-1&quot;&gt;France&lt;/a&gt; - EUR 22,70&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.amazon.de/Art-Community-Building-New-Participation/dp/0596156715/ref=sr_1_1?ie=UTF8&amp;amp;s=books-intl-de&amp;amp;qid=1241305095&amp;amp;sr=8-1&quot;&gt;Germany&lt;/a&gt; - EUR 24,99&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.amazon.co.jp/Art-Community-J-Bacon/dp/0596156715/ref=sr_1_4?ie=UTF8&amp;amp;s=english-books&amp;amp;qid=1241305202&amp;amp;sr=8-4&quot;&gt;Japan&lt;/a&gt; - YEN 3,574&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.amazon.com/Art-Community-Building-New-Participation/dp/0596156715/ref=sr_1_3?ie=UTF8&amp;amp;s=books&amp;amp;qid=1241304950&amp;amp;sr=8-3&quot;&gt;United States&lt;/a&gt; - $29.99&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.amazon.co.uk/Art-Community-Building-New-Participation/dp/0596156715/ref=sr_1_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1241304996&amp;amp;sr=8-1&quot;&gt;United Kingdom&lt;/a&gt; - £22.99&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Buying a copy of the book will show your support for the project and send a great message to O&amp;#8217;Reilly about (a) publishing books about community and (b) publishing books under a CC license. It will also provide you with chunk of text that requires no batteries, no Kindle, and can be scribbled on with a pencil for easy note-taking! Sounds like a good deal to me. &lt;img src=&quot;http://www.jonobacon.org/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:-)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;

&lt;p&gt;In addition to this, if you do pre-order it do show off your support for the &lt;em&gt;Art Of Community&lt;/em&gt; project and put the following button on your website/blog:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3616/3502548272_f45ea46330_o.png&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Available in these sizes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://farm4.static.flickr.com/3616/3502548272_f45ea46330_o.png&quot;&gt;348&amp;#215;243&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://farm4.static.flickr.com/3616/3502548272_de019a9c27_m.jpg&quot;&gt;240&amp;#215;168&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://farm4.static.flickr.com/3616/3502548272_de019a9c27_t.jpg&quot;&gt;100&amp;#215;70&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So, there we go. But before I wrap up, I am also &lt;a href=&quot;http://www.artofcommunityonline.org/2009/05/08/website-feedback-needed/&quot;&gt;looking for some feedback&lt;/a&gt; regarding the &lt;a href=&quot;http://www.artofcommunityonline.org/&quot;&gt;www.artofcommunityonline.org&lt;/a&gt; website and how I can continue to build out its facilities for the needs of readers and those enthuses at building community. Do come along and join in the discussion! &lt;img src=&quot;http://www.jonobacon.org/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;</description>
	<pubDate>Fri, 08 May 2009 20:34:22 +0000</pubDate>
</item>
<item>
	<title>Aq: LugRadio Live 2009</title>
	<guid>http://www.kryogenix.org/days/?p=1741</guid>
	<link>http://www.kryogenix.org/days/2009/05/08/lugradio-live-2009</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://www.lugradio.org/live/2009/&quot;&gt;http://www.lugradio.org/live/2009/&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Fri, 08 May 2009 15:22:38 +0000</pubDate>
</item>
<item>
	<title>Rob Annable: Links for 2009-05-07 [del.icio.us]</title>
	<guid>http://del.icio.us/eversion/linklog#2009-05-07</guid>
	<link>http://feedproxy.google.com/~r/no2self/~3/0yqZ98GUEAQ/linklog</link>
	<description>&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://suttongrapevine.org/&quot;&gt;Sutton Grapevine&lt;/a&gt;&lt;br /&gt;
&amp;#039;...A community storytelling and sharing project collecting and recording the stories of the people who live, work and play in Sutton and the surrounding area...&amp;#039; - more fantastic work by Proboscis&lt;/li&gt;
&lt;/ul&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/no2self/~4/0yqZ98GUEAQ&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Fri, 08 May 2009 07:00:00 +0000</pubDate>
</item>
<item>
	<title>Rob Annable: Links for 2009-05-06 [del.icio.us]</title>
	<guid>http://del.icio.us/eversion/linklog#2009-05-06</guid>
	<link>http://feedproxy.google.com/~r/no2self/~3/aWZxYcoeiVw/linklog</link>
	<description>&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://sounds.bl.uk/&quot;&gt;Archival Sound Recordings&lt;/a&gt;&lt;br /&gt;
&amp;#039;...Explore 21,000 selected recordings of music, spoken word, and human and natural environments...&amp;#039;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.podnosh.com/blog/2009/04/30/birmingham-social-media-surgery-no-6-may-13th-2009/&quot;&gt;Birmingham Social Media Surgery No: 6 - May 13th 2009 | Podnosh Blog&lt;/a&gt;&lt;br /&gt;
Our local web2 enthusiasts scene goes from strength to strength. A recap by Nick Booth and news of the next event.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://neighbourhoods.typepad.com/neighbourhoods/2009/05/local-paper-makes-headlines.html&quot;&gt;Neighbourhoods: 'Local paper makes headlines'&lt;/a&gt;&lt;br /&gt;
&amp;#039;...Local nets will give you all this and better, more efficiently, less expensively, with genuine options for user-involvement and interaction - and by extension in my view, conversational democracy...&amp;#039; - Kevin Harris on the value of the local paper billboard&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.newstatesman.com/books/2009/05/militant-modernism-hatherley&quot;&gt;New Statesman - Yesterday's tomorrow&lt;/a&gt;&lt;br /&gt;
&amp;#039;...As a commentator on architecture, however, Hatherley is in a school of one...&amp;#039; - Owen&amp;#039;s new book fully endorsed by Jonathan Meades. Can&amp;#039;t think of a better accolade.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://thecontainerproject.ning.com/&quot;&gt;thecontainerproject&lt;/a&gt;&lt;br /&gt;
&amp;#039;...The Container Project is a community media lab in a 40 foot shipping container in rural Jamaica...&amp;#039; - via twitter.com/gileslane&lt;/li&gt;
&lt;/ul&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/no2self/~4/aWZxYcoeiVw&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Thu, 07 May 2009 07:00:00 +0000</pubDate>
</item>
<item>
	<title>Rob Annable: There &amp; Here</title>
	<guid>http://no2self.net/?p=1070</guid>
	<link>http://feedproxy.google.com/~r/no2self/~3/GBzo4DabXEY/</link>
	<description>&lt;p&gt;I&amp;#8217;ve been itching to tell you about this for months, ever since Matt last put me up for the night at Hotel &lt;a title=&quot;interconnected.org&quot; href=&quot;http://interconnected.org/home/&quot; target=&quot;_blank&quot;&gt;Webb&lt;/a&gt; and gave me a sneak preview. The other half of the ever-inspirational Schulze &amp;amp; Webb has published the results of his Bendy Maps research and the finished product is even more beautiful and game-changing than I ever imagined.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://no2self.net/wp-content/uploads/uptown.jpg&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-1071&quot; title=&quot;uptown&quot; src=&quot;http://no2self.net/wp-content/uploads/uptown.jpg&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;802&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Imagine a person standing at a street corner. The projection begins with a three-dimensional representation of the immediate environment. Close buildings are represented normally, and the viewer himself is shown in the third person, exactly where she stands.&lt;/p&gt;
&lt;p&gt;As the model bends from sideways to top-down in a smooth join, more distant parts of the city are revealed in plan view. The projection connects the viewer&amp;#8217;s local environment to remote destinations normally out of sight.&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;A map projection that simultaneously places you in your current location and future destination, it offers all the potency of well understood mental wayfinding devices and imagery in one single drawing. The potential, as both a drawing technique for urban design proposals as well as real-time guide for travellers, is huge.&lt;/p&gt;
&lt;p&gt;Those well understood devices of course include references to ancient, seminal texts such as Lynchian ideas of nodes, boundaries and paths etc., but in the title of the project itself &amp;#8211; &amp;#8216;Here &amp;amp; There&amp;#8217; &amp;#8211; lies another connection to the world of mid-20th century urban design theory explored here in past entries: Gordon Cullen&amp;#8217;s &lt;em&gt;Townscape&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;From &lt;a title=&quot;Here &amp;amp; There&quot; href=&quot;http://no2self.net/2005/05/17/here-and-there/&quot; target=&quot;_blank&quot;&gt;our previous entry&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Place&amp;#8230;is concerned with our reactions to the position of our body in the environment. This is as simple as it appears to be. It means, for instance, that when you go into a room you utter to yourself the unspoken words &amp;#8216;I am outside IT, I am entering IT, I am in the middle of IT&amp;#8217;. At this level of conciousness we are dealing with a range of experience stemming from the major impacts of exposure and enclosure.&lt;/p&gt;
&lt;p&gt;&amp;#8230;&lt;/p&gt;
&lt;p&gt;Arising out of this sense of identity or sympathy with the environment &amp;#8230; we discover that no sooner do we postulate a HERE than automatically we must create a THERE, for you cannot have one without the other. Some of the greatest townscape effects are created by a skillful relationship between the two&amp;#8230;&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Which you may remember was followed by a some other examples &lt;a title=&quot;Pepe Le Pew does Townscape&quot; href=&quot;http://no2self.net/2006/01/10/le-urban-design/&quot; target=&quot;_blank&quot;&gt;supported by the imagery in Chuck Jones&amp;#8217; Pepe Le Pew cartoons&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can read more &lt;a title=&quot;Here &amp;amp; There influences&quot; href=&quot;http://schulzeandwebb.com/blog/2009/05/04/here-there-influences/&quot; target=&quot;_blank&quot;&gt;about bendy maps on the S&amp;amp;W blog&lt;/a&gt; and order your &lt;a title=&quot;HAT posters&quot; href=&quot;http://schulzeandwebb.com/hat/&quot; target=&quot;_blank&quot;&gt;own copy on the official project page&lt;/a&gt; or read more about it in this month&amp;#8217;s Wired UK. I&amp;#8217;ll certainly be ordering a copy for my wall, but as beautiful as it is I still can&amp;#8217;t help dreaming about a version rendered like a letratone covered Cullen sketch or Chuck Jones animation cell.&lt;/p&gt;
&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~ff/no2self?a=GBzo4DabXEY:RfrltGTh70Q:yIl2AUoC8zA&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/no2self?d=yIl2AUoC8zA&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/no2self?a=GBzo4DabXEY:RfrltGTh70Q:63t7Ie-LG7Y&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/no2self?d=63t7Ie-LG7Y&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/no2self?a=GBzo4DabXEY:RfrltGTh70Q:dnMXMwOfBR0&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/no2self?d=dnMXMwOfBR0&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/no2self?a=GBzo4DabXEY:RfrltGTh70Q:F7zBnMyn0Lo&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/no2self?i=GBzo4DabXEY:RfrltGTh70Q:F7zBnMyn0Lo&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/no2self?a=GBzo4DabXEY:RfrltGTh70Q:V_sGLiPBpWU&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/no2self?i=GBzo4DabXEY:RfrltGTh70Q:V_sGLiPBpWU&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~ff/no2self?a=GBzo4DabXEY:RfrltGTh70Q:D7DqB2pKExk&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~ff/no2self?i=GBzo4DabXEY:RfrltGTh70Q:D7DqB2pKExk&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/no2self/~4/GBzo4DabXEY&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 06 May 2009 14:11:05 +0000</pubDate>
	<author>rob@annable.co.uk (Rob Annable)</author>
</item>
<item>
	<title>Rob Annable: Links for 2009-05-05 [del.icio.us]</title>
	<guid>http://del.icio.us/eversion/linklog#2009-05-05</guid>
	<link>http://feedproxy.google.com/~r/no2self/~3/5DgUgrz7v94/linklog</link>
	<description>&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://learningarchitecture.wordpress.com/&quot;&gt;learning architecture&lt;/a&gt;&lt;br /&gt;
&amp;#039;...academic blog of James Benedict Brown, a doctoral student in architectural pedagogy at the School of Planning, Architecture and Civil Engineering at Queen&amp;#039;s University Belfast...&amp;#039; (via thingsmagazine)&lt;/li&gt;
&lt;/ul&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/no2self/~4/5DgUgrz7v94&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 06 May 2009 07:00:00 +0000</pubDate>
</item>
<item>
	<title>Richard Smedley: links for 2009-05-05</title>
	<guid>http://www.goodgnus.org/2009/05/links-for-2009-05-05/</guid>
	<link>http://www.goodgnus.org/2009/05/links-for-2009-05-05/</link>
	<description>VA£U€$ – The Blog » Obama’s Philanthrocapitalism
(tags: philanthropy socialbusiness politics obama)


How-To: Search the Social Web - Ultimate Toolkit
Monitor the conversation about your charity or social enterprise
(tags: socialmedia monitoring searchengine analytics media howto twitter facebook buzz metrics blog)


Flawed Altruism: Empower Africa to solve the malaria problem on it’s own. &amp;#124; Project Diaspora
(tags: aid africa malaria selfreliance)


30+ Places To [...]</description>
	<pubDate>Wed, 06 May 2009 01:11:46 +0000</pubDate>
</item>
<item>
	<title>David Goodwin: Howies Dyfi Enduro 2009</title>
	<guid>http://codepoets.co.uk/517 at http://codepoets.co.uk</guid>
	<link>http://codepoets.co.uk/howies-dyfi-enduro-2009</link>
	<description>&lt;p&gt;Short summary - once again I suffered some form of dehydration and had a stinking headache around at least the last third of the course; I'm pretty sure I hit the 'wall' - as I kept thinking &quot;I'll never do this again&quot; and &quot;If I see a shortcut, I'm taking it&quot;. But then, at about 5km from the finish my mental attitude perked up and I was somewhat happier. The course itself was excellent - although I took the easy way out and pushed my bike downhill in a few places (considering I passed one poor guy on a stretcher and earlier an ambulance had zoomed past with it's lights on, I'm happy with my approach!).&lt;br /&gt;
.....&lt;/p&gt;
&lt;p&gt;The weather was lovely, but perhaps too warm for me. It had rained fairly well the night before so there was plenty of mud and water on the course. As normal, everyone was very friendly - marshals and riders included.&lt;/p&gt;
&lt;p&gt;Of course, just after the end, I had a puncture - which was annoying, but at least it wasn't during the event! &lt;/p&gt;
&lt;p&gt;I thought I finished at around 15:00 (I had no watch), but I didn't arrive back in Machynlleth until 17:00, so I've no real idea of how long it took; hopefully the results will be up soon! I was a bit annoyed with myself for not taking my heart monitor - but no doubt I'll perhaps remember next year.&lt;/p&gt;
&lt;p&gt;As per two years ago, we camped on a farm next to the &lt;a href=&quot;http://www.cat.org.uk&quot;&gt;Centre for alternative technology&lt;/a&gt;, &quot;the women&quot; went to &lt;a href=&quot;http://codepoets.co.uk/www.kingarthurslabyrinth.com/&quot;&gt;Corris Craft Centre&lt;/a&gt; on Sunday, and on Saturday we went on the &lt;a href=&quot;http://www.corris.co.uk&quot;&gt;Corris steam train&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;On Sunday, after I washed all the mud off, we went to &lt;a href=&quot;http://www.tafarndwynant.co.uk/&quot;&gt;Tafarn Dwynant&lt;/a&gt; - a lovely pub in Ceinws (near our campsite). Were we ended up seeing &lt;a href=&quot;http://www.fermit.org.uk&quot;&gt;Fermit&lt;/a&gt; again (this time a pint of beer replaced the steam train) and of course Johanna.&lt;/p&gt;</description>
	<pubDate>Tue, 05 May 2009 05:50:41 +0000</pubDate>
</item>
<item>
	<title>Richard Smedley: links for 2009-05-03</title>
	<guid>http://www.goodgnus.org/2009/05/links-for-2009-05-03/</guid>
	<link>http://www.goodgnus.org/2009/05/links-for-2009-05-03/</link>
	<description>stock.xchng - the leading free stock photography site
(tags: stockphotos pictures stock photography free webdesign resources)</description>
	<pubDate>Mon, 04 May 2009 01:07:48 +0000</pubDate>
</item>
<item>
	<title>Ron Wellsted: A Jaunty week</title>
	<guid>http://www.wellsted.org.uk/10 at http://www.wellsted.org.uk</guid>
	<link>http://www.wellsted.org.uk/node/10</link>
	<description>&lt;p&gt;Just over a week ago I upgraded my laptop (a Fujitsu Amilo Li1718) to Ubuntu 9.04, using the release candidate.  I found it to be very impressive.  Previously I had had to jump through various hoops to get everything working.  Now (hopefully) those days are gone.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.wellsted.org.uk/node/10&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Thu, 30 Apr 2009 10:25:47 +0000</pubDate>
</item>
<item>
	<title>Richard Smedley: links for 2009-04-29</title>
	<guid>http://www.goodgnus.org/2009/04/links-for-2009-04-29/</guid>
	<link>http://www.goodgnus.org/2009/04/links-for-2009-04-29/</link>
	<description>50 Tricks to Get Things Done Faster, Better, and More Easily - Stepcase Lifehack
(tags: lifehacks GTD effectiveness productivity timemanagement tips efficiency)


 How I set up a community journalism blog for where I live by edwalker.net
(tags: local blog preston lancs northwest community twitter journalism)</description>
	<pubDate>Thu, 30 Apr 2009 01:11:13 +0000</pubDate>
</item>

</channel>
</rss>
