<?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>Alan's blog</title>
	<atom:link href="http://www.alandix.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alandix.com/blog</link>
	<description>just starting ...</description>
	<lastBuildDate>Mon, 14 May 2012 06:49:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>CSS considered harmful (the curse of floats and other scary stories)</title>
		<link>http://www.alandix.com/blog/2012/05/14/css-considered-harmful/</link>
		<comments>http://www.alandix.com/blog/2012/05/14/css-considered-harmful/#comments</comments>
		<pubDate>Mon, 14 May 2012 06:47:17 +0000</pubDate>
		<dc:creator>alan</dc:creator>
				<category><![CDATA[academic]]></category>
		<category><![CDATA[HCI and usability]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[HCI]]></category>
		<category><![CDATA[human computer interaction]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://www.alandix.com/blog/?p=980</guid>
		<description><![CDATA[CSS and JavaScript based sites have undoubtedly enabled experiences far richer than the grey-backgrounded days of the early web in the 1990s (and recall, the backgrounds really were grey!). However, the power and flexibility of CSS, in particular the use of floats, has led to a whole new set of usability problems on what appear [...]]]></description>
			<content:encoded><![CDATA[<p>CSS and JavaScript based sites have undoubtedly enabled experiences far richer than the grey-backgrounded days of the early web in the 1990s (and recall, the backgrounds really were grey!). However, the power and flexibility of CSS, in particular the use of floats, has led to a whole new set of usability problems on what appear to be beautifully designed sites.</p>
<p><img class="alignleft" style="border: 1px solid black;" title="screen side icons hide the text" src="http://www.alandix.com/images/screen-side-images.png" alt="" width="105" height="213" />I was reading a quite disturbing article on a <a href="http://elektronista.dk/kommentar/dresscode-blue-tie-and-male/" target="_blank" title="Dresscode blue tie and male">misogynistic Dell event</a> by <a href="https://plus.google.com/117452737186640334190" target="_top">Sophie Catherina Løhr</a> at <a href="http://elektronista.dk" target="_blank" title="UGENS ELEKTRONISTA">elektronista.dk</a>.  However, I was finding it frustrating as a line of media icons on the left of the page meant only the top few lines were unobstructed.</p>
<p>I was clearly not the only one with this problem as one of the comments on the page read:</p>
<blockquote><p><em>That social media widget on the left made me stop reading an otherwise interesting article. Very irritating.</em></p></blockquote>
<p>To be fair on the page designer,  it was just on Firefox that the page rendered like this, on other browsers the left-hand page margin was wider.  Probably Firefox is strictly &#8216;right&#8217; in a sense as it sticks very close to standards, but whoever is to blame, it is not helpful to readers of the blog.</p>
<p>For those wishing to make cross-browser styles, it is usually possible now-a-days, but you often have to reset everything at the beginning of your style files &#8212; even if CSS is standard, default styles are not:</p>
<pre class="brush: css; title: ;">
body {
    margin: 0;
    padding 0;
    /*  etc. */
}
</pre>
<p>Sadly this is just one example of an increasingly common problem.</p>
<p>A short while ago I was on a site that had a large right-hand side tab.  I forget the function, maybe for comments, or a table of contents.  The problem was the tab obscured and prevented access to most of the scroll bar making navigation of the middle portion of the page virtually impossible.  Normally it is not possible to obscure the scroll bar as it is &#8216;outside&#8217; the page. However this site, like many, had chosen to put the main content of the site in a fixed size scrolling &lt;div&gt;.  This meant that the header and footer were always visible, and the content scrolled in the middle.  Of course the scroll bar of the &lt;div&gt; is then part of the page and could be obscured.  I assume it was another cross-browser formatting difference that meant the designer did not notice the problem, or perhaps (not unlikely), only ever tested the style of pages with small amounts of non-scrolling text.</p>
<p><img title="diagram of the tab that hides" src="http://www.alandix.com/images/the-tab-that-hides.png" alt="" width="488" height="188" /></p>
<p>Some sites adopt a different strategy for providing fixed headers.  Rather than putting the main content in a fixed &lt;div&gt;, instead the header and footer are set to float above the main content and margins added to it to mean that the page renders correctly at top and bottom.  This means that the scrollbar for the content is the main scroll bar, and therefore cannot be hidden or otherwise mangled <img src='http://www.alandix.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Unfortunately, the web page search function does not &#8216;know&#8217; about these floating elements and so when you type in a search term, will happily scroll the page to &#8221;reveal&#8217; the searched for word, but may do so in a way that it is underneath either header or footer and so invisible.</p>
<p>This is not made easier to deal with in the new MacOS Lion were the line up/down scroll arrows have been removed.  Not only can you not fine-adjust the page to reveal those hidden searched-for terms, but also, whilst reading the page, the page-up/page-down scroll does not &#8216;know&#8217; about the hidden parts and so scrolls a full screen-sized page missing half the text <img src='http://www.alandix.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p><img class="alignnone" title="diagram -search term hidden by floating footer" src="http://www.alandix.com/images/hidden-search-term.png" alt="" width="502" height="202" /></p>
<p>Visibility problems are not confined to the web, there has been a long history of modal dialogue boxes being lost behind other windows (which then often refuse to interact due to the modal dialogue box), windows happily resizing themselves to be partly obscured by the Apple Dock, or even disappearing onto non-existent secondary displays.</p>
<p>It may be that some better model of visibility could be built into both CSS/DOM/JavaScript and desktop window managers.  And it may even be that CSS will fix it&#8217;s slightly odd model of floats and layout.  However, I would not want to discourage the use of overlays, transparencies, and other floating elements until this happens.</p>
<p>In the mean time, some thoughts:</p>
<ol>
<li><strong><em>restraint</em></strong> &#8212; Recall the early days of DTP when every newsletter sported 20 fonts. No self respecting designer would do this now-a-days, so use floats, lightboxes and the like with consideration &#8230; and if you <em>must</em> have popups or tabs that open on hover rather than when clicked, do make sure it is possible to move your mouse across the page without it feeling like walking a minefield.</li>
<li><em><strong>resizing</strong></em> &#8212; Do check your page with different window sizes, although desktop screens are now almost all at least 1024 x 768, think laptops and pads, as this is increasingly the major form of access.</li>
<li><em><strong>defaults</strong></em> &#8212; Be aware that, W3C not withstanding, browsers are different.  At very minimum reset all the margins and padding as a first step, so that you are not relying on browser defaults.</li>
<li><em><strong>testing</strong></em> &#8212; Do test (and here I mean technical testing, do user test as well!) with realistic pages, not just a paragraph of <em>lorem ipsum</em>.</li>
</ol>
<p>And do my sites do this well &#8230; ?</p>
<p>With CSS as in all things, with great power &#8230;</p>
<p><img class="alignnone" title="seperator line" src="http://www.alandix.com/images/grey-line.png" alt="" width="150" height="5" /></p>
<p>P.S. Computer scientists will recognise the pun on Dijkstra&#8217;s &#8220;<a href="http://dl.acm.org/citation.cfm?doid=362929.362947" target="_blank">go to statement considered harmful</a>&#8220;, the manifesto of structured programming.  The use of gotos in early programming langauges was incredibly flexible and powerful, but just like CSS with many concomitant potential dangers for the careless or unwary.  Strangely computer scientists have had little worry about other equally powerful yet dangerous techniques, not least macro languages (anyone for a spot of TeX debugging?), and Scheme programmers throw around continuations as if they were tennis balls.  It seemed as though the humble goto became the scapegoat for a discipline&#8217;s sins. It was interesting when the goto statement was introduced as a <a href="http://php.net/manual/en/control-structures.goto.php" target="_blank" title="PHP control-structures - goto">&#8216;new&#8217; feature in PHP5.3</a>, an otherwise post-goto C-style language; very retro.</p>
<p><a href="http://xkcd.com/292/"><img class="alignnone" title="XKCD: GOTO" src="http://imgs.xkcd.com/comics/goto.png " alt="" width="740" height="201" /></a><br />
image  <a href="http://xkcd.com/292/" target="_blank" title="xkcd.com: GOTO">xkcd.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alandix.com/blog/2012/05/14/css-considered-harmful/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The value of networks: mining and building</title>
		<link>http://www.alandix.com/blog/2012/05/11/the-value-of-networks-mining-and-building/</link>
		<comments>http://www.alandix.com/blog/2012/05/11/the-value-of-networks-mining-and-building/#comments</comments>
		<pubDate>Fri, 11 May 2012 08:12:38 +0000</pubDate>
		<dc:creator>alan</dc:creator>
				<category><![CDATA[academic]]></category>
		<category><![CDATA[HCI and usability]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[aqtive]]></category>
		<category><![CDATA[network effects]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[talis]]></category>
		<category><![CDATA[vfridge]]></category>

		<guid isPermaLink="false">http://www.alandix.com/blog/?p=970</guid>
		<description><![CDATA[The value of networks or graphs underlies many of the internet (and for that read global corporate) giants.  Two of the biggest: Google and Facebook harness this in very different ways &#8212; mining and building. Years ago, when I was part of the dot.com startup aQtive, we found there was no effective understanding of internet [...]]]></description>
			<content:encoded><![CDATA[<p>The value of networks or graphs underlies many of the internet (and for that read global corporate) giants.  Two of the biggest: Google and Facebook harness this in very different ways &#8212; <em>mining</em> and <em>building</em>.</p>
<p>Years ago, when I was part of the dot.com startup aQtive, we found there was no effective understanding of internet marketing, and so had to create our own.  Part of this we called &#8216;<a href="http://www.hiraeth.com/alan/ebulletin/market-ecology/" target="_blank" title="market ecology">market ecology</a>&#8216;.  This basically involved mapping out the relationships of influence between different kinds of people within some domain, and then designing families of products that exploited that structure.</p>
<p>The networks we were looking at were about human relationships: for example teachers who teach children, who have other children as friends and siblings, and who go home to parents.  Effectively we were into (too) early social networking<sup><a href="#footnote-1-970" id="footnote-link-1-970" title="See the footnote.">1</a></sup>!</p>
<p><img class="aligncenter" title="market ecology - tracing the network of influences between different stakeholders" src="http://www.alandix.com/academic/papers/hci2011-vfridge/images/fig3-market-ecology.png" alt="" width="296" height="148" /></p>
<p>The first element of this was about <em>mining</em> &#8212; exploiting the existing network of relationships.</p>
<p>However in our early white papers on the topic, we also noted that the power of internet products was that it was also possible to create new relationships, for example, adding &#8216;share&#8217; links.  That is <em>building</em> the graph.</p>
<p>The two are not distinct, if one is not able to exploit new relationships within a product it will die, and the mining of existing networks can establish new links (e.g. Twitter suggesting who to follow).  Furthermore, creating of links is rarely <em>ex nihilo</em>, an email &#8216;share&#8217; link uses an existing relationships (contact in address book), but brings it into a potentially different domain (e.g. bookmarking a web page).</p>
<p>It is interesting to see Google and Facebook against this backdrop.  Their core strengths are in different domains (web information and social relationships), but moreover they focus differently on mining and building.</p>
<p>Google is, par excellence, about <em>mining</em> graphs (the web).  While it has been augmented and modified over the years, the link structure used in PageRank is what made Google great.  Google also mine tacit relationships, for example the use of word collocation to understand concepts and relationships, so in a sense build from what they mine.</p>
<p>Facebook&#8217;s power, in contrast, is in the way it is <em>building</em> the social graph as hundreds of millions of people tell it about their own social relationships.  As noted, this is not <em>ex nihilo</em>, the social relationships exist in the real word, but Facebook captures them digitally.  Of course, then Facebook mines this graph in order to derive revenue form advertisements, and (although people debate this) attempt to improve the user experience by ranking posts.</p>
<p>Perhaps the greatest power comes in marrying the two.   Amazon does this to great effect within the world of books and products.</p>
<p>As well as a long-standing academic interest, these issues are particularly germane to my research at Talis where the Education Graph is a core element.  However, they apply equally whether the core network is kite surfers, chess or bio-technology.</p>
<p>Between the two it is probably building that is ultimately most critical.  When one has a graph or network it is possible to find ways to exploit it, but without the network there is nothing to mine. Page and Brin knew this in the early days of their pre-Google project at Stanford, and a major effort was focused on simply gathering the crawl of the web on which they built their algorithms<sup><a href="#footnote-2-970" id="footnote-link-2-970" title="See the footnote.">2</a></sup>.  Now Google is aware that, in principle, others can exploit the open resources on which much of its business depends; its strength lies in its intellectual capital. In contrast, with a few geographical exceptions, Facebook <em>is</em> the social graph, far more defensible as Google has discovered as it struggles with Google Plus.</p>
<br /><ol class="footnotes"><li id="footnote-1-970">See our <a href="http://www.alandix.com/academic/papers/hci2011-vfridge/" target="_blank" title="Anatomy of an Early Social Networking Site">retrospective</a> about <a href="http://www.vfridge.com/" target="_blank" title="vfridge">vfridge</a>  at  last year&#8217;s HCI conference and our original <a href="http://www.hiraeth.com/alan/ebulletin/websharer/vision-web-sharer.html" target="_blank" title="the web sharer">web sharer vision</a>.  [<a href="#footnote-link-1-970">back</a>]</li><li id="footnote-2-970">See the description of this in &#8220;<a href="http://www.amazon.co.uk/gp/product/1416596585?ie=UTF8&tag=textilearts0b-21&link_code=wql&camp=2486&creative=8946" type="amzn" asin="1416596585">In The Plex: How Google Thinks, Works and Shapes Our Lives</a>&#8220;.  [<a href="#footnote-link-2-970">back</a>]</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.alandix.com/blog/2012/05/11/the-value-of-networks-mining-and-building/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One week to the next Tech Wave</title>
		<link>http://www.alandix.com/blog/2012/03/14/one-week-to-the-next-tech-wave/</link>
		<comments>http://www.alandix.com/blog/2012/03/14/one-week-to-the-next-tech-wave/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 19:34:09 +0000</pubDate>
		<dc:creator>alan</dc:creator>
				<category><![CDATA[academic]]></category>
		<category><![CDATA[HCI and usability]]></category>
		<category><![CDATA[arts]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[digital culture]]></category>
		<category><![CDATA[digital media]]></category>
		<category><![CDATA[HCI]]></category>
		<category><![CDATA[philosophy]]></category>
		<category><![CDATA[physicality]]></category>
		<category><![CDATA[Tiree]]></category>
		<category><![CDATA[Tiree Tech Wave]]></category>

		<guid isPermaLink="false">http://www.alandix.com/blog/?p=955</guid>
		<description><![CDATA[Just a week to go now before the next Tiree Tech Wave starts, although the first person is coming on Sunday and one person is going to hang on for a while after getting some surfing in. Still plenty of room for anyone who decides to come at the last minute. Things have been a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/53872948@N04/6677682377/in/set-72157628820221067" target="_blank"><img class="alignright" style="border-style: initial; border-color: initial; border-width: 0px;" title="photo by Graham Dean" src="http://tireetechwave.org/wp-content/uploads/2011/01/6328203741_4099285683_m.jpg" alt="" width="240" height="180" /></a>Just a week to go now before the next <a href="http://tireetechwave.org/" target="_blank" title="Tiree Tech Wave">Tiree Tech Wave</a> starts, although the first person is coming on Sunday and one person is going to hang on for a while after getting some surfing in.</p>
<p>Still plenty of room for anyone who decides to come at the last minute.</p>
<p>Things have been a little hectic, as having to do more of the local organisation this time, so running round the island a bit, but really looking forward to when people get here <img src='http://www.alandix.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   Last two times I&#8217;ve felt a bit of tension leading up to the event as I feel responsible.  It is difficult planning an event and not having a schedule &#8220;person A giving talk at 9:30, person B at 10:45&#8243;; strangely much harder having nothing, simply trusting that good things will happen.  Hopefully this time I now have had enough experience to know that if I just hang back and resist the urge to &#8216;do something&#8217;, then people will start to talk together, work together, make together &#8212; I just need to have the confidence to do nothing<sup><a href="#footnote-1-955" id="footnote-link-1-955" title="See the footnote.">1</a></sup>.</p>
<p><a href="http://www.alandix.com/images/TTW3-futuremenders-poster-33.jpg"><img class="alignleft" style="border-style: solid; border-color: black; border-width: 1px;" title="Futuremenders flyer" src="http://www.alandix.com/images/TTW3-futuremenders-poster-10.jpg" alt="" width="175" height="248" /></a>At previous TTW we have had open evenings when people from the local community have come in to see what is being done.  This time, as well as having a general welcome to people to come and see,  Jonnet from <a href="http://www.highwire.lancs.ac.uk/" target="_blank">HighWire</a> at Lancaster is going to run a community workshop on mending based on her personal and PhD work on &#8216;<a href="http://www.futuremenders.com/" target="_blank" title="Futuremenders">Futuremenders</a>&#8216;. Central to this is Jonnet&#8217;s pledge to not acquire any more clothes, ever, but instead to mend and remake. This picks up on textile themes on the island especially the &#8216;<a href="http://antirisdeach.com/latest-stories/rags-to-riches-eco-chic-fashion-design-awards/" target="_blank">Rags to Riches Eco-Chic</a>&#8216; fashion award and <a href="http://www.tireetapestrygroup.com/blog/category/galleries/" target="_blank" title="Tiree Tapestry Group">community tapestry group</a>, but also Tech Wave themes of making, repurposing and generally taking things to pieces.   Jonnet&#8217;s work is not techno-fashion (no electroluminescent skirts, or LEDs stitched into your wooly hat), but does use social connections both physical and through the web to create mass participation, including mass panda knitting and an attempt on the world mass darning record.</p>
<p>For the past few weeks I have had an unusual (although I hope to become usual) period of relative stability on the island after a previous period of 8 months almost constantly on the move.  This has included some data hacking and learning HTML5 for mobile devices (hence some hacker-ish blog posts recently) I hope to finish off one mini-project during the TTW that will be particularly pertinent the weekend the clocks &#8216;go forward&#8217; an hour for British Summer Time.  Will blog if I do.</p>
<p>I hit the road last November almost immediately the Tech Wave finished, so never got time to tidy things up.  So, before this one starts, I really should try to write a up a couple of activities from last time as I&#8217;m sure there will plenty more this time round&#8230;</p>
<br /><ol class="footnotes"><li id="footnote-1-955">Strange I always give people the same advice we they take on management roles, &#8220;the brave manager does nothing&#8221;.  How rare that is.  In a university, new Vice Chancellor starts and feels he/she has to change things &#8212; new faculty structure, new committees. &#8220;In the long run, will be better&#8221;, everyone says, but I&#8217;ve always found such re-organisation is itself re-organised before we ever get to t &#8220;the long run&#8221;.  [<a href="#footnote-link-1-955">back</a>]</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.alandix.com/blog/2012/03/14/one-week-to-the-next-tech-wave/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>book: Nightingale, Peter Dorward</title>
		<link>http://www.alandix.com/blog/2012/03/11/book-nightingale-peter-dorward/</link>
		<comments>http://www.alandix.com/blog/2012/03/11/book-nightingale-peter-dorward/#comments</comments>
		<pubDate>Sun, 11 Mar 2012 21:03:39 +0000</pubDate>
		<dc:creator>alan</dc:creator>
				<category><![CDATA[books]]></category>
		<category><![CDATA[Bologna]]></category>
		<category><![CDATA[italy]]></category>
		<category><![CDATA[terorrism]]></category>

		<guid isPermaLink="false">http://www.alandix.com/blog/?p=937</guid>
		<description><![CDATA[Peter Dorward&#8217;s is a truly beautiful tale, both in language and story.  Not beautiful in a pink ribbons sense, but with a harsh, sometimes almost brutal directness.  Dorward is a Scot, so perhaps the image of whisky is pertinent.  Certainly not a liquor like limoncello, strong beneath but covered over with sweetness, like aspects of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.co.uk/gp/product/1906120099?ie=UTF8&tag=textilearts0b-21&link_code=wql&camp=2486&creative=8946" type="amzn" asin="1906120099"><img class="alignright" style="border: 0pt none;" title="Nightingale, Peter Dorwood" src="http://www.alandix.com/images/nightingale-dorward-cover.jpg" alt="" width="129" height="200" /></a>Peter Dorward&#8217;s <a href="http://www.amazon.co.uk/gp/product/1906120099?ie=UTF8&tag=textilearts0b-21&link_code=wql&camp=2486&creative=8946" type="amzn" asin="1906120099">Nightingale</a> is a truly beautiful tale, both in language and story.  Not beautiful in a pink ribbons sense, but with a harsh, sometimes almost brutal directness.  Dorward is a Scot, so perhaps the image of whisky is pertinent.  Certainly not a liquor like limoncello, strong beneath but covered over with sweetness, like aspects of the Italy Dorward portrays, but like a South-East Islay Malt, a smoke-tar flavour that almost makes you gag and yet all the richer for its lack of compromise.</p>
<p>Nightingale, takes us into Italy&#8217;s &#8220;Years of Lead&#8221; (<em>Anni di piombo</em>), the period of political terrorism from left and right that left  thousands dead, and in particular the <a href="http://en.wikipedia.org/wiki/August_1980_Bologna_bombing" target="_blank" title="Wikipedia: Bologna bombing">1980 railway station bombing in Bologna</a>, which killed eighty five one hot holiday morning.  This is hardly an easy topic to deal with.  The jacket describes the novel as a &#8216;literary thriller&#8217;, but it is at heart about people: the almost comic, but bloody, naivete of political extremism, and the tenuous glory of love.</p>
<p><a href="http://plaquesinrome.blogspot.com/2008/07/massimo-dantona-via-salaria.html"><img class="alignleft" style="border: 0pt none;" title="Plaque to Massimo D'Antona, via Salaria, Roma" src="http://bp1.blogger.com/_n2y9sC54JPo/SITFmTW6j1I/AAAAAAAAEMg/rV6IbiouiTY/s320/Marco+Biagi+-+Via+Salaria.JPG" alt="" width="320" height="240" /></a>Although, the central character in the novel is Scottish, and the protagonists include a German Baader-Meinhoff acolyte and an Egyptian bartender, Italians and Italy form not just the backdrop, but permeate the pages of Nightingale. Dorward describes Italy with sensitivity and straightforwardness, and I think loves the country and the people in the same way I have come to; yet aware of the dark undercurrents that often underlie the Formica-tabled pizzeria and high fashion boutiques.</p>
<p>I recall a  few years ago seeing flowers around a plaque on the wall, just opposite the entrance to the University of Rome &#8220;La Sapienza&#8221; in via Salaria.  I had been visiting occasionally for several years, but not noticed the plaque before.  I was told it was to commemorate a Professor of the University, Massimo D&#8217;Antona, who had been assassinated some years earlier (1999) for serving on a government committee looking into the reform of labour law.  In the UK it sometimes seems we have lost our passion, that politics and life end up in a lassitude and compromise, that we need some of the passion of the south.  And yet, this passion comes at a cost.</p>
<p><a href="http://www.amazon.co.uk/gp/product/0857381369?ie=UTF8&tag=textilearts0b-21&link_code=wql&camp=2486&creative=8946" type="amzn" asin="0857381369"><img class="alignright" style="border: 0pt none;" title="At the Loch of the Green Corrie" src="http://www.alandix.com/images/loch-of-the-green-corrie-cover.jpg" alt="" width="130" height="200" /></a>I came to Nightingale through reading Andrew Greig&#8217;s <a href="http://www.amazon.co.uk/gp/product/0857381369?ie=UTF8&tag=textilearts0b-21&link_code=wql&camp=2486&creative=8946" type="amzn" asin="0857381369">At the Loch of the Green Corrie</a>.  The central part of Greig&#8217;s semi-biographical, semi-autobiographical book is his journey to fish at the loch of the title, accompanied with two close friends, brothers, one of which was Peter. One evening, camping beside another loch, in conversation oiled with whisky drunk from camping mugs, Peter shares his early ideas for a story.  He is a GP in London at the time, and dabbling in writing, but yet to write a full novel.</p>
<p>I was captivated by this real story, of the man and his desires, and instantly reached for the internet to find him.  It was with so much joy that I saw he had written the novel, and was now an award-winning author (and still a doctor, but now in Scotland). Greig&#8217;s account had opened up such an intimacy with these brothers, so wonderful to see those nascent ideas, on that midge-plagued, peat-mattressed shoreline, bear fruit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alandix.com/blog/2012/03/11/book-nightingale-peter-dorward/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using the Public Suffix list</title>
		<link>http://www.alandix.com/blog/2012/03/02/using-the-public-suffix-list/</link>
		<comments>http://www.alandix.com/blog/2012/03/02/using-the-public-suffix-list/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 14:40:40 +0000</pubDate>
		<dc:creator>alan</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[snip!t]]></category>
		<category><![CDATA[talis]]></category>
		<category><![CDATA[techie]]></category>

		<guid isPermaLink="false">http://www.alandix.com/blog/?p=923</guid>
		<description><![CDATA[On a number of occasions I have wanted to decompose domain names, for example in the URL recogniser in Snip!t.  However, one problem has always been the bit at the end.  It is clear that &#8216;com&#8217; and &#8216;ac.uk&#8217; are the principle suffixes of &#8216;www.alandix.com&#8217; and &#8216;www.cs.bham.ac.uk&#8217; respectively.  However, while I know that for UK domains [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mxr.mozilla.org/mozilla-central/source/netwerk/dns/effective_tld_names.dat?raw=1"><img class="alignright" title="fragment of Public Suffix List" src="http://www.alandix.com/images/public-suffix-list.png" alt="" width="308" height="164" /></a>On a number of occasions I have wanted to decompose domain names, for example in the URL recogniser in <a href="http://www.snipit.org/" target="_blank">Snip!t</a>.  However, one problem has always been the bit at the end.  It is clear that &#8216;com&#8217; and &#8216;ac.uk&#8217; are the principle suffixes of &#8216;www.alandix.com&#8217; and &#8216;www.cs.bham.ac.uk&#8217; respectively.  However, while I know that for UK domains it is the last two components that are important (<a href="http://en.wikipedia.org/wiki/Second-level_domain" target="_blank" title="Wikipedia: Second Level Domain">second level domains</a>), I never knew how to work this out in general for other countries.  Happily, Mozilla and other browser vendors have an initiative called the <a href="http://publicsuffix.org/">Public Suffix List</a> , which provides a list of just these important critical second level (and deeper level) suffixes.</p>
<p>I recently found I needed this again as part of my <a href="http://www.talis.com/" target="_blank">Talis</a> research.  There is a <a href="http://www.simonecarletti.com/blog/2010/06/public-suffix-list-library-for-ruby/" target="_blank">Ruby library</a> and a <a href="http://sourceforge.net/projects/publicsuffix/" target="_blank">Java sourceforge project</a> for reading the Public Suffix list, and an implementation by the <a href="http://www.dkim-reputation.org/" target="_blank">DKIM Reputation project</a>, that transforms the list into generated tables for C, PHP and Perl.  However, nothing for easily and automatically maintaining access to the list.  So I have written a small PHP class to parse, store and access the Public Suffix list. There is an example in the <a href="http://www.alandix.com/blog/code/public-suffix/" target="_blank">public suffix</a> section of the &#8216;code&#8217; pages in this blog, and it also has its own <a href="http://www.alandix.com/code/public-suffix/" target="_blank">microsite</a> including more <a href="http://www.alandix.com/code/public-suffix/example/" title="Examples - Public Suffix">examples</a>, <a href="http://www.alandix.com/code/public-suffix/documentation/" title="Documentation - Public Suffix">documentation</a> and a <a href="http://www.alandix.com/code/public-suffix/check/" target="_blank">live demo</a> to try.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alandix.com/blog/2012/03/02/using-the-public-suffix-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>spice up boring lists of web links &#8211; add favicons using jQuery</title>
		<link>http://www.alandix.com/blog/2012/02/24/add-favicons-using-jquery/</link>
		<comments>http://www.alandix.com/blog/2012/02/24/add-favicons-using-jquery/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 21:25:03 +0000</pubDate>
		<dc:creator>alan</dc:creator>
				<category><![CDATA[HCI and usability]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[techie]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://www.alandix.com/blog/?p=891</guid>
		<description><![CDATA[Earlier today I was laying out lists of links to web resources, initially as simple links:   jQuery home page   Wikipedia page on favicons   my academic home page However, this looked a little boring and so thought it would be good to add each site&#8217;s favicon (the little icon it shows to the [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier today I was laying out lists of links to web resources, initially as simple links:</p>
<ul>
<li>  <a href="http://docs.jquery.com/Main_Page">jQuery home page</a></li>
<li>  <a href="http://en.wikipedia.org/wiki/Favicon">Wikipedia page on favicons</a></li>
<li>  <a href="http://www.alandix.com/academic/">my academic home page</a></li>
</ul>
<p>However, this looked a little boring and so thought it would be good to add each site&#8217;s favicon (the little icon it shows to the left on a web browser), and have a list like this:</p>
<p style="padding-left: 30px;"><a href="http://jquery.com/"><img src="http://jquery.com/favicon.ico" alt="" width="16" /></a>  <a href="http://docs.jquery.com/Main_Page">jQuery home page</a></p>
<p style="padding-left: 30px;"><a href="http://en.wikipedia.org/wiki/Favicon"><img src="http://en.wikipedia.org/favicon.ico" alt="" width="16" /></a>  <a href="http://en.wikipedia.org/wiki/Favicon">Wikipedia page on favicons</a></p>
<p style="padding-left: 30px;"><a href="http://www.alandix.com/"><img src="http://www.alandix.com/favicon.ico" alt="" width="16" /></a>  <a href="http://www.alandix.com/academic/">my academic home page</a></p>
<p>The pages with the lists were being generated, and the icons could have been inserted using a server-side script, but to simplify the server-side code (for speed and maintainability) I put the fetching of favicons into a small JavaScript function using jQuery.  The page is initially written (or generated) with default images, and the script simply fills in the favicons when the page is loaded.</p>
<p>The list above is made by hand, but look at <a title="favicon example" href="http://www.alandix.com/code/favicon/" target="_blank">this example page</a> to see the script in action.</p>
<p>You can use this in your own web pages and applications by simply including a few JavaScript files and adding classes to certain HTML elements.</p>
<p>See the <a title="favicon code" href="http://www.alandix.com/blog/code/favicon/" target="_blank">favicon code page</a> for a more detailed explanation of how it works and how to use it in your own pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alandix.com/blog/2012/02/24/add-favicons-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gordon&#8217;s example to us all</title>
		<link>http://www.alandix.com/blog/2012/02/19/gordons-example-to-us-all/</link>
		<comments>http://www.alandix.com/blog/2012/02/19/gordons-example-to-us-all/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 13:50:01 +0000</pubDate>
		<dc:creator>alan</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[political]]></category>
		<category><![CDATA[general election]]></category>
		<category><![CDATA[gordon brown]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.alandix.com/blog/?p=861</guid>
		<description><![CDATA[Last night I read a BBC article on Gordon Brown&#8217;s earnings since he stopped being Prime Minister a few years ago.  I felt a lump coming to my throat as I read the story.  Ex-PMs typically have lucrative post-government careers with lecture tours and the like.  Gordon Brown has similarly earned 1.4 million pounds in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/File:GordonBrown1234_cropped_.jpg" target="_blank" title="full size image on Wikipedia"><img class="alignright" style="border: 0pt none;" title="Gordon Brown" src="http://www.alandix.com/images/Gordon-Brown-from-Wikipedia.jpg" alt="" width="140" height="200" /></a>Last night I read a BBC article on <a href="http://www.bbc.co.uk/news/uk-politics-17072715" target="_blank" title="Gordon Brown earns £1.4m since leaving Number 10">Gordon Brown&#8217;s earnings</a> since he stopped being Prime Minister a few years ago.  I felt a lump coming to my throat as I read the story.  Ex-PMs typically have lucrative post-government careers with lecture tours and the like.  Gordon Brown has similarly earned 1.4 million pounds in lecture fees and book royalties, but then <em>given it all away</em>.</p>
<p>In the run up to the General Election in 2010 I wrote how I gradually <a href="http://www.alandix.com/blog/2010/05/01/warming-to-gordon/" target="_blank" title="Warming to Gordon">warmed to Gordon Brown</a> during the campaign as it became increasingly clear that he was a man of true integrity.  This is another indication of that integrity, and utterly amazing to see in the modern world.</p>
<p>Of course he was not pretty like David Cameron or Nick Clegg, nor could he control his irritation when faced with objectionable, if popular, views.  In short, not a showman, nor a celebrity, not slick, not &#8216;political &#8211; just a genuinely good man.</p>
<p>It is sad that that is not sufficient to impress the 21st-century voter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alandix.com/blog/2012/02/19/gordons-example-to-us-all/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dinner or tea, lunch or dinner &#8211; signs of class or the times</title>
		<link>http://www.alandix.com/blog/2012/02/08/dinner-or-tea-lunch-or-dinner-signs-of-class-or-the-times/</link>
		<comments>http://www.alandix.com/blog/2012/02/08/dinner-or-tea-lunch-or-dinner-signs-of-class-or-the-times/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 18:39:36 +0000</pubDate>
		<dc:creator>alan</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[tea]]></category>

		<guid isPermaLink="false">http://www.alandix.com/blog/?p=853</guid>
		<description><![CDATA[I was pondering the words of the old advertising jingle1: I like a nice cup of tea in the morning, Just to start the day you see; And at half past eleven, Well my idea of heaven, Is a nice cup of tea. I like a nice cup off tea with my dinner, And a [...]]]></description>
			<content:encoded><![CDATA[<p>I was pondering the words of the old advertising jingle<sup><a href="#footnote-1-853" id="footnote-link-1-853" title="See the footnote.">1</a></sup>:</p>
<blockquote><p><em>I like a nice cup of tea in the morning,</em><br />
<em> Just to start the day you see;</em><br />
<em> And at half past eleven,</em><br />
<em> Well my idea of heaven,</em><br />
<em> Is a nice cup of tea.</em></p>
<p><em>I like a nice cup off tea with my dinner,</em><br />
<em> And a nice cup of tea with my tea,</em><br />
<em> And about this time of night,</em><br />
<em> What goes down a treat, you&#8217;re right,</em><br />
<em> It&#8217;s a nice cup of tea.</em></p></blockquote>
<p>As well as the deep truth underlying the words, I suddenly became aware of the  beginning of the second stanza: &#8220;<em>a nice cup of tea with my dinner, and a nice cup of tea with my tea</em>&#8220;.</p>
<p>I&#8217;d guess the last part of this may be confusing to a non-UK audience, or it may conjure up images of period-drama afternoon tea with cucumber sandwiches and parasols over a game of croquet.</p>
<p>Now the meaning of &#8216;dinner&#8217; has been a matter of discussion in my household for years.</p>
<p>When I was a child &#8216;dinner&#8217; was the light meal in the middle of the day, whereas &#8216;tea&#8217; was the main meal at around 6 o&#8217;clock.</p>
<p>In contrast, Fiona takes a more pragmatic approach: &#8216;dinner&#8217; is the main meal whether taken midday or in the evening.</p>
<p>My impression is that, when I was a child, this was part of a general class distinction. Posh (middle class) people ate lunch at midday, dinner in the evening, watched BBC and drank coffee. The working class ate dinner at midday, ate tea in the evening, watched ITV (the channel with adverts), and drank tea.</p>
<p>Weirdly in school one had &#8216;school dinners&#8217; or &#8216;free dinners&#8217; if on benefits, but had &#8216;packed lunches&#8217;.</p>
<p>We have sometimes discussed whether the tea/dinner distinction was more a Welsh-ism. But the advertising jingle clearly shows it was widespread<sup><a href="#footnote-2-853" id="footnote-link-2-853" title="See the footnote.">2</a></sup>.</p>
<p>Now-a-days I tend to use the words rather interchangeably, and certainly happy to use &#8216;lunch&#8217;.  Is this because I have become part of the professional classes or a general shift of language?</p>
<p>What do you call meals? Is it the same as when you were little? Is it still a class distinction?</p>
<br /><ol class="footnotes"><li id="footnote-1-853">According to <a href="http://www.theanswerbank.co.uk/Adverts/Question301551.html" target="_blank">responses in AnswerBank</a>, this was from an original 1937 song for Brook Bond &#8216;D&#8217; brand &#8230; and in fact the word &#8216;tea&#8217; was replaced by &#8216;D&#8217; &#8230; but I obviously missed this and remember it as &#8216;tea&#8217;!  The <a href="http://lyricsplayground.com/alpha/songs/a/anicecupoftea.shtml" target="_blank">original lyrics</a> have slightly different final lines, &#8220;<em>And when it&#8217;s time for bed, There&#8217;s a lot to be said, For a nice cup of tea</em>&#8220;, or maybe I simply misremembered the advert.  [<a href="#footnote-link-1-853">back</a>]</li><li id="footnote-2-853">even in 1937  [<a href="#footnote-link-2-853">back</a>]</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.alandix.com/blog/2012/02/08/dinner-or-tea-lunch-or-dinner-signs-of-class-or-the-times/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Lies vs. facts: the 26k benefits ceiling</title>
		<link>http://www.alandix.com/blog/2012/01/29/lies-vs-facts-the-26k-benefits-ceiling/</link>
		<comments>http://www.alandix.com/blog/2012/01/29/lies-vs-facts-the-26k-benefits-ceiling/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 12:03:51 +0000</pubDate>
		<dc:creator>alan</dc:creator>
				<category><![CDATA[academic]]></category>
		<category><![CDATA[political]]></category>
		<category><![CDATA[benefits]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.alandix.com/blog/?p=837</guid>
		<description><![CDATA[In the UK the government is proposing a ceiling on benefits of £26,000. This sounds a large figure, indeed it is the median income, so seems reasonable that someone out of work should not receive more than the average working person. The press is, of course, polarised on the issue, as is the Church of [...]]]></description>
			<content:encoded><![CDATA[<p>In the UK the government is proposing a ceiling on benefits of £26,000.  This sounds a large figure, indeed it is the median income, so seems reasonable that someone out of work should not receive more than the average working person.  The press is, of course, polarised on the issue, as is the Church of England.</p>
<p>I was particularly interested in the coverage in last Wednesday&#8217;s Daily Mail, partly as this was where the former Archbishop of Canterbury chose to issue a <a href="My fellow bishops are wrong. Fuelling the culture of welfare dependency is immoral  Read more: http://www.dailymail.co.uk/news/article-2091330/Lord-Carey-benefits-cap-Fuelling-culture-welfare-dependency-immoral.html#ixzz1kqOSc8EI" target="_blank" title="Carey: My fellow bishops are wrong. Fuelling the culture of welfare dependency is immoral  Read more: http://www.dailymail.co.uk/news/article-2091330/Lord-Carey-benefits-cap-Fuelling-culture-welfare-dependency-immoral.html#ixzz1kqOSc8EI">statement about the issue</a>, and partly because I was on a BA flight and it is one of the free newspapers!  This issue of the Mail contained an article, &#8220;The hard workers who are proud not to claim&#8221;<sup><a href="#footnote-1-837" id="footnote-link-1-837" title="See the footnote.">1</a></sup>, detailing the circumstances of three different working and tax-paying households living below or close to the proposed £26,000 limit, who can&#8217;t understand why they are working and paying taxes to support others to live on more than them.</p>
<p>I wondered about the truth behind these stories.  As you might imagine, the Mail&#8217;s stories were, to be generous, disingenuous, and most probably misleading, both to their readers and those they interviewed.  When you work out the actual figures and facts behind the stories, things turn out rather differently then they were projected.</p>
<p>The issue of the proposed £26,000 benefits ceiling was particularly hot in the news after the <a href="http://www.bbc.co.uk/news/uk-politics-16675314" target="_blank" title="BBC News - Government suffers Lords defeat over benefit cap plan">House of Lords made radical amendments to the bill</a>.  The opposition in the Lords to proposed benefits reforms comes not just from the Labour benches, but includes some LibDems and Conservatives, and, vocally, several Church of England bishops<sup><a href="#footnote-2-837" id="footnote-link-2-837" title="See the footnote.">2</a></sup>.</p>
<p>Lord Carey, the former Archbishop of Canterbury, weighed into this debate <a href="http://www.dailymail.co.uk/news/article-2091330/Lord-Carey-benefits-cap-Fuelling-culture-welfare-dependency-immoral.html" target="_blank" title="Carey: My fellow bishops are wrong. Fuelling the culture of welfare dependency is immoral  Read more: http://www.dailymail.co.uk/news/article-2091330/Lord-Carey-benefits-cap-Fuelling-culture-welfare-dependency-immoral.html#ixzz1kqOSc8EI">chastising his fellow bishops in the Lords</a>, on the grounds that the weight that the national debt lays on our children is a major moral issue and the runaway benefits bill is a crucial part of controlling this.</p>
<p>There are of course differing views on how fast and how radically we should be attempting to cut national debt and how this should be accomplished.  What is notable is that Carey chose to make this statement in the Daily Mail.  My guess is he chose the Mail, rather than, say, the Times or the Telegraph (let alone the Independent or Guardian, who might have published it alongside contrary views), is that the Mail is much more a paper for ordinary Middle England folk, the &#8216;squeezed middle&#8217;, who feel they are paying the bulk of the taxes that fund the burgeoning benefits budget.</p>
<p>Whilst the &#8216;quality&#8217; newspapers push their own particular viewpoint, they do follow a certain journalistic ethic, and normally within their articles you find the full facts, as they know them.  Now, this is sometimes very deeply buried, to the point of disinformation, but is at least present; the careful reader can see the counter arguments through the opinion.</p>
<p>The Mail has no such scruples; it is unashamedly a newspaper of persuasion not information.</p>
<p>Given this, however much the Mail is targeting a particular demographic, Carey&#8217;s choice seemed misguided or naive.</p>
<p>In particular, in the same copy as Carey&#8217;s statement, there was the article describing the three households, all in tight economic circumstances, but who are working, paying tax to fund benefits, but not on benefits themselves.  This is, in fact, excellent journalism, cold figures are hard to comprehend, real examples <em>can</em> convey the truth better than abstractions.</p>
<p>One household was a single woman, Rachel, living on her own; the second, Lauren and David, an engaged couple with a baby living with one of their parents; and the third, Emma and Darren, a married couple with two small twins, living in a rented house.  They all had net incomes below or close to the proposed £26,000 benefits cap, and in each case the description ends with a personal statement, which expresses their frustration that, while they manage to cope on their income, why should people need £26,000 when not in work:</p>
<blockquote><p>&#8220;<em>I don&#8217;t understand why people would need to claim more than £26,000 in benefits if I can live comfortably on this</em>&#8220;, Rachel</p>
<p>&#8220;<em>It&#8217;s crazy that people say they can&#8217;t live of £26,000.  People need to make sacrifices like the rest of us have.</em>&#8220;, Lauren</p>
<p>&#8220;I<em>t makes us very angry that my husband works so hard and pays tax on his income, which goes to pay the benefits bills of all those people who don&#8217;t work and who receive more money than us.</em>&#8220;, Emma</p></blockquote>
<p>What the Mail reporters clearly failed to tell any of these families is what they would be receiving on benefits if they were suddenly made redundant and out of work.</p>
<p>Just to see I put each of these people&#8217;s circumstances into the government <a href="http://www.direct.gov.uk/en/Diol1/DoItOnline/DoItOnlineByCategory/DG_172666" target="_blank" title="Directgov - Benefits adviser">benefits calculator</a> and a housing benefit calculator<sup><a href="#footnote-3-837" id="footnote-link-3-837" title="See the footnote.">3</a></sup>.</p>
<p>Rachel, lives alone with £16,000 gross income and £13,000 net income.  She describes rent (£500) and bills taking up most of her income, but leaving her with £250 a month for &#8220;<em>recreational and leisure activities</em>&#8220;, allowing her to &#8220;<em>live comfortably</em>&#8220;.  If she lost her job her benefits including housing benefit to contribute to rent would total £9,774 per annum (£53.45 job seekers allowance, £19.38 council tax rebate<sup><a href="#footnote-4-837" id="footnote-link-4-837" title="See the footnote.">4</a></sup>, £115.30 housing benefit).  That is just what she describes as her basic bills with none of her recreation or leisure.  I&#8217;m sure if asked whether she would be happy to live on this, her answer would be different.</p>
<p>Lauren and David fare worst; they have a gross salary of £33,000, with a net income of £27,560 (including child benefit and child tax credits).  If they were both to lose their job, they would take home a total of £200.61 a week, around £10,500 per annum<sup><a href="#footnote-5-837" id="footnote-link-5-837" title="See the footnote.">5</a></sup>.  It was Lauren who said, &#8220;<em>People need to make sacrifices like the rest of us have</em>&#8220;.  If the Mail reporter had explained to her that she would have to cope on 2/5 of their current take-home money would she feel the same?</p>
<p>It is the last family however, that does appear to highlight anomalies in the benefits system.  Darren works in public transport and has a gross pay of precisely £26,000, leaving Emma and Darren with a take home pay of £21,608 (including child benefit).  If Darren lost his job (or found himself unable to work as he has a medical condition) and <em>both</em> of them registered as job seekers (although Emma is currently looking after the children at home) then they would receive a total of £24,295 a year (just over £15,000 of this is basic benefit, the rest council tax relief<sup><a href="#footnote-6-837" id="footnote-link-6-837" title="See the footnote.">6</a></sup> and housing benefit), more than their current take home pay.</p>
<p>The reason for this disparity is that Emma and Darren do not attempt to claim benefits: &#8220;<em>We are proud that we&#8217;re not on benefits, although sometimes it can be really hard</em>&#8220;.  In fact they would be eligible for substantial housing benefits<sup><a href="#footnote-7-837" id="footnote-link-7-837" title="See the footnote.">7</a></sup>, which would presumably make all the difference for them and their children.</p>
<p>The shame of being on welfare runs deep, and, assuming Emma and Darren are Mail readers, no doubt fanned by the constant stories of welfare scroungers and the &#8216;feckless&#8217;.  They quite rightly want to instil an ethic of hard work into their children, but do not feel able to claim benefits, which they will have contributed to through tax and national insurance throughout their previous working lives, in order to help as they bring up those same children now.</p>
<p>Interestingly, they are happy to accept child benefit (and I assume child tax credit, although not explicitly mentioned), and when the children are of school age will not send them to a fee-paying school, but happy to send them to a state school, effectively an educational &#8216;benefit&#8217; of around £16,000 a year, let alone insist on paying for hospital and doctors fees for delivery of the twins and subsequent medical care.</p>
<p>The difference is that these benefits, allowances, and services are universal, and so seen as &#8216;rights&#8217; as a taxpayer, even if, as in the case of this family, you are a net beneficiary.</p>
<p>This very much strengthens the case for maintaining child benefit as a non-means tested benefit.  In general, many benefits are not claimed, whether through pride, principles or ignorance.  The one exception is child benefit, which is both universally accepted and well targeted<sup><a href="#footnote-8-837" id="footnote-link-8-837" title="See the footnote.">8</a></sup>.</p>
<p>Maybe if appraised of the full facts each of the people interviewed by the Mail might still feel the same, particularly Emma and Darren.  Maybe too Mail readers would feel the same if presented with the truth.  But clearly the Mail does not trust its readers to make up their own minds if given the full facts, and sadly Lord Carey has leant his weight behind this deliberate disinformation; unintentionally, but very persuasively helping to mislead the public.</p>
<br /><ol class="footnotes"><li id="footnote-1-837">&#8220;The hard workers who are proud not to claim&#8221;, Daily Mail, Wednesday, January 25, 2012, p. 7.  [<a href="#footnote-link-1-837">back</a>]</li><li id="footnote-2-837">Whether they should be in the second house in the first place is another issue!  [<a href="#footnote-link-2-837">back</a>]</li><li id="footnote-3-837">I used the Tonbridge &amp; Malling Bourough Council&#8217;s web site as this has an <a href="http://www.tmbc.gov.uk/assets/finance/webbencalc2011/wbc-xpSp11.htm" target="_blank">online housing benefit calculator</a>.  While currently housing benefit is similar across the country, this may change in the future with government plans for &#8216;<a href="http://www.parliament.uk/briefing-papers/SN06101" target="_blank" title="Localising support for Council Tax - Commons Library Standard Note">localising support</a>&#8216;, the potential impact of which has been under-reported.  [<a href="#footnote-link-3-837">back</a>]</li><li id="footnote-4-837">For Rachel on a one bedroom flat I estimated a council tax bill of £1000.  [<a href="#footnote-link-4-837">back</a>]</li><li id="footnote-5-837">This figure is particularly low as  they live with parents.  While the government makes strong statements about family values, there are equally strong disincentives to support close family.  If Lauren and David were out of work, but with friends rather than parents, they would be able to pay rent to contribute to household costs, which they could then claim against housing benefit.  Furthermore, if a grown-up child receives cash support from parents, it is regarded as income for the calculation of benefits.  [<a href="#footnote-link-5-837">back</a>]</li><li id="footnote-6-837">For Emma and Darren I estimated an annual council tax bill of £1500.  [<a href="#footnote-link-6-837">back</a>]</li><li id="footnote-7-837">Housing benefit is perhaps the greatest cause of anomalies in the systems.  Even Boris Johnson was against a cap in housing benefit, as the proposed, albeit apparently high, limit would still make large areas of London (not just the fancy bits!) no go areas for anyone on an average wage including nurses, transport workers, etc..  The situation gets even more complicated with those with a mortgage, as mortgage interest is deemed a cost for benefits calculation when you are out of work, but not when you have a job.  [<a href="#footnote-link-7-837">back</a>]</li><li id="footnote-8-837">More broadly there is a minority suggestion (I believe only the Green Party in the UK support this) to replace all tax allowances and basic benefits, with a universal wage or &#8216;<a href="http://www.basicincome.org/bien/aboutbasicincome.html" target="_blank" title="About Basic Income">basic income</a>&#8216;, effectively an amount for every adult and child, deemed high enough for basic survival (probably close to current basic benefit levels).  Indeed the amount you gain through the personal tax allowance, the amount you can earn without paying tax, is very close to a single person&#8217;s job seekers allowance, so this is very nearly a &#8216;zero sum&#8217; for tax payers without children.  [<a href="#footnote-link-8-837">back</a>]</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.alandix.com/blog/2012/01/29/lies-vs-facts-the-26k-benefits-ceiling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If Kodak had been more like Apple</title>
		<link>http://www.alandix.com/blog/2012/01/22/if-kodak-had-been-more-like-apple/</link>
		<comments>http://www.alandix.com/blog/2012/01/22/if-kodak-had-been-more-like-apple/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 08:53:10 +0000</pubDate>
		<dc:creator>alan</dc:creator>
				<category><![CDATA[academic]]></category>
		<category><![CDATA[HCI and usability]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[digital culture]]></category>
		<category><![CDATA[Kodak]]></category>
		<category><![CDATA[physicality]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.alandix.com/blog/?p=831</guid>
		<description><![CDATA[Finally Kodak has crumbled; technology and the market changed, but Kodak could not keep up. Lots of memories of those bright yellow and black film spools, and memories in photographs piled in boxes beneath the bed. But just imagine if Kodak had been more like Apple. I&#8217;m wondering about the fallout from the Kodak collapse. [...]]]></description>
			<content:encoded><![CDATA[<p>Finally Kodak has crumbled; technology and the market changed, but Kodak could not keep up.  Lots of memories of those bright yellow and black film spools, and memories in photographs piled in boxes beneath the bed.</p>
<p>But just imagine if Kodak had been more like Apple.</p>
<blockquote><p>I&#8217;m wondering about the fallout from the Kodak collapse.  I&#8217;m not an investor, nor an employee, or even a supplier, but I have used Kodak products since childhood and I do have 40 years of memories in Kodak&#8217;s digital photo cloud.  There are talks of Fuji buying up the remains of the photo cloud service, so it maybe that they will re-emerge, but for the time being I can no longer stream my photos to friend&#8217;s kTV enabled TV sets when I visit, nor view them online.</p>
<p>Happily, my Kodak kReader has a cache of most of my photos.  But, how many I&#8217;m not sure, when did I last look at the photos of those childhood holidays or my wedding, will they be in my reader, I&#8217;ll check my kPhone as well.  I&#8217;d hate to think I&#8217;d lost the snaps of the seaside holiday when my hat blew into the water; I only half remember it, but every time I look at it I remember being told and re-told the story by my dad.</p>
<p>The kReader is only a few months old. I usually try to put off getting a new one as they are so expensive, but even after a couple of years the software updates put a strain on the old machines.  I had to give up when my three year old model seemed to take about a minute to show each photo.  It was annoying as this wasn&#8217;t just the new photos, but ones I recall viewing instantly on my first photo-reader more than 30 years ago (I can still remember the excitement as I unwrapped it one Christmas, I was 14 at the time, but now children seem to get their first readers when they are 4).  The last straw was when the software updates would no longer work on the old processor and all my newer photos were appearing in strange colours.</p>
<p>Some years ago, I&#8217;d tried using a Fuji-viewer, which was much cheaper than the Kodak one.  In principle you could download your photo cloud collection in an industry standard format and then import them into the Fuji cloud.  However, this lost all the notes and dates on the photos and kept timing out unless I downloaded them in small batches, then I lost track of where I was. Even my brother-in-law, who is usually good at this sort of thing, couldn&#8217;t help.</p>
<p>But now I&#8217;m glad I&#8217;ve got the newest model of kReader as it had 8 times the memory of the old one, so hopefully all of my old photos in its cache.  But oh no, just thought, has it only cached the things I&#8217;ve looked at since I&#8217;ve got it?  If so I&#8217;ll have hardly anything. Please, please let the kReader have downloaded all it could.</p>
<p>Suddenly, I remember the days when I laughed a little when my mum was still using her reels of old Apple film and the glossy prints that would need scanning to share on the net (not that she did use the net, she&#8217;d pop them in the post!).  &#8220;I know it is the future&#8221;, she used to say, &#8220;but I never really trust things I can&#8217;t hold&#8221;.  Now I just wish I&#8217;d listened to her.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.alandix.com/blog/2012/01/22/if-kodak-had-been-more-like-apple/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

