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

<channel>
	<title>magpiebrain</title>
	<atom:link href="http://www.magpiebrain.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.magpiebrain.com</link>
	<description>Sam Newman's blog</description>
	<lastBuildDate>Sun, 17 May 2009 12:27:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Moving to&#160;Tumblr</title>
		<link>http://www.magpiebrain.com/blog/2009/05/17/moving-to-tumblr/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.magpiebrain.com/blog/2009/05/17/moving-to-tumblr/#comments</comments>
		<pubDate>Sun, 17 May 2009 12:27:20 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.magpiebrain.com/blog/2009/05/17/moving-to-tumblr/</guid>
		<description><![CDATA[I always had this blog to write, not to run a blog. I&#8217;ve written less and less over the last couple of years and part of this is down to the overhead of maintaining wordpress. My plan is to switch to a clean, hosted solution - and Tumblr is looking like what I want. I [...]]]></description>
			<content:encoded><![CDATA[<p>I always had this blog to write, not to run a blog. I&#8217;ve written less and less over the last couple of years and part of this is down to the overhead of maintaining wordpress. My plan is to switch to a clean, hosted solution - and <a href="http://tumblr.com/">Tumblr</a> is looking like what I want. I plan to migrate everything over ASAP, but ASAP is proving to be not quite as soon as I&#8217;d like.</p>
<p>The migration plan is looking like this:</p>
<ol>
<li>Setup blog.magpiebrain.com to point to my <a href="http://magpiebrain.tumblr.com/">Tumblr blog</a></li>
<li>Start posting there, not here</li>
<li>Write a script to export my posts from here to Tumblr.</li>
<li>Write a script to export my comments from here to Disqus.</li>
<li>Setup permanent redirects from the old posts to the new home at Tumblr.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.magpiebrain.com/blog/2009/05/17/moving-to-tumblr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A stub webserver for Scala using&#160;Jetty</title>
		<link>http://www.magpiebrain.com/blog/2009/05/16/a-stub-webserver-for-scala-using-jetty/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.magpiebrain.com/blog/2009/05/16/a-stub-webserver-for-scala-using-jetty/#comments</comments>
		<pubDate>Sat, 16 May 2009 15:49:34 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[scala]]></category>

		<guid isPermaLink="false">http://www.magpiebrain.com/?p=508</guid>
		<description><![CDATA[I knocked this up to help testing on something I&#8217;ve been working on in my spare time. It would be a trivial exercise to extend this to build pages for specific URLs - this example returns the same markup for any example. The old codehaus site for Jetty contain lots of examples of how to [...]]]></description>
			<content:encoded><![CDATA[<p>I knocked this up to help testing on something I&#8217;ve been working on in my spare time. It would be a trivial exercise to extend this to build pages for specific URLs - this example returns the same markup for any example. The <a href="http://docs.codehaus.org/display/JETTY/Embedding+Jetty">old codehaus site for Jetty</a> contain lots of examples of how to configure an embedded server.</p>
<pre>
import org.eclipse.jetty.server.handler.AbstractHandler
import org.eclipse.jetty.server.Handler
import org.eclipse.jetty.server.Server
import org.eclipse.jetty.server.Request
import javax.servlet.http.HttpServletRequest
import javax.servlet.http.HttpServletResponse
import scala.xml.Elem

class HttpServer {

  val handler = new MutableHandler()

  def run(port: Int) = {
    val server = new Server(port)
    server.setHandler(handler)
    server.start()
  }

  def updateHtml(html: Elem) = {
    handler.html = html
  }
}

protected class MutableHandler extends AbstractHandler {
  var html =
<h1>Hello</h1>

  override def handle(target: String, request: HttpServletRequest, response: HttpServletResponse) = {
    response.setContentType("text/html");
    response.setStatus(HttpServletResponse.SC_OK);
    response.getWriter().println(html.toString());
    (request.asInstanceOf[Request]).setHandled(true);
  }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.magpiebrain.com/blog/2009/05/16/a-stub-webserver-for-scala-using-jetty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Genius is&#160;Genius</title>
		<link>http://www.magpiebrain.com/blog/2008/10/25/genius-is-genius/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.magpiebrain.com/blog/2008/10/25/genius-is-genius/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 01:09:52 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iphone music]]></category>

		<guid isPermaLink="false">http://www.magpiebrain.com/?p=502</guid>
		<description><![CDATA[It just threw up this playlist for me on the iPhone - it seems my own personal DJ has finally arrived:

Beast Of Burden - Rolling Stones
Idioteque - Radiohead (live)
Born Under A Bad Sign - Jimi Hendrix
I Got Mine - The Black Keys
It&#8217;s Hard To Be a Saint In the City - Bruce Springsteen &#038; The [...]]]></description>
			<content:encoded><![CDATA[<p>It just threw up this playlist for me on the iPhone - it seems my own personal DJ has finally arrived:</p>
<ul>
<li>Beast Of Burden - Rolling Stones</li>
<li>Idioteque - Radiohead (live)</li>
<li>Born Under A Bad Sign - Jimi Hendrix</li>
<li>I Got Mine - The Black Keys</li>
<li>It&#8217;s Hard To Be a Saint In the City - Bruce Springsteen &#038; The E Street Band</li>
<li>The E Street Shuffle - Bruce Springsteen &#038; The E Street Band</li>
<li>Who&#8217;s Gonna Save My Soul - Gnarls Barkley</li>
<li>Play With Fire - Rolling Stones</li>
<li>I Taught Myself How To Grow Old - Ryan Adams</li>
<li>House Of Cards - Radiohead</li>
<li>Delirious Love - Neil Diamond</li>
<li>Old Enough - The Raconteurs</li>
<li>You Don&#8217;t Know What Love Is - The White Stripes</li>
<li>Shake Appeal - The Stooges</li>
<li>Shattered - The Rolling Stones</li>
<li>Oh Yoko - John Lennon</li>
<li>True Love Way - Kings Of Leon</li>
<li>Hear My Train A Comin&#8217; (Acoustic) - Jimi Hendrix</li>
<li>Tell Me Why - Neil Young</li>
<li>Sprit In The Night  - Bruce Springsteen &#038; The E Street Band</li>
<li>Psychotic Girl - The Black Keys</li>
<li>Suprise - Gnarls Barkley</li>
<li>New York Serenade  - Bruce Springsteen &#038; The E Street Band</li>
<li>All I Need - Radiohead</li>
<li>Rest My Chemistry - Interpol</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.magpiebrain.com/blog/2008/10/25/genius-is-genius/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Site&#160;Hacked</title>
		<link>http://www.magpiebrain.com/blog/2008/06/01/wordpress-site-hacked/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.magpiebrain.com/blog/2008/06/01/wordpress-site-hacked/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 19:29:02 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[wordpress hack hacked security spam]]></category>

		<guid isPermaLink="false">http://www.magpiebrain.com/?p=501</guid>
		<description><![CDATA[I&#8217;ve been neglecting things here at Magpiebrain Towers since my move to San Francisco. Blame the sunshine, a demanding new client, or just a relapse of extreme apathy. Whatever the cause, it seems that my inattention has been rewarded.
Simon sent me an email the other day, wondering where the blog had gone. I brought up [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been neglecting things here at Magpiebrain Towers since my move to San Francisco. Blame the sunshine, a demanding new client, or just a relapse of extreme apathy. Whatever the cause, it seems that my inattention has been rewarded.</p>
<p><a title="Small Values Of Cool" href="http://www.brunningonline.net/simon/blog/">Simon</a> sent me an email the other day, wondering where the blog had gone. I brought up Firefox and checked - &#8220;No, the site is still there&#8221; I said. But it wasn&#8217;t as far as Google search was confirmed.</p>
<h3>Redirection based on Referer</h3>
<p>It turned out that via Google search, when you clicked on links for Magpiebrain then you were redirected to a suspected malware site called &#8216;your-needs.info&#8217;. I immediately blamed Google. Luckily, calmer heads prevailed, and someone far more knowledgeable than me pointed me at these interesting results:</p>
<pre>$ curl -I http://magpiebrain.com
HTTP/1.1 200 OK
Date: Thu, 29 May 2008 18:00:52 GMT
Server: Apache
X-Pingback: http://www.magpiebrain.com/xmlrpc.php
Vary: Accept-Encoding
X-Powered-By: The blood, sweat and tears of the fine, fine TextDrive staff
Served-By: TextDrive
Content-Type: text/html; charset=UTF-8</pre>
<pre>$ curl -I -H "Referer: http://www.google.com/search?q=sam+newman"
http://magpiebrain.com
HTTP/1.1 302 Found
Date: Thu, 29 May 2008 18:00:57 GMT
Server: Apache
Location: http://your-needs.info/search/index.php?q=sam+newman
Vary: Accept-Encoding
X-Powered-By: The blood, sweat and tears of the fine, fine TextDrive staff
Served-By: TextDrive
Content-Type: text/html; charset=UTF-8</pre>
<p>So, it seems that if google is the referer, then the browser is redirected to some shitty spam site.</p>
<p>Cunning barstweards.</p>
<h3>Lax Wordpress Upkeep to blame?</h3>
<p>When I found out that it was my site that was to blame, I immediately started poking around. I checked my .htaccess file - thankfully this was clear. Next, I disabled all the plugins in Wordpress, but still the redirect worked. Finally, I moved index.php out of the way - thereby stopping wordpress from being invoked - and surely enough the redirection stopped. So Wordpress was to blame.</p>
<p>However, my inaction in writing posts for the site has also extended to not actually keeping Wordpress up to date. So my first course of action was to upgrade from 2.3.3. to 2.5.1. The upgrade process was seemless as always, but the referer hack remained.</p>
<h3>Fix</h3>
<p>A recent thread over at <a title="Wordpress.org - Support Forums" href="http://wordpress.org/support/topic/179395?replies=2#post-770581">wordpress.org</a> helped me find the solution. By poking around in <code>wp_options</code> and removing a row with an <code>option_name</code> of <code>rss_f541b3abd05e7962fcab37737f40fad8</code> the problem went away. Right now it isn&#8217;t clear which exploit was used, or how many sites were affected, but the thread I found was pretty recent which implies this may be a new issue.</p>
<h3>Insidious Hack</h3>
<p>This really is quite a good use of what appears to be a Wordpress exploit. The only way in which this hack becomes apparent is if you check your analytics frequently (which I don&#8217;t - my ego is already big enough without stoking it by looking at hits) or if so perform a google search for your own content, which happens rarely. What is in it for the hackers is harder to see, other than driving traffic to a bogus search engine that pushes prescription drugs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magpiebrain.com/blog/2008/06/01/wordpress-site-hacked/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Hairball</title>
		<link>http://www.magpiebrain.com/blog/2007/07/08/hairball/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.magpiebrain.com/blog/2007/07/08/hairball/#comments</comments>
		<pubDate>Sun, 08 Jul 2007 15:55:50 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.magpiebrain.com/blog/2007/07/08/hairball/</guid>
		<description><![CDATA[ I&#8217;ve been working on a tool called Hairball to track setter and constructor injection, and use of singletons in Java code. Right now, the tool is capable of creating dot diagrams (for use with GraphViz) and graphml diagrams (for display in yEd).
My initial motivation for hairball was as a tool to help me understand [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/p/hairball/wiki/Gallery"><img class="floatleft" src='http://www.magpiebrain.com/wp-content/uploads/2007/07/hairball.PNG' alt='Hairball example' /></a> I&#8217;ve been working on a tool called <a href="http://code.google.com/p/hairball/">Hairball</a> to track setter and constructor injection, and use of singletons in Java code. Right now, the tool is capable of creating <a href="http://code.google.com/p/hairball/wiki/Gallery">dot diagrams</a> (for use with <a href="http://www.graphviz.org/">GraphViz</a>) and graphml diagrams (for display in <a href="http://www.yworks.com/en/products_yed_about.htm">yEd</a>).</p>
<p>My initial motivation for hairball was as a tool to help me understand potential problems in my code bases - spot god classes, code that is hard to test, odd dependencies. The tool purposely doesn&#8217;t make any judgments about code bases - it just gives you the diagrams. What you do with them is up to you.</p>
<p>The first version doesn&#8217;t contain support for tracking of singleton dependencies, and the setter and constructor injection should very much be considered a first stab - so I could do with some beta testers. I&#8217;m looking to track down false positives and negatives, as well as get some general feedback. Is Hairball it easy to use? Does it misdetect dependencies? Can you read the diagrams? Does it blow up when trying to run on your mammoth code base (I&#8217;ve done nothing to tune performance)?</p>
<h3>Future Features</h3>
<p>I have a few more features I&#8217;d like to add, including:</p>
<ul>
<li>Singleton detection</li>
<li>Displaying inheritance</li>
<li>Support spotting attribute injection from frameworks like <a href="http://www.picocontainer.org/">Picocontainer</a> or <a href="http://code.google.com/p/google-guice/">Guice</a>
<li>Overlaying other metrics (e.g. colour based on Emma output, make nodes taller based on number of instructions in the class)</li>
</ul>
<p>The feedback I get will very much determine what gets added next.</p>
<p>Hairball is <a href="http://code.google.com/p/hairball/downloads/list">available now</a> for download.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magpiebrain.com/blog/2007/07/08/hairball/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>No social Security Number? Forget an&#160;iPhone</title>
		<link>http://www.magpiebrain.com/blog/2007/07/01/no-social-security-number-forget-an-iphone/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.magpiebrain.com/blog/2007/07/01/no-social-security-number-forget-an-iphone/#comments</comments>
		<pubDate>Sun, 01 Jul 2007 00:53:41 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.magpiebrain.com/blog/2007/07/01/no-social-security-number-forget-an-iphone/</guid>
		<description><![CDATA[Update: There is a workaround for this problem, which allows you to sign-up for a prepaid account with AT&#038;T which sidesteps the need for a Social Security Number. The Unofficial Apple Weblog has the full details.
I&#8217;m working in the US at the moment, and decided to pick up an iPhone. I&#8217;m here long enough to [...]]]></description>
			<content:encoded><![CDATA[<p class="update">Update: There is a workaround for this problem, which allows you to sign-up for a prepaid account with AT&#038;T which sidesteps the need for a Social Security Number. The <a href="http://www.tuaw.com/2007/07/01/prepaid-iphone-in-a-nutshell/">Unofficial Apple Weblog</a> has the full details.</p>
<p>I&#8217;m working in the US at the moment, and decided to pick up an iPhone. I&#8217;m here long enough to justify it (well, justifying a $600 phone is pretty damn hard). No problems in getting one - the SF Apple Store had plenty.</p>
<p>The problem is that as part of the signup for AT&#038;T, I need not only a credit card with US billing address, but also social security number. I have neither. The shop assistant knew I was from the UK but mentioned nothing about this.</p>
<p>So now I had an iPhone that is a very pretty brick. I guess it&#8217;ll be going back in the morning&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magpiebrain.com/blog/2007/07/01/no-social-security-number-forget-an-iphone/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Upgrade snafu, fixed&#160;now</title>
		<link>http://www.magpiebrain.com/blog/2007/04/13/upgrade-snafu-fixed-now/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.magpiebrain.com/blog/2007/04/13/upgrade-snafu-fixed-now/#comments</comments>
		<pubDate>Fri, 13 Apr 2007 08:26:10 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.magpiebrain.com/blog/2007/04/13/upgrade-snafu-fixed-now/</guid>
		<description><![CDATA[I upgraded to the latest and greatest version of Wordpress at the weekend, but forgot to reconstitute my .htaccess file, so everything apart from the index page was 404ing. Normal service should now be resumed, but please let me know if you spot anything odd.
]]></description>
			<content:encoded><![CDATA[<p>I upgraded to the latest and greatest version of Wordpress at the weekend, but forgot to reconstitute my <code>.htaccess</code> file, so everything apart from the index page was 404ing. Normal service should now be resumed, but please let me know if you spot anything odd.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magpiebrain.com/blog/2007/04/13/upgrade-snafu-fixed-now/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>London 2.0 RC 11, Wednesday 11th of&#160;April</title>
		<link>http://www.magpiebrain.com/blog/2007/03/22/london-20-rc-11-wednesday-11th-of-april/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.magpiebrain.com/blog/2007/03/22/london-20-rc-11-wednesday-11th-of-april/#comments</comments>
		<pubDate>Thu, 22 Mar 2007 12:48:28 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.magpiebrain.com/blog/2007/03/22/london-20-rc-11-wednesday-11th-of-april/</guid>
		<description><![CDATA[It&#8217;s that time again - after the success of March, what better than an April meet-up? 
No fixed topic (as usual) so just a general chat about Web 2.0 technologies in the relaxed atmosphere of a Pub in central London next door to where Sweeny Todd used to butcher people.
Demos are welcome - so bring [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s that time again - after the success of March, what better than an April meet-up? </p>
<p>No fixed topic (as usual) so just a general chat about Web 2.0 technologies in the relaxed atmosphere of a Pub in central London next door to where Sweeny Todd used to butcher people.</p>
<p>Demos are welcome - so bring along your latest gadget/tool/service or whatever, although don&#8217;t expect any Wifi!</p>
<p>As usual, signup on <a href="http://upcoming.org/event/167888/?ps=5">Upcoming</a>, and stay tuned to <a href="http://www.google.com/calendar/ical/c7ilcesmkkn0e3bkirk4kgf5cc@group.calendar.google.com/public/basic">the calendar</a> or this blog for updates.</p>
<p class="tags">Tags: <a href="http://technorati.com/tag/london20" title="See the Technorati tag page for 'london20'." rel="tag">london20</a>, <a href="http://technorati.com/tag/web20" title="See the Technorati tag page for 'web20'." rel="tag">web20</a>, <a href="http://technorati.com/tag/london2.0" title="See the Technorati tag page for 'london2.0'." rel="tag">london2.0</a>, <a href="http://technorati.com/tag/web2.0" title="See the Technorati tag page for 'web2.0'." rel="tag">web2.0</a>, <a href="http://technorati.com/tag/london" title="See the Technorati tag page for 'london'." rel="tag">london</a>, <a href="http://technorati.com/tag/meet-up" title="See the Technorati tag page for 'meet-up'." rel="tag">meet-up</a>, <a href="http://technorati.com/tag/social" title="See the Technorati tag page for 'social'." rel="tag">social</a>, <a href="http://technorati.com/tag/geek" title="See the Technorati tag page for 'geek'." rel="tag">geek</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.magpiebrain.com/blog/2007/03/22/london-20-rc-11-wednesday-11th-of-april/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dbdeploy at XTech&#160;2007</title>
		<link>http://www.magpiebrain.com/blog/2007/02/25/dbdeploy-at-xtech-2007/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.magpiebrain.com/blog/2007/02/25/dbdeploy-at-xtech-2007/#comments</comments>
		<pubDate>Sun, 25 Feb 2007 19:15:10 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.magpiebrain.com/blog/2007/02/25/dbdeploy-at-xtech-2007/</guid>
		<description><![CDATA[I&#8217;ll be presenting on database refactoring and specifically dbdeploy at this year&#8217;s XTech conference. XTech 2007 runs from the 15th to the 18th of May in Paris, and my presentation will be first thing on the morning of the 17th.
See you there&#8230;
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be presenting on database refactoring and specifically <a href="http://dbdeploy.com/">dbdeploy</a> at this year&#8217;s XTech conference. XTech 2007 runs from the 15th to the 18th of May in Paris, and <a href="http://xtech.expectnation.com/event/1/public/schedule/detail/27">my presentation</a> will be first thing on the morning of the 17th.</p>
<p>See you there&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magpiebrain.com/blog/2007/02/25/dbdeploy-at-xtech-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>London 2.0 RC 10 - Thursday 15th of&#160;March</title>
		<link>http://www.magpiebrain.com/blog/2007/02/21/london-20-rc-10-wednesday-14th-of-march/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.magpiebrain.com/blog/2007/02/21/london-20-rc-10-wednesday-14th-of-march/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 18:20:36 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[London 2.0 Meet-Ups]]></category>

		<guid isPermaLink="false">http://www.magpiebrain.com/blog/2007/02/21/london-20-rc-10-wednesday-14th-of-march/</guid>
		<description><![CDATA[Update 1: OK, sorry for the change - but I&#8217;ve had to reschedule to Thursday 15th of March. Venue still tbc
Update 2: The venue is now confirmed as the Old Bank Of England
OK - I thought getting filmed by someone from Microsoft last year was as surreal an experience as I could expect from London [...]]]></description>
			<content:encoded><![CDATA[<p class="update"><em>Update 1</em>: OK, sorry for the change - but I&#8217;ve had to reschedule to Thursday 15th of March. Venue still tbc</p>
<p class="update"><em>Update 2</em>: The venue is now confirmed as the <a href="http://www.beerintheevening.com/pubs/s/66/660/">Old Bank Of England</a></p>
<p>OK - I thought getting filmed by someone from Microsoft last year was as surreal an experience as I could expect from London 2.0, but I think a plug on <a href="http://www.wired.com/news/technology/0,72769-0.html?tw=rss.index">Wired News</a> which I came across in Gmail takes the biscuit:</p>
<blockquote cite="http://www.wired.com/news/technology/0,72769-0.html?tw=rss.index">
<p>Londoners&#8217; calendars are once again full of networking events, parties and meetups.</p>
<p>The setting is traditionally a London pub and, in the case of events like Beers &#038; Innovations, appropriate liquid lubrication is on tap.</p>
</blockquote>
<p>No damn plug for the blog though - or me! I suppose at least one Sam (<a href="http://www.linkedin.com/in/samsethi">Sam Sethi</a>) gets a sound bite - even if he does have nothing to do with the event :-)</p>
<p>Anyway, after a not so brief hiatus, the next event will be on <del>Wednesday March the 14th</del> <span class="update">Thursday 15th of March</span>. Details up as usual on the <a href="http://www.google.com/calendar/feeds/c7ilcesmkkn0e3bkirk4kgf5cc@group.calendar.google.com/public/basic">calendar</a>, <a href="http://upcoming.org/event/154671">Upcoming</a> and the <a href="http://london20.org/2007/02/21/london-20-rc-10-wednesday-14th-of-march/">official website</a>. <del>Venue tbc</del> The venue will be at the <span><a href="http://www.beerintheevening.com/pubs/s/66/660/">Old Bank Of England</a></span>, but please comment or update upcoming if you&#8217;re attending. <a href="http://qcon.infoq.com/qcon/conference/">QCon</a> will be in town at the same time, so we may have a few gatecrashers&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magpiebrain.com/blog/2007/02/21/london-20-rc-10-wednesday-14th-of-march/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
