<?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>strangerpixel &#187; Bike</title>
	<atom:link href="http://www.strangerpixel.com/category/bike/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.strangerpixel.com</link>
	<description>I make websites.</description>
	<lastBuildDate>Sat, 10 Mar 2012 18:43: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>Building the Tour of the North microsite</title>
		<link>http://www.strangerpixel.com/2011/09/building-the-tour-of-the-north-microsite/</link>
		<comments>http://www.strangerpixel.com/2011/09/building-the-tour-of-the-north-microsite/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 12:15:35 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[cycling]]></category>
		<category><![CDATA[Flickr API]]></category>
		<category><![CDATA[Google Maps API]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/?p=763</guid>
		<description><![CDATA[In April this year I went on a mountain-bike trip with a few mates. It was an epic, tough ride that involved digging very deep into limited early-season fitness reserves. On returning to London I decided that the journey should &#8230; <a href="http://www.strangerpixel.com/2011/09/building-the-tour-of-the-north-microsite/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In April this year I went on a mountain-bike trip with a few mates. It was an epic, tough ride that involved digging very deep into limited early-season fitness reserves. On returning to London I decided that the journey should be appropriately documented and data-mined &#8211; for my grandchildren, at the very least.</p>
<div id="attachment_764" class="wp-caption alignnone" style="width: 560px"><img class="size-medium wp-image-764" title="totn-grab" src="http://www.strangerpixel.com/blog/wp-content/uploads/2011/09/totn-grab-550x376.jpg" alt="" width="550" height="376" /><p class="wp-caption-text">The Tour of the North website.</p></div>
<p><strong>Prep</strong></p>
<p>The planned route was a 5-day zig-zag from Lancaster to Scarborough, taking in the finest riding available.</p>
<p>Before heading north I encouraged all but the least tech member of our 4-man team to get on Twitter and get their heads around hashtags and geo-located tweets. Three of us, thankfully, had iPhones, which made this pretty easy.</p>
<p><strong>Navigation</strong></p>
<p>Tom was in charge of navigation: in addition to route maps, he brought with him the <a href="http://gps.motionx.com/iphone/overview/">GPS Motion-X app</a> for iPhone, which records detailed route data including distance, time, speed, and 3-dimensional coordinates (with elevation).</p>
<p>After each day&#8217;s leg was completed, Tom emailed the KML route data to all of us to ensure everything was backed up.</p>
<p><strong>Website</strong></p>
<p>The Tour of the North microsite has two components:</p>
<ul>
<li>a page built out from my existing blog at <a href="http://www.legsfeelingnopressure.com/the-tour-of-the-north/">http://www.legsfeelingnopressure.com/the-tour-of-the-north/</a></li>
<li>a dedicated map page with geolocated photos and tweets at <a href="http://www.legsfeelingnopressure.com/totn-map/index.html">http://www.legsfeelingnopressure.com/totn-map</a></li>
</ul>
<p>The blog page features some neat CSS3 transitions, scrolling elevation charts and a lightbox to display the Flickr images. The trickiest element by far was processing the KML data to display accurately on the maps, and then using the Flickr and Twitter APIs to add photos and tweets to the dedicated map page.</p>
<div id="attachment_771" class="wp-caption alignnone" style="width: 560px"><img class="size-medium wp-image-771" title="totn-map-grab" src="http://www.strangerpixel.com/blog/wp-content/uploads/2011/09/totn-map-grab-550x398.jpg" alt="" width="550" height="398" /><p class="wp-caption-text">Mapping the ride: a Google Map with plotted KML routes, Flickr photos and tweets.</p></div>
<p><strong>Mapping</strong></p>
<p>Creating the maps involved various stages:</p>
<ul>
<li>Cleaning up the Motion-X KML data &#8211; Motion-X adds quite a lot of extraneous cruft to its exported KML route files, including Motion-X logos and route data that is loaded into Google Maps info windows by default.</li>
<li>Repairing KML files where necessary &#8211; we suffered a technical malfunction on day 2, which resulted in a gap in the coordinates (it loos like we teleported). I had to populate the KML with dummy coordinates.</li>
<li>Hosting KML files on Amazon S3 &#8211; so they load super-fast.</li>
<li>Programming the Google Maps API to <a href="http://code.google.com/apis/maps/documentation/javascript/overlays.html#KMLLayers">plot the KML overlays</a> onto the maps.</li>
</ul>
<p><strong>Twitter &amp; Flickr APIs</strong></p>
<p>I downloaded each tweeter&#8217;s JSON for the 5 days of riding and combined them into a single .json file to reduce file size and speed up the rendering of the markers onto the map.</p>
<pre class="brush: php; gutter: false; title: ; wrap-lines: true; notranslate">
// get a combined stream of tweets, downloaded from Twitter immediately after the trip
	$.getJSON('js/combined.json', function(data) {
		for (index in data) addTweetMarker(data[index]);
	});
</pre>
<p>Because the main map needs to access more than 20 tagged photos from Flickr, I had to use the Flickr API with a key (check the source code). Also, of course, any photos uploaded to Flickr from a standard camera without geodata had to be manually added to Flickr&#8217;s (not very detailed) maps &#8211; harder than it sounds when you&#8217;re talking about a hillside in the Dales.</p>
<p><strong>Elevation charts</strong></p>
<p>I stumbled across a really awesome online tool called <a href="http://www.gpsvisualizer.com/">GPS Visualiser</a> which converts .gps and .kml files into all kinds of things, including profile graphics.</p>
<p><strong>Future developments</strong></p>
<ul>
<li>Swap out the Daytum iframes for some javascript graphs using <a href="http://code.google.com/p/flot/">Flot</a> or <a href="http://omnipotent.net/jquery.sparkline/">Sparklines</a>.</li>
<li>Fix the map so that the Flickr info windows display the photo author and link to the original on Flickr.</li>
<li>Go on another, similar trip and set all this up <em>in advance</em> with live tweets and route-plotting.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2011/09/building-the-tour-of-the-north-microsite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bike blog &#8211; anatomy of a logo design</title>
		<link>http://www.strangerpixel.com/2010/04/bike-blog-anatomy-of-a-logo-design/</link>
		<comments>http://www.strangerpixel.com/2010/04/bike-blog-anatomy-of-a-logo-design/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 13:04:55 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/blog/?p=208</guid>
		<description><![CDATA[About a year ago I decided my cycling blog Legs Feeling No Pressure needed a spruce-up. Since I started writing it I had always planned to design it properly, and was inspired by some nice-looking US-based bike sites, Velodramatic and &#8230; <a href="http://www.strangerpixel.com/2010/04/bike-blog-anatomy-of-a-logo-design/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>About a year ago I decided my cycling blog <a href="http://bike.strangerpixel.com/">Legs Feeling No Pressure</a> needed a spruce-up. Since I started writing it I had always planned to design it properly, and was inspired by some nice-looking US-based bike sites, <a href="http://www.velodramatic.com/">Velodramatic</a> and <a href="http://halfacrecycling.org/">Half Acre Cycling</a>. Somehow UK-based cycling-related websites tend towards the less visually dynamic end of the spectrum, and I wanted to buck that trend.</p>
<p>The starting point was a visual identity for the blog. Legs Feeling No Pressure isn&#8217;t a brand as such &#8211; it&#8217;s just a <a href="http://bike.strangerpixel.com/about/">slightly cryptic statement</a> about what I get out of cycling &#8211; but as a name it needed a design that somehow communicated more than the name itself could do.</p>
<p><a href="http://www.behance.net/DavidHardy/frame">David Hardy</a>, who is our LCF graphic designer and similarly a bike-nut (<a href="http://www.teamsequipe.com/">he&#8217;s into scooters</a>), agreed to help me out, and we started knocking around some ideas. In a nutshell, here was my brief:</p>
<ul>
<li>bold, sans-serif typeface (although I do like some serifs used in the bike world&#8217;s, notably <a href="http://www.rapha.cc/">Rapha&#8217;s</a>)</li>
<li>no need to include cycling-related imagery like wheels (old hat)</li>
<li>maybe a colour</li>
<li>I like fancy Italian bikes but I also ride around town on a filthy hack (style vs grittiness?)</li>
</ul>
<p>David got his head down, and a few thousand furious mouse-clicks later he supplied a suite of 18 draft logos.</p>
<div id="attachment_362" class="wp-caption alignnone" style="width: 480px"><a href="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-DRAFTS-v1-1.jpg"><img class="size-medium wp-image-362" title="LFNP-DRAFTS v1-1" src="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-DRAFTS-v1-1-470x669.jpg" alt="LFNP-DRAFTS v1-1" width="470" height="669" /></a><p class="wp-caption-text">Logo design drafts #1 sheet 1</p></div>
<div id="attachment_364" class="wp-caption alignnone" style="width: 480px"><a href="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-DRAFTS-v1-2.jpg"><img class="size-medium wp-image-364" title="LFNP-DRAFTS v1-2" src="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-DRAFTS-v1-2-470x669.jpg" alt="Logo design drafts #1 sheet 2" width="470" height="669" /></a><p class="wp-caption-text">Logo design drafts #1 sheet 2</p></div>
<div id="attachment_211" class="wp-caption alignnone" style="width: 480px"><a href="http://www.strangerpixel.com/blog/wp-content/uploads/2009/06/lfnpsheet3.jpg"><img class="size-medium wp-image-211" title="lfnpsheet3" src="http://www.strangerpixel.com/blog/wp-content/uploads/2009/06/lfnpsheet3-470x439.jpg" alt="Logo design draft batch #1 sheet 3" width="470" height="439" /></a><p class="wp-caption-text">Logo design drafts #1 sheet 3</p></div>
<p>I emailed the designs around a few friends to see what they thought. Perhaps predictably, this wasn&#8217;t a very useful step in deciding on an initial direction; some preferred N (the C-shaped design on sheet 2), but equally, others liked the tag styles, and quite a few actually liked the distressed font (B on sheet 1, which I instantly dismissed).</p>
<p>At this point we rejected a few, and moved forward with some others, exploring further the tag style as well as adding in a cheeky wrench-head / Pacman design (N, below):</p>
<div id="attachment_365" class="wp-caption alignnone" style="width: 480px"><a href="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-DRAFTS-v2-2.jpg"><img class="size-medium wp-image-365" title="LFNP-DRAFTS v2-2" src="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-DRAFTS-v2-2-470x669.jpg" alt="Logo design drafts #2" width="470" height="669" /></a><p class="wp-caption-text">Logo design drafts #2</p></div>
<p>Personally, I was leaning more towards version I &#8211; a rounded, surfy, retro tag with a mixture of bold sans-serif and &#8216;classic&#8217; serif that I thought echoed the masterful pairing of typefaces in the <a href="http://www.raphacondor.cc/">Rapha Condor</a> logo. However, as so often happens with logo design, hours of close examination had made the words &#8216;Legs Feeling No Pressure&#8217;  themselves practically incomprehensible as a phrase. We needed some distance.</p>
<p>A couple of days later we arrived at a final three:</p>
<div id="attachment_366" class="wp-caption alignnone" style="width: 480px"><a href="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-1.jpg"><img class="size-medium wp-image-366" title="LFNP-1" src="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-1-470x129.jpg" alt="Draft #3 option 1" width="470" height="129" /></a><p class="wp-caption-text">Draft #3 option 1</p></div>
<div id="attachment_367" class="wp-caption alignnone" style="width: 416px"><a href="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-2.jpg"><img class="size-full wp-image-367" title="LFNP-2" src="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-2.jpg" alt="Draft # option 2" width="406" height="406" /></a><p class="wp-caption-text">Draft #3 option 2</p></div>
<div id="attachment_368" class="wp-caption alignnone" style="width: 479px"><a href="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-4.jpg"><img class="size-medium wp-image-368" title="LFNP-4" src="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-4-469x189.jpg" alt="Draft # option 3" width="469" height="189" /></a><p class="wp-caption-text">Draft #3 option 3</p></div>
<p>It was David who swayed me towards option 1: he reasoned that a) I took cycling quite seriously, so I ought to have a solid, bold logo, instead of a tag more at home on a pair of board shorts; and b) that the crisp edges of option 1 would look better in a blog header anyway.</p>
<p>The next question was that of colour. David prepared a fourth suite of options, which introduced a red element, and also offered some variations on the solid serif, just to make absolutely sure we had the right one:</p>
<div id="attachment_371" class="wp-caption alignnone" style="width: 480px"><a href="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-DRAFTS-v3-1.jpg"><img class="size-medium wp-image-371" title="LFNP-DRAFTS v3-1" src="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-DRAFTS-v3-1-470x652.jpg" alt="Draft #4 sheet 1" width="470" height="652" /></a><p class="wp-caption-text">Draft #4 sheet 1</p></div>
<div id="attachment_372" class="wp-caption alignnone" style="width: 480px"><a href="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-DRAFTS-v3-2-copy.jpg"><img class="size-medium wp-image-372" title="LFNP-DRAFTS v3-2 copy" src="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP-DRAFTS-v3-2-copy-470x652.jpg" alt="Draft #4 sheet 2" width="470" height="652" /></a><p class="wp-caption-text">Draft #4 sheet 2</p></div>
<p>One final touch was the addition of the tagline &#8216;What I think about when I think about cycling&#8217;, which I borrowed from Haruki Murakami&#8217;s book <em><a href="http://www.amazon.co.uk/What-Talk-About-When-Running/dp/1846552206">What I Talk About When I Talk About Running</a></em>. Now I could see that our original bold serif was still working really well, and that it was now perfectly finished by the red &#8216;No&#8217;, with the patterned gradient within it suggesting all kinds of training-related things like hills, heart rate, and precision.</p>
<p>We had it &#8211; the finished logo:</p>
<div id="attachment_359" class="wp-caption alignnone" style="width: 480px"><img class="size-full wp-image-359 " title="LFNP+tag" src="http://www.strangerpixel.com/blog/wp-content/uploads/LFNP+tag.jpg" alt="LFNP+tag" width="470" height="180" /><p class="wp-caption-text">The finished logo, including tagline.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2010/04/bike-blog-anatomy-of-a-logo-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>London Phoenix redesign</title>
		<link>http://www.strangerpixel.com/2008/11/london-phoenix-redesign/</link>
		<comments>http://www.strangerpixel.com/2008/11/london-phoenix-redesign/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 12:30:45 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/blog/?p=168</guid>
		<description><![CDATA[I&#8217;d like to applaud the redesign of the London Phoenix Cycle Club. The visual design is really bold and striking, the blog is packed with content, it&#8217;s got an embedded Google calendar with events up to May &#8217;09, a forum &#8230; <a href="http://www.strangerpixel.com/2008/11/london-phoenix-redesign/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to applaud the redesign of the <a href="http://www.londonphoenix.co.uk/">London Phoenix Cycle Club</a>. </p>
<div id="attachment_169" class="wp-caption alignnone" style="width: 480px"><img class="size-full wp-image-169" title="lp_grab" src="http://www.strangerpixel.com/blog/wp-content/uploads/2008/11/lp_grab.jpg" alt="London Phoenix home page" width="470" height="304" /><p class="wp-caption-text">London Phoenix home page</p></div>
<p>The visual design is really bold and striking, the blog is packed with content, it&#8217;s got an embedded Google calendar with events up to May &#8217;09, a forum &#8211; is there a better bike club website in the UK?</p>
<ul>
<li>More on the <a href="http://bike.strangerpixel.com/2008/11/london-phoenix/">bike blog</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2008/11/london-phoenix-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bikeoff</title>
		<link>http://www.strangerpixel.com/2008/10/bikeoff/</link>
		<comments>http://www.strangerpixel.com/2008/10/bikeoff/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 17:08:16 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[bikeoff]]></category>
		<category><![CDATA[bikes]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[theft]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/blog/?p=164</guid>
		<description><![CDATA[I&#8217;ve been pointed towards Bikeoff a couple of times now. &#8216;An initiative of the Design Against Crime Research Centre&#8217;, and based at Central Saint Martins College of Art and Design, it&#8217;s a laudable venture, and I&#8217;m looking forward to reading &#8230; <a href="http://www.strangerpixel.com/2008/10/bikeoff/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-165" title="bikeoff" src="http://www.strangerpixel.com/blog/wp-content/uploads/2008/10/bikeoff.jpg" alt="" width="469" height="364" /></p>
<p>I&#8217;ve been pointed towards <a href="http://www.bikeoff.org/">Bikeoff</a> a couple of times now. &#8216;An initiative of the Design Against Crime Research Centre&#8217;, and based at <a href="http://www.csm.arts.ac.uk/">Central Saint Martins College of Art and Design</a>, it&#8217;s a laudable venture, and I&#8217;m looking forward to reading into it in much more detail. <a href="http://bikeoff.beta.tagmap.co.uk/">Bikeoff TV</a> in particular looks like a nice Google maps / Flash video project.</p>
<p>However, at least superficially, I really do have to slate the design &#8211; especially given the extensive list of design personnel listed on <a href="http://www.bikeoff.org/about/">the about page</a>. Here&#8217;s what I think&#8217;s wrong:</p>
<ul>
<li>Table-based design &#8211; in this day and age there really is NO reason to be laying out a website using tables. Tables are for tabular data. End of story. </li>
<li>The bubbles around the chunks of content does work alongside the colour-coding to make it easier to separate bits of information &#8211; but it still feels cluttered.</li>
<li>As used (in)famously and stubbornly by <a href="http://www.useit.com/">Jakob Nielsen</a>, that hyperlink blue is the blue that browsers colour link text by default. In this case, <a href="http://www.bikeoff.org/">Bikeoff</a> just hasn&#8217;t got round to styling its links in the CSS. It looks pretty bad.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2008/10/bikeoff/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bicycle Film Festival 08</title>
		<link>http://www.strangerpixel.com/2008/10/bicycle-film-festival-08/</link>
		<comments>http://www.strangerpixel.com/2008/10/bicycle-film-festival-08/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 12:37:19 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[Film]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[bicycle]]></category>
		<category><![CDATA[festival]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[pantani]]></category>
		<category><![CDATA[racing]]></category>
		<category><![CDATA[tourdefrance]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/blog/?p=141</guid>
		<description><![CDATA[I made it down to a couple of screenings at the Bicycle Film Festival this weekend. On Friday night, I was at the Barbican (officially the worst sign-posted location in central London) to see Les Ninjas du Japon, a documentary &#8230; <a href="http://www.strangerpixel.com/2008/10/bicycle-film-festival-08/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I made it down to a couple of screenings at the <a href="http://bicyclefilmfestival.com/">Bicycle Film Festival</a> this weekend. On Friday night, I was at the Barbican (officially the worst sign-posted location in central London) to see <a href="http://bicyclefilmfestival.com/2008_site/london/program3.php">Les Ninjas du Japon</a>, a documentary about a Japanese road racing team competing in the <a href="http://en.wikipedia.org/wiki/Tour_du_Faso">Tour du Faso</a>, a stage race held annually in Burkina Faso. </p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/0g6ms4ZWPDk&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/0g6ms4ZWPDk&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></p>
<p>The bike race is the scene for a wild culture clash: the calm, pale-skinned Japanese battling extreme heat, potholes and herds of farm animals on the rural roads of West Africa. Director Giovanni Giommi cuts back and forth between French-speaking Burkina Faso and the cyclists&#8217; home towns in Japan, drawing out the riders&#8217; hopes and dreams one minute, the next returning to the race, and the lives of the ordinary <em>Burkinabé</em> drawn into the race as spectators, drivers, commentators or <em>soigneurs</em>.</p>
<p>Prior to the main screening, the organisers presented Natali Fabrizio&#8217;s short &#8216;Pantani e &#8220;Le Tour de France&#8221;&#8216;, a trippy but totally awesome 9 minutes that cut flickery motorbike-cam video of Marco Pantani racing against Indurain in the 1994 Tour, to a pounding house soundtrack. I felt compelled to follow this up with a late-night glut of <a href="http://uk.youtube.com/results?search_query=marco+pantani">Pantani vids on YouTube</a>.</p>
<p><strong>Update 8/10/08:</strong></p>
<p>On Sunday afternoon I returned to BFF08 to catch a bonus screening of <a href="http://bicyclefilmfestival.com/2008_site/london/program2.php">Road to Roubaix</a>, directed by David Deal and David Cooper. The film is a documentary about the <a href="http://en.wikipedia.org/wiki/Paris-Roubaix">Paris-Roubaix</a> one-day road race, that has taken place every April since 1896 on the cobbled roads of northern France and Belgium.</p>
<p>The opening minutes were a real buzz &#8211; lots of gritty black and white footage of tough guys riding through clouds of mud and dust, the whites of their eyes standing out from faces caked in dirt and sweat. An early highlight was the interview with Lance Armstrong, who described the 200km route &#8211; the <em>Queen of the Classics</em>, which he has famously never entered &#8211; as &#8216;insane&#8217;.</p>
<p>However the 75 minutes included too many talking heads offering similar viewpoints. An hour in, we pretty much got the message that the race was hard. Road to Roubaix was less successful where I hear (not having seen it) that Jørgen Leth&#8217;s 1977 documentary <a href="http://en.wikipedia.org/wiki/A_Sunday_in_Hell">A Sunday in Hell</a> was in a class of its own: namely, in offering an up-close analysis of the actual riding of the race, the changing fortunes, the bursts of speed, the grappling for position, the sheer, brutal Darwinism of the event.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2008/10/bicycle-film-festival-08/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Wiggle packaging scandal</title>
		<link>http://www.strangerpixel.com/2008/09/a-wiggle-packaging-scandal/</link>
		<comments>http://www.strangerpixel.com/2008/09/a-wiggle-packaging-scandal/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 21:15:36 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[campagnolo]]></category>
		<category><![CDATA[wiggle]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/blog/?p=120</guid>
		<description><![CDATA[As a cyclist who regularly fritters away his surplus cash on cycle &#8216;accessories&#8217;, I quite like Wiggle &#8211; or at least when they&#8217;re cheaper than top-dog Chain Reaction Cycles. Recently, however, their wasteful packaging has put me right off. Check &#8230; <a href="http://www.strangerpixel.com/2008/09/a-wiggle-packaging-scandal/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As a cyclist who regularly fritters away his surplus cash on cycle &#8216;accessories&#8217;, I quite like <a href="http://www.wiggle.co.uk">Wiggle</a> &#8211; or at least when they&#8217;re cheaper than top-dog <a href="http://www.chainreactioncycles.com">Chain Reaction Cycles</a>. Recently, however, their wasteful packaging has put me right off. Check this out:<br />
<div id="attachment_121" class="wp-caption alignnone" style="width: 480px">  <br />
<img class="size-full wp-image-121" title="wiggle1" src="http://www.strangerpixel.com/blog/wp-content/uploads/2008/09/wiggle1.jpg" alt="The package" width="470" height="353" /><p class="wp-caption-text">Wiggle package arrives. Cue oohs and aahs around the office.</p></div></p>
<div id="attachment_122" class="wp-caption alignnone" style="width: 480px"><img class="size-full wp-image-122" title="wiggle2" src="http://www.strangerpixel.com/blog/wp-content/uploads/2008/09/wiggle2.jpg" alt="The package looks empty, but wait..." width="470" height="353" /><p class="wp-caption-text">The package looks empty, but wait...</p></div>
<div id="attachment_123" class="wp-caption alignnone" style="width: 480px"><img class="size-full wp-image-123" title="wiggle3" src="http://www.strangerpixel.com/blog/wp-content/uploads/2008/09/wiggle3.jpg" alt="The true scandal revealed." width="470" height="353" /><p class="wp-caption-text">The true scandal revealed.</p></div>
<p>Four replacement Campagnolo Veloce brake blocks in a box that could have contained 400 of them. Run out of Jiffy bags Wiggle?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2008/09/a-wiggle-packaging-scandal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>itv.com: worse than expected</title>
		<link>http://www.strangerpixel.com/2008/07/itvcom-worse-than-expected/</link>
		<comments>http://www.strangerpixel.com/2008/07/itvcom-worse-than-expected/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 13:11:54 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[bad]]></category>
		<category><![CDATA[bikes]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[tourdefrance]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/?p=94</guid>
		<description><![CDATA[From what I&#8217;ve read lately, I expected itv.com&#8217;s online video service to be a bit rubbish. I wasn&#8217;t prepared for it to be spectacularly bad.  I&#8217;ve been trying to keep abreast of the Tour de France since it started on &#8230; <a href="http://www.strangerpixel.com/2008/07/itvcom-worse-than-expected/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>From what I&#8217;ve <a href="http://www.e-consultancy.com/news-blog/365147/fight-club-bbc-iplayer-vs-itv-s-video-player.html">read lately</a>, I expected itv.com&#8217;s <a href="http://www.itv.com/CatchUp/">online video service</a> to be a bit rubbish. I wasn&#8217;t prepared for it to be spectacularly bad. </p>
<p>I&#8217;ve been trying to keep abreast of the <a href="http://en.wikipedia.org/wiki/Tour_de_France">Tour de France</a> since it started on July 5th. Considering it&#8217;s the world&#8217;s biggest (and best &#8211; bike bias acknowledged) annual sporting event, TV coverage is woeful: a 1-hour slot on ITV 4 every evening. But &#8211; wait a second &#8211; how convenient! You can catch up online on itv.com!</p>
<p>Here are a couple of screen grabs that sum up my experience of watching the Tour on itv.com:</p>
<p><img class="alignnone size-full wp-image-95" title="itv_is_crap_grab" src="http://www.strangerpixel.com/wordpress/wp-content/uploads/2008/07/itv_is_crap_grab.jpg" alt="" width="470" height="304" /></p>
<p>Great!</p>
<p><img class="alignnone size-full wp-image-96" title="itv_is_terrible" src="http://www.strangerpixel.com/wordpress/wp-content/uploads/2008/07/itv_is_terrible.jpg" alt="" width="470" height="304" /></p>
<p>Just great.</p>
<p>Over the past week of viewing on a Mac (<a href="http://www.itv.com/help/itvplayervideohelp/videofaqs/#3">which is supported</a>) in 2 different locations (thus ruling out bandwidth or bad internet connection as possible faults) I&#8217;ve encountered a grim catalogue of errors:</p>
<ul>
<li>player hangs or freezes during playback</li>
<li>selected video doesn&#8217;t play on request (this is not about buffering, I know what buffering is)</li>
<li>videos are &#8216;not available&#8217; for some unexplained reason</li>
<li>the selection of Tour videos goes from e.g. 7 (we&#8217;re currently on Stage 9) to 2, and now at time of writing, 3 &#8211; again with no explanation </li>
</ul>
<p>Not to mention incomprehensible error messages, bad player controls and navigation, and having to watch the same advertisement up to 8 times in an hour of playback. And what&#8217;s with <a href="http://silverlight.net/">Silverlight</a> by the way? Having to download and install it before viewing is like some nightmare flashback to <a href="http://uk.real.com/">Real Player</a> days.</p>
<p>The Tour de France videos must be among the most popular programmes on ITV Catch Up at present. If it was any good, this would be an effective way to promote this service to viewers who perhaps wouldn&#8217;t normally use it (from the looks of it most visitors are catching up on Corrie). But it isn&#8217;t any good, it&#8217;s awful.</p>
<p><strong>Hey ITV! Spend some money and sort it out!</strong></p>
<p>For anyone hunting for a decent way to watch Le Tour online, try <a href="http://www.letour.fr/2008/TDF/LIVE/us/700/index.html">www.letour.fr</a>. Here&#8217;s a decent video service with daily short clips summarising the day&#8217;s action, albeit without Phil Liggett. This content is re-purposed by a number of other news sites (like <a href="http://www.skytv.co.nz/tourdefrance.aspx">this one</a>, which plays back using Jeroen Wijering&#8217;s very excellent and now ubiquitous <a href="http://www.jeroenwijering.com/?item=JW_FLV_Media_Player">FLV Player</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2008/07/itvcom-worse-than-expected/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Condor website</title>
		<link>http://www.strangerpixel.com/2008/07/condor-website/</link>
		<comments>http://www.strangerpixel.com/2008/07/condor-website/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 15:48:25 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[shop]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/?p=92</guid>
		<description><![CDATA[By now you ought to know that I love cycling and bikes. I&#8217;m also pretty keen on web design. So when a bike manufacturer I really like gets a new website, I&#8217;m excited. Condor Cycles, the iconic London bike builder, &#8230; <a href="http://www.strangerpixel.com/2008/07/condor-website/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>By now you ought to know that I love cycling and <a href="http://www.strangerpixel.com/category/bike/">bikes</a>. I&#8217;m also pretty keen on web design. So when a bike manufacturer I really like gets a new website, I&#8217;m excited.</p>
<p><img class="blog alignnone size-full wp-image-93" title="condor" src="http://www.strangerpixel.com/wordpress/wp-content/uploads/2008/07/condor.jpg" alt="Condor website screengrab" width="470" height="406" /><a href="http://www.condorcycles.com/"></a></p>
<p><a href="http://www.condorcycles.com/">Condor Cycles</a>, the iconic London bike builder, race team and brand name, had a &#8216;coming soon&#8217; holding page on its site for most of 2007 &#8211; for so long, in fact, that I almost got in touch to offer my services. But I just checked back, and they&#8217;ve relaunched!</p>
<p>Here are some of the things wrong with the site:</p>
<ul>
<li>Sloppy code: the visual elements of the site rely on Flash, and there&#8217;s no text content, or keyword or description metadata, so it&#8217;s no surprise the site doesn&#8217;t show up on the first page of Google for a search for &#8216;london bike shop&#8217;.</li>
<li>Dodgy user interface: I know what they were trying to do with the &#8216;virtual catalogue&#8217;, but the Flash page turner tool is fiddly to use and doesn&#8217;t encourage browsing, even if there are additional buttons for &#8216;next page&#8217; and &#8216;previous page&#8217; on certain screens. What happens if I want to download an image of one of the bikes or email to a friend? I can&#8217;t. </li>
<li>The &#8216;store opening hours&#8217; page opens in a new window. A minor point, arguably, but the issue that prompted this post. <a href="http://www.smashingmagazine.com/2008/07/01/should-links-open-in-new-windows/">Here&#8217;s why you shouldn&#8217;t do this</a> on a single domain &#8211; or indeed ever.</li>
</ul>
<p>So why use Flash, really? Can it be easy for Condor staff to update details in their catalogue? No &#8211; there&#8217;s no product database feeding into the site. In 2009 when their new bikes are launched, they&#8217;ll have to start over.</p>
<p>What Condor needs, to do justice to their <a href="http://www.allinlondon.co.uk/directory/1284/2866.php">excellent store</a>, solid reputation and superb bikes, is:</p>
<ul>
<li>A clear, accessible site designed in standards-compliant HTML and CSS, to boost its search engine rankings and improve navigability.</li>
<li>A better catalogue system that displays pages to the browser transparently, with unique URLs per product, and which the store staff can update easily.</li>
</ul>
<div>Next time I&#8217;m in to pick up new inner tubes, it may be time for a quiet word with the manager&#8230;</div>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2008/07/condor-website/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ride it, Gilligan</title>
		<link>http://www.strangerpixel.com/2007/09/ride-it-gilligan/</link>
		<comments>http://www.strangerpixel.com/2007/09/ride-it-gilligan/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 15:56:38 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/bike/ride-it-gilligan/</guid>
		<description><![CDATA[Andrew Gilligan, the chubby whistleblower of the dodgy dossier, has become a keen cyclist. Now a lean bike nerd, Gilligan wrote recently in the Evening Standard that he has lost 4 stone in just over a year. More interesting was &#8230; <a href="http://www.strangerpixel.com/2007/09/ride-it-gilligan/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Andrew_Gilligan">Andrew Gilligan</a>, the chubby <a href="http://news.bbc.co.uk/1/hi/uk/3082323.stm">whistleblower</a> of the <a href="http://en.wikipedia.org/wiki/Dodgy_Dossier">dodgy dossier</a>, has become a keen cyclist. Now a lean bike nerd, Gilligan wrote recently in the Evening Standard that he has lost 4 stone in just over a year. More interesting was what he said about cycling vs public transport:</p>
<blockquote><p>&#8216;I used to think I could put up with the Underground. It was only when I stopped using it that I realised how life-shortening it is&#8230; It wasn&#8217;t just the service&#8230; It was the crowds, the heat, the filthy air, the endless moronic announcements, the kids playing music on their mobile phones, the pushing and shoving, all of which delivered me to my destination in a low-level bad temper.&#8217;</p>
<p>&#8216;Part of cycling&#8217;s appeal for me is that it is a last outpost of freedom in an authoritarian, CCTV city, essentially uncontrolled by anyone except the cyclist.</p></blockquote>
<p>Happy biking AG. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2007/09/ride-it-gilligan/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Welcome the Wilier</title>
		<link>http://www.strangerpixel.com/2007/09/welcome-the-wilier/</link>
		<comments>http://www.strangerpixel.com/2007/09/welcome-the-wilier/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 22:00:50 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Bike]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[riding]]></category>
		<category><![CDATA[wilier]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/bike/riding-like-swimming/</guid>
		<description><![CDATA[The above is a new arrival to the strangerpixel cycle stable. Sweet, awesome &#8211; these don&#8217;t cover it. Compared to my Scott Expert (01?), this bike is like a rocket: quick, flickable, stiff under pressure, compliant over rough surfaces, sure &#8230; <a href="http://www.strangerpixel.com/2007/09/welcome-the-wilier/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_147" class="wp-caption alignnone" style="width: 480px"><img class="size-full wp-image-147" title="wilier" src="http://www.strangerpixel.com/blog/wp-content/uploads/2008/10/wilier.jpg" alt="Wilier Mortirolo Veloce 2007" width="470" height="295" /><p class="wp-caption-text">Wilier Mortirolo Veloce 2007</p></div>
<p>The above is a new arrival to the <a href="http://www.strangerpixel.com">strangerpixel</a> cycle stable. Sweet, awesome &#8211; these don&#8217;t cover it. Compared to my Scott Expert (01?), this bike is like a rocket: quick, flickable, stiff under pressure, compliant over rough surfaces, sure on the descents. Classy. It turns heads.</p>
<p>When I test rode the Wilier about a fortnight ago, the unexpected feeling of power and speed on a climb were better than a year&#8217;s supply of Floyd Landis&#8217;s testosterone patches. It was so exciting I nearly burst a lung firing up Rosslyn Hill.</p>
<p>I pondered the Wilier&#8217;s rivals: efficient German engineering in the shape of the Focus Cayo on the one hand, on the other the undeniable quality of the US bike giant Trek. But I came back, remembering that first acceleration.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2007/09/welcome-the-wilier/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

