<?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>fberriman</title>
	<atom:link href="http://fberriman.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fberriman.com</link>
	<description>a blog for frances</description>
	<lastBuildDate>Tue, 13 Mar 2012 15:33:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Schema-org, microformats and more science please</title>
		<link>http://fberriman.com/2011/12/01/schema-org-microformats-and-more-science-please/</link>
		<comments>http://fberriman.com/2011/12/01/schema-org-microformats-and-more-science-please/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 18:18:10 +0000</pubDate>
		<dc:creator>Frances</dc:creator>
				<category><![CDATA[Microformats]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[authoring]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[microdata]]></category>
		<category><![CDATA[schema-org]]></category>
		<category><![CDATA[semantic web]]></category>

		<guid isPermaLink="false">http://fberriman.com/?p=617</guid>
		<description><![CDATA[A normal conversation in the GovUK (or any office I frequent) today went*: &#8220;Can we get some microformats on that page?&#8221;, I suggest as I spot a section of our site outputting a boat-load of addresses. &#8220;No problem &#8211; but what&#8217;s this about schema-org?&#8221;. &#8220;Yeah, yeah.. we can hedge our bets and throw their mark-up [...]]]></description>
			<content:encoded><![CDATA[
<p>A normal conversation in the <a href="http://twitter.com/govuk">GovUK</a> (or any office I frequent) today went*: &#8220;Can we get some <a href="http://microformats.org">microformats</a> on that page?&#8221;, I suggest as I spot a section of our site outputting a boat-load of addresses.  &#8220;No problem &#8211; but what&#8217;s this about <a href="http://schema.org">schema-org</a>?&#8221;.  &#8220;Yeah, yeah.. we can hedge our bets and throw their mark-up in there too, it&#8217;s just some extra <code>itemprops</code>. <em>*flippant scoff*</em> I&#8217;ll send you a complete snippet example, because I&#8217;m just nice like that.&#8221;</p>
<p>And that&#8217;s what I did.  And it looked like this:</p>
<pre><code>
&lt;div class="vcard" itemscope itemtype="http://schema.org/Organization"&gt;
  &lt;p class="org" itemprop="name"&gt;Department for Transport&lt;/p&gt;
  &lt;p class="adr" itemprop="address" itemscope
itemtype="http://schema.org/PostalAddress"&gt;
    &lt;span itemprop="streetAddress"&gt;
      &lt;span class="extended-address"&gt;Great Minster House&lt;/span&gt;
      &lt;span class="street-address"&gt;76 Marsham Street&lt;/span&gt;
    &lt;/span&gt;
      &lt;span class="locality" itemprop="addressLocality"&gt;London&lt;/span&gt;
      &lt;span class="postcode" itemprop="postalCode"&gt;SW1P 4DR&lt;/span&gt;
  &lt;/p&gt;

    &lt;p&gt;Telephone: &lt;span class="tel"
itemprop="telephone"&gt;0300 330 3000&lt;/span>&lt;/p&gt;
    &lt;p&gt;Website: &lt;a href="http://www.dft.gov.uk" class="url"
itemprop="url"&gt;www.dft.gov.uk&lt;/a&gt;&lt;/p&gt;
    &lt;p&gt;Email: &lt;a
href="mailto:firstname.surname@dft.gsi.gov.uk"
class="email" itemprop="email"&gt;firstname.surname@dft.gsi.gov.uk&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
</code></pre>
<p>Holy massive-code-snippet batman.  I was surprised by the size.  I know, I can feel people digging up links already on attack and defence of &#8220;bloat&#8221; when using microformats alone, but seriously guys, IT&#8217;S HUGE.  I felt guilty saying &#8220;this is what you&#8217;ve gotta add to get this mark-up to <em>mean something</em>&#8220;. Here&#8217;s a more broken down comparison:</p>
<p>Here&#8217;s the address, raw, at just over a tweet&#8217;s worth (167 chars):</p>
<pre><code>
Department for Transport
Great Minster House
76 Marsham Street
SW1P 4DR
Telephone: 0300 330 3000
Website: http://www.dft.gov.uk
Email: firstname.surname@dft.gsi.gov.uk
</code></pre>
<p>Here&#8217;s the address with the elements on it to get at the separate pieces of the address, bringing us up to 356:</p>
<pre><code>
&lt;p&gt;Department for Transport&lt;/p&gt;
&lt;p&gt;
  &lt;span&gt;Great Minster House&lt;/span&gt;
  &lt;span&gt;76 Marsham Street&lt;/span&gt;
  &lt;span&gt;London&lt;/span&gt;
  &lt;span&gt;SW1P 4DR&lt;/span&gt;
&lt;/p&gt;

&lt;p&gt;Telephone: 0300 330 3000&lt;/p&gt;
&lt;p&gt;Website: &lt;a href="http://www.dft.gov.uk"&gt;www.dft.gov.uk&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Email: &lt;a href="mailto:firstname.surname@dft.gsi.gov.uk"
&gt;firstname.surname@dft.gsi.gov.uk&lt;/a&gt;&lt;/p&gt;
</code></pre>
<p>Now let&#8217;s throw some classes on to those and get a bit of meaning in there (I mean, you may want to style them up, get things on new lines etc etc. so using the microformat classes are handy for that alone.**). We&#8217;ve got a vCard, people!  (565):</p>
<pre><code>
&lt;div class="vcard"&gt;
  &lt;p class="org">Department for Transport&lt;/p&gt;
  &lt;p class="adr"&gt;
    &lt;span class="extended-address"&gt;Great Minster House&lt;/span&gt;
    &lt;span class="street-address"&gt;76 Marsham Street&lt;/span&gt;

    &lt;span class="locality"&gt;London&lt;/span&gt;
    &lt;span class="postcode"&gt;SW1P 4DR&lt;/span&gt;
  &lt;/p&gt;

    &lt;p&gt;Telephone: &lt;span
class="tel"&gt;0300 330 3000&lt;/span>&lt;/p&gt;
    &lt;p&gt;Website: &lt;a href="http://www.dft.gov.uk"
class="url"&gt;www.dft.gov.uk&lt;/a&gt;&lt;/p&gt;
    &lt;p&gt;Email: &lt;a
href="mailto:firstname.surname@dft.gsi.gov.uk"
class="email&gt;firstname.surname@dft.gsi.gov.uk&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
</code></pre>
<p>And now let&#8217;s make it schema-org friendly using microdata (863):</p>
<pre><code>
&lt;div class="vcard" itemscope itemtype="http://schema.org/Organization"&gt;
  &lt;p class="org" itemprop="name">Department for Transport&lt;/p&gt;
  &lt;p class="adr" itemprop="address" itemscope
itemtype="http://schema.org/PostalAddress"&gt;
    &lt;span itemprop="streetAddress"&gt;
      &lt;span class="extended-address">Great Minster House&lt;/span&gt;
      &lt;span class="street-address">76 Marsham Street&lt;/span&gt;
    &lt;/span&gt;
      &lt;span class="locality" itemprop="addressLocality"&gt;London&lt;/span&gt;
      &lt;span class="postcode" itemprop="postalCode"&gt;SW1P 4DR&lt;/span&gt;
  &lt;/p&gt;

    &lt;p&gt;Telephone: &lt;span class="tel"
itemprop="telephone"&gt;0300 330 3000&lt;/span>&lt;/p&gt;
    &lt;p&gt;Website: &lt;a href="http://www.dft.gov.uk" class="url"
itemprop="url"&gt;www.dft.gov.uk&lt;/a&gt;&lt;/p&gt;
    &lt;p&gt;Email: &lt;a
href="mailto:firstname.surname@dft.gsi.gov.uk"
class="email" itemprop="email"&gt;firstname.surname@dft.gsi.gov.uk&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
</code></pre>
<p>And we&#8217;re done.  All I wanted to do was say &#8220;this, dear Computer, is an address&#8221;.  Just getting some frankly useless out-of-the-box HTML elements on the raw data more than doubles it&#8217;s size (167 to 356), then we double it again to <em>actually</em> make it useful.</p>
<p>Now, I know size isn&#8217;t everything, and this is a pedantic, slightly silly, and probably less than accurate example.  We&#8217;re not crazy obsessed with keeping our pages below a certain size anymore (Ah&#8230; I remember back when the BBC S&#038;Gs insisted that every page had to be less than 200k down the wire <strong>including script and CSS AND images</strong>.  Those were the days.), but it&#8217;s not something to be sniffed at either.  Particularly with mark-up.  Increased size probably suggests increased complexity &#8211; more work for everyone, more chance of someone bungling the order or nesting, more simply <em>&#8220;I can&#8217;t be bothered&#8221;</em>.  Colour me dubious.  I just want to highlight how much we <em>add on</em> to HTML to make it actually do what we need.</p>
<h3><code>Itemscope</code> and <code>itemtype</code>, a brief diversion</h3>
<p>I had one of those <em>Am I crazy, but why are there two properties on these things?</em> moments.  When would you ever use one without the other?  The spec says you can use <code>itemscope</code> alone, but without <code>itemtype</code>, it&#8217;s a bit meaningless.  I think I&#8217;d do away with <code>itemscope</code> and have <code>itemtype</code> only but with a value, either a URI or something meaningful to the internal vocabulary.  <code>itemscope</code> seems to exist solely to say &#8220;the things in side me are related&#8221;, but by the very nature of it being the parent of those items, that&#8217;s already implied, and with a class name of something meaningful (say, hcard), or just the <code>itemtype</code> (with a useful value), explicit to data consumers.  </p>
<p>This isn&#8217;t sarcasm: I would gratefully receive an explanation as to why there are two attributes instead of one.</p>
<h3>Back in the room: Is this seriously what we expect authors to do?</h3>
<p>I think I&#8217;m still struggling to understand why microdata is a separate specification (or even exists if it&#8217;s not being used as a mechanism to get stuff into HTML long-term).  You can achieve exactly this richness with the current attributes supplied in HTML, and I don&#8217;t even mean just the microformats <code>class</code> way.  The <a href="http://www.w3.org/TR/html5/elements.html#embedding-custom-non-visible-data-with-the-data-attributes"><code>data-</code></a> attribute is pretty handy, though, and seems ripe for stuffing with machine data (why shouldn&#8217;t it take a URI if you really need it?).  </p>
<p>But I digress.  </p>
<p>Microdata with schema-org is solving a problem we&#8217;ve already solved in microformats, but in an equally not-quite-there way (having to specify <code>itemtype</code> with a URI more than once in a page for items that are the same, but not within the same parent, feels filthy, for example).  They are just as bad as each other, in slightly varying ways.  Useful for proving a point, allowing growth and putting out examples (not that all of these bonuses are currently being made the best of), but crappy if this is all we can muster for the long-term, high-volume, regularly published, data representation patterns in HTML.  We&#8217;re asking authors to jump through hoops still for things they shouldn&#8217;t have to.</p>
<p>Microformats, schema-org, whatever&#8230; is this really our game plan now?  Just keep throwing ever more bloat into already creaking elements when you just want to do something <em>really common</em>?  What&#8217;s the strategy for getting this stuff out of this mess and into the language?  </p>
<p>You might be asking why bother aiming to get those stronger patterns into HTML, if this mechanism basically works for getting a machine to figure out what the hell you&#8217;re trying to say, but you may as well be asking why you have any semantically meaningful elements in HTML <em>at all</em> if that&#8217;s the case.  HTML version 5 is <a href="http://html5doctor.com/i-b-em-strong-element/">redefining some elements to have better semantic meaning</a> because <em>HTML is the language of authors</em>, and to authors and consumers <em>meaning matters</em>. </p>
<p>Without a plan for gathering evidence for popularly used patterns <strong>directly</strong> from microformats or microdata (and using them as formal methods of research, testing and development), or what people (<em>actual, real developers</em> &#8211; not just the big search engines) are doing in general, we&#8217;ll end up with no progress or the <em>wrong</em> progress in HTML, and I believe that a <strong>formal process</strong> for how and when this happens should be made (i.e. definitions of what constitutes critical mass of common patterns, how the information should be gathered, how they will be proposed formally in the WG and promoted into the language proper, etc.).  </p>
<p>I want evidence-based HTML that will evolve using clearly defined mechanisms.</p>
<p><small>*Conversation shortened and re-written with an artistic license and possibly some (many; &#8220;nice&#8221; may be a stretch) inaccuracies.</small></p>
<p><small>**Yes, I&#8217;m casually suggesting that microformats are &#8220;free&#8221; if all you want to do is get your stuff out there with the minimum you&#8217;ll need to be machine-friendly and human-eyes-pretty.</small></p>

]]></content:encoded>
			<wfw:commentRss>http://fberriman.com/2011/12/01/schema-org-microformats-and-more-science-please/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Gold-plating the cow paths</title>
		<link>http://fberriman.com/2011/10/31/gold-plating-the-cow-paths/</link>
		<comments>http://fberriman.com/2011/10/31/gold-plating-the-cow-paths/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 15:11:01 +0000</pubDate>
		<dc:creator>Frances</dc:creator>
				<category><![CDATA[Microformats]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[semantics]]></category>

		<guid isPermaLink="false">http://fberriman.com/?p=592</guid>
		<description><![CDATA[I was quoted a couple of weeks ago as saying, albeit in private, the following: &#8220;HTML fails to be simple if it can&#8217;t provide what authors regularly need and end up turning to other encodings&#8221; &#8212; @phae @slightlylate For context, that was in response to a remark made by a friend that HTML fails if [...]]]></description>
			<content:encoded><![CDATA[
<p>I was quoted a couple of weeks ago as saying, albeit in private, the following:</p>
<blockquote><p>&#8220;HTML fails to be simple if it can&#8217;t provide what authors regularly need and end up turning to other encodings&#8221; &#8212; <a href="http://twitter.com/phae">@phae</a></p>
<p><cite><a href="http://twitter.com/#!/slightlylate/status/117274031090176000">@slightlylate</a></cite>
</p></blockquote>
<p>For context, that was in response to a remark made by a friend that HTML fails if authors can&#8217;t use it because it has become too complex and attempts to describe too much.  My response was that it fails not because it&#8217;s complicated, but when an author cannot express their content accurately with the toolkit they&#8217;re supplied and have to go to another encoding to find what they&#8217;re looking for.  That&#8217;s the language passing the buck, in my opinion.</p>
<p>Don&#8217;t get me wrong &#8211; I&#8217;m not suggesting HTML should cover every niche semantic everyone is ever going to want to express ever. That would be crazy and confusing.  HTML should express what is most commonly used, and at the moment it doesn&#8217;t &#8211; which is why we still see <a href="http://microformats.org">microformats</a>, <a href="http://dev.w3.org/html5/md/">microdata</a>, <a href="http://jaffathecake.posterous.com/html-component-model-the-shadow-dom">component model</a>, <a href="http://schema.org">schema.org</a> etc. trying to fill the gaps.  And not just trying to fill the gaps, but trying to provide data on which decisions can be made about what should be in HTML.</p>
<p>HTML, and a platform that provides, should be the end goal.  Microformats, et al., are the research grounds that should be directly contributing with the evidence and data they are able to garner.  In fact, the most popular microformats, shown through demand and usage, should just <em>be in</em> HTML as a standard, by being provided for with semantically appropriate new elements.</p>
<p>We&#8217;ve seen this work.  Microformats started doing things with dates, most specifically, <a href="http://microformats.org/wiki/hcalendar">hCalendar</a>.  It had a slightly cludgy way of marking up time, using <code>abbr</code>.  The accessibility lot were rightfully less than impressed, and other patterns were tried &#8211; title and spans and all kinds of things. But in short, it was shown that time gets talked about a lot, and we needed something better.  We got <code>&lt;time&gt;</code> in HTML.  Hooray!  The system works!  Well, except when it doesn&#8217;t.  <a href="http://www.brucelawson.co.uk/2011/goodbye-html5-time-hello-data/">Go read Bruce Lawson&#8217;s take</a>, as the powers that be removed <code>time</code> and replaced it with <code>data</code>.  Gee, thanks.</p>
<p>We shouldn&#8217;t expect authors to go in search of richer mark-up from other sources when what they&#8217;re trying to do is <strong>really common</strong>, when a <strong>need has been shown</strong>, and a <strong>pattern has been proven</strong>.</p>

]]></content:encoded>
			<wfw:commentRss>http://fberriman.com/2011/10/31/gold-plating-the-cow-paths/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Working for the government</title>
		<link>http://fberriman.com/2011/08/21/working-for-the-government/</link>
		<comments>http://fberriman.com/2011/08/21/working-for-the-government/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 14:59:45 +0000</pubDate>
		<dc:creator>Frances</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[alphagov]]></category>
		<category><![CDATA[career]]></category>
		<category><![CDATA[govuk]]></category>
		<category><![CDATA[jobs]]></category>

		<guid isPermaLink="false">http://fberriman.com/?p=585</guid>
		<description><![CDATA[My soon-to-be-colleague, Gareth, reminded me via props that I haven&#8217;t mentioned that I&#8217;m switching jobs. From Monday, I&#8217;m going to work for the government! Having been impressed with alphagov earlier this year, I was more than happy to get onboard when the offer came up to work on the next phase of the project with [...]]]></description>
			<content:encoded><![CDATA[
<p>My soon-to-be-colleague, <a href="http://morethanseven.net" rel="friend met colleague co-worker">Gareth</a>, reminded me via <a href="http://morethanseven.net/2011/08/19/On-her-majestys-digital-service.html">props</a> that I haven&#8217;t mentioned that I&#8217;m switching jobs.  From Monday, I&#8217;m going to work for the government!  </p>
<p>Having been impressed with <a href="http://alpha.gov.uk">alphagov</a> earlier this year, I was more than happy to get onboard when the offer came up to work on the <a href="http://digital.cabinetoffice.gov.uk/2011/08/11/gov-uk-from-alpha-to-beta/">next phase of the project</a> with a bunch of people I&#8217;ve known for years (and still apparently want to work with me), and a few new ones.  We&#8217;re being housed within a new department, to be known as the <a href="http://digital.cabinetoffice.gov.uk/">Government Digital Service</a>.</p>
<p>Colour me excited (but maybe not <a href="http://digital.cabinetoffice.gov.uk/2011/08/18/orange-gov-uk/">orange</a>?).</p>

]]></content:encoded>
			<wfw:commentRss>http://fberriman.com/2011/08/21/working-for-the-government/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Moon-on-a-Stick ToDo Wishlist</title>
		<link>http://fberriman.com/2011/02/11/the-moon-on-a-stick-todo-wishlist/</link>
		<comments>http://fberriman.com/2011/02/11/the-moon-on-a-stick-todo-wishlist/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 09:48:20 +0000</pubDate>
		<dc:creator>Frances</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[halp]]></category>
		<category><![CDATA[poor organisational skills]]></category>
		<category><![CDATA[todo]]></category>

		<guid isPermaLink="false">http://fberriman.com/?p=566</guid>
		<description><![CDATA[I rhetorically asked on Twitter yesterday if there was a better way to manage my todo lists of scraps of paper, my moleskine, jira and basecamp.  I&#8217;m not sure that I made it clear: I&#8217;m not looking for a replacement for those. They&#8217;re not going away. I need a master-something that can manage the fact [...]]]></description>
			<content:encoded><![CDATA[
<p>I rhetorically <a href="http://twitter.com/#!/phae/status/35768429734526977">asked on Twitter yesterday</a> if there was a better way to manage my todo lists of scraps of paper, my moleskine, jira and basecamp.  I&#8217;m not sure that I made it clear: I&#8217;m not looking for a <strong>replacement</strong> for those.  <em>They&#8217;re not going away.</em> I need a master-something that can manage the fact that my todos are spread over many mediums and systems (by necessity, rather than choice).  I can&#8217;t manage a 5th system that I&#8217;d need to manually synchronise.</p>
<p>So. This is my &#8220;in a magical world of unicorns and rainbows&#8221; wishlist for a ToDo application:</p>
<ul>
<li>Has a web, desktop (not just osx) and mobile client.  If I can&#8217;t get at it wherever I am, I won&#8217;t use it.</li>
<li>Pulls in and syncs assigned tickets from bug trackers &#8211; like Jira, Trac.</li>
<li>Pulls in and syncs todos from shared workspaces &#8211; like Basecamp.</li>
<li>Needs to be able to pull in tickets/lists from *insert future system a company I will work for will assume is the answer to all their problems*.</li>
<li>Needs to be free-form enough to add items that don&#8217;t have dates.</li>
<li>If they do have dates, I want to show them on my google calendar.</li>
<li>Needs to be as quick to throw an item onto the end of the list as it is to scrawl it on a post-it note.</li>
<li>Have a public sharable view and also private items.  Bonus for levels of access to certain friend/colleague/family groups.</li>
<li>Sets fire to any project manager who thinks sending me an excel spreadsheet of brightly coloured items copied out of Jira will help my day go more smoothly.</li>
<li>Super dream world: should be able to <a href="http://en.wikipedia.org/wiki/Optical_character_recognition">OCR</a> a photo of scrawled notes from my notebook/hand (ala Evernote) taken by the new <a href="http://twitter.com/#!/phae/status/30932552382414848">shiny</a>.</li>
<li>Super bonus extra dream world: should offer to make me a cup of tea when it notices a complete nightmare of todos all happening at once.</li>
</ul>
<p>I&#8217;m beginning to think that this was the most accurate response I received:</p>
<blockquote>
<p>@phae Personal assistant?</p>
<p><em>by <a href="http://twitter.com/#!/paul_haine/status/35775019661398016">Paul Haine</a></em></p>
</blockquote>

]]></content:encoded>
			<wfw:commentRss>http://fberriman.com/2011/02/11/the-moon-on-a-stick-todo-wishlist/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Film and Lit 2010</title>
		<link>http://fberriman.com/2011/01/02/film-and-lit-2010/</link>
		<comments>http://fberriman.com/2011/01/02/film-and-lit-2010/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 16:58:39 +0000</pubDate>
		<dc:creator>Frances</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Film]]></category>
		<category><![CDATA[cinema]]></category>
		<category><![CDATA[films]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[literature]]></category>
		<category><![CDATA[ratings]]></category>

		<guid isPermaLink="false">http://fberriman.com/?p=550</guid>
		<description><![CDATA[Films (at the cinema, in seen order): Daybreakers The Road A Single Man The Wolfman The Crazies Alice in Wonderland Ponyo Shutter Island Perrier&#8217;s Bounty Kick Ass Psycho I Am Love Double Take Dogtooth Four Lions The White Ribbon The Bad Lieutenant Rec 2 Inception Splice Down Terrace The Illustionist Mother Scott Pilgrim vs. The [...]]]></description>
			<content:encoded><![CDATA[
<h3>Films (at the cinema, in seen order):</h3>
<ol>
<li><a href="http://www.imdb.com/title/tt0433362/">Daybreakers</a></li>
<li><a href="http://www.imdb.com/title/tt0898367/">The Road</a></li>
<li><a href="http://www.imdb.com/title/tt1315981/">A Single Man</a></li>
<li><a href="http://www.imdb.com/title/tt0780653/">The Wolfman</a></li>
<li><a href="http://www.imdb.com/title/tt0455407/">The Crazies</a></li>
<li><a href="http://www.imdb.com/title/tt1014759/">Alice in Wonderland</a></li>
<li><a href="http://www.imdb.com/title/tt0876563/">Ponyo</a></li>
<li><a href="http://www.imdb.com/title/tt1130884/">Shutter Island</a></li>
<li><a href="http://www.imdb.com/title/tt1003034/">Perrier&#8217;s Bounty</a></li>
<li><a href="http://www.imdb.com/title/tt1250777/">Kick Ass</a></li>
<li><a href="http://www.imdb.com/title/tt0054215/">Psycho</a></li>
<li><a href="http://www.imdb.com/title/tt1226236/">I Am Love</a></li>
<li><a href="http://www.imdb.com/title/tt1386926/">Double Take</a></li>
<li><a href="http://www.imdb.com/title/tt1379182/">Dogtooth</a></li>
<li><a href="http://www.imdb.com/title/tt1341167/">Four Lions</a></li>
<li><a href="http://www.imdb.com/title/tt1149362/">The White Ribbon</a></li>
<li><a href="http://www.imdb.com/title/tt1095217/">The Bad Lieutenant</a></li>
<li><a href="http://www.imdb.com/title/tt1245112/">Rec 2</a></li>
<li><a href="http://www.imdb.com/title/tt1375666/">Inception</a></li>
<li><a href="http://www.imdb.com/title/tt1017460/">Splice</a></li>
<li><a href="http://www.imdb.com/title/tt1489167/">Down Terrace</a></li>
<li><a href="http://www.imdb.com/title/tt0775489/">The Illustionist</a></li>
<li><a href="http://www.imdb.com/title/tt1216496/">Mother</a></li>
<li><a href="http://www.imdb.com/title/tt0446029/">Scott Pilgrim vs. The World</a></li>
<li><a href="http://www.imdb.com/title/tt1187044/">The Maid</a></li>
<li><a href="http://www.imdb.com/title/tt1020773/">Certified Copy</a></li>
<li><a href="http://www.imdb.com/title/tt1336617/">Cyrus</a></li>
<li><a href="http://www.imdb.com/title/tt1399683/">Winter&#8217;s Bone</a></li>
<li><a href="http://www.imdb.com/title/tt1371155/">Made in Dagenham</a></li>
<li><a href="http://www.imdb.com/title/tt1027718/">Wall Street: Money Never Sleeps</a></li>
<li><a href="http://www.imdb.com/title/tt1228987/">Let Me In</a></li>
<li><a href="http://www.imdb.com/title/tt1646979/">The Light Thief</a></li>
<li><a href="http://www.imdb.com/title/tt0947798/">Black Swan</a></li>
<li><a href="http://www.imdb.com/title/tt1216520/">Womb</a></li>
<li><a href="http://www.imdb.com/title/tt1646118/">Octubre</a></li>
<li><a href="http://www.imdb.com/title/tt1470827/">Monsters</a></li>
<li><a href="http://www.imdb.com/title/tt1620604/">We Are What We Are</a></li>
<li><a href="http://www.imdb.com/title/tt1104001/">Tron: Legacy</a></li>
<li><a href="http://www.imdb.com/title/tt0840361/">The Town</a></li>
<li><a href="http://www.imdb.com/title/tt0758752/">Love and Other Drugs</a></li>
<li><a href="http://www.imdb.com/title/tt1023114/">The Way Back</a></li>
</ol>
<p>Again, they&#8217;re <a href="http://oo5.whatiminto.com/peeps/phae">OO5ed</a></p>
<h4>Best</h4>
<p>Again, super lucky to get to put some sci-fi in the top of my list.  <a href="http://www.imdb.com/title/tt0898367/">The Road</a> is captivating, if in an entirely bleak, looking at your pets and wondering if you&#8217;d eat them in a crisis, kind of way.  My <em>favourite</em> was <a href="http://www.imdb.com/title/tt1470827/">Monsters</a>.  It felt like an antidote to all those silly explosion, chase driven, gun-ho monster movies.  It&#8217;s delicate and subtle, and looks frankly amazing and ultra-detailed, and it doesn&#8217;t treat the viewer like a complete idiot.  It&#8217;s just lovely.  I guess <a href="http://www.imdb.com/title/tt1375666/">Inception</a> is the big one for everyone else &#8211; I liked it a lot, but I&#8217;ve kind of forgotten it already.</p>
<p>I had anticipated <a href="http://www.imdb.com/title/tt1017460/">Splice</a> as being a winner this year, but it totally missed the mark &#8211; <a href="http://www.imdb.com/title/tt1216520/">Womb</a> turned out to be the much more interesting, in depth, film about cloning and genetics (and it&#8217;s got Matt Smith in it &#8211; what&#8217;s not to go crazy for?).  <a href="http://www.imdb.com/title/tt1104001/">Tron</a> should have been a massive disappointment, but I managed to keep expectations deliriously low and came out entertained.  The film I failed to not get excited about before I saw it was <a href="http://www.imdb.com/title/tt0446029/">Scott Pilgrim</a>, given the sentimental place that I hold the graphic novels in, and fortunately it is really excellent fun.</p>
<p>I also loved <a href="http://www.imdb.com/title/tt0775489/">The Illusionist</a> and <a href="http://www.imdb.com/title/tt0876563/">Ponyo</a>.  The former is beautiful, and although it&#8217;s French it doesn&#8217;t matter &#8211; they hardly utter a word, and when they do it sounds like a <a href="http://www.youtube.com/watch?v=SrDU35NxMdY">Sim</a> &#8211; it&#8217;s totally carried by the perfect animation style.  And Ponyo is just adorable (<a href="http://www.youtube.com/watch?v=r0lk-GEhYdY">sing the Ponyo song</a>!).</p>
<p>The big marmite film for 2011 is definitely going to be <a href="http://www.imdb.com/title/tt0947798/">Black Swan</a>.  It&#8217;s a ballet drama?  Really?  Yeah.  It is entirely a <strong>must-see</strong> film.  It&#8217;s an intensely paced psychological thriller and the ballet bit really shouldn&#8217;t put anyone off.  It&#8217;s probably one of the best crafted films I&#8217;ve seen this year, if not for a few years.</p>
<p>Also loved lots of others, particularly <a href="http://www.imdb.com/title/tt1489167/">Down Terrace</a>, <a href="http://www.imdb.com/title/tt1379182/">Dogtooth</a> and <a href="http://www.imdb.com/title/tt1399683/">Winter&#8217;s Bone</a> &#8211; all share the commonality of being a bit bleak (or, actually, <em>totally</em> screwed up &#8211; don&#8217;t watch Dogtooth with your family, okay?).</p>
<h4>Worst</h4>
<p>It&#8217;s only when compiling this list that I&#8217;m reminded of all the complete movie mishaps I&#8217;ve suffered this year.  Not least, <a href="http://www.imdb.com/title/tt1014759/">Alice in Wonderland</a>.  I&#8217;m a massive fan of the story, as many people know, and I was a fool to even think that a new film would capture everything I love about it.  Oh, so disappointed.  I rated it more highly at the time than I feel about it now.  Damn you, Burton.</p>
<p>Other let downs include a whole slew of films that have brilliant concepts, but they were just half-heartedly or plainly executed &#8211; <a href="http://www.imdb.com/title/tt0455407/">The Crazies</a> springs to mind, as does <a href="http://www.imdb.com/title/tt1341167/">Four Lions</a> (controversial, I know, but it&#8217;s a bit <em>meh</em>, to be honest &#8211; Chris Morris has a long way to go before he&#8217;s back in &#8220;paedophile dressed as a school&#8221; territory), <a href="http://www.imdb.com/title/tt1620604/">We Are What We Are</a> and <a href="http://www.imdb.com/title/tt0433362/">Daybreakers</a>.</p>
<p>Mostly this year, there has been some severely pretentious nonsense.  <a href="http://www.imdb.com/title/tt1226236/">I Am Love</a>, <a href="http://www.imdb.com/title/tt1020773/">Certified Copy</a>, <a href="http://www.imdb.com/title/tt1646979/">The Light Thief</a>, <a href="http://www.imdb.com/title/tt1386926/">Double Take</a> and <a href="http://www.imdb.com/title/tt1315981/">A Single Man</a> &#8211; all fairly decent concepts, but unfortunately <strong>completely boring</strong>.  I struggled to stay awake in a couple of those.  Mostly designed as fodder for film reviewers to fawn over, but actually, totally ridiculous and unwatchable.</p>
<h3>Books</h3>
<p>I&#8217;ve given up any semblance of attempting to record what I read.  I did, however, buy a 3rd edition <a href="http://www.amazon.co.uk/Kindle-Wireless-Reading-Display-Generation/dp/B002LVUWFE/">Kindle</a> 3G, which I <strong>love</strong>.  <em>Surprisingly</em>.  Digital books completely lack everything I love about a beaten-up old paperback, particularly the digging through a dusty bookshop and finding random left-overs of previous owner&#8217; lives (ticket stubs, receipts&#8230; postcards are my particular favourite), but the convenience and the form factor of this thing is amazing.  It&#8217;s also caused me to re-read or find a bunch of classics, for free from <a href="http://manybooks.net/">manybooks</a> (released through <a href="http://www.gutenberg.org">Project Gutenberg</a>), that I would otherwise never have given the time to.  I&#8217;ve read the complete Sherlock Holmes adventures, almost all of Robert Louis Stevenson, a bunch of H.G.Wells, and all sorts of other odds and ends.  <a href="http://manybooks.net/titles/kafkafraetext04metam10.html">Metamorphosis</a> struck me as an instant favourite of the classic selection.</p>
<p>Of non-ebooks, I read Philip Pullman&#8217;s newest book, <a href="http://www.amazon.co.uk/Good-Jesus-Scoundrel-Christ-Myths/dp/1847678254">The Good Man Jesus and the Scoundrel Christ</a>, early in the year.  Thoroughly disappointing.  More hype than substance, in my mind, and felt a little like a cash-in on his controversial position (I enjoyed the His Dark Materials trilogy).  I also read my usual fill of science fiction and re-read some favourites.  I read Cormac McCarthy&#8217;s <a href="http://www.amazon.co.uk/Road-Cormac-McCarthy/dp/0330468464/">The Road</a> after seeing it at the start of the year &#8211; which is unusual, since I&#8217;ll generally rush to read a book <em>before</em> I see the film &#8211; but it&#8217;s pretty much identical.  Definitely recommend it if you&#8217;re lacking that stark, miserable, hopeless feeling at the beginning of your new year. :)</p>

]]></content:encoded>
			<wfw:commentRss>http://fberriman.com/2011/01/02/film-and-lit-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>24ways 2010</title>
		<link>http://fberriman.com/2010/12/11/24ways-2010/</link>
		<comments>http://fberriman.com/2010/12/11/24ways-2010/#comments</comments>
		<pubDate>Sat, 11 Dec 2010 10:13:02 +0000</pubDate>
		<dc:creator>Frances</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[24ways]]></category>
		<category><![CDATA[annual]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[documentation]]></category>

		<guid isPermaLink="false">http://fberriman.com/?p=545</guid>
		<description><![CDATA[So, I wrote a little article for this year&#8217;s 24ways on documentation. It&#8217;s based heavily on the processes we used to develop BBC Glow, so I hope someone finds it useful. If you&#8217;re feeling charitable, this year you can buy my article and the other brilliant 23 as an annual from Five Simple Steps: 24ways [...]]]></description>
			<content:encoded><![CDATA[
<p>So, I <a href="http://24ways.org/2010/documentation-driven-design-for-apis">wrote a little article for this year&#8217;s 24ways</a> on documentation.  It&#8217;s based heavily on the processes we used to develop <a href="http://bbc.co.uk/glow">BBC Glow</a>, so I hope someone finds it useful.</p>
<p>If you&#8217;re feeling charitable, this year you can buy my article and the other brilliant 23 as an annual from Five Simple Steps: <a href="http://fivesimplesteps.com/books/the-24-ways-annual-2010">24ways 2010 Annual</a>, with the proceeds going to UNICEF.  Yay!  </p>

]]></content:encoded>
			<wfw:commentRss>http://fberriman.com/2010/12/11/24ways-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SXSWi 2011 Microformats panel</title>
		<link>http://fberriman.com/2010/08/12/sxswi-2011-microformats-panel/</link>
		<comments>http://fberriman.com/2010/08/12/sxswi-2011-microformats-panel/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 11:53:21 +0000</pubDate>
		<dc:creator>Frances</dc:creator>
				<category><![CDATA[Microformats]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[sxswi]]></category>
		<category><![CDATA[sxswi 2011]]></category>

		<guid isPermaLink="false">http://fberriman.com/?p=519</guid>
		<description><![CDATA[It is that time of year again: SXSWi panel pimpage! I&#8217;ve put together a somewhat vague panel proposal on behalf of microformats.org and I would appreciate it if you could give it a vote. Apparently voting only counts towards a relatively small percentage (30%) of whether or not it will be selected, but with 2346 [...]]]></description>
			<content:encoded><![CDATA[
<p>It is that time of year again:  <em>SXSWi panel pimpage!</em>  I&#8217;ve put together a somewhat vague panel proposal on behalf of <a href="http://microformats.org">microformats.org</a> and I would appreciate it if <a href="http://panelpicker.sxsw.com/ideas/view/5584">you could give it a vote</a>.</p>
<p>Apparently voting only counts towards a relatively small percentage (<a href="http://sxsw.com/panelpicker_faq">30%</a>) of whether or not it will be selected, but with 2346 proposals in the system, I suspect it counts a lot more than that.</p>
<p>The session is rather vaguely defined because I&#8217;m not really sure right now what&#8217;ll still be interesting in a few months.  I also want to garner as many opinions from the community as they can about what they want to know more about, see speak or show off &#8211; so do make your voice heard <a href="http://panelpicker.sxsw.com/ideas/view/5584">in the comments</a>.</p>
<h3>SXSW submissions are a bit nuts, really.</h3>
<p>The mega-conference happens in March every year.  By the time you&#8217;re done clearing your credit card bill and the fuss on twitter has died down a few weeks after the event, it&#8217;s already time to submit proposals for the coming year with the deadline at the start of July.</p>
<p>That means you need to think about your proposal a good <strong>9 or 10 months</strong> before the next event.</p>
<p>In my mind, it&#8217;s incredibly difficult to predict what will be a hot topic or really relevant 10 months down the line in an industry like ours.  Things move incredibly quickly.  I also find it very difficult to know what to vote for &#8211; I may find at the beginning of next year that actually, I really could have done with knowing more about The Latest Technique, but right now I don&#8217;t know what it is to vote for it.</p>
<p>I also worry that interesting topics that I don&#8217;t know about yet don&#8217;t have the community around it to rally support and get the votes.  Inevitably, the topics that are most trendy or have the most well-known organisers/panelists will be the topics that get the most votes.  They tend not to be the panels I&#8217;ve enjoyed the most, though.  Unfortunately, it&#8217;s becoming increasingly hard to figure out which sessions are going to be great and which aren&#8217;t, since SXSW is just so big now &#8211; I think it has become quantity over quality.  &lt;/ complain&gt;</p>
<p>Anyway, not a lot I can do about that other than play along and attempt to include a session that I will attempt to put together at a level that I deem acceptable quality.  I do want to see microformats.org have a representation there, <a href="http://panelpicker.sxsw.com/ideas/view/5584">so help me out</a>, huh?</p>
<p>p.s. The spelling of the tag &#8220;microformats&#8221; as &#8220;micoformats&#8221; is not mine. It&#8217;s theirs.  And I asked to have it corrected, but apparently their system doesn&#8217;t easily allow for that at the moment.  WTF?</p>

]]></content:encoded>
			<wfw:commentRss>http://fberriman.com/2010/08/12/sxswi-2011-microformats-panel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>hgroups and sub-titles</title>
		<link>http://fberriman.com/2010/07/22/hgroups-and-sub-titles/</link>
		<comments>http://fberriman.com/2010/07/22/hgroups-and-sub-titles/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 22:20:08 +0000</pubDate>
		<dc:creator>Frances</dc:creator>
				<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[headings]]></category>
		<category><![CDATA[hgroup]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[semantics]]></category>

		<guid isPermaLink="false">http://fberriman.com/?p=474</guid>
		<description><![CDATA[I realise that queries or concerns about HTML 5 elements should make their way onto the WHATWG mailing list, but I just wanted to get a few thoughts out on here about what I&#8217;ve spent far too long discussing at work recently. It&#8217;s perfectly likely that I&#8217;ve totally got the wrong end of the proverbial, [...]]]></description>
			<content:encoded><![CDATA[
<p>I realise that queries or concerns about HTML 5 elements should make their way onto the WHATWG mailing list, but I just wanted to get a few thoughts out on here about what I&#8217;ve spent far too long discussing at work recently. It&#8217;s perfectly likely that I&#8217;ve totally got the wrong end of the proverbial, so this is just me trying to get my mind straight on why I feel something about this is unnatural and I welcome comments to help clarify or discuss.</p>
<h3>So, <code>hgroup</code>, eh?</h3>
<p><code>hgroup</code> is one of the new elements featuring in the HTML 5 specification.  It&#8217;s purpose, quite simply, is to group two or more headings together into one block so that subheadings are treated differently and only the first heading becomes part of the document outline.</p>
<blockquote><p>The hgroup element is typically used to group a set of one or more h1-h6 elements — to group, for example, a section title and an accompanying subtitle.</p>
<p><cite><a href="http://www.w3.org/TR/html-markup/hgroup.html">From the current HTML5 working draft</a></cite></p></blockquote>
<p>The WHATWG wiki has the following rationale for requiring the <code>hgroup</code> element:</p>
<blockquote><p>The point of &lt;hgroup&gt; is to hide the subtitle from the outlining algorithm</p>
<p><cite><a href="http://wiki.whatwg.org/wiki/Rationale#hgroup_and_other_heading_elements">WHATWG wiki</a></cite></p></blockquote>
<p>Over on HTML5 Doctor, <a href="http://html5doctor.com/the-hgroup-element/#comment-2603">John Allsopp appears to find fault with this element also</a> and suggests that the requirement for <code>hgroup</code> is symptomatic of a flaw in the outlining algorithm.  I can see his point, but I&#8217;m more concerned that it&#8217;s a fundamentally inaccurate use of a <em>heading</em>.</p>
<p>In my mind, headings are designed to denote sections.  At least, that&#8217;s what they were used for in HTML 4.  Things either went in a heading, because they denoted a new section of content, or they didn&#8217;t.  This is Frances the idealist speaking, I realise this, but still.</p>
<p>Let&#8217;s say I had a new website about a children&#8217;s story about monsters, and I wanted to title it &#8220;Monsters live under my bed&#8221;, but it could also have a sub-title or strap-line.  As an author, I either want my title to be &#8220;Monsters live under my bed. Where things go bump in the night&#8221; or I want it to be &#8220;Monsters live under my bed&#8221; and the next line is incidental and a supplementary strap-line and not something I would consider to be part of my title.</p>
<p>Currently, I might do any of the following:</p>
<pre><code>&lt;h1&gt;Monsters live under my bed
Where things go bump in the night
&lt;/h1&gt;</code></pre>
<p>Example wrapped for legibility, but my story title is the full text and is in a heading.</p>
<pre><code>&lt;h1&gt;Monsters live under my bed
&lt;span&gt;Where things go bump in the night&lt;/span&gt;
&lt;/h1&gt;</code></pre>
<p>This one is mostly a stylistic example. The strapline needs to <em>look</em> like a strapline, so I&#8217;ve stuck a span around it (yeah, I know&#8230;), but fundamentally I&#8217;m still considering it to be part of the title.  My story&#8217;s name is the full text.</p>
<pre><code>&lt;h1&gt;Monsters live under my bed&lt;/h1&gt;
&lt;p&gt;Where things go bump in the night&lt;/p&gt;
</code></pre>
<p>In this case, the title of my story is <strong>only</strong> &#8220;Monsters live under my bed&#8221; and because HTML 4 doesn&#8217;t really offer a suitable element that I would consider &#8220;a sub header that isn&#8217;t a new section of the document&#8221; I&#8217;ve stuck the sub-title text in a paragraph.</p>
<pre><code>&lt;h1&gt;Monsters live under my bed&lt;/h1&gt;
&lt;h2&gt;Where things go bump in the night&lt;/h2&gt;</code></pre>
<p>This one suggests that I have a title and then the first chapter beneath the title is &#8220;Where things go bump in the night&#8221;.  That second line is no longer the title of my kids story.  The h2 would be a new indented item in an outline and would suggest that further within the document I may find more h2s and that I have stepped into the document by a level.</p>
<p>What HTML 5 says you would do is this if you want a sub-title/sub-heading is:</p>
<pre><code>&lt;hgroup&gt;
&lt;h1&gt;Monsters live under my bed&lt;/h1&gt;
&lt;h2&gt;Things that go bump in the night&lt;/h2&gt;
&lt;/hgroup&gt;</code></pre>
<p>This has the effect of making that <code>h2</code> not appear in the outline, since it will no longer create a new section. The outline now considers that the title of my story is again &#8220;Monsters live under my bed&#8221;.  Any content that comes after this would be within the section titled by the <code>h1</code>.  The <code>h2</code> doesn&#8217;t count as the start of a new section (as it would if there was no <code>hgroup</code> wrapper). The contents of the <code>h2</code> is considered a special non-sectioning-heading case, but it&#8217;s still in a <strong>heading</strong> element.  But if it&#8217;s meant to be a <em>heading</em>, why isn&#8217;t it in the <code>h1</code>?  Gah!</p>
<p>I kind of have the feeling that what we should have at our disposal is something that looks more like the following, which allows for a heading <strong>and</strong> some sort of sub-title(s) (naming isn&#8217;t my strong point, I&#8217;ve picked &#8216;strapline&#8217; fairly arbitrarily, but essentially I imagine it as a non-heading sub-title of some nature &#8211; maybe even <code>subheading</code>?).  It&#8217;s not as if <code>hgroup</code> is allowed to hold anything other than headings anyway.</p>
<pre><code>&lt;h1&gt;Monsters live under my bed&lt;/h1&gt;
&lt;strapline&gt;Where things go bump in the night&lt;strapline&gt;</code></pre>
<p>It satisfies my problem with using lower numbered headings for things you consider to either be associated as part of the first heading (or rather, supplementary to it) or not actually headings at all.  If I want my full title to be all of the above, it can all go in the <code>h1</code>.  If I don&#8217;t consider the second line to be part of a heading, it gets to go in it&#8217;s own non-heading supplementary titling element.  The rationale quoted above specifically says &#8220;subtitle&#8221;, although I noticed the current <a href="http://dev.w3.org/html5/spec-author-view/sections.html#the-hgroup-element">editor&#8217;s draft for hgroup</a> does mention &#8220;subheadings&#8221;.</p>
<p>Do you follow my drift?</p>
<p>If we&#8217;re in the business of having the opportunity to create new elements, can&#8217;t we just create one that actually satisfies the requirement explicitly rather than sort of allow authors to do things that seem somehow hypocritical to the point of heading elements in most other contexts.  I also realise that purist intentions fall waaaaay down the list of priorities when compared to the requirements of paving existing usage, but as an author as well, I feel that there&#8217;s something fundamentally inaccurate about treating a <em>heading</em> as a non-heading.  As an author I want to be able to be as accurate as possible.</p>
<p>Is it just time for me to let go of the idea that headings do the job of creating and naming sections in a document outline?</p>
<p>Aren&#8217;t semantics fun!</p>

]]></content:encoded>
			<wfw:commentRss>http://fberriman.com/2010/07/22/hgroups-and-sub-titles/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Science Hack Day, Turing Tests and Google</title>
		<link>http://fberriman.com/2010/06/16/science-hack-day-turing-tests-and-google/</link>
		<comments>http://fberriman.com/2010/06/16/science-hack-day-turing-tests-and-google/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 10:21:31 +0000</pubDate>
		<dc:creator>Frances</dc:creator>
				<category><![CDATA[Microformats]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[artificial intelligence]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[p52]]></category>
		<category><![CDATA[rdf]]></category>
		<category><![CDATA[science hack day]]></category>
		<category><![CDATA[turing]]></category>
		<category><![CDATA[turing test]]></category>

		<guid isPermaLink="false">http://fberriman.com/?p=417</guid>
		<description><![CDATA[For Science Hack Day, I have have been thinking about a topic that was of great interest to me whilst I was at university &#8211; artificial intelligence. Science Hack Day hasn&#8217;t actually happened yet, by the way. It&#8217;s going on this weekend (19th &#038; 20th June) at the Guardian offices, and there&#8217;s still time to [...]]]></description>
			<content:encoded><![CDATA[
<p>For <a href="http://sciencehackday.com/">Science Hack Day</a>, I have have been thinking about a topic that was of great interest to me whilst I was at university &#8211; artificial intelligence.</p>
<p>Science Hack Day hasn&#8217;t actually happened yet, by the way.  It&#8217;s going on this weekend (19th &#038; 20th June) at the Guardian offices, and there&#8217;s still time to <a href="http://sciencehackday.pbworks.com/Who%27s-Coming">sign up</a> if you&#8217;re interested.  This is an idea I was playing around with, but I probably won&#8217;t be doing this at the weekend unless it piques someone else&#8217;s (with more linguistic intellect) interest.  Feel free to bug me if this is a topic to chat about.</p>
<h3>The Turing Test</h3>
<p>One of the basic concepts and experiments in the AI world is the now defunct, but intellectually and philosophically interesting, Turing Test.  In the simplest terms, the test is around proving intelligence by showing human characteristics through dialogue and natural language, and this is shown through genuine human testers being blindly pitted against either another real human being, or a test program, and guessing as to whether their conversational partner is a human or not.  Every year challengers from around the world <a href="http://www.loebner.net/Prizef/loebner-prize.html">still compete</a> in this test, and produce complex computer programs that can converse with human beings and nearly fool them into believing they too are human.  No one has created a program that can behave accurately, or more often randomly enough, to fool participants completely &#8211; which is why it remains an interesting, although essentially irrelevant, problem.</p>
<p>The reason this test is defunct as a gauge of intelligence is pretty obvious in hindsight.  Being able to converse like a human being might show that whatever it is doing the conversing can take apart the constituent parts of a sentence and cobble them back together with some new information to fool a human, but it&#8217;s not really showing other markers of intelligence &#8211; specifically the ability to <em>think</em>. And neither does an entity being unable to converse in this way preclude it from having intelligence &#8211; you just need to look around our own animal kingdom and see the wealth of intelligence shown in other organisms that have no verbal language.  The &#8216;<a href="http://en.wikipedia.org/wiki/Chinese_room">Chinese Room</a>&#8216; is the original thought experiment that describes this specific problem, which you should totally go and read about <em>right now</em>.</p>
<p>Now, I&#8217;m not for one moment suggesting that over 2 days (or 2 lifetimes) a person such as myself with no linguistics or complex algorithms training could create a program that could have a go at passing the Turing test and win the Loebner Prize, but I got to thinking about how people interact with the internet in such a way that maybe the Internet itself could be considered to have the capabilities, and the depth and range of knowledge, to show &#8216;intelligence&#8217; as Turing would have defined it through this test.</p>
<h3>Google as an intelligent conversationalist</h3>
<p>Go to Google and ask it a question &#8211; even better, ask it a question and hit &#8216;I&#8217;m feeling lucky&#8217;.  Most of the time it produces an &#8216;answer&#8217; that&#8217;s pretty bloomin&#8217; accurate to what you&#8217;re looking for. Take a sample of that page that possibly directly answers that question and cobble it into some pigeon English, and would that do as a conversational retort?  Reckon it could have a stab at knowing the punchline to your rubbish &#8216;Knock knock&#8230;&#8217; joke? I think it could.</p>
<p>In fact, from the <a href="http://loebner.net/Prizef/2010_Contest/Loebner_Prize_Rules_2010.html">Loebner Prize rules</a>, the sample questions are all easily answerable by Google &#8211; the only thing it would struggle with is the memory part, but with Google&#8217;s ever growing logging of what kind of information you search for, it&#8217;s only a short way from that. </p>
<p>I was googling about trying to find other people who must have been thinking about using search engines for turing tests, and came across <a href="http://www.boxesandarrows.com/view/applying-turings">John Ferrara in 2008</a> discussing the user interaction benefits of using search in a way that would produce Turing test-ready results (I particularly like his accurate prediction that ontologies are the way forward &#8211; more on that later).  Google is clearly doing some really interesting, and without doubt highly complex, things around parsing search terms and working out what the interesting parts of the query are.  They&#8217;re doing Natural Language Parsing, but just one way &#8211; the asker to the responder.</p>
<h3>Natural Language Parsers</h3>
<p>So, I started digging about on the web for a natural language parser to see if I could maybe package up Google results in one line retorts.  In JavaScript.  Mostly because I&#8217;m a client-side developer, but also because that seemed like a funny idea (one late night after a couple Amstels) and JS can be lightning fast in the right environment.  Unsurprisingly &#8211; there wasn&#8217;t one.  I found this nice little <a href="http://code.google.com/p/jspos/">&#8216;parts of sentence&#8217;</a> tagger that someone had ported from another project into JS, and this seemed like a good start, and there&#8217;s <a href="http://opennlp.sourceforge.net/">OpenNLP</a> &#8211; the open source hub for NLPs (mostly in Java, Perl and Python).  Then <a href="http://jakearchibald.co.uk" rel="friend met colleague">Jake</a> suggested I port one of the ones in Python to JS.  <em>Ah hah hah</em>, where&#8217;s that &lt;sarcasm&gt; element when you need it?</p>
<p>The highly complex NLP part is really only the dressing.  It&#8217;s the bit that does the fakery and really reacts and responds and produces pretend empathy and is essentially what people who are trying to win the Loebner Prize care about &#8211; to be honest, there&#8217;s plenty of real people behind machines to talk to than we really need as it is on the internets, let alone adding a bunch of equally inane computer ones &#8211; so I&#8217;m not really that interested in that to any complex level &#8211; I just need something relatively simple.</p>
<p>I <strong>am</strong> interested in mining the ever growing source of richly marked up data and sources on the web, and presenting them back to a human being in a friendly, natural way.  Basically, I want one of those slightly-sinister robot voices talking to me from my computer, as featured in all good sci-fis (maybe less Hal and more Gerty) who can cooly and calmly, for example, present me the probable likelihood of poisoning myself by eating out-of-date eggs or what factor suncream it might be wise to wear to the park tomorrow so that I don&#8217;t burn to a crisp. An information supplier and sympathiser that&#8217;s smarter than me and knows about more sources of information than I could and can save me a bit of time wading through google results.</p>
<h3>Let&#8217;s talk</h3>
<p>So, on to my fuzzy notion of how this might work, just as a thought experiment at first and maybe a slightly naff proof of concept.</p>
<p>Blindly searching google for sensible responses from any old web page seems foolish.  An awful lot of sites continue to be badly formed and unintelligible to machines.  The obvious thing to do is restrict searches to sites with well-formed data &#8211; <a href="http://microformats.org">microformats</a> and RDF seem like the obvious things to look for.  This clearly poses a slight problem in that not all topics exist in well-formed data, but over time, that&#8217;ll improve.  To make this proof of concept easier, and one that I could feasibly think about building in a weekend, I&#8217;m therefore going to limit the topics of interest to data I know I can get at in a well-formed model.</p>
<p>Let&#8217;s have a chat about food.  I&#8217;m going to propose a fictional conversation that I want to create the responses to automatically.</p>
<p>Maybe we want to ask our machine:</p>
<blockquote><p>Do you know any good vegetarian recipes?.</p>
</blockquote>
<p>A good response might be: </p>
<blockquote><p>Yes, I know 20582746 vegetarian recipes.  Do you want to narrow it down a bit?</p>
</blockquote>
<blockquote><p>Yes, I&#8217;m looking for a good recipe for a feta and spinach tart.</p>
</blockquote>
<blockquote><p>I have a good recipe for that.  Would you like me to give you a link to it, or just tell you the ingredients?</p>
</blockquote>
<p>I want to stop there and illustrate a couple of interesting things about these sentences.  Firstly, the word &#8216;good&#8217;.  How could a machine know if a recipe is good?  Well, hRecipe allows for a recipe to receive a rating &#8211; the machine could use this to determine whether to describe the recipe it&#8217;s found as &#8216;good&#8217;.   Likewise, I could have asked it &#8216;What&#8217;s the worst meal you&#8217;ve eaten?&#8217; and perhaps it trawls off for the first lowest rated recipe it can find and declares that its least favourite.  Kind of makes me think that this machine person would need to be called Legion, because rather than having the opinion of an individual (or rather the opinion of the programmer), it has the crowd-sourced opinion of all web participants.</p>
<blockquote><p>Great. Does it have tomatoes in it?  I don&#8217;t like tomatoes.</p>
</blockquote>
<blockquote><p>No. Would you like the recipe now?</p>
</blockquote>
<blockquote><p>Yes, what are the ingredients?</p>
</blockquote>
<p>And so on&#8230; Having a program read back the parts of a well-formed recipe are really easy.  Recipes marked as <a href="http://microformats.org/wiki/hrecipe">hRecipe</a> clearly define each of the parts.  You could ask it to read you step one of the method, or repeat step 3, or double check what temperature the oven needs to be at.  To be honest, you could obviously be reading that directly yourself, but the act of marking up information like that makes it really easy to programmatically extra useful, relevant, information out of a webpage, strap it into some semblance of natural english, and read it out to a person in such a way that a person might believe that a human being was interpreting the page, which they could find more accessible.  And that&#8217;s the ticket, really.  Google search results, or rather the elements derived from rich data snippets, become the lexicon element of the previously mentioned NLPs.</p>
<h3>Limitations</h3>
<p>What it probably couldn&#8217;t do is tell you how it&#8217;s feeling or where it lives &#8211; the sort of questions and topics that turn up in the logs for turing tests &#8211; but really, does it matter?  It would probably also get confused really easily by badly formed pages and it would just as happily give you bad, irrelevant or plain gibberish responses sometimes &#8211; but all computers will do that &#8211; which is a greater reason to make pages as well-formed and parsable as possible.</p>
<p>Even if my notion of a simple friendly-face Google bot couldn&#8217;t pass the Turing Test, I bet that if Alan Turing had still been alive at the advent of Google and Wolfram Alpha and the likes, he&#8217;d be bloody impressed and be pleased to know that he probably instigated some of it. </p>
<p>Which reminds me &#8211; June 2012 will celebrate Turing&#8217;s 100th birthday &#8211; Pretty sure we&#8217;ll need to have an extra special Science Hack Day for that too, don&#8217;t you think?</p>

]]></content:encoded>
			<wfw:commentRss>http://fberriman.com/2010/06/16/science-hack-day-turing-tests-and-google/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Leaving the BBC, joining Nature Publishing Group</title>
		<link>http://fberriman.com/2010/05/13/leaving-the-bbc-joining-nature-publishing-group/</link>
		<comments>http://fberriman.com/2010/05/13/leaving-the-bbc-joining-nature-publishing-group/#comments</comments>
		<pubDate>Thu, 13 May 2010 09:27:42 +0000</pubDate>
		<dc:creator>Frances</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[career]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[nature]]></category>
		<category><![CDATA[p52]]></category>

		<guid isPermaLink="false">http://fberriman.com/?p=406</guid>
		<description><![CDATA[It&#8217;s true &#8211; I am leaving the BBC! As of June 2nd, I&#8217;ll be a front-end developer at Nature. The last three years at the BBC have been good ones. I think the quality of the output and massive range of products that have come out of the development teams has just been amazing. It [...]]]></description>
			<content:encoded><![CDATA[
<p>It&#8217;s true &#8211; I am leaving the <a href="http://bbc.co.uk">BBC</a>!  As of June 2nd, I&#8217;ll be a front-end developer at <a href="http://www.nature.com/">Nature</a>.</p>
<p>The last three years at the BBC have been good ones.  I think the quality of the output and massive range of products that have come out of the development teams has just been amazing.  It feels like everyone I have had the pleasure of working with at the Beeb has been smart, engaged and really got the web and wanted to make cool things.</p>
<p>I&#8217;m certainly sad to be leaving.  I&#8217;ll of course be missing the <a href="http://bbc.co.uk/glow">Glow</a> Super Friends a lot, in particular, but I feel that I&#8217;ve made brilliant friends and connections in various corners of the company and there are many I hope to continue seeing a lot of and will no doubt get to work with again in the future.  I leave knowing I&#8217;m going to miss everyone to pieces, but London really isn&#8217;t that big &#8211; so they won&#8217;t get rid of me too easily, even if I do have to stalk <a href="http://www.beerintheevening.com/pubs/s/16/1610/Vesbar/Shepherds_Bush">Vesbar</a>.</p>
<p>But ever onwards &#8211; the season called for a change of scenery and getting a look at a whole new ecosystem of challenges.  I think working at Nature will be great and I can&#8217;t wait to get stuck in.  I only hope they&#8217;re ready for my <em>special brand</em> of optimism.</p>

]]></content:encoded>
			<wfw:commentRss>http://fberriman.com/2010/05/13/leaving-the-bbc-joining-nature-publishing-group/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

