<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">

    <channel>
    
    <title>Simon Clayson</title>
    <link>http://www.simonclayson.co.uk/</link>
    <description>Shoes and more</description>
    <dc:language>en</dc:language>
    <dc:creator>Simon Clayson</dc:creator>
    <dc:rights>Copyright 2009</dc:rights>
    <dc:date>2009-02-26T19:57:00+00:00</dc:date>
    <admin:generatorAgent rdf:resource="http://www.pmachine.com/" />
    


	<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/SimonClaysonDeluxe-Combined" type="application/rss+xml" /><item>
      <title>Feed IE 6 with a basic stylesheet</title>
      <link>http://www.simonclayson.co.uk/reportage/ie_6_text_only/</link>
      <guid>http://www.simonclayson.co.uk/reportage/ie_6_text_only/#When:10:47:00Z</guid>
      
      <content:encoded><![CDATA[<p>Making compromises for Internet Explorer 6 with or without <a href="http://www.quirksmode.org/css/condcom.html" title="CSS - Conditional comments">Conditional Comments</a> in most situations is fine when it comes to a handful of rounded corners and some transparent PNGs. The user will get a site design that looks pretty much as intended, however, it will be a watered down version of the beauty intended (Andy Clarke has put <a href="http://forabeautifulweb.com/blog/about/five_css_design_browser_differences_i_can_live_with/">together a great list</a>) of acceptable differences.</p> 

<p>Whilst we can target IE 6 with Conditional Comments, this approach requires the main CSS to be over-ridden with different values, but what if we do want to start from scratch with IE 6?</p>

<p>Recently discussed at Rissington HQ it was decided for some sites, we didn't want to really support IE 6 and with <a href="http://superfluousbanter.org/archives/2008/09/the-final-word-on-ie6/">some</a> <a href="http://37signals.blogs.com/products/2008/07/basecamp-phasin.html">people</a> making a <a href="http://iedeathmarch.org/">concerted effort to ditch IE 6 support</a>, we would still like IE 6 users to see "something" but not a mess either. Instead of supplying the fancy-dan CSS, it would be ideal to just supply a basic text version, such as the basic style we already apply to IE 5, Netscape etc.</p>

<p>We have been able to hide styles from older browsers such as IE 4 and Netscape using the <code>@import</code> declaration (and IE 5 using the filter <code>/**/</code>), but this won't work for IE6 and above. Digging around in the <a href="http://macromates.com/">Textmate</a> HTML bundle, I accidentally stumbled upon a Conditional Comment basically saying, <em>"if you're not IE, show this"</em>... Ah ha!</p>

<p>So very quickly here's the score. At the moment we can link to our external CSS using this code and as IE 5 can't understand the <code>@import</code> bit, it just gives up:</p>

<pre>
<code>
&lt;link rel=&quot;stylesheet&quot; href=&quot;textonly.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;style type=&quot;text/css&quot;&gt;@import/**/&quot;my_gorgeous_layout.css&quot;;&lt;/style&gt;
</code>
</pre>

<p>Using the <code>[if !IE]</code> Conditional Comment however, we can just feed old Microsoft browsers one style and more modern browsers another. Like this:</p>

<pre>
<code>
&lt;!--[if !IE]&gt;&lt;!--&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;my_gorgeous_layout.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;!-- &lt;![endif]--&gt;

&lt;!--[if gte IE 7]&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;my_gorgeous_layout.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;![endif]--&gt;

&lt;!--[if lte IE 6]&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;textonly.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;![endif]--&gt;
</code>
</pre>

<p>I've tested the basics of this approach and it works well. If anyone tries has some success on a future or current site, please let me know.</p>

UPDATE: Dan Cederholm has <a href="http://www.simplebits.com/notebook/2009/02/13/iegone.html" title="You're off to visit Simplebits">published an article on how to deal with IE6</a> and some great comments. Apologies to those whose comments were closed off here. Spam Spam Spam...
 - ]]></content:encoded>
      <dc:subject>Reportage</dc:subject>
      <dc:date>2008-09-24T10:47:00+00:00</dc:date>
    </item>



	<item>
      <title>Some new work in the portfolio</title>
      <link>http://www.simonclayson.co.uk/reportage/some_new_work_in_the_portfolio/</link>
      <guid>http://www.simonclayson.co.uk/reportage/some_new_work_in_the_portfolio/#When:06:01:00Z</guid>
      
      <content:encoded><![CDATA[<p>I&#8217;m breaking back into the news pages to <a href="http://www.simonclayson.co.uk/portfolio/denna_jones_for_modus/">highlight a new piece of work</a> I did for <a href="http://dennajones.com/">Denna Jones</a>. The same Denna Jones, whose site by <a href="http://jontangerine.com/">Jon Tan</a> (thanks Jon, by the way) and <a href="http://dotjay.co.uk/">Jon Gibbins</a> should be an inspiration to all.</p>

<p>It all went well and we&#8217;re all <a href="http://www.simonclayson.co.uk/portfolio/denna_jones_for_modus/">pleased with the result</a>. And I got to use some Trade Gothic.
</p> - ]]></content:encoded>
      <dc:subject>Reportage</dc:subject>
      <dc:date>2008-08-29T06:01:00+00:00</dc:date>
    </item>



	<item>
      <title>Constant state of change</title>
      <link>http://www.simonclayson.co.uk/reportage/constant_state_of_change/</link>
      <guid>http://www.simonclayson.co.uk/reportage/constant_state_of_change/#When:13:51:00Z</guid>
      
      <content:encoded><![CDATA[<p>This section of my site is taking a back seat. It&#8217;s going to stay alive, but just away from public view for now and be experimented with&#8230;
</p> - ]]></content:encoded>
      <dc:subject>Reportage</dc:subject>
      <dc:date>2008-07-16T13:51:00+00:00</dc:date>
    </item>



	<item>
      <title>One lost shoe</title>
      <link>http://www.simonclayson.co.uk/reportage/one_lost_shoe/</link>
      <guid>http://www.simonclayson.co.uk/reportage/one_lost_shoe/#When:13:34:00Z</guid>
      
      <content:encoded><![CDATA[<a href="http://www.flickr.com/photos/claypole/2535681123/" title="Can you see what it is yet? by Simon Clayson, on Flickr"><img src="http://farm3.static.flickr.com/2407/2535681123_a411b7fa1f_o.png" width="500" height="534" alt="Can you see what it is yet?" /></a>

<p>Building upon the <a href="http://www.flickr.com/photos/claypole/sets/72157594499318886/">spook shoe collection</a>, it has been suggested many times that this should be a <a href="http://flickr.com/groups/onelostshoe/" title="Flickr: One lost shoe">public Flickr group</a>.</p>

<p>And now it is. And anyone can join if you have a relevant entry that abides by the rules:</p>

<ul><li>Shoe must genuinely be lost</li>
<li>Other shoe must be nowhere to be seen</li>
<li>Location must be accurately located on the map so an accurate picture can be built up</li></ul>
	
<p><a href="http://flickr.com/groups/onelostshoe/" title="Flickr: One lost shoe">One lost shoe</a></p> - ]]></content:encoded>
      <dc:subject>Reportage, General, Internet</dc:subject>
      <dc:date>2008-05-30T13:34:00+00:00</dc:date>
    </item>



	<item>
      <title>11 things I would like the iPhone to have…</title>
      <link>http://www.simonclayson.co.uk/reportage/11_things_i_would_like_the_iphone_to_have/</link>
      <guid>http://www.simonclayson.co.uk/reportage/11_things_i_would_like_the_iphone_to_have/#When:15:57:00Z</guid>
      
      <content:encoded><![CDATA[<p>...by the end of June or not long after. With iPhone/iPod touch apps round the corner, here's a quick list I've been meaning to publish for a while. As well as <a href="http://www.flickr.com/photos/maxvoltar/2456149667/" title="BrightKite iPhone application on Flickr - Photo Sharing!">this sort of thing from Mr Van Damme</a>.</p>

<ul><li>Things, <a href="http://www.culturedcode.com/things/" title="Things - task management on the Mac">it is promised</a></li>
<li>Proper Flickr client that can upload to said site from the photo library</li>
<li>Something to download pics with the Apple Camera Connector and add to the photo library</li>
<li>Twitter client</li>
<li>Light metering</li>
<li>Proper RSS Reader from the NetNewsWire people</li>
<li>Full on GPS app, that will read a from Bluetooth GPS module. (I don't want to hear about battery life)</li>
<li>Texteditor</li>
<li>FTP client</li>
<li>Unit Converter</li>
<li>Weather app of some use, in fact, <a href="http://www.metoffice.gov.uk/weather/uk/se/brize_norton_forecast_weather.html">all the info from the met-office</a> will do</li></ul> - ]]></content:encoded>
      <dc:subject>Reportage, Mac</dc:subject>
      <dc:date>2008-05-01T15:57:00+00:00</dc:date>
    </item>



	<item>
      <title>Emergency ID wallpaper for the iPhone</title>
      <link>http://www.simonclayson.co.uk/reportage/emergency_id_wallpaper_for_the_iphone/</link>
      <guid>http://www.simonclayson.co.uk/reportage/emergency_id_wallpaper_for_the_iphone/#When:08:12:01Z</guid>
      
      <content:encoded><![CDATA[<p>If you are out cycling, running or walking on your own, it&#8217;s quite possible you won&#8217;t be carrying any ID. Although normally completely oblivious to danger, there is always a small chance of being involved in an accident or even developing medical difficulties. Luckily I don&#8217;t have a condition that would mean I would carry some ID (ICE - In Case of Emergency appears to be an acronym in common usage also), so it&#8217;s about time I did.</p>

<p>This, I hope, is a quick and cheap way to place my identity and some contact information on my iPhone (which tends to go everywhere) wallpaper. This is so that the people identifying me will be saved a lot of hassle, because at present they wouldn&#8217;t have much to go on, but by activating the phone, they will have some basic information.</p>

<p>Below is a Photoshop template where you can add your own details, save as a flat file, and then transfer to your iPhone/iPod touch. I have a iPhoto library that just contains wallpapers that I sync via iTunes. You can then easily set the wallpaper.</p>

<p>If you want something more physical, particularly if you are a runner, then there are some good solutions out there. I particularly like <a href="http://www.coco.org.uk/index.php?p=cramtag" title="Help COCO get your CramTags">CRAMtags</a>, and there are plenty of options available from <a href="http://www.roadid.com/Common/default.aspx" title="Road ID®">Road ID</a>.</p>

<p>If anyone knows what the ideal information is to place on your ID, then please let me know.</p>

<p><a class="zip" href="http://www.simonclayson.co.uk/iphone_stuff/iphone_id_tag.zip" title="PSD contained within Zip Archive">Download Photoshop template - ZIP [2.2MB]</a></p>

<p><a class="download_file" href="http://www.simonclayson.co.uk/iphone_stuff/iphone_redphonebox.jpg">Just the red telephone box?</a>
</p> - ]]></content:encoded>
      <dc:subject>Reportage, Cycling, Mac</dc:subject>
      <dc:date>2008-04-27T08:12:01+00:00</dc:date>
    </item>



	<item>
      <title>The end of commenting</title>
      <link>http://www.simonclayson.co.uk/reportage/the_end_of_commenting/</link>
      <guid>http://www.simonclayson.co.uk/reportage/the_end_of_commenting/#When:16:48:00Z</guid>
      
      <content:encoded><![CDATA[<p>Comments on websites are sometimes great and generate some interesting stuff, but for sites like this they can also be a burden. After relentless amounts of comment spam, I&#8217;ve decided that I&#8217;m turning off comments and this will also be for all future entries. After months of contemplation, it&#8217;s not the right sort of site for comments either. If the likes of <a href="http://textism.com/">Textism</a>, <a href="http://daringfireball.net/">Daring Fireball</a> and <a href="http://www.thewashingmachinepost.net">The Washing Machine Post</a> don&#8217;t offer comments, maybe less of us should.
</p> - ]]></content:encoded>
      <dc:subject>Reportage</dc:subject>
      <dc:date>2008-04-20T16:48:00+00:00</dc:date>
    </item>



	<item>
      <title>Compressing bureaucracy experiment</title>
      <link>http://www.simonclayson.co.uk/reportage/compressing_bureaucracy_experiment/</link>
      <guid>http://www.simonclayson.co.uk/reportage/compressing_bureaucracy_experiment/#When:12:48:00Z</guid>
      
      <content:encoded><![CDATA[<p>The balance of producing work, and managing work is tricky. I seem to spending more and more time writing emails (and following up emails that have been tagged as spam), and following up bits and bobs in an incoherent manner via different channels. The problem is that it all gets bitty and time is lost <strong>actually doing stuff</strong> because these things are always there and always &#8220;on&#8221;. Interestingly, back in the day, the postman came quite early in the morning, you opened the post, done. Way back in the day the postman might come again at lunchtime. This was called a second post. </p>

<h3>Lack of productivity?</h3>

<p>It&#8217;s something we&#8217;ve talked about at <a href="http://therissingtonpodcast.co.uk/" title="The Rissington Podcast | Like Gardeners Question Time, but for geeks">Rissington HQ</a>, and before we know it, we&#8217;ve been on the phone, written a load of emails, made hot drinks, and all of a sudden it&#8217;s 11.45am. And produced no work, the stuff that puts bread on the table. I then get replies to stuff in the afternoon and act upon them. Repeat to fade.</p>

<p>So, I need more head down, full-on, distraction free, creative production time and I&#8217;m going to get strict (sort of). I&#8217;m not going to go down the <a href="http://carsonified.com/">Carsonified</a> or <a href="http://www.37signals.com/svn/posts/966-urgency-is-poisonous" title="Urgency is poisonous - (37signals)">37 Signals route to a four day week</a> (although this is on the cards at some point), I&#8217;m just going to have some <strong>office hours</strong>. So I&#8217;m only going be available on certain days of the week at certain hours.</p>

<h3>Already considered</h3>

<p>Yes, we can turn off the phone, and close email, Skype, Twitter etc but everyone would like answers there and then to their questions and &#8220;urgent&#8221; requests. I&#8217;m as <strong>GTDd</strong> and <strong>Inbox-Zeroed</strong> as much as I ever will be.</p><p> </p>

<h3>Office hours for starters:</h3>
<p><strong>Monday</strong>, <strong>Tuesday</strong> and <strong>Thursday</strong> mornings, <strong>9am - 11am</strong>.</p>

<p>I want to compress my bureaucracy. I want to do what I do best and enjoy it.</p> - ]]></content:encoded>
      <dc:subject>Reportage, General</dc:subject>
      <dc:date>2008-04-16T12:48:00+00:00</dc:date>
    </item>



	<item>
      <title>35mm</title>
      <link>http://www.simonclayson.co.uk/reportage/35mm/</link>
      <guid>http://www.simonclayson.co.uk/reportage/35mm/#When:18:50:00Z</guid>
      
      <content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/claypole/2330298351/" title="400 36 by Simon Clayson, on Flickr"><img src="http://farm3.static.flickr.com/2116/2330298351_7a09a68164.jpg" width="500" height="354" alt="400 36" /></a></p>

<p>Not that I&#8217;m jealous or anything, but today, I know one person who has taken delivery of a digital SLR and another who just ordered one. A month back, I bought a new battery, and last week I bought some film for my <b>Minolta X-300</b>. It&#8217;s not an exercise in nostalgia, because sometimes it pays to go back to basics, and in this case, treat each shot as a picture in itself rather than endlessly fiddling - because you can.</p>

<p>Hopefully I&#8217;ll have some results in a couple of weeks&#8230;
</p> - ]]></content:encoded>
      <dc:subject>Reportage</dc:subject>
      <dc:date>2008-03-19T18:50:00+00:00</dc:date>
    </item>



	<item>
      <title>Not in the bag</title>
      <link>http://www.simonclayson.co.uk/reportage/not_in_the_bag/</link>
      <guid>http://www.simonclayson.co.uk/reportage/not_in_the_bag/#When:18:17:00Z</guid>
      
      <content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/claypole/2251092652/" title="Cycling away from the sun by Simon Clayson, on Flickr"><img src="http://farm3.static.flickr.com/2394/2251092652_a779a69cef.jpg" width="500" height="350" alt="Cycling away from the sun" /></a></p>

<p>The cycling to work has been going well so far, and although not making the trip every day, I feel as though I&#8217;ve now got a proper routine. In February, riding to work, without wanting to sound like a martyr, can be a right pain in the backside. The weather is one thing (although of late it&#8217;s been really nice for Feb), but it&#8217;s the amount of baggage I seem to be carrying around that is noticeable. </p>

<p>I&#8217;ve two bags for my trips between Rissington HQ and home. The Rapha Fixed bag holds my MacBook and day to day stuff like glasses, phone and a 85W power supply because I&#8217;ve been too lazy/mean to buy a second. The second is the Altura Dryline panniers where I keep my many change of clothes, towel and packed lunch - when I remember to pick it up.</p>

<p>So I&#8217;ve two bags, but what really makes sense is to keep all the bike stuff away from these two bags. These apply to all year round really, so, these are what I consider to be the essentials that should go everywhere.</p>

<h3>1. Topeak mini pump</h3><p>
Had this a few years, but thankfully doesn&#8217;t get used too often. I swear by <a href="http://www.ribblecycles.co.uk/productdetail.asp?productcatalogue=CONTTYRF200" title="Ultra Gator Skin Folding Tyre - Ribble Cycles">Continental Ultra gator skins</a>.</p>

<h3>2. PRO pretend bottle</h3><p>
A recent edition. Basically a <a href="http://www.chainreactioncycles.com/Models.aspx?ModelID=16400">water bottle with a lid</a>. In here lives a spare tube and a quick lock. Good at the moment, but what will happen when I need 2 bottles?</p>

<h3>3. Topeak Mini Aero Wedge</h3><p>
I&#8217;m on my second <a href="http://www.topeak.com/t8/products/bags/aerowedgepacks.php" title=":: Topeak 2008  ::">one of these*</a> as, although clever, the velcro part that straps to the seatpost tended to come clear. It probably wasn&#8217;t helped by my saddle position but some hacking with a <a href="http://www.stanleytools.com/default.asp?CATEGORY=RETRACTABLE&amp;TYPE=PRODUCT&amp;PARTNUMBER=10-099&amp;SDesc=6%26%2334%3B+Classic+99%26%23174%3B+Retractable+Utility+Knife" title="Stanley Hand Tools">Stanley</a> through the main plastic shell means it&#8217;s probably better than new. This contains tyre levers and&#8230;</p>

<h3>4. Topeak Multi tool</h3><p>
If you&#8217;ve nothing like this, buy one now, and with the chain link extractor. Mine is a few years old now, but pretty much the same as <a href="http://crankbrothers.com/tools.php" title="+++ CrankBrothers - 2007 +++">this</a>.</p>

<h3>5. Basic and backup LED lights</h3><p>
Now the days are drawing out, these are more for being seen rather than seeing. Handy when gloomy and overcast.</p>

<h3>Bonus. Polar s710</h3><p>
Knowing your distance/time/work rate is important for smug value. Mine? Still working happily after 5 years, although a replacement battery is about to set me back £25. This seems rather high. Pondering.</p>

<p><span class="footnote_link">* Topeak clearly not going for the accessibility or SEO route with their site.</span>
</p> - ]]></content:encoded>
      <dc:subject>Reportage</dc:subject>
      <dc:date>2008-02-24T18:17:00+00:00</dc:date>
    </item>


    
    </channel>
</rss>
