<?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; News</title>
	<atom:link href="http://www.strangerpixel.com/category/news/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>WordPress + Next Gen gallery &#8211; remove default scripts</title>
		<link>http://www.strangerpixel.com/2011/03/wordpress-next-gen-gallery-remove-default-scripts/</link>
		<comments>http://www.strangerpixel.com/2011/03/wordpress-next-gen-gallery-remove-default-scripts/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 13:00:29 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/?p=515</guid>
		<description><![CDATA[Next Gen gallery is probably the most full-featured, customisable WordPress gallery plugin out there. I&#8217;d been using it for a year or so before I read Dave Rupert&#8217;s post on optimising WordPress for speed. Looking at the source, I realised &#8230; <a href="http://www.strangerpixel.com/2011/03/wordpress-next-gen-gallery-remove-default-scripts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/plugins/nextgen-gallery/">Next Gen gallery</a> is probably the most full-featured, customisable WordPress gallery plugin out there.</p>
<p>I&#8217;d been using it for a year or so before I read <a href="http://daverupert.com/2010/06/web-performant-wordpress/">Dave Rupert&#8217;s post on optimising WordPress for speed</a>. Looking at the source, I realised that Next Gen was loading additional jQuery script files even if they weren&#8217;t required for the gallery theme.</p>
<p>The solution is to block this in the <code>wp-config.php</code> file like so:</p>
<pre class="brush: php; title: ; notranslate">
/* Prevent load of NGG JS */
define('NGG_SKIP_LOAD_SCRIPTS', TRUE);
/* That's all, stop editing! Happy blogging. */
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2011/03/wordpress-next-gen-gallery-remove-default-scripts/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Streamlining CSS on www.fashion.arts.ac.uk</title>
		<link>http://www.strangerpixel.com/2011/01/streamlining-css-on-www-fashion-arts-ac-uk/</link>
		<comments>http://www.strangerpixel.com/2011/01/streamlining-css-on-www-fashion-arts-ac-uk/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 18:20:18 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[LCF]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/?p=563</guid>
		<description><![CDATA[I recently began a mini-project to streamline and upgrade the London College of Fashion CSS stylesheets. The overall aim was good housekeeping &#8211; and the wish to put new skills to use in polishing up the site&#8217;s front end. This &#8230; <a href="http://www.strangerpixel.com/2011/01/streamlining-css-on-www-fashion-arts-ac-uk/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently began a mini-project to streamline and upgrade the London College of Fashion CSS stylesheets. The overall aim was good housekeeping &#8211; and the wish to put new skills to use in polishing up the site&#8217;s front end. This post is a work in progress, I&#8217;ll be updating it as I go.</p>
<p><strong>Why upgrade the CSS?</strong></p>
<p>Some background: the <a href="http://www.fashion.arts.ac.uk/">LCF website</a> was redesigned in 2007 as part of the <a href="http://www.arts.ac.uk">University of the Arts London</a> family of websites. The original designers implemented some generic styles used by all College sites, as well as styles particular to each College (including colour-coding). Since 2007 the stylesheets have been copied, tweaked, added to and duplicated without any version control or system of documenting changes (beyond occasional comments in the files themselves).</p>
<p>The system that I&#8217;ve inherited has quite a few flaws:</p>
<ul>
<li>Too many CSS files &#8211; I counted nine &#8211; meaning unnecessary HTTP requests</li>
<li>Bloated files with unnecessary rules &#8211; about 3,000 lines of code in total, including a blog stylesheet</li>
<li>Verbose, inefficient CSS selectors (I&#8217;ve learned some new tricks to do with <a href="http://css-tricks.com/efficiently-rendering-css/">efficiently rendering CSS</a> recently)</li>
<li>No style rules for basic semantic elements like <code>&lt;blockquote&gt;</code> and <code>&lt;small&gt;</code></li>
</ul>
<p>Speed and inefficiency weren&#8217;t the only reasons for improving our CSS; the site &#8211; with the exception of our WordPress blog &#8211; has a static front end anyway, so it&#8217;s already pretty fast. Making these changes were also motivated by wanting to put new skills into practice, taking ownership of the CSS, and generally setting the LCF house in order in time for the new CMS implementation.</p>
<p>As anyone skilled in CSS knows, writing good CSS is all about refinement and cleanness. It&#8217;s about writing one line instead of two. If you care about CSS, you shouldn&#8217;t be able live with shoddy, inaccurate code.</p>
<p><strong>Step 1: HTML5 Reset</strong></p>
<p>It made sense to start with the basics, and to implement a future-proof reset stylesheet that not only addressed gaps in the current CSS but also catered for all the new HTML elements we&#8217;re sure to be using sooner or later.</p>
<p>Lots of work has been done <a href="http://html5reset.org/">in this area</a> but <a href="http://html5doctor.com/author/richc/">Rich Clark</a>&#8216;s <a href="http://html5doctor.com/html-5-reset-stylesheet/">HTML5 Doctor reset stylesheet</a> appeared to be the industry standard.</p>
<p>Resetting base styles in this way meant I could do an initial pass of the existing CSS, removing all those instances of <code>border: 0;</code> and <code>margin: 0;</code> etc.</p>
<p><strong>Step 2: Reduce and refine</strong></p>
<p>The existing CSS had a file called <code>type.css</code>. It had about 60 lines, but incorporated a dozen rules for selectors that were not used at all, anywhere on our website. So anything useful in <code>type.css</code> was rolled into my core stylesheet, <code>html.css</code>.</p>
<p>I found lots of dead wood in the biggest stylesheet, <code>custom.css</code>. This kind of <em>selector mayhem</em>:</p>
<pre class="brush: css; gutter: false; title: ; notranslate">#main-content #content-col #inner-right h3.wide span</pre>
<p>was everywhere. To focus on this example alone, I discovered that nowhere on our site is there an occurence of <code>#content-col</code> outside of a containing <code>#main-content</code> block &#8211; so there was no need for a parent selector. Similarly, there&#8217;s no need for this:</p>
<pre class="brush: css; gutter: false; title: ; notranslate">#main-content #content-col h1</pre>
<p>if there&#8217;s only ever one instance of <code>&lt;h1&gt;</code> on the page. Again:</p>
<pre class="brush: css; gutter: false; title: ; notranslate">div#breadcrumb-trail</pre>
<p>- the <code>div</code> here is an over-qualification, since the &#8216;breadcrumb-trail&#8217; id is only ever applied to a <code>div</code>, and only makes the rule less efficient (thanks again <a href="http://css-tricks.com/efficiently-rendering-css/">Chris Coyier</a>).</p>
<p>There were all kinds of elements in the old HTML files that have become part of the furniture over the last 3 years, but which probably should never have been there in the first place. For example, the designers must at some point have decided to add a colour-coded class to the <code>&lt;body&gt;</code> element, but they never made it college-specific. So each of the hundreds of HTML pages on the University website has:</p>
<pre class="brush: css; gutter: false; title: ; notranslate">&lt;body class=&quot;blue&quot;&gt;</pre>
<p>The class &#8216;blue&#8217; has no style rules, so it&#8217;s just useless cruft.</p>
<p><strong>Step 3: styling for Internet Explorer</strong></p>
<p>Following <a href="http://paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/">Paul Irish&#8217;s guidelines</a> for feeding modified style rules to different versions of IE, I set up a basic conditional statement to detect for everybody&#8217;s favourite browser, adding a class to the element:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;!--[if IE ]&gt;&lt;html class=&quot;ie&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot; lang=&quot;en&quot;&gt;&lt;![endif]--&gt;
&lt;!--[if !IE]&gt;&lt;!--&gt;&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot; lang=&quot;en&quot;&gt;&lt;!--&lt;![endif]--&gt;
</pre>
<p>I didn&#8217;t expect there to be too many special rules, but at least this gave me a valid method of specifying rules without fetching a separate file from the server.</p>
<p><strong>Step 4: rediscovering the lost grid</strong></p>
<p>The LCF site is built around a grid. Not one of today&#8217;s <a href="http://960.gs/">nice modern 960 grids</a>, but a custom-built one with the following spec:</p>
<ul>
<li>16 columns</li>
<li>982px wide</li>
<li>51px grid squares</li>
<li>9px gutters on the right-hand side of each column (as opposed to 4.5px on each side like most grids. This means that the far-right column has to have its margin removed so as not to overspill)</li>
<li>a 30px left-hand margin on the main container element, to prevent the content resting flush against the left-hand edge of the viewport</li>
</ul>
<p>The original grid existed only as a PSD file buried deep in a shared drive. However, using it and the column widths in the existing CSS, I was able to modify Nathan Smith&#8217;s 16-column grid stylesheet to fit the UAL grid. It&#8217;s not pretty, I realise. I actually had to make the left margin 31px, to remove the 1px wide gap on the right hand edge of the main content block, which was there because 16 x 60 &#8211; 9 equals 951, not 952, the original width of the container. Phew.</p>
<p>With my new <code>ualgrid.css</code>, I was able to apply predefined CSS selectors to HTML elements, and ensure consistent widths and spacing site-wide. Using a grid also meant that I could remove dozens of instances of <code>&lt;float: left;&gt;</code>, and <code>&lt;clear: both;&gt;</code> from the CSS.</p>
<div id="attachment_568" class="wp-caption alignnone" style="width: 560px"><img class="size-full wp-image-568" title="lcf-about-grid" src="http://www.strangerpixel.com/blog/wp-content/uploads/2010/11/lcf-about-grid.png" alt="" width="550" height="547" /><p class="wp-caption-text">Illustration of the website&#39;s original design grid.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2011/01/streamlining-css-on-www-fashion-arts-ac-uk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LCF: back to black</title>
		<link>http://www.strangerpixel.com/2010/12/lcf-back-to-black/</link>
		<comments>http://www.strangerpixel.com/2010/12/lcf-back-to-black/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 10:02:27 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/?p=611</guid>
		<description><![CDATA[Last night I took the radical step of transforming the London College of Fashion&#8217;s web colour scheme from pink to black. I&#8217;m awaiting either a storm of protest, or a standing ovation &#8211; or probably a bit of both. This &#8230; <a href="http://www.strangerpixel.com/2010/12/lcf-back-to-black/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Last night I took the radical step of transforming the London College of Fashion&#8217;s web colour scheme from pink to black. I&#8217;m awaiting either a storm of protest, or a standing ovation &#8211; or probably a bit of both. This is what happened.</p>
<p><strong>Pink</strong></p>
<p>LCF&#8217;s online colour was pink since before I arrived in 2006. It had its place in the 6-way <a href="http://www.arts.ac.uk/index.htm">University of the Arts London</a> colour spectrum &#8211; alongside blue, red, gold, green, orange, and the base colour, a slate blue-grey.</p>
<div id="attachment_612" class="wp-caption alignnone" style="width: 638px"><img class="size-large wp-image-612" title="Screen shot 2010-12-01 at 08.48.51" src="http://www.strangerpixel.com/blog/wp-content/uploads/2010/12/Screen-shot-2010-12-01-at-08.48.51-628x577.png" alt="" width="628" height="577" /><p class="wp-caption-text">Pink version</p></div>
<p>Truth be told, I never personally disliked the pink &#8211; it worked better than some other College colours in providing contrast against the base colour. However, it seemed that many people here didn&#8217;t like the pink. They felt it was dated (since we had long ago abandoned pink in our offline publications), and no longer represented the LCF brand. Occasional grumbles found focus at an afternoon meeting in early November &#8211; so I did a quick on-the-spot mock-up in Firebug, and hey presto, people loved it.</p>
<p>More detailed samples followed. We experimented &#8211; in fact we&#8217;re still experimenting &#8211; with which tints to use as highlight and rollover colours. But the &#8216;key stakeholders&#8217; were on board with party streamers and paper hats, so <a href="http://www.fashion.arts.ac.uk/">we went for it</a>.</p>
<p><strong>Black</strong></p>
<div id="attachment_616" class="wp-caption alignnone" style="width: 638px"><img class="size-large wp-image-616" title="Screen shot 2010-12-01 at 08.48.57" src="http://www.strangerpixel.com/blog/wp-content/uploads/2010/12/Screen-shot-2010-12-01-at-08.48.57-628x577.png" alt="" width="628" height="577" /><p class="wp-caption-text">Black version</p></div>
<p>So far the response on Twitter is 3:2 against the switch. Clearly we need more data &#8211; please <a href="http://www.twitter.com/LCFLondon">@LCFLondon</a> your thoughts.</p>
<p><strong>Update @ 22 Dec 2010</strong></p>
<p>So&#8230; as you can see the LCF website is no longer black. Despite a lot of support within the College, the black scheme was thought by certain members of the central University communications team to be too out of keeping with the existing brand identity. Our response was that, if we couldn&#8217;t develop our design any further, we were better off reverting to the original.</p>
<p>Hopefully at some point in the future we will be able to assert our own College brand identity independently of the University&#8217;s federal structure. However, this will require a culture shift throughout the organisation and probably a reappraisal of the entire website architecture.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2010/12/lcf-back-to-black/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Social Network: responding to network downtime</title>
		<link>http://www.strangerpixel.com/2010/10/the-social-network-responding-to-network-downtime/</link>
		<comments>http://www.strangerpixel.com/2010/10/the-social-network-responding-to-network-downtime/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 14:27:33 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/?p=540</guid>
		<description><![CDATA[I watched The Social Network last night. It&#8217;s an excellent movie &#8211; but one scene in particular struck a chord. Mark Zuckerberg launches campus hot-or-not site facemash.com, and within hours brings down the entire Harvard network. The stated overload traffic &#8230; <a href="http://www.strangerpixel.com/2010/10/the-social-network-responding-to-network-downtime/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I watched The Social Network last night. It&#8217;s an excellent movie &#8211; but one scene in particular struck a chord.</p>
<p><a href="http://www.strangerpixel.com/blog/wp-content/uploads/2010/10/the-social-network-20100901014225607_640w.jpg"><img class="alignnone size-medium wp-image-547" title="the-social-network-20100901014225607_640w" src="http://www.strangerpixel.com/blog/wp-content/uploads/2010/10/the-social-network-20100901014225607_640w-628x393.jpg" alt="" width="550" height="344" /></a></p>
<p>Mark Zuckerberg launches campus hot-or-not site facemash.com, and within hours brings down the entire Harvard network. The stated overload traffic &#8211; 22,000 pageviews &#8211; should not have been an issue, <a href="http://blogs.law.harvard.edu/philg/2010/10/05/social-network-the-movie/">according to some tech observers</a> - but that&#8217;s not the funny part.</p>
<p>In the movie, as soon as the network is down, we cut to what is presumably the Harvard data centre. I think I remember seeing banks of flashing control panels, possibly even a semi-transparent campus map with red LEDs in it signifying network traffic spikes &#8211; similar to what you might see in Bond movies or The Hunt for Red October.</p>
<p>At 4.30am, a nerd in the data centre responds to the emergency network blackout by calling either his boss or possibly the head honcho of the university (Chancellor or Principal or something). He actually wakes him up; this is a Code 10 (to use a Bourne-ism) &#8211; a severe issue demanding immediate attention.</p>
<p>24-hour network monitoring may be a reality for top-tier Ivy League institutions &#8211; but it sure ain&#8217;t at University of the Arts London. If UAL had a comparable hacker incident late at night, no-one would notice for several hours. Possibly after morning coffee someone might try and check their emails and notice something amiss.</p>
<p>Do UK universities generally have rock-solid networks with sprightly nerds monitoring traffic around the clock? Or is the reality a bit closer to this:</p>
<p><object width="550" height="438"><param name="movie" value="http://www.youtube.com/v/nnXFyGD2FRw?fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nnXFyGD2FRw?fs=1" type="application/x-shockwave-flash" width="550" height="438" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2010/10/the-social-network-responding-to-network-downtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix cd: Too many arguments</title>
		<link>http://www.strangerpixel.com/2010/08/how-to-fix-cd-too-many-arguments/</link>
		<comments>http://www.strangerpixel.com/2010/08/how-to-fix-cd-too-many-arguments/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 13:00:38 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/?p=412</guid>
		<description><![CDATA[Probably a really easy one &#8211; but, being a command-line newbie, I had to guess this after several fruitless Google searches. When using Terminal to navigate your folder system, you will occasionally run into a folder with a space in &#8230; <a href="http://www.strangerpixel.com/2010/08/how-to-fix-cd-too-many-arguments/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Probably a really easy one &#8211; but, being a command-line newbie, I had to guess this after several fruitless Google searches.</p>
<p>When using Terminal to navigate your folder system, you will occasionally run into a folder with a space in its name, like /Application Support. Trying to access a folder, e.g.:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>Alastair-Mucklows-Computer:~<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #7a0874; font-weight: bold;">&#93;</span> alastair<span style="color: #000000; font-weight: bold;">%</span> <span style="color: #7a0874; font-weight: bold;">cd</span> Application Support</pre></div></div>

<p>will trigger the error:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span>: Too many arguments.</pre></div></div>

<p>The solution is to wrap the folder name in quotes, like so:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>Alastair-Mucklows-Computer:~<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #7a0874; font-weight: bold;">&#93;</span> alastair<span style="color: #000000; font-weight: bold;">%</span> <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #ff0000;">&quot;Application Support&quot;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2010/08/how-to-fix-cd-too-many-arguments/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>Curzon Cinemas website redesign</title>
		<link>http://www.strangerpixel.com/2009/10/curzon-cinemas-website-redesign/</link>
		<comments>http://www.strangerpixel.com/2009/10/curzon-cinemas-website-redesign/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 16:29:08 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Film]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[curzon]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/?p=322</guid>
		<description><![CDATA[A couple of years ago I blogged about the Curzon Cinemas website, which I criticised for its unnecessary use of Flash. Well, I&#8217;m not sure how long ago it happened, but Curzon got a redesign, and it looks great. Classy, &#8230; <a href="http://www.strangerpixel.com/2009/10/curzon-cinemas-website-redesign/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A couple of years ago I <a href="http://www.strangerpixel.com/2007/11/curzon-why-flash/">blogged</a> about the <a href="http://www.curzoncinemas.com/">Curzon Cinemas website</a>, which I criticised for its unnecessary use of Flash. Well, I&#8217;m not sure how long ago it happened, but Curzon got a redesign, and it looks great.</p>
<div id="attachment_323" class="wp-caption alignnone" style="width: 480px"><a href="http://www.strangerpixel.com/blog/wp-content/uploads/2009/10/new-curzon.jpg"><img class="size-medium wp-image-323" title="new-curzon" src="http://www.strangerpixel.com/blog/wp-content/uploads/2009/10/new-curzon-470x323.jpg" alt="New look Curzon Cinemas website." width="470" height="323" /></a><p class="wp-caption-text">New look Curzon Cinemas website.</p></div>
<ul>
<li>Classy, unfussy typography and black and white core styling</li>
<li>Nice colour-coding for the 5 different cinemas</li>
<li>Nice, logical 3-column layout: listings on the left, description and video in the middle, stuff to catch your eye in the far right</li>
<li>Cufón custom font replacement</li>
<li>Stacks of javascript for Flash-like fade effects, AJAX-loading and showing/hiding elements</li>
</ul>
<p>I also love the fact that each new release has a trailer embedded in the page. Excellent stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2009/10/curzon-cinemas-website-redesign/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Politics in the Room</title>
		<link>http://www.strangerpixel.com/2009/03/the-politics-in-the-room/</link>
		<comments>http://www.strangerpixel.com/2009/03/the-politics-in-the-room/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 17:11:02 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[artist]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Film]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/blog/?p=194</guid>
		<description><![CDATA[This week saw the launch of The Politics in the Room, a video website presenting a collaborative project by members of the Lux Associate Artists&#8217; Programme. A full project write-up will follow, but for now you can read some background &#8230; <a href="http://www.strangerpixel.com/2009/03/the-politics-in-the-room/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-198" title="politics_grab" src="http://www.strangerpixel.com/blog/wp-content/uploads/2009/03/politics_grab-469x370.jpg" alt="politics_grab" width="469" height="370" /></p>
<p>This week saw the launch of <a href="http://www.thepoliticsintheroom.org/">The Politics in the Room</a>, a video website presenting a collaborative project by members of the <a href="http://flamin.filmlondon.org.uk/news_details.asp?NewsID=1431">Lux Associate Artists&#8217; Programme</a>. A full project write-up will follow, but for now you can read some background info on the <a href="http://www.thepoliticsintheroom.org/credits.html">credits page</a>, then browse the latest films.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2009/03/the-politics-in-the-room/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Charlie Campbell Photography</title>
		<link>http://www.strangerpixel.com/2009/02/charlie-campbell-photography/</link>
		<comments>http://www.strangerpixel.com/2009/02/charlie-campbell-photography/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 18:53:29 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/blog/?p=186</guid>
		<description><![CDATA[I&#8217;m very pleased to announce the launch of www.charliecampbell.co.uk, a portfolio website for my photographer friend Charlie Campbell. Charlie and I started the project back in October, and have worked together to create a minimal website design to showcase her &#8230; <a href="http://www.strangerpixel.com/2009/02/charlie-campbell-photography/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-187" title="charlie" src="http://www.strangerpixel.com/blog/wp-content/uploads/2009/02/charlie.jpg" alt="charlie" width="470" height="355" /></p>
<p>I&#8217;m very pleased to announce the launch of <a href="http://www.charliecampbell.co.uk/">www.charliecampbell.co.uk</a>, a portfolio website for my photographer friend Charlie Campbell.</p>
<p>Charlie and I started the project back in October, and have worked together to create a minimal website design to showcase her collection of portraits, personal photography and documentary work. The site looks simple, but there&#8217;s a fair bit of complexity under the hood.</p>
<ul>
<li><a href="http://www.strangerpixel.com/projects/charlie-campbell-photography/">View full project outline</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2009/02/charlie-campbell-photography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smarter / shorter working</title>
		<link>http://www.strangerpixel.com/2008/10/smarter-shorter-working/</link>
		<comments>http://www.strangerpixel.com/2008/10/smarter-shorter-working/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 16:31:04 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[37signals]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[guru]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://www.strangerpixel.com/blog/?p=102</guid>
		<description><![CDATA[I really dig those business / tech / web / software gurus at 37signals. I like their products (I use Backpack and Basecamp daily) and I like their blog (Signal vs Noise is one of my favourite RSS subs). About three &#8230; <a href="http://www.strangerpixel.com/2008/10/smarter-shorter-working/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I really dig those business / tech / web / software gurus at <a href="http://www.37signals.com/">37signals</a>. I like their products (I use <a href="http://www.backpackit.com/?source=37s+home">Backpack</a> and <a href="http://www.basecamphq.com/?source=37s+home">Basecamp</a> daily) and I like their <a href="http://www.37signals.com/svn/">blog</a> (Signal vs Noise is one of my favourite RSS subs).</p>
<p>About three months ago I embarked on one of 37signals&#8217; <a href="http://www.37signals.com/svn/posts/893-workplace-experiments">workplace experiments</a>: the 4-day work week. At <a href="http://www.fashion.arts.ac.uk">London College of Fashion</a>, I&#8217;m lucky enough to be able to take advantage of a flexible working scheme, whereby an employee can work his 40 weekly hours around the 5 available working days. I&#8217;ve been working 4-day weeks, 10-hour days, from 8.30am to 6.30pm.</p>
<p>It&#8217;s awesome, because it means:</p>
<ul>
<li>Your work becomes something you knuckle down to for a 4-day burst. You can approach it as a block of time and separate it from your 3 days off, and you start to think of your job less as something that basically dominates your life, and more as a temporary activity that you&#8217;re going to focus on and get satisfaction from. </li>
<li>Long weekends. Sundays are so much more spacious with a free Monday to follow; alternatively, they can be truly guilt-free if you used your Friday for domestic admin. 4-day weekend trips now don&#8217;t require taking annual leave.</li>
<li>More time for freelance web projects &#8211; this may seem self-defeating if it means I&#8217;m doing more work, but really it&#8217;s about the ratio of focussed, proactive working vs wasted, bored time &#8216;at work&#8217;.</li>
<li>More time for biking.</li>
</ul>
<p>Well, great, but from LCF&#8217;s point of view, am I getting as much done? Yes, here&#8217;s why:</p>
<ul>
<li>Longer days mean more hours to really get your teeth into a project. My most productive work arises not from grazing on different bits of tasks but from focussing on a single task exclusively until completion.</li>
<li>I&#8217;m on average fresher and more energised (or at least more committed) during 4 days than I am during 5. I can see the carrot of the weekend dangling clearer than the 5-dayers, I&#8217;m incentivised. </li>
<li>I get early nights during the work part of my week and save parties for the weekend &#8211; hey, I&#8217;ve got the time! </li>
</ul>
<p>Jason Fried makes a <a href="http://www.37signals.com/svn/posts/1209-forbes-misses-the-point-of-the-4-day-work-week">useful point</a> though &#8211; that by adopting this schedule you&#8217;re not necessarily talking about cramming as much work into a shorter time. In fact, you&#8217;re looking for <em>better</em>, <em>smarter</em>, but <em>shorter</em> working.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangerpixel.com/2008/10/smarter-shorter-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

