<?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>Andrew Ferrier &#187; design&amp;usability</title>
	<atom:link href="http://www.andrewferrier.com/blog/tag/design-and-usability/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andrewferrier.com/blog</link>
	<description>Economics; Travel; Film; and Technology.</description>
	<lastBuildDate>Tue, 06 Sep 2011 09:40:25 +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>LaTeX Tips</title>
		<link>http://www.andrewferrier.com/blog/2008/03/24/latex-tips/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=latex-tips</link>
		<comments>http://www.andrewferrier.com/blog/2008/03/24/latex-tips/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 09:50:09 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/2008/03/24/latex-tips/</guid>
		<description><![CDATA[A general grab-bag of tips for using LaTeX, from the days when I still used it a lot: To add nice headers and footers to each page use the fancyhdr package. Use glosstex for most acronym and glossary needs. Use the hyphenat package if you need monospace text (such as that set by the \texttt [...]]]></description>
			<content:encoded><![CDATA[<p>A general grab-bag of tips for using <a href="http://www.latex-project.org/">LaTeX</a>, from the days when I still used it a lot:</p>
<ul>
<li> To add nice headers and footers to each page use the <tt>fancyhdr</tt> package.</li>
<li> Use <a href="http://www.ctan.org/tex-archive/help/Catalogue/entries/glosstex.html" class="ext">glosstex</a><span class="exttail"></span> for most acronym and glossary needs.</li>
<li> Use the <a href="http://www.ctan.org/tex-archive/help/Catalogue/entries/hyphenat.html" class="ext">hyphenat</a><span class="exttail"></span> package if you need monospace text (such as that set by the <tt>\texttt</tt> command) to wrap correctly, with hyphenation marks.</li>
<li> The <a href="http://www.ctan.org/tex-archive/help/Catalogue/entries/varioref.html" class="ext">varioref</a><span class="exttail"></span> package provides easy-to-use cross referencing with automatic phrases such as &#8216;on the following page&#8230;&#8217; etc.</li>
<li> To include EPS easily in both latex and pdflatex documents, use the following magic incantation in the document preamble:</li>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #800000; font-weight: normal;">\newif</span><span style="color: #800000; font-weight: normal;">\ifpdf</span>
<span style="color: #E02020; ">\</span><span style="color: #800000;">ifx</span><span style="color: #800000; font-weight: normal;">\pdfoutput</span><span style="color: #800000; font-weight: normal;">\undefined</span>
    <span style="color: #800000; font-weight: normal;">\pdffalse</span>
<span style="color: #E02020; ">\</span><span style="color: #800000;">else</span>
    <span style="color: #800000; font-weight: normal;">\pdfoutput</span>=1
    <span style="color: #800000; font-weight: normal;">\pdftrue</span>
<span style="color: #E02020; ">\</span><span style="color: #800000;">fi</span>
&nbsp;
<span style="color: #800000; font-weight: normal;">\ifpdf</span>
   <span style="color: #E02020; ">\</span><span style="color: #800000;">usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">hyperref</span><span style="color: #E02020; ">}</span>
   <span style="color: #E02020; ">\</span><span style="color: #800000;">usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">pdftex</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">graphicx</span><span style="color: #E02020; ">}</span>
   <span style="color: #800000; font-weight: normal;">\DeclareGraphicsExtensions</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">.pdf,.png,.jpg</span><span style="color: #E02020; ">}</span>
<span style="color: #E02020; ">\</span><span style="color: #800000;">else</span>
   <span style="color: #E02020; ">\</span><span style="color: #800000;">usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">graphicx</span><span style="color: #E02020; ">}</span>
   <span style="color: #800000; font-weight: normal;">\DeclareGraphicsExtensions</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">.eps</span><span style="color: #E02020; ">}</span>
<span style="color: #E02020; ">\</span><span style="color: #800000;">fi</span></pre></div></div>

</ul>
<p>Then refer to graphics files, when including them, without an extension. Use <tt>epstopdf</tt> to convert all EPS files to PDF for inclusion in the pdflatex version of the document.</p>
<ul>
<li> Use the <tt>custom-bib</tt> package to easily create custom BiBTeX style files.</li>
<li> The following command produces a new environment which gives a nice way of having an introductory paragraph for each new chapter:</li>

<div class="wp_syntax"><div class="code"><pre class="latex" style="font-family:monospace;"><span style="color: #E02020; ">\</span><span style="color: #800000;">newenvironment</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">intro</span><span style="color: #E02020; ">}{</span><span style="color: #2020C0; font-weight: normal;">\<span style="color: #800000;">sffamily</span></span><span style="color: #E02020; ">}</span>
<span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">\<span style="color: #800000;">vspace</span>*{2ex minus 1.5ex</span><span style="color: #E02020; ">}}</span></pre></div></div>

</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/03/24/latex-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Dopplr and Tripit to Play Together</title>
		<link>http://www.andrewferrier.com/blog/2008/02/27/getting-dopplr-and-tripit-to-play-together/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=getting-dopplr-and-tripit-to-play-together</link>
		<comments>http://www.andrewferrier.com/blog/2008/02/27/getting-dopplr-and-tripit-to-play-together/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 23:28:44 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/2008/02/27/getting-dopplr-and-tripit-to-play-together/</guid>
		<description><![CDATA[As I mentioned recently, I&#8217;ve been using Dopplr and TripIt a lot recently as I&#8217;ve been travelling more. Although TripIt is far more featureful, I know more people on Dopplr and so keeping it up-to-date is useful as it increases the chance of serendipitous coincidences. They are competitors, but I like them both. So far [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andrewferrier.com/blog/2008/02/20/excellent-service-from-tripit/">As I mentioned recently</a>, I&#8217;ve been using <a href="http://www.dopplr.com/">Dopplr</a> and <a href="http://www.tripit.com/">TripIt</a> a lot recently as I&#8217;ve been travelling more. Although TripIt is far more featureful, I know more people on Dopplr and so keeping it up-to-date is useful as it increases the chance of serendipitous coincidences. They are competitors, but I like them both.</p>
<p>So far it&#8217;s been a pain to enter information into Dopplr manually, but <a href="http://blog.dopplr.com/index.php/2008/02/27/new-feature-dopplr-subscribes-to-your-personal-calendar/">they announced today</a> that it can now watch iCal calendars and create trips accordingly. I&#8217;ve added my iCal feed from TripIt and it seems to work well so far. They are minor niggles. For example, it gets confused if you have multiple destinations in your trip as TripIt doesn&#8217;t really allow for this concept. Also, not all trips involve advance booking, so I don&#8217;t bother adding them to TripIt &#8211; they&#8217;ll need to be entered into Dopplr manually. Nevertheless, it should cut down on the amount of data entry.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/02/27/getting-dopplr-and-tripit-to-play-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excellent Service from TripIt</title>
		<link>http://www.andrewferrier.com/blog/2008/02/20/excellent-service-from-tripit/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=excellent-service-from-tripit</link>
		<comments>http://www.andrewferrier.com/blog/2008/02/20/excellent-service-from-tripit/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 21:01:21 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[customerservice]]></category>
		<category><![CDATA[design&usability]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/2008/02/20/excellent-service-from-tripit/</guid>
		<description><![CDATA[As I&#8217;ve starting travelling a lot recently, I&#8217;ve been making reasonably heavy use of both Dopplr and the less well-known TripIt. The idea behind Dopplr is simple: tell it which cities you&#8217;re travelling to and it will share that information with your other Dopplr contacts, notifying you when you&#8217;re in the same place. You can [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve starting travelling a lot recently, I&#8217;ve been making reasonably heavy use of both <a href="http://www.dopplr.com/">Dopplr</a> and the less well-known <a href="http://www.tripit.com/">TripIt</a>. The idea behind Dopplr is simple: tell it which cities you&#8217;re travelling to and it will share that information with your other Dopplr contacts, notifying you when you&#8217;re in the same place. You can also syndicate your travel plans &#8211; I have mine published on <a href="http://www.facebook.com/">Facebook</a> and available as a feed via <a href="http://www.google.com/calendar/render">Google Calendar</a>.</p>
<p>TripIt, although it has similar facilities for maintaining a list of travelling contacts, originates from a slightly different and more ambitious idea. Essentially, you email TripIt confirmation emails for hotels, airlines, car rental, etc. &#8211; and it parses them and automatically organises them into trips with information-rich itineraries, including weather, maps, city guides, etc. You can print those out, but (more usefully) you can again syndicate them into tools such as Google Calendar via <a href="http://en.wikipedia.org/wiki/ICalendar">iCal</a>. This way, I end up with details about all my flights, hotels, and so on in my calendar automatically.</p>
<p>TripIt&#8217;s not perfect &#8211; I&#8217;ve found a few bugs &#8211; and TripIt doesn&#8217;t support every single travel agent (for example, it doesn&#8217;t support the one we use within IBM &#8211; at least not directly). But the TripIt team are very responsive to feedback &#8211; I notified them about a Hertz reservation email this afternoon that wasn&#8217;t recognised. They&#8217;ve already fixed the bug and the information has appeared in my TripIt account. I&#8217;m not sure how they plan to monetise their service (although that&#8217;s still not clear with Dopplr either), but I am likely to stay a regular user for the foreseeable future.</p>
<p>(Honourable mention for another useful travel website goes to <a href="http://www.kayak.co.uk/">Kayak</a>, which has the most flexible and useful flight search interface I&#8217;ve found).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2008/02/20/excellent-service-from-tripit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Open Mapping Becomes Viable?</title>
		<link>http://www.andrewferrier.com/blog/2007/01/15/open-mapping-becomes-viable/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=open-mapping-becomes-viable</link>
		<comments>http://www.andrewferrier.com/blog/2007/01/15/open-mapping-becomes-viable/#comments</comments>
		<pubDate>Mon, 15 Jan 2007 20:49:35 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[ideasandinnovation]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.andrewferrier.com/blog/2007/01/15/open-mapping-becomes-viable/</guid>
		<description><![CDATA[A long discussion with plv the other day about open source and what it really meant got me thinking about that model when applied to other domains, such as mapping. Google have clearly made a success of Google Maps (I&#8217;ve discussed Google Maps before as compared to Multimap &#8211; not entirely favourably &#8211; but whatever [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://plv.livejournal.com/110345.html">A long discussion with plv the other day about open source</a> and what it really meant got me thinking about that model when applied to other domains, such as mapping.</p>
<p><a href="http://www.google.com/">Google</a> have clearly made a success of <a href="http://maps.google.com/">Google Maps</a> (I&#8217;ve discussed Google Maps before <a href="http://www.andrewferrier.com/blog/2006/12/04/map-fight/">as compared to</a> Multimap &#8211; not entirely favourably &#8211; but whatever I think, the market loves the former). Plenty of competitors have also sprung up, notably <a href="http://maps.live.com/">from Microsoft</a>. Incidentally, <a href="http://www.flashearth.com/">Flash Earth</a> brings together all of these services into one ultra-slick interface; although I&#8217;d still love to see them available on <a href="http://www.ted.com/tedtalks/tedtalksplayer.cfm?key=j_han">Jeff Han&#8217;s touch screen</a> (<a href="http://www.apple.com/iphone/">iPhone</a>, eat your heart out &#8211; your interface is nothing on this).</p>
<p>However, one thing all these services have in common is that the mapping data is (as far as I can tell) commercially licensed, ultimately from a governmental institution. In the UK, we have the <a href="http://www.ordnancesurvey.co.uk/">Ordnance Survey</a> (who actually produce excellent paper maps, even if their customer-facing technology is a little backward). The Ordnance Survey <a href="http://www.ordnancesurvey.co.uk/oswebsite/media/features/tradingfund.html">gets its revenue</a> from licensing data, selling maps, and so on, rather than from general taxation (which is something that as a libertarian I can almost approve of; although it does raise the question of why the government needs to be involved at all, since there&#8217;s therefore clearly a market for the data). The closest equivalent in the <a href="http://en.wikipedia.org/wiki/United_States">US</a> appears to be <a href="http://en.wikipedia.org/wiki/United_States_Geological_Survey">the USGS</a> (which also has other functions).</p>
<p>It always used to be conventional economic wisdom that mapping (or, to be more precise, surveying) was a function that had to be performed by government, because it was so astronomically expensive &#8211; in other words, it cost more than the direct revenues one could possibly obtain (presumably the indirect benefit to society is supposedly significant, which is why we engaged in it). Whether you agree with the morality of this depends on your political views, but it is at least plausible. It&#8217;s interesting to see that the Ordnance Survey no longer seem to operate on this model, but clearly many folk still believe surveying should be done centrally.</p>
<p>Now technology might be able to change all of this. <a href="http://wiki.openstreetmap.org/">OpenStreetMap</a> is showing how it might be done &#8211; using cheap <a href="http://en.wikipedia.org/wiki/Global_Positioning_System">GPS</a> receivers, driving along streets, and plotting the resultant data (yes, I know the receivers rely on expensive satellites; but there are only a few of them; and they&#8217;d be there anyway). Obviously there&#8217;s a long way to go, as shown by the <a href="http://wiki.openstreetmap.org/index.php/Places">short list of places</a> that have been mapped. There are obviously also concerns over completeness, accuracy, and so on (although most of these have an analogy in <a href="http://www.wikipedia.org/">Wikipedia</a>, too). However, the potential for these maps is huge if the concept does take off &#8211; <a href="http://googlemapsmania.blogspot.com/">Google Maps mashups</a> would have nothing on the potential richness of data available. The real concern so far has to be over how many people are really interested in creating this data and keeping it up to date.</p>
<p>As with all <a href="http://en.wikipedia.org/wiki/Futurology">futurology</a> (aka: guesswork), time will tell.</p>
<p><strong>Update 2006-01-16</strong>: A recent edition of the BBC radio programme <a href="http://www.bbc.co.uk/radio4/news/inbusiness/inbusiness.shtml">In Business</a> (available as a podcast) took a rather quaint look at open-source. Worth a listen as a discussion of how hard open-source is to sell, although not as a rigorous discussion of the technological and legal issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2007/01/15/open-mapping-becomes-viable/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Does the Web Decrease Attention Span?</title>
		<link>http://www.andrewferrier.com/blog/2007/01/12/does-the-web-decrease-attention-span/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=does-the-web-decrease-attention-span</link>
		<comments>http://www.andrewferrier.com/blog/2007/01/12/does-the-web-decrease-attention-span/#comments</comments>
		<pubDate>Fri, 12 Jan 2007 16:03:53 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[humans]]></category>
		<category><![CDATA[ideasandinnovation]]></category>
		<category><![CDATA[society]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2007/01/12/does-the-web-decrease-attention-span/</guid>
		<description><![CDATA[I&#8217;ve recently taken to reading a lot more on-line &#8211; particularly as services such as del.icio.us have helped me to find high-quality content and more high-quality blogs come on the scene. This, of course, is the long tail of written content. One of the things I&#8217;ve noticed, though, is that as I read more and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently taken to reading a lot more on-line &#8211; particularly as services such as <a href="http://del.icio.us/">del.icio.us</a> have helped me to find high-quality content and more high-quality blogs come on the scene. This, of course, is the long tail of written content. One of the things I&#8217;ve noticed, though, is that as I read more and different things, I get more impatient with long articles. I hardly read non-fiction books any more, and fiction books almost never (preferring <a href="http://www.new-destiny.co.uk/andrew/blog/category/film-and-music/">film</a>).</p>
<p>I suspect I&#8217;m not the only one suffering from this decreased attention span, but the question is &#8211; is there anything we should do about it? Insofar as lots of shorter information diverts people from a few bits of longer information (reading 100/articles/week, say, rather than 2 books/week), it probably indicates that we simply don&#8217;t get as much value or entertainment from the longer stuff as we thought we did (or should). This is called <a href="http://en.wikipedia.org/wiki/Revealed_preference">revealed preference</a> &#8211; what you prefer is shown by your actions, not by your words. So I suspect the simple answer is no.</p>
<p><a href="http://www.sethgodin.com/sg/">Seth Godin</a> certainly seems to agree with part of this theory &#8211; he has a theory that books, in many cases, have now become a &#8216;takeaway&#8217; for shorter essays and other written pieces. I don&#8217;t think it&#8217;s fair to go as far as to say that they are simply fluff, but Seth nevertheless makes a good point &#8211; that many books simply expand on shorter ideas &#8211; and it is questionable, sometimes, what the marginal value of that is over consuming something completely different (everything you do has a time-driven <a href="http://en.wikipedia.org/wiki/Opportunity_cost">opportunity cost</a>).</p>
<p>The problem, of course, is that building up habits like this may make it harder to concentrate for sustained periods of time on reading/viewing/listening when that is necessary.</p>
<p>I&#8217;m interested in what your experiences are &#8211; do you suffer from decreased attention span? Is it a result of increased volumes of information, or do you think it&#8217;s something different?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2007/01/12/does-the-web-decrease-attention-span/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Map Fight!</title>
		<link>http://www.andrewferrier.com/blog/2006/12/04/map-fight/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=map-fight</link>
		<comments>http://www.andrewferrier.com/blog/2006/12/04/map-fight/#comments</comments>
		<pubDate>Mon, 04 Dec 2006 16:18:46 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[ideasandinnovation]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/12/04/map-fight/</guid>
		<description><![CDATA[I wrote recently about my indecision surrounding the domain of information design; should detail or simplicity win out? (as always, the answer is probably somewhere in the middle &#8211; but hey, that&#8217;s boring). Google Maps and Multimap provide an interesting example of what I&#8217;m talking about. Google&#8217;s maps are simple; straightforward; and link together yellow [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.new-destiny.co.uk/andrew/blog/2006/11/27/information-design/">I wrote recently</a> about my indecision surrounding the domain of information design; should detail or simplicity win out? (as always, the answer is probably somewhere in the middle &#8211; but hey, that&#8217;s boring). Google Maps and Multimap provide an interesting example of what I&#8217;m talking about.</p>
<p><a href="http://maps.google.co.uk/">Google&#8217;s maps</a> are simple; straightforward; and link together yellow pages data with mapping data &#8211; together with some <a href="http://www.google.com/apis/maps/">cool APIs</a> that enable <a href="http://googlemapsmania.blogspot.com/">rip-offs</a> (an ancient term for a <a href="http://en.wikipedia.org/wiki/Mashup_(web_application_hybrid)">mashup</a>). However, they also strip out contextual data that any professional navigator would consider important &#8211; landmarks, land type, buildings, etc. It seems apparent that Google are trying to hit a particular market &#8211; those who find conventional maps too confusing. And to be fair, they&#8217;re doing pretty well &#8211; empirical data suggests lots of folks use them. Their reasonably robust <a href="http://www.google.com/gmm/">mobile maps</a> are also quite handy.</p>
<p><a href="http://www.multimap.com/">Multimap</a>, on the other hand, looks backward by modern standards: a confusing array of mostly-irrelevant fluff crowds the page. They have one strong advantage, however &#8211; they provide contextual information, since they simply use <a href="http://www.ordnancesurvey.co.uk/">OS</a> maps (at least at medium zoom levels). OS maps are excellent for providing detailed navigation data, and Multimap seems to be the only free online provider of them.</p>
<p>I actually use both sites &#8211; Google when I&#8217;m searching for things (e.g. <a href="http://maps.google.co.uk/maps?f=q&#038;hl=en&#038;q=dry+cleaners+in+winchester&#038;ie=UTF8&#038;z=13&#038;om=1">dry cleaners in Winchester</a>, of which there turn out not to be many), and Multimap when I want a printable map to navigate to somewhere specific. I would hazard a guess that Google&#8217;s map interface was designed by someone who works in a city, as they are virtually useless outside one. Google should be able to make the additional mapping data optional as an overlay &#8211; after all, there is already a hybrid interface that mixes maps with satellite pictures. This would be a welcome improvement. Multimap should focus on cleaning up their interface if they don&#8217;t want to be run out of town.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/12/04/map-fight/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Information Design</title>
		<link>http://www.andrewferrier.com/blog/2006/11/27/information-design/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=information-design</link>
		<comments>http://www.andrewferrier.com/blog/2006/11/27/information-design/#comments</comments>
		<pubDate>Mon, 27 Nov 2006 17:10:48 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/11/27/information-design/</guid>
		<description><![CDATA[I&#8217;m undecided on information design. For a long time, I&#8217;ve been a big fan of Edward Tufte: his wordy-but-worthy book, The Visual Display of Quantitative Information, is a classic of non-fiction (&#8220;Best 100 books of the 20th century.&#8221; &#8211; Amazon), and is self-exemplifying to a fault: the typography is beautiful, the illustrations rich and detailed. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m undecided on information design. For a long time, I&#8217;ve been a big fan of <a href="http://www.edwardtufte.com/tufte/books_vdqi">Edward Tufte</a>: his wordy-but-worthy book, <a href="http://www.edwardtufte.com/tufte/books_vdqi">The Visual Display of Quantitative Information</a>, is a classic of non-fiction (&#8220;Best 100 books of the 20th century.&#8221; &#8211; <a href="http://www.amazon.com/">Amazon</a>), and is self-exemplifying to a fault: the typography is beautiful, the illustrations rich and detailed. It&#8217;s also a classic treatise on how to visually abuse statistics. His other publications, whilst they cover some of the same topics, aren&#8217;t quite so easy to follow, although the short essay <a href="http://www.edwardtufte.com/tufte/powerpoint">The Cognitive Style of Powerpoint</a> is worth a read if you&#8217;re a Powerpoint hater like me (also see <a href="http://norvig.com/">Peter Norvig</a>&#8216;s <a href="http://norvig.com/Gettysburg/">Gettysburg Address in Powerpoint</a>).</p>
<p>But Tufte seems only to be liked by elitists (a cynical and slightly cruel view of his work might say that it involves making graphics more complicated). Another hero of mine, <a href="http://sethgodin.typepad.com/">Seth Godin</a>, <a href="http://www.sociablemedia.com/articles_godin.htm">says</a>: <q>Edward and I disagree. He thinks people are a lot smarter than I do.</q> I suspect what Seth is alluding to is the density of data. Tufte loves data that&#8217;s dense and rich, and when I&#8217;m feeling intelligent, I do too (I love the <a href="http://www.a-zmaps.co.uk/asp/wallmap.asp">huge map of London on my wall</a>; I dislike <a href="http://www.tfl.gov.uk/tube/company/history/tube-map.asp">Harry Beck&#8217;s classic map of the London Underground</a> for the same reason: why move the stations around to fit a neat pattern? You just lose their position for no good reason: try <a href="http://commons.wikimedia.org/wiki/Image:London_Underground_full_map.png">something like this</a> instead). However, Seth&#8217;s approach does seem to be more realistic. Sometimes stuff just does need to be simple: you can&#8217;t always have a rich graph with 3 axes and 10,000 data points being a practical solution to a data illustration problem.</p>
<p>Most data presentation isn&#8217;t like either of these: it is just bad. Information design isn&#8217;t a field that many folks are aware of, but it is important (making <a href="http://armsandinfluence.typepad.com/armsandinfluence/2006/08/death_by_powerp.html">plans to invade Iraq by Powerpoint</a> is &#8230; well &#8230; just inappropriate. It&#8217;s hard to know what else to say). It&#8217;s particularly important as the world upgrades to Web 2.0, as a large part of the scope for improvement is in information design and presentation. It&#8217;s also simply pleasant to see data presented well. I just wish I could decide what the best approach is.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/11/27/information-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Two Google Ideas</title>
		<link>http://www.andrewferrier.com/blog/2006/11/04/two-google-ideas/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=two-google-ideas</link>
		<comments>http://www.andrewferrier.com/blog/2006/11/04/two-google-ideas/#comments</comments>
		<pubDate>Sat, 04 Nov 2006 13:07:30 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[design&usability]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[softwareengineering]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/11/04/two-google-ideas/</guid>
		<description><![CDATA[Google have created a powerful brand based on creating simplicity from complexity (what all good IT is about). Their tools aren&#8217;t perfect, but they&#8217;ve made life easier for billions, and so I think they still deserve some free feedback from time-to-time. So, a few thoughts: Mr. Google, please develop a podcast search engine. So much [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com/">Google</a> have created a powerful brand based on creating simplicity from complexity (what all good IT is about). Their tools aren&#8217;t perfect, but they&#8217;ve made life easier for billions, and so I think they still deserve some free feedback from time-to-time. So, a few thoughts:</p>
<ul>
<li>Mr. Google, please develop a podcast search engine. So much interesting content is now being released as podcasts (quick plug for my favourite: <a href="http://www.econtalk.org/">EconTalk</a>), that it would be useful to be able to search them. All you have to do is invent a speech-to-text interpreter that actually works reliably. Simple. [<strong>Note</strong>: as I sometimes do, I wrote this post in advance of it being published. I've since discovered that such a tool <a href="http://www.podzinger.com/">already exists</a>. However, I thought I'd leave the original prose here: Google, if you get one out soon, you could still corner the market]</li>
<li>Mr. Google, please stop developing so many interfaces &#8211; and plug them all together. If I want to do an exhaustive search for something, I now have to search <a href="http://www.google.co.uk/">Google Web</a>, <a href="http://images.google.co.uk/imghp?ie=UTF-8&#038;oe=UTF-8&#038;hl=en&#038;tab=wi">Google Images</a>, <a href="http://groups.google.co.uk/grphp?ie=UTF-8&#038;oe=UTF-8&#038;hl=en&#038;tab=wg">Google Groups</a>, <a href="http://news.google.co.uk/nwshp?ie=UTF-8&#038;oe=UTF-8&#038;hl=en&#038;tab=wn">Google News</a>, <a href="http://video.google.co.uk/">Google Video</a>, <a href="http://www.google.co.uk/blogsearch?hl=en">Google Blog Search</a>, <a href="http://www.google.co.uk/books?hl=en">Google Book Search</a>, <a href="http://scholar.google.com/">Google Scholar</a>, and possibly others. This is not a good thing &#8211; you&#8217;re straying from the simple search you started with. Some of those searches do show up in the main search results, but you could do a better job of tying them together to show what I&#8217;m actually looking for. This could be a real competitive edge, especially since the basic searches that <a href="http://www.msn.com/">MSN</a> and others provide are now actually quite reasonable.</li>
</ul>
<p>Google still have an edge in providing what people want &#8211; for a company so technically-focused, they either have talented marketers or are just <a href="http://www.google.com/help/features.html#lucky">lucky</a>. Please, Google, keep it up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/11/04/two-google-ideas/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>It&#8217;s a Web 2.0 Jungle Out There</title>
		<link>http://www.andrewferrier.com/blog/2006/11/03/its-a-web-20-jungle-out-there/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=its-a-web-20-jungle-out-there</link>
		<comments>http://www.andrewferrier.com/blog/2006/11/03/its-a-web-20-jungle-out-there/#comments</comments>
		<pubDate>Fri, 03 Nov 2006 11:02:53 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/11/03/its-a-web-20-jungle-out-there/</guid>
		<description><![CDATA[I&#8217;ve upgraded my interweb connection to Web 2.0 in the last few months. Although no-one can really point to what Web 2.0 is (even though there&#8217;s a validator for it), many people feel that they know it when they see it. I now defend the term against cynics because I think it&#8217;s genuinely useful. To [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve upgraded my interweb connection to <a href="http://en.wikipedia.org/wiki/Web_2">Web 2.0</a> in the last few months. Although no-one can really point to what Web 2.0 is (even though there&#8217;s a <a href="http://web2.0validator.com/">validator</a> for it), many people feel that they know it when they see it. I now defend the term against <a href="http://en.wikipedia.org/wiki/Web_2#Criticism">cynics</a> because I think it&#8217;s genuinely useful. To me, it&#8217;s a combination of little things: blogging and feedreading, a good quality web browser, in-place dynamic web sites (mostly driven by <a href="http://en.wikipedia.org/wiki/Ajax_%28programming%29">AJAX</a>), to name but a few. For a technically minded person, I&#8217;m atypically late adopting, and so I&#8217;ve only recently happened on two powerful aspects of Web 2.0:</p>
<ul>
<li><strong>Social bookmarking</strong>. <a href="http://del.icio.us/andrewferrier">I now use delicious</a>, so I can manage my bookmarks properly across the many computers I regularly use, as well as discover high-quality sites other people have stumbled upon.</li>
<li><strong>In-browser <a href="http://en.wikipedia.org/wiki/Macromedia_Flash">Flash</a>-based video</strong>. You can argue until the cows come home about the technical superiority of this method, but the success of     <a href="http://www.youtube.com/">YouTube</a> shows that it&#8217;s the way forward. I use to shy away from web-based video because of the hassles involved: Download or stream? Do I have the right codec? Which media player to use? Flash-based video solves this problem.</li>
</ul>
<p>However, the Flash-based video technique does highlight a problem that users of Web 2.0 sites are likely to encounter for a few years as they become more prevalent: interface inconsistency. It&#8217;s been long recognised that <a href="http://www.useit.com/jakob/constbook.html">consistent user interfaces are a good thing</a>, but everyone thinks that they can make a <a href="http://www.useit.com/alertbox/20050711.html">better scroll bar</a>, and although Flash has been around for some time, it&#8217;s <a href="http://www.useit.com/alertbox/20001029.html">so far</a> mostly been relegated to those websites created by designers who value form over function.</p>
<p>Now that there&#8217;s a great use for Flash (no, hang on, really great), and AJAX is becoming more widespread, we will go through some years of pain before the UI conventions are worked out and those who stray are vilified, rather than held up as paragons of originality &#8211; it seems to have already started with <a href="http://www.napyfab.com/ajax-indicators/">the hourglass</a>, as well as on some of the cruddier YouTube-imitating sites (several of which don&#8217;t let you skip forward in videos). This phase of inconsistency has happened plenty of times before in UI history, although never in an uglier way than some of the <a href="http://www.webpagesthatsuck.com/begin.htm">first web sites</a>. Brace yourself, it&#8217;s coming again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/11/03/its-a-web-20-jungle-out-there/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>euroGel 2007 Discount</title>
		<link>http://www.andrewferrier.com/blog/2006/09/19/booked-eurogel-2007/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=booked-eurogel-2007</link>
		<comments>http://www.andrewferrier.com/blog/2006/09/19/booked-eurogel-2007/#comments</comments>
		<pubDate>Tue, 19 Sep 2006 08:30:21 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[humans]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/09/19/booked-eurogel-2007/</guid>
		<description><![CDATA[After euroGel 2006, which was truly a &#8216;good&#8217; experience for me, Mark Hurst has announced that euroGel is coming back to Copenhagen in 2007. I&#8217;ve just booked my ticket, and as a previous attendee, I&#8217;ve got a 20% discount, so the price was only USD $480. I&#8217;m allowed to share this discount (which is only [...]]]></description>
			<content:encoded><![CDATA[<p>After <a href="http://www.gelconference.com/c/eurogel06.php">euroGel 2006</a>, which was truly <a href="http://www.new-destiny.co.uk/andrew/blog/2006/09/02/eurogel-2006-conference/">a &#8216;good&#8217; experience for me</a>, <a href="http://www.goodexperience.com/about/mark.php">Mark Hurst</a> has announced that euroGel is coming back to <a href="http://www.new-destiny.co.uk/andrew/blog/2006/09/06/copenhagen-vs-london/">Copenhagen</a> in 2007. I&#8217;ve just booked my ticket, and as a previous attendee, I&#8217;ve got a 20% discount, so the price was only USD $480. I&#8217;m allowed to share this discount (which is only valid until this Friday, 22nd September) with friends and colleagues, so if you&#8217;re interested, let me know and I&#8217;ll send you the link. You can sign up at the regular price <a href="https://www.goodexperience.com/gel/db/register.php?id=10">here</a>.</p>
<p>I&#8217;m already looking forward to this conference, and it&#8217;s almost a year away.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/09/19/booked-eurogel-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>euroGel 2006 Conference</title>
		<link>http://www.andrewferrier.com/blog/2006/09/02/eurogel-2006-conference/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eurogel-2006-conference</link>
		<comments>http://www.andrewferrier.com/blog/2006/09/02/eurogel-2006-conference/#comments</comments>
		<pubDate>Sat, 02 Sep 2006 14:08:48 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[humans]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/09/02/eurogel-2006-conference/</guid>
		<description><![CDATA[I&#8217;ve just come back from the Good Experience Live (euroGel) conference in Copenhagen (more on the city and Denmark in a later post). It was a superb and surprisingly moving experience, and as a conference that I paid for myself, I would say it was worth every penny for personal development reasons alone. I would [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just come back from the Good Experience Live (<a href="http://www.gelconference.com/c/eurogel06.php">euroGel</a>) conference in <a href="http://en.wikipedia.org/wiki/Copenhagen">Copenhagen</a> (more on the city and Denmark in a later post). It was a superb and surprisingly moving experience, and as a conference that I paid for myself, I would say it was worth every penny for personal development reasons alone. I would recommend it to anyone with a wide range of interests.</p>
<p>The theme of the conference is hard to pin down; it is defined as &#8216;good experience in all its forms&#8217;. I&#8217;m still struggling to &#8216;get it&#8217;, but it didn&#8217;t seem to matter that I didn&#8217;t. In practice, this seems to mean a variety of speakers from across the arts and technology, some of them specialising in user experience or customer experience, coming together to share their stories.</p>
<p>This is the first time the conference has been run in Europe (it has been run in <a href="http://en.wikipedia.org/wiki/New_York_City">New York City</a> since 2003), and current indications are that it will return to both places. The creator of the conference is Mark Hurst, who also leads the sessions at the conference, and who I unfortunately didn&#8217;t get to meet. A large number of the speakers are obviously personal friends of his and there is accordingly a sense of community, which is also explored online (see the <a href="http://www.goodexperience.com/blog/archives/cat_gel.php">Gel blog category</a> on <a href="http://www.goodexperience.com/">goodexperience.com</a>)</p>
<p>The presentations were almost all entertaining, and most informative and passionate. Some of the highlights were:</p>
<ul>
<li><strong><a href="http://www.hanbennink.com/">Han Bennink</a></strong> &#8211; I&#8217;m ashamed to admit I&#8217;d never heard of Han before. It turns out that he is one of the top Jazz drummers in the world, and his natural exuberance for his work was obvious for all to see &#8211; a man who managed to enter the stage, drop a bunch of metal pipes haphazardly on the stage, and make it part of his performance, he obviously has more talent than just a natural sense of rhythm.</li>
<li><strong><a href="http://www.stephenbauman.org/index.html">Stephen Bauman</a></strong> &#8211; Stephen is a <a href="http://en.wikipedia.org/wiki/Methodist">Methodist</a> minister in New York, and in true ministerly style, he told stories. These helped to illustrate what he called &#8216;Basic Truths&#8217; (on which he has also written a book). I was lucky enough to discuss these and others things with him later on, and he struck me as an extremely perceptive and open-minded religious man: an inspirational American preacher who didn&#8217;t hector about Jesus.</li>
<li><strong>Alison Young</strong> &#8211; Possessed of a beautiful voice, Alison Young is a supremely talented singer with Southern influences. Why she isn&#8217;t more famous is a mystery to me.</li>
</ul>
<p>I also met some interesting folks:</p>
<ul>
<li><strong>Kareem Mayan</strong> &#8211; Kareem is a returning Gel participant (and volunteer), and obviously enjoys it greatly. <a href="http://www.reemer.com/">His blog</a> has some interesting discussions about emerging technology, including plenty of media and YouTube links (including this <a href="http://www.reemer.com/archives/2006/07/28/im_giving_away_1000_on_september_15/">&#8216;How to drive a stick shift&#8217;</a> video &#8211; sadly, this doesn&#8217;t impress chicks here in the UK, where manual cars are the norm).</li>
<li><strong>Alexander Kjerulf </strong>- Alexander is an irrepressibly bubbly fellow, and describes himself as &#8216;The Chief Happiness Officer&#8217;. He writes and consults on happiness in the workplace, and his passion for his work is obvious. What he says is not rocket science, but it bears repeating. <a href="http://positivesharing.com/">His blog</a> is well worth a read.</li>
</ul>
<p>I was also lucky enough to win one of the prize draws &#8211; for a set of books written by some current and previous Gel speakers, so I now have the following to work my way through:</p>
<ul>
<li><a href="http://www.amazon.co.uk/Bing-Get-Dressed-Ted-Dewan/dp/0385604505/ref=sr_11_1/026-5556644-1463644?ie=UTF8">Bing Get Dressed</a> by Ted Dewan</li>
<li><a href="http://www.amazon.co.uk/Desert-Back-Dramatic-Business-Transformations/dp/0787966770/ref=sr_11_1/026-5556644-1463644?ie=UTF8">To the Desert and Back</a> by Phil Mirvis and others</li>
<li>Net.art Per Me by <a href="http://www.ljudmila.org/~vuk/">Vuk Cosic</a></li>
<li>Bosch &#038; Fjord by <a href="http://www.bosch-fjord.com/">Bosch &#038; Fjord</a></li>
<li>Simple Truths by <a href="http://www.stephenbauman.org/index.html">Stephen Bauman</a></li>
<li><a href="http://www.amazon.co.uk/All-Marketers-Are-Liars-Power-Telling-Authentic-Stories-in-a-Low-Trust-World/dp/0718148657/sr=1-1/qid=1157204748/ref=pd_bowtega_1/026-5556644-1463644?ie=UTF8&#038;s=books">All Marketers are Liars</a> by Seth Godin</li>
<li><a href="http://www.amazon.co.uk/Life-Between-Buildings-J-Gehl/dp/0442230117/sr=1-3/qid=1157204812/ref=sr_1_3/026-5556644-1463644?ie=UTF8&#038;s=books">Life Between Buildings</a> by Jan Gehl</li>
<li><a href="http://www.amazon.co.uk/Power-Heal-Ancient-Arts-Modern-Medicine/dp/0136845495/ref=sr_11_1/026-5556644-1463644?ie=UTF8">The Power to Heal</a> by Rick Smolan</li>
<li><a href="http://www.amazon.co.uk/-Alice-Ocean-Alone-Across-Outback/dp/0201632160/sr=1-2/qid=1157204938/ref=sr_1_2/026-5556644-1463644?ie=UTF8&#038;s=books">From Alice to Outback</a> by Robyn Davidson</li>
</ul>
<p>Thanks to all the folks who donated books for this &#8211; and to Mark Hurst and his team for organising euroGel. I will go again.</p>
<p><strong>Update 2006-09-12</strong>: Alison Young&#8217;s website can be found <a href="http://www.alisonyoungsongs.com/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/09/02/eurogel-2006-conference/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Retro-Google</title>
		<link>http://www.andrewferrier.com/blog/2006/08/22/retro-google/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=retro-google</link>
		<comments>http://www.andrewferrier.com/blog/2006/08/22/retro-google/#comments</comments>
		<pubDate>Tue, 22 Aug 2006 07:17:48 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/08/22/retro-google/</guid>
		<description><![CDATA[Purely by accident, I discovered this little bug on Google: go to google.com/wibble (or any other invalid URL). The 404 page that appears has an ancient logo. Judging from Google&#8217;s logo history, it&#8217;s pre-1999. Is this really a mistake, or is it a feature? I can&#8217;t believe I&#8217;m the first to notice this. It&#8217;s cute, [...]]]></description>
			<content:encoded><![CDATA[<p>Purely by accident, I discovered this little bug on Google: go to <a href="http://www.google.com/wibble/">google.com/wibble</a> (or any other invalid URL). The <a href="http://en.wikipedia.org/wiki/404_error">404 page</a> that appears has an ancient logo. Judging from Google&#8217;s <a href="http://www.google.com/holidaylogos99.html">logo history</a>, it&#8217;s pre-1999.</p>
<p>Is this really a mistake, or is it a feature? I can&#8217;t believe I&#8217;m the first to notice this. It&#8217;s cute, anyway&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/08/22/retro-google/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Removing the Orange Homescreen on the Nokia 6630 and Others</title>
		<link>http://www.andrewferrier.com/blog/2006/07/29/removing-the-orange-homescreen-on-nokia-6630-and-others/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=removing-the-orange-homescreen-on-nokia-6630-and-others</link>
		<comments>http://www.andrewferrier.com/blog/2006/07/29/removing-the-orange-homescreen-on-nokia-6630-and-others/#comments</comments>
		<pubDate>Sat, 29 Jul 2006 08:09:45 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/07/29/removing-the-orange-homescreen-on-nokia-6630-and-others/</guid>
		<description><![CDATA[It appears that Orange, in their infinite wisdom, decided that they were better than Nokia at creating a usable phone, and are in the habit of replacing the standby (home) screen on their some of their smartphones with a custom Orange one. It&#8217;s actually pretty awful, as it&#8217;s unreadable, doesn&#8217;t always update correctly, and doesn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>It appears that Orange, in their infinite wisdom, decided that they were better than Nokia at creating a usable phone, and are in the habit of replacing the standby (home) screen on their some of their smartphones with a custom Orange one. It&#8217;s actually pretty awful, as it&#8217;s unreadable, doesn&#8217;t always update correctly, and doesn&#8217;t show some useful information such as the current profile. <a href="http://www.allaboutsymbian.com/forum/showthread.php?t=42568">Orange were too arrogant to admit this at first</a>, although in their defence it looks like there will be <a href="http://discussions.nokia.co.uk/discussions/board/message?board.id=smartphones&#038;message.id=1585">a way to disable it on future models</a>. I have a <a href="http://www.nokia.co.uk/nokia/0,,59880,00.html">Nokia 6630</a> and this has annoyed me for some time &#8211; I also have a suspicion it has contributed to many of the crashes I seem to encounter with the phone. Fortunately someone has written a small <a href="http://gegelambert.free.fr/">application called HSKiller</a> to kill this homescreen and bring back the default (the page is in French &#8211; the download link is right at the top). It has <a href="http://discussion.forum.nokia.com/forum/showpost.php?p=161860&#038;postcount=9">a few minor niggles</a>, but seems to be working relatively well so far for me.</p>
<p>Incidentally, <a href="http://koti.phnet.fi/jarilaak/software/jjlkeylock.html">JJLKeyLock</a> is also a pretty handy application for the 6630 and other <a href="http://www.s60.com/">Symbian S60</a>-based phones, as it provides a timeout-based keylock, as provided on some earlier Nokia phones, but not these.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/07/29/removing-the-orange-homescreen-on-nokia-6630-and-others/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Kingdom for a Wallet</title>
		<link>http://www.andrewferrier.com/blog/2006/07/28/my-kingdom-for-a-wallet/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-kingdom-for-a-wallet</link>
		<comments>http://www.andrewferrier.com/blog/2006/07/28/my-kingdom-for-a-wallet/#comments</comments>
		<pubDate>Fri, 28 Jul 2006 08:52:48 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[gettingthingsdone]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/07/28/my-kingdom-for-a-wallet/</guid>
		<description><![CDATA[Why oh why can&#8217;t someone make a wallet that: Can hold at least ten plastic cards, some cash, and some receipts so they are easily accessible? Isn&#8217;t so huge that it looks like I&#8217;m carrying a copy of War and Peace in my pocket? Looks fairly smart, preferably made from leather, but not like I [...]]]></description>
			<content:encoded><![CDATA[<p>Why oh why can&#8217;t someone make a <a href="http://en.wikipedia.org/wiki/Wallet">wallet</a> that:</p>
<ul>
<li>Can hold at least ten plastic cards, some cash, and some receipts so they are easily accessible?</li>
<li>Isn&#8217;t so huge that it looks like I&#8217;m carrying a copy of <a href="http://en.wikipedia.org/wiki/War_And_Peace">War and Peace</a> in my pocket?</li>
<li>Looks fairly smart, preferably made from leather, but not like I just bought it from <a href="http://en.wikipedia.org/wiki/Giorgio_Armani_S.p.A.">Armani</a> or some other o-so-faishonable label?</li>
<li>Lasts more than 2 weeks?</li>
<li>And most importantly, <u>has a <a href="http://en.wikipedia.org/wiki/Zipper">zip</a> <em>all the way round</em> so your stuff doesn&#8217;t fall out</u>?</li>
</ul>
<p>Is this so hard? (grumble, grumble).</p>
<p><strong>Wallet manufacturers</strong>: I will pay you £200 for a wallet that fulfills the above criteria. I realise this won&#8217;t cover your R&#038;D costs if it&#8217;s just for me, but I&#8217;m sure you could sell more of them. Please feel free to design the wallet before manufacturing it if that helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/07/28/my-kingdom-for-a-wallet/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Royal Mail Track &amp; Trace is Pointless</title>
		<link>http://www.andrewferrier.com/blog/2006/07/23/royal-mail-track-trace-is-pointless/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=royal-mail-track-trace-is-pointless</link>
		<comments>http://www.andrewferrier.com/blog/2006/07/23/royal-mail-track-trace-is-pointless/#comments</comments>
		<pubDate>Sun, 23 Jul 2006 18:34:21 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/07/23/royal-mail-track-trace-is-pointless/</guid>
		<description><![CDATA[I sent a parcel to Sweden on Friday &#8211; some binoculars I&#8217;d sold on Ebay. Because I sent them International Signed For, I got a tracking number to use on royalmail.com. Entering this number on Friday resulted in a message saying that the parcel hadn&#8217;t yet been entered into the system, and to wait to [...]]]></description>
			<content:encoded><![CDATA[<p>I sent a parcel to Sweden on Friday &#8211; some binoculars I&#8217;d sold on Ebay. Because I sent them <a href="http://www.royalmail.com/portal/rm/jump2?catId=400024&#038;mediaId=4800006">International Signed For</a>, I got a tracking number to use on <a href="http://www.royalmail.com/">royalmail.com</a>. Entering this number on Friday resulted in a message saying that the parcel hadn&#8217;t yet been entered into the system, and to wait to the next day. Fair enough &#8211; this isn&#8217;t exactly <a href="http://www.fedex.com/">Fedex</a> or <a href="http://www.ups.com/">UPS</a>, and I posted them at a rural post office in Hursley.</p>
<p>But after entering the number on Saturday, I got this message: <em>&#8216;We have received your item, posted on 21/07/06 and                it is being processed for delivery abroad.&#8217;</em> Well, duh.  This gives me no useful information.  I posted it to a foreign country, so what else would I be expecting? And I know when I posted it. How much longer is it going to take? Are there any delays at the moment? That&#8217;s what I want to know.</p>
<p>After entering the number on Sunday, I got: <em>&#8216;Your item, posted on 21/07/06 with reference xxx has been passed to the overseas                postal service for delivery in SWEDEN.&#8217;</em> In other words, Royal Mail have no link to a foreign tracking system, so can&#8217;t tell me anything more about it.</p>
<p>Is this really the best the Royal Mail can do? Some tracking systems actually provide some useful (or at least reassuring) information &#8211; a historical record of which depot a parcel went to, and when. I know this is a cheap-ish service (eight pounds for about 450 grams), and perhaps Royal Mail can&#8217;t stretch to that. But my conclusion is: if you actually want to track your parcel closely, don&#8217;t bother with the Royal Mail.</p>
<p>Roll on <a href="http://www.psc.gov.uk/competition.html">more competition in the UK postal service</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/07/23/royal-mail-track-trace-is-pointless/feed/</wfw:commentRss>
		<slash:comments>100</slash:comments>
		</item>
		<item>
		<title>Temporary Speed Limits &#8211; Why?</title>
		<link>http://www.andrewferrier.com/blog/2006/07/20/temporary-speed-limiter-signs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=temporary-speed-limiter-signs</link>
		<comments>http://www.andrewferrier.com/blog/2006/07/20/temporary-speed-limiter-signs/#comments</comments>
		<pubDate>Thu, 20 Jul 2006 16:23:18 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/07/20/temporary-speed-limiter-signs/</guid>
		<description><![CDATA[I don&#8217;t own a car, and so don&#8217;t drive often. This means I usually avoid the passionate debates about speed limits, speed cameras, etc. But I think I&#8217;ve come up with a speed limit question that&#8217;s less contentious (famous last words). I almost missed a plane the other day when the coach I was on [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t own a car, and so don&#8217;t drive often. This means I usually avoid the passionate debates about speed limits, speed cameras, etc. But I think I&#8217;ve come up with a speed limit question that&#8217;s less contentious (famous last words). I almost missed a plane the other day when the coach I was on to the airport was held up in a traffic jam on the <a href="http://en.wikipedia.org/wiki/M25_motorway">M25</a>. What made it more frustrating, though, was the temporary speed limit signs (the ones that light up with a speed above the motorway). Either:</p>
<ul>
<li>It&#8217;s impossible to go that fast anyway, which is the case 90% of the time, or:</li>
<li>The traffic jam is ending and everyone is so glad to be out of it they don&#8217;t honour the speed limit (and arguably the speed limit shouldn&#8217;t be there any more anyway).</li>
</ul>
<p>So what exactly is the intended point of these? To pack more traffic on the same amount of roadway? Possibly, but if it&#8217;s impossible to go that speed, what&#8217;s the point? Have I missed something obvious? Is there some subtlety of <a href="http://www.new-destiny.co.uk/andrew/past_work/queueing_theory/index.html">queueing theory</a> that explains this?</p>
<p>I assume these signs must be manually controlled &#8211; a person in a control room switches them on or off after observing the amount of traffic on a camera. Would they be more responsive if they were automatic?</p>
<p>Anyway, enough grumbling. I&#8217;d love to know how they are supposed to work though.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/07/20/temporary-speed-limiter-signs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Usability When You Least Expect It</title>
		<link>http://www.andrewferrier.com/blog/2006/07/18/usability-when-you-least-expect-it/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=usability-when-you-least-expect-it</link>
		<comments>http://www.andrewferrier.com/blog/2006/07/18/usability-when-you-least-expect-it/#comments</comments>
		<pubDate>Tue, 18 Jul 2006 08:55:20 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/07/18/usability-when-you-least-expect-it/</guid>
		<description><![CDATA[After getting to Barcelona airport yesterday, I looked in despair at the long lines for the Iberia economy check-in. I thought I&#8217;d give the quick check-in machines a go, but I wasn&#8217;t seriously expecting them to work. I&#8217;d booked both flights for my roundtrip between LHR and BCN with BA but the return hop was [...]]]></description>
			<content:encoded><![CDATA[<p>After getting to Barcelona airport yesterday, I looked in despair at the long lines for the Iberia economy check-in. I thought I&#8217;d give the quick check-in machines a go, but I wasn&#8217;t seriously expecting them to work. I&#8217;d booked both flights for my roundtrip between LHR and BCN with <a href="http://www.britishairways.com/">BA</a> but the return hop was operated by <a href="http://www.iberia.com/">Iberia</a>; the BA quick check-in at <a href="http://www.heathrowairport.com/">Heathrow</a> had worked, but hey, this is a different airline, right? They&#8217;re not going to have my credit card details or anything, are they? The machine, though, seemed to accept the record locator (booking reference) as an alternative. Maybe this was a faint hope &#8211; though I&#8217;d had experiences with the BA website being incapable of viewing my reservations with <a href="http://www.aa.com/">AA</a>, and vice-versa, so I wasn&#8217;t confident. But it all just worked &#8211; the boarding card was printed, and I was congratulating myself again for my foresight in only packing carry-on.</p>
<p>My worry was, though, that I was impressed by this. I shouldn&#8217;t be. This is honest-to-goodness systems integration. The volumes of data are not impressive. Even the transaction rates aren&#8217;t that impressive any more, to my understanding. And from an airline customer perspective, this stuff is rapidly becoming essential to stay competitive. Maybe some more regular travellers aren&#8217;t impressed: but I wonder how often things like this still don&#8217;t work? Are my expectations set too low?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/07/18/usability-when-you-least-expect-it/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Toilet Indicator Usability</title>
		<link>http://www.andrewferrier.com/blog/2006/07/03/toilet-indicator-light/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=toilet-indicator-light</link>
		<comments>http://www.andrewferrier.com/blog/2006/07/03/toilet-indicator-light/#comments</comments>
		<pubDate>Mon, 03 Jul 2006 22:13:39 +0000</pubDate>
		<dc:creator>andrewferrier</dc:creator>
				<category><![CDATA[design&usability]]></category>

		<guid isPermaLink="false">http://www.new-destiny.co.uk/andrew/blog/2006/07/03/toilet-indicator-light/</guid>
		<description><![CDATA[As an experiment in being a cheapskate (I normally spend too much), I travelled on a Megabus from Winchester to London at the weekend. To pass the time, I attempted to assess the usability of the light situated outside the toilet (I&#8217;d left all my good CDs at home). My train of thought was as [...]]]></description>
			<content:encoded><![CDATA[<p>As an experiment in being a cheapskate (I normally spend too much), I travelled on a <a href="http://www.megabus.com/uk/">Megabus</a> from Winchester to London at the weekend. To pass the time, I attempted to assess the usability of the light situated outside the toilet (I&#8217;d left all my good CDs at home). My train of thought was as follows:</p>
<p>After seeing the light turn on when someone went inside, I assumed I was correct in my initial guess &#8211; it was to indicate it was occupied. So far, so good &#8211; although things would have been less certain if you hadn&#8217;t been sitting next to it and seen it do this before. However, the light stayed on for 3 minutes after someone left the toilet. After seeing this consistently happen twice, I figured it must be going through some cleaning cycle &#8211; thus the light really meant &#8216;do not enter&#8217; rather than &#8216;occupied&#8217;. I was just congratulating myself on figuring out this rather straightforward pattern when a further complication arose &#8211; as we approached London, and the roads got bumpier (or so I theorized), the light seemed to switch on and off fairly randomly, and this time I just couldn&#8217;t correlate it with anything meaningful. Perhaps just a faulty connection in a switch somewhere, but it made me question my previous two conclusions to the extent that as I got off the bus, I realized that I hadn&#8217;t really learnt anything at all. Perhaps the light had nothing to do with the toilet, apart from being located nearby.</p>
<p>This is a trivial example, and you could argue it didn&#8217;t matter. But also, after spending over 2 hours studying the light, and still not being 100% sure what it did, I couldn&#8217;t help but think that maybe, just maybe, it could have been designed to be more obvious (or at least have the faulty switch fixed). These little technological irritations don&#8217;t <em>normally </em>hurt anyone (although there have been plenty of similar examples that have caused &#8216;pilot error&#8217; plane crashes, for example), but they are still things that us technologists should aim to understand and defeat, if only for the sanity of ourselves and those around us.</p>
<p>For a lot more discussion on this topic, see <a href="http://www.jnd.org/">Don Norman</a>&#8216;s classic book The Design of Everyday Things.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewferrier.com/blog/2006/07/03/toilet-indicator-light/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

