<?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: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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Nick Cowie</title>
	
	<link>http://nickcowie.com</link>
	<description>Web standards, accessibility  and such like with a bias toward  Government web sites</description>
	<lastBuildDate>Sun, 08 Nov 2009 07:52:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/NickCowie" type="application/rss+xml" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>RGBa backgrounds in IE</title>
		<link>http://nickcowie.com/2009/rgba-backgrounds-in-ie/</link>
		<comments>http://nickcowie.com/2009/rgba-backgrounds-in-ie/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 04:54:41 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[css and html]]></category>
		<category><![CDATA[progressive enhancement]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[RGBA]]></category>

		<guid isPermaLink="false">http://nickcowie.com/?p=471</guid>
		<description><![CDATA[<p>RGBa is the new black, with support in most modern Safari 3, Firefox 3 and Opera 10, you can have semi transparent elements.  Only there is no support currently in IE for RGBa.</p>
<p>However, you can easily fake it for backgrounds of block elements in IE with 
<code>filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#aaRRBBGG', EndColorStr='#aaRRBBGG);</code> 
The filter gradient places a alpha channel colour gradient over the background. So as long the background is transparent, the start and end colours the same and the alpha (aa) channel a value greater than 0 (fully transparent) and FF (fully opaque), you get a block element in IE with a RGBa background. You can see an  example of <a href="http://nickcowie.com/proge/rgba-ie.html">RGBa in action in IE</a> &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>RGBa is the new black, with support in most modern Safari 3, Firefox 3 and Opera 10, you can have semi transparent elements.  Only there is no support currently in IE for RGBa.</p>
<p>However, you can easily fake it for backgrounds of block elements in IE with<br />
<code>filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#aaRRBBGG', EndColorStr='#aaRRBBGG);</code><br />
The filter gradient places a alpha channel colour gradient over the background. So as long the background is transparent, the start and end colours the same and the alpha (aa) channel a value greater than 0 (fully transparent) and FF (fully opaque), you get a block element in IE with a RGBa background. You can see an  example of <a href="http://nickcowie.com/proge/rgba-ie.html">RGBa in action in IE</a></p>
<p>The simplest way is including in your CSS<br />
<code>background: transparent ;<br />
background: rgba(255,0,0,0.5) ;<br />
filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#88ff0000', EndColorStr='#88ff0000'); </code></p>
<p>Which is clean and simple, even it does deliver you invalid CSS. There are two problems,  if a browser does not support RGBa and is not IE, (eg FF2) the block element background will be transparent. I do not think that is a major issue right now. There are a handful of browsers outside IE in use that do not support RGBa. My main concern is future proofing, the next major version of IE (the beta is due within a year) will support RGBa (as well as HTML5 and some CSS3 according to sources) and as usual will maintain backwards compatibility with earlier versions of IE. So you will get a semi transparent background colour overlaid with a semi transparent gradient.</p>
<p>The solution, is to provide a stylesheet to all browsers and an extra stylesheet to IE8 and below with <a href="http://nickcowie.com/2005/conditional-comments/">conditional comments</a>. So your CSS will have:<br />
<code>background: fallback color RGB or hex ;<br />
/* background colour for browsers that are not IE that do not understand RGBa */<br />
background: rgba(R,G,B,a) ;</code><br />
Your HTML will include (note don’t try and cut and paste from here as grab <a href="http://nickcowie.com/proge/ie8cc.txt">the text file</a> instead):<br />
<code>&lt;!--[if lt IE 8]&gt;<br />
&lt;link rel="stylesheet" type="text/css" href="/xtras/ieonly.css" media="screen" /&gt;<br />
&lt;![endif]--&gt;</code><br />
And ieonly.css file include:<br />
<code>background: transparent ;<br />
/* needed to clear the background colour */<br />
filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#88ff0000', EndColorStr='#88ff0000'); </code></p>
<p>If you don’t believe me and do not have IE6, here is <a href="http://nickcowie.com/proge/ie6rgba.png">the screenshot</a>. And I was not the first one to suggest this method for implementing RGBa in IE, <a href="http://www.hedgerwow.com/360/dhtml/rgba/demo.php">Hedger Wang</a> did some time ago, and even suggested using canvas to provide the transparent background to FF2. I only found his example while finalising this post.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NickCowie?a=KudlNK39_1o:vMyxxjmGAQU:XhI0_UKdTUU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=KudlNK39_1o:vMyxxjmGAQU:XhI0_UKdTUU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=KudlNK39_1o:vMyxxjmGAQU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=KudlNK39_1o:vMyxxjmGAQU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=KudlNK39_1o:vMyxxjmGAQU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=KudlNK39_1o:vMyxxjmGAQU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=KudlNK39_1o:vMyxxjmGAQU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=KudlNK39_1o:vMyxxjmGAQU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=KudlNK39_1o:vMyxxjmGAQU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NickCowie?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://nickcowie.com/2009/rgba-backgrounds-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why use CSS Zen Garden for CSS3 demo</title>
		<link>http://nickcowie.com/2009/why-use-css-zen-garden-for-css3-demo/</link>
		<comments>http://nickcowie.com/2009/why-use-css-zen-garden-for-css3-demo/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 05:18:29 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Just geek]]></category>
		<category><![CDATA[css and html]]></category>
		<category><![CDATA[presentations]]></category>
		<category><![CDATA[progressive enhancement]]></category>
		<category><![CDATA[css zen garden]]></category>
		<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://nickcowie.com/?p=461</guid>
		<description><![CDATA[<p>For those who have not seen my Edge of the Web <a href="http://nickcowie.com/eotw/">CSS3 demonstration</a> I used the <a href="http://csszengarden.com">CSS Zen Garden</a> HTML. Why, because I wanted to use somebody else's HTML, mainly because I wanted to show it works with any HTML and that most people would be familiar with the site.</p>
<p>I will not submit it, because Dave has not accepted any new submissions almost two year, my demo is far from the visual standard of most other design and I broke one <strong>major rule</strong> the CSS does not validate.</p>]]></description>
			<content:encoded><![CDATA[<p>For those who have not seen my Edge of the Web <a href="http://nickcowie.com/eotw/">CSS3 demonstration</a> I used the <a href="http://csszengarden.com">CSS Zen Garden</a> HTML. Why, because I wanted to use somebody else’s HTML, mainly because I wanted to show it works with any HTML and that most people would be familiar with the site.</p>
<p>I will not submit it, because Dave has not accepted any new submissions almost two year, my demo is far from the visual standard of most other design and I broke one <strong>major rule</strong> the CSS does not validate.</p>
<p>There are no hacks in the CSS just lots of browsers specific declarations like:</p>
<p><code>-moz-box-shadow: 5px 5px 7px rgba(0,0,0,0.66);</code></p>
<p>And even worse Microsoft specific declarations, which break the W3C rules for CSS</p>
<p><code>filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=5, OffY=5, Color='#AA666666', Positive='true');</code></p>
<p>As I said in my presentation, the important thing to know about validation, is why your code does not validate, if you know that, then validation is irrelevant.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NickCowie?a=BHdcV4dg4gU:RTyCjmwJzKI:XhI0_UKdTUU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=BHdcV4dg4gU:RTyCjmwJzKI:XhI0_UKdTUU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=BHdcV4dg4gU:RTyCjmwJzKI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=BHdcV4dg4gU:RTyCjmwJzKI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=BHdcV4dg4gU:RTyCjmwJzKI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=BHdcV4dg4gU:RTyCjmwJzKI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=BHdcV4dg4gU:RTyCjmwJzKI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=BHdcV4dg4gU:RTyCjmwJzKI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=BHdcV4dg4gU:RTyCjmwJzKI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NickCowie?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://nickcowie.com/2009/why-use-css-zen-garden-for-css3-demo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>CSS3 presentations at EOTW09 and WebJam11</title>
		<link>http://nickcowie.com/2009/css3-presentations-at-eotw09-and-webjam11/</link>
		<comments>http://nickcowie.com/2009/css3-presentations-at-eotw09-and-webjam11/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 14:57:44 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[conferences]]></category>
		<category><![CDATA[css and html]]></category>
		<category><![CDATA[presentations]]></category>
		<category><![CDATA[progressive enhancement]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[eotw09]]></category>
		<category><![CDATA[webjam11]]></category>

		<guid isPermaLink="false">http://nickcowie.com/?p=454</guid>
		<description><![CDATA[<p>I really enjoyed developing my presentation for Edge of the Web. The research and experimentation was a lot of fun.  Explore the <a href="http://nickcowie.com/eotw">demo using CSS Zen Garden HTML</a>  and seriously try it in IE6, the<a href="http://nickcowie.com/webjam11"> WebJam presentation</a> with some even more outrageous transitions needs Safari4 <del>or FF3.7</del> and a little  exploring with a mouse.</p>
<div style="width:425px;text-align:left" id="__ss_2408884"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/nickobec/progressive-enhancement-with-css3" title="Progressive enhancement with CSS3">Progressive enhancement with CSS3</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=css3-091103025215-phpapp01&#038;stripped_title=progressive-enhancement-with-css3" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=css3-091103025215-phpapp01&#038;stripped_title=progressive-enhancement-with-css3" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object><div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/nickobec">Nick Cowie</a>.</div></div>
<p>What I learnt is enough from probably a dozen blog posts, so hopefully I will be writing  lot in the next few weeks.</p>]]></description>
			<content:encoded><![CDATA[<p>I really enjoyed developing my presentation for Edge of the Web. The research and experimentation was a lot of fun.  Explore the <a href="http://nickcowie.com/eotw">demo using CSS Zen Garden HTML</a>  and seriously try it in IE6, the<a href="http://nickcowie.com/webjam11"> WebJam presentation</a> with some even more outrageous transitions needs Safari4 <del>or FF3.7</del> and a little  exploring with a mouse.</p>
<div style="width:425px;text-align:left" id="__ss_2408884"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/nickobec/progressive-enhancement-with-css3" title="Progressive enhancement with CSS3">Progressive enhancement with CSS3</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=css3-091103025215-phpapp01&#038;stripped_title=progressive-enhancement-with-css3" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=css3-091103025215-phpapp01&#038;stripped_title=progressive-enhancement-with-css3" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/nickobec">Nick Cowie</a>.</div>
</div>
<p>What I learnt is enough from probably a dozen blog posts, so hopefully I will be writing  lot in the next few weeks.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NickCowie?a=Dbke92HOu34:SD8aUnK0jUo:XhI0_UKdTUU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=Dbke92HOu34:SD8aUnK0jUo:XhI0_UKdTUU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=Dbke92HOu34:SD8aUnK0jUo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=Dbke92HOu34:SD8aUnK0jUo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=Dbke92HOu34:SD8aUnK0jUo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=Dbke92HOu34:SD8aUnK0jUo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=Dbke92HOu34:SD8aUnK0jUo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=Dbke92HOu34:SD8aUnK0jUo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=Dbke92HOu34:SD8aUnK0jUo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NickCowie?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://nickcowie.com/2009/css3-presentations-at-eotw09-and-webjam11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The League of Moveable Type</title>
		<link>http://nickcowie.com/2009/the-league-of-moveable-type/</link>
		<comments>http://nickcowie.com/2009/the-league-of-moveable-type/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 01:04:55 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[css and html]]></category>
		<category><![CDATA[progressive enhancement]]></category>
		<category><![CDATA[@font-fact]]></category>
		<category><![CDATA[fonts]]></category>

		<guid isPermaLink="false">http://nickcowie.com/?p=447</guid>
		<description><![CDATA[<p>For those who have not seen my Edge of the Web <a href="http://nickcowie.com/eotw/">CSS3 demonstration</a> I used the <a href="http://csszengarden.com">CSS Zen Garden</a> HTML. Why, because I wanted to use somebody else's HTML, mainly because I wanted to show it works with any HTML and that most people would be familiar with the site.</p>
<p>I will not submit it, because Dave has not accepted any new submissions almost two year, my demo is far from the visual standard of most other design and I broke one <strong>major rule</strong> the CSS does not validate.</p>]]></description>
			<content:encoded><![CDATA[<p>I just admire <a href='http://www.theleagueofmoveabletype.com/'>The League of Moveable Type</a>. While a lot of font foundries are still working on licensing issues with embedding fonts in PDFs. here a couple of font designers discovered <a href="http://nickcowie.com/2008/font-face/">@font-face</a> and went lets make the world a better place. By creating <a href='http://www.theleagueofmoveabletype.com/'>The League of Moveable Type</a>, convincing a few fellow font designers to join them in releasing fonts with an open source licence suitable for embedding with @font-face.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NickCowie?a=zLwFfI8aRNU:YyD7-4U0qYU:XhI0_UKdTUU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=zLwFfI8aRNU:YyD7-4U0qYU:XhI0_UKdTUU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=zLwFfI8aRNU:YyD7-4U0qYU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=zLwFfI8aRNU:YyD7-4U0qYU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=zLwFfI8aRNU:YyD7-4U0qYU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=zLwFfI8aRNU:YyD7-4U0qYU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=zLwFfI8aRNU:YyD7-4U0qYU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=zLwFfI8aRNU:YyD7-4U0qYU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=zLwFfI8aRNU:YyD7-4U0qYU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NickCowie?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://nickcowie.com/2009/the-league-of-moveable-type/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am on the Edge of the Web</title>
		<link>http://nickcowie.com/2009/i-am-on-the-edge-of-the-web/</link>
		<comments>http://nickcowie.com/2009/i-am-on-the-edge-of-the-web/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 00:58:07 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Just geek]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[css and html]]></category>
		<category><![CDATA[progressive enhancement]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[edge of the web]]></category>
		<category><![CDATA[eotw]]></category>
		<category><![CDATA[web conference]]></category>

		<guid isPermaLink="false">http://nickcowie.com/?p=444</guid>
		<description><![CDATA[<p>Well I am speaking at the Edge of the Web Conference in Perth in November. The title Progressive Enhancement with CSS: Or how I stopped worrying about IE6 and starting loving CSS3.</p>
<p>The aim is to show how you can use CSS2 and CSS3 to improve the experience of visitors using modern browsers, while not blocking access to those people still using older browsers like IE6 &#8230;</p> ]]></description>
			<content:encoded><![CDATA[<p>Well I am speaking at the Edge of the Web Conference in Perth in November. The title Progressive Enhancement with CSS: Or how I stopped worrying about IE6 and starting loving CSS3.</p>
<p>The aim is to show how you can use CSS2 and CSS3 to improve the experience of visitors using modern browsers, while not blocking access to those people still using older browsers like IE6.  I want to convince the audience, that you can build sites that do not have to look the same in all browsers.</p>
<p>I will be looking at what CSS2 and CSS3 you can safely implement now. The main provision it must not break IE6. It does not have to work in IE6, just have a safe fallback position.</p>
<p>The presentation is not aimed at people who read Surfin Safari, CSS3.info or similar sites and then go off an experiment with what they have been shown. That is what I do</p>
<p>I know I will be covering those I covered indepth before like <a href="http://mixedgrill.webindustry.asn.au/2008/opacity-vs-rgba-transparency-with-css">opacity/transparency</a> and &lt;a href=http://nickcowie.com/2008/font-face/”&gt;@font-face</a>. Are there any other CSS2 or CSS3 properties you would like to see me cover? Otherwise I might go all shock and awe with transitions ;-)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NickCowie?a=oEsU-3Uil2Y:L705m5M6Yn8:XhI0_UKdTUU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=oEsU-3Uil2Y:L705m5M6Yn8:XhI0_UKdTUU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=oEsU-3Uil2Y:L705m5M6Yn8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=oEsU-3Uil2Y:L705m5M6Yn8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=oEsU-3Uil2Y:L705m5M6Yn8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=oEsU-3Uil2Y:L705m5M6Yn8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=oEsU-3Uil2Y:L705m5M6Yn8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=oEsU-3Uil2Y:L705m5M6Yn8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=oEsU-3Uil2Y:L705m5M6Yn8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NickCowie?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://nickcowie.com/2009/i-am-on-the-edge-of-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cleaning up Word HTML</title>
		<link>http://nickcowie.com/2009/cleaning-up-word-html/</link>
		<comments>http://nickcowie.com/2009/cleaning-up-word-html/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 15:27:25 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[css and html]]></category>
		<category><![CDATA[clean]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[word html]]></category>

		<guid isPermaLink="false">http://nickcowie.com/?p=442</guid>
		<description><![CDATA[<p>If you are like me, on occasions you have people want to paste directly from Word into CMS or Wordpress. I was bemoaning the fact, that you either end up with Word HTML or lose all the formatting, when a colleague of mine, <a href="http://stevenmiles.com.au/">Steven Miles</a> suggest I use JavaScript to clean up the HTML and provide the some code.</p>
<p>So this is what I created to <a href="http://nickcowie.com/other/clean.html">clean up Word HTML</a>, you paste the HTML is to the editable div, hit the button and if you are using Internet Explorer the converted HTML is copied to your clipboard. So you can paste the clean HTML (note it is HTML code) straight into the CMS editor in HTML mode &#8230;</p>
<h3>*** does not currently work in IE8, I need to investigate further ***</h3>]]></description>
			<content:encoded><![CDATA[<p>If you are like me, on occasions you have people want to paste directly from Word into CMS or Wordpress. I was bemoaning the fact, that you either end up with Word HTML or lose all the formatting, when a colleague of mine, <a href="http://stevenmiles.com.au/">Steven Miles</a> suggest I use JavaScript to clean up the HTML and provide the some code.</p>
<p>So this is what I created to <a href="http://nickcowie.com/other/clean.html">clean up Word HTML</a>, you paste the HTML is to the editable div, hit the button and if you are using Internet Explorer the converted HTML is copied to your clipboard. So you can paste the clean HTML (note it is HTML code) straight into the CMS editor in HTML mode or WordPress.</p>
<p>Note, while you can use JavaScript to add to the clipboard with Internet Explorer, you need to use <a href="http://javascript.internet.com/forms/clipboard-copy.html">Flash to copy the contents</a> to the clipboard for other browsers. I have not do that yet. Mainly because Internet Explorer is the corporate browser and this was created for work.</p.</p>
<p>So have a look under the hood, see how it works, take the code  and modify it for your own use. It appears to be working for what I need, but maybe needed to be modified for your situation.</p>
<p><ins datetime="2009-10-05T04:41:53+00:00"><br />
<h3>*** does not currently work in IE8, I need to investigate further ***</h3>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NickCowie?a=bOcQUptDQ8o:nhqtWLB8Ta8:XhI0_UKdTUU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=bOcQUptDQ8o:nhqtWLB8Ta8:XhI0_UKdTUU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=bOcQUptDQ8o:nhqtWLB8Ta8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=bOcQUptDQ8o:nhqtWLB8Ta8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=bOcQUptDQ8o:nhqtWLB8Ta8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=bOcQUptDQ8o:nhqtWLB8Ta8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=bOcQUptDQ8o:nhqtWLB8Ta8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=bOcQUptDQ8o:nhqtWLB8Ta8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=bOcQUptDQ8o:nhqtWLB8Ta8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NickCowie?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://nickcowie.com/2009/cleaning-up-word-html/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>It is 2009 and some people still do not get accessibility</title>
		<link>http://nickcowie.com/2009/it-is-2009-and-some-people-still-do-not-get-accessibility/</link>
		<comments>http://nickcowie.com/2009/it-is-2009-and-some-people-still-do-not-get-accessibility/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 13:45:07 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[.gov sites]]></category>
		<category><![CDATA[accessibilty]]></category>
		<category><![CDATA[gov2au]]></category>

		<guid isPermaLink="false">http://nickcowie.com/?p=440</guid>
		<description><![CDATA[<p>At the Gov2.0 taskforce roadshow I ended up in conversation with a representative of one Department bemoaning the fact the Government will not give them extra money to make their websites WCAG 1.0 level 2 compliant.</p>]]></description>
			<content:encoded><![CDATA[<p>At the Gov2.0 taskforce roadshow I ended up in conversation with a representative of one Department bemoaning the fact the Government will not give them extra money to make their websites WCAG 1.0 level 2 compliant.</p>
<p>I said it does not cost more to build a WCAG 1.0 level 2 compliant website if your developer knows what they where doing. The two developers sitting either side of us ( one state government and one private enterprise) agreed, yet this person kept saying it costs more money.</p>
<p>The private enterprise developer then asked why don’t you include the requirement for WCAG 1.0 level 2 compliance in their website tender. The response it is too expensive. Asked if they ever tried, no it is too expensive was the response.</p>
<p>It is not 2000, when Maguire vs SOCOG decision was new and fresh and understanding of website accessibility amongst developers was limited. For the past 10 years, Australians website developers and Government Agencies have known the Disability Discrimination Act applies to websites. If you can not build a WCAG 1.0 level 2 compliant website in 2009, you do not need extra money to fix it, you need to look at website business practices and bring them into the 21st century.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NickCowie?a=4BJGzfyc-Jw:i2tDELFQy3o:XhI0_UKdTUU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=4BJGzfyc-Jw:i2tDELFQy3o:XhI0_UKdTUU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=4BJGzfyc-Jw:i2tDELFQy3o:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=4BJGzfyc-Jw:i2tDELFQy3o:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=4BJGzfyc-Jw:i2tDELFQy3o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=4BJGzfyc-Jw:i2tDELFQy3o:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=4BJGzfyc-Jw:i2tDELFQy3o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=4BJGzfyc-Jw:i2tDELFQy3o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=4BJGzfyc-Jw:i2tDELFQy3o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NickCowie?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://nickcowie.com/2009/it-is-2009-and-some-people-still-do-not-get-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter and the Tour de France</title>
		<link>http://nickcowie.com/2009/twitter-and-the-tour-de-france/</link>
		<comments>http://nickcowie.com/2009/twitter-and-the-tour-de-france/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 14:25:57 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Just geek]]></category>
		<category><![CDATA[social networks]]></category>
		<category><![CDATA[tdf]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://nickcowie.com/?p=433</guid>
		<description><![CDATA[<p>Twitter has changed the way I <em>watch</em> procycling races, it has provided me far more information, than I was getting before and it is all Lance Armstrong&#8217;s fault &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><img src="http://nickcowie.com/wp-content/uploads/2009/07/mickrogers.png" alt="mick rogers tweet stage 15" title="mick rogers tweet stage 15" width="640" height="420" style="float: right; margin: 0 0 1em 1em;" />
<p>I am fan of procycling an particularly the grand tour events, the Tour De France (TdF), Giro d’Italia and Vuelta a Espana. It all started years ago when I started cycling and SBS started showing selected stages. I quickly realised it is not the best cyclist that wins, but a combination of cyclist, team and strategy and I was hooked.</p>
<p>Back then, I did not look for information online while watching the TdF. I would always catch up the next morning with the results and preview that day’s stage. Over the years that has slowly changed. Last year, while watching the Tdf,  I used FriendFeed to talk to cycling fans and kept up to date with various websites. Even managed to find streaming video to catch stages before SBS started broadcasting and some stages of the Vuelta.</p>
<p>However, everything changed at the Tour Down Under when Lance Armstrong introduced Twitter a large number of top professional cyclists. Once <a href="http://tourdetwit.com/">you found them</a> you get a better understanding of what is happening and finding out the news quickly. For example Levi Leipheimer broken wrist and having to abandon the tour, the same way most news outlets did by a <a href="http://twitter.com/lancearmstrong">Lance Armstrong</a> tweet. Again today’s abandoment by Tom Boonen via a <a href="http://twitter.com/stevendejongh">Steven de Jongh</a> tweet.</p>
<p>In addition to riders, you have twittering team managers, mechanics and other personnel, cycling journalists as well as other cycling fans.  The big advantage of being in contact with other fans on twitter is you can find resources quickly, including streaming video, I watched every stage of the Critérium du Dauphiné Libéré and Giro this year, thanks to Twitter. When races did not have streaming video or audio, there was a twitterfeed of what was happening in the race.</p>
<h2>A few tips</h2>
<p>Search on <a href="http://twitter.com/#search?q=%23procycling">#procycling</a> hashtag, find the hashtag for the event, for the Tour de France it is <a href="http://twitter.com/#search?q=%23tdf">#tdf</a> and open a search window in tweetdeck to follow a race.</p>
<p>Follow <a href="http://twitter.com/steephill">Steephill</a> and <a href="http://twitter.com/cyclingfans">Cycling Fans</a> for the latest resources.</p>
<p>Go follow some <a href="http://tourdetwit.com/">procycling twitters</a> and you will often find that procyclists follow other procyclists.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NickCowie?a=1T6cPH0nM24:2-dnvyyaFEU:XhI0_UKdTUU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=1T6cPH0nM24:2-dnvyyaFEU:XhI0_UKdTUU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=1T6cPH0nM24:2-dnvyyaFEU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=1T6cPH0nM24:2-dnvyyaFEU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=1T6cPH0nM24:2-dnvyyaFEU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=1T6cPH0nM24:2-dnvyyaFEU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=1T6cPH0nM24:2-dnvyyaFEU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=1T6cPH0nM24:2-dnvyyaFEU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=1T6cPH0nM24:2-dnvyyaFEU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NickCowie?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://nickcowie.com/2009/twitter-and-the-tour-de-france/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Links from my BarCamp presentation Web 2.0 in WA Gov</title>
		<link>http://nickcowie.com/2009/links-from-my-barcamp-presentation-web-20-in-wa-gov/</link>
		<comments>http://nickcowie.com/2009/links-from-my-barcamp-presentation-web-20-in-wa-gov/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 05:54:08 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[.gov sites]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[.wa.gov.au]]></category>
		<category><![CDATA[bcperth09]]></category>
		<category><![CDATA[bcperth2009]]></category>
		<category><![CDATA[gov2.0]]></category>

		<guid isPermaLink="false">http://nickcowie.com/?p=429</guid>
		<description><![CDATA[My presentation was done with little preparation and no slides, but I used a number of sites as examples, so at VelvetSarah’s request, here are links to those sites.
State Premier's

John Brumby
Mike Rann
Colin Barnett

Blogs

Transport Security Blog what a Government blog should be

State Library of Western Australia blog

Facebook

School Leavers WA unfortunately their facebook page is not available [...]]]></description>
			<content:encoded><![CDATA[<p>My presentation was done with little preparation and no slides, but I used a number of sites as examples, so at <a href="http://www.velvet.id.au/">VelvetSarah</a>’s request, here are links to those sites.</p>
<h2>State Premier's</h2>
<ul>
<li><a href="http://twitter.com/vicpremier">John Brumby</a></li>
<li><a href="http://twitter.com/PremierMikeRann">Mike Rann</a></li>
<li><a href="http://www.premier.wa.gov.au/Pages/Default.aspx">Colin Barnett</a></li>
</ul>
<h2>Blogs</h2>
<ul>
<li><a href="http://www.tsa.gov/blog/">Transport Security Blog</a> what a Government blog should be</li>
<p></a></p>
<li><a href="http://slwa.wordpress.com/">State Library of Western Australia blog</a></li>
</ul>
<h2>Facebook</h2>
<ul>
<li><a href="http://www.leaverswa.com.au/default.aspx?cID=1">School Leavers WA</a> unfortunately their facebook page is not available now.</li>
</ul>
<h2>Twitter</h2>
<ul>
<li><a href="http://twitter.com/WestAustralia">Western Australia</a></li>
<li><a href="http://twitter.com/Transperth">TransPerth</a></li>
<li><a href="http://twitter.com/fpcwa">Forrest Products Commission</a></li>
</ul>
<h2>Others</h2>
<ul>
<li><a href="http://lafd.blogspot.com/">LA Fire Department</a></li>
<li><a href="http://www.ca7.uscourts.gov/wiki/index.php?title=Practitioner%27s_Handbook">7th District Court of Appeal Practitioner’d Handbook wiki</a></li>
<li><a href="http://en.wikipedia.org/wiki/Intellipedia">Intellipedia on Wikipedia</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NickCowie?a=XlzFLwP97Jc:o15sZjzt6UQ:XhI0_UKdTUU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=XlzFLwP97Jc:o15sZjzt6UQ:XhI0_UKdTUU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=XlzFLwP97Jc:o15sZjzt6UQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=XlzFLwP97Jc:o15sZjzt6UQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=XlzFLwP97Jc:o15sZjzt6UQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=XlzFLwP97Jc:o15sZjzt6UQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=XlzFLwP97Jc:o15sZjzt6UQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=XlzFLwP97Jc:o15sZjzt6UQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=XlzFLwP97Jc:o15sZjzt6UQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NickCowie?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://nickcowie.com/2009/links-from-my-barcamp-presentation-web-20-in-wa-gov/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crumpler Yee Ross Review</title>
		<link>http://nickcowie.com/2009/crumpler-yee-ross-review/</link>
		<comments>http://nickcowie.com/2009/crumpler-yee-ross-review/#comments</comments>
		<pubDate>Wed, 20 May 2009 12:30:51 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Just geek]]></category>
		<category><![CDATA[cycling]]></category>
		<category><![CDATA[crumpler]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://nickcowie.com/?p=420</guid>
		<description><![CDATA[<p>Then purely by accident I saw the Crumpler Yee Ross on the Crumpler web site, a Crumpler backpack that can be used as a hydration pack. So I went to my local Crumpler store, check it out and walked away after purchasing last year's model (more on that later) &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><img src="http://nickcowie.com/wp-content/uploads/2009/05/cr_backpack.jpg" alt="Crumpler Yee Ross Backpack" title="Crumpler Yee Ross Backpack" width="600" height="800" style="float:right; margin: 0 0 1.5em 1.5em;" /></p>
<p>I have been using an inexpensive no name backpack to carry the necessary baggage (work clothes but not shoes, cycling clothes for trip home, tools and spare tube) for the ride to work for the last couple of years, and it has done the job.</p>
<p>However, I start riding the recycled single speed to work and that did not have mounts for drinks bottle. One of the reason I bought that specific noname backpack was it could also be used as a hydration pack. So I tried to use it as a hydration pack, and it did not work for me. The tubing was in the wrong spot, the provided bladder pack was difficult to use, the mouthpiece leaked and my CamelBak 1.5l bladders did not fit the pack.</p>
<p>Then purely by accident I saw the Crumpler Yee Ross on the Crumpler web site, a Crumpler backpack that can be used as a hydration pack. So I went to my local Crumpler store, check it out and walked away after purchasing last year’s model (more on that later).</p>
<p>A few days later it was pressed into service as a hydration pack with a CamelBak 1.5l bladder and it performed exceptional well, the routing put the mouth piece in the right spot and the CamelBak 1.5l bladder did it’s job providing me hydration. It was also far more comfortable to ride in than the noname backpack. The weight was well distributed, the shoulder straps where in the right spot for me and did not dig in.</p>
<p>I  started using the Yee Ross as a regular backpack for all my other commutes and I am completely sold on it. The comfort factor has it.</p>
<h2>Pros</h2>
<ul>
<li>Comfortable, even with a moderate load.</li>
<li>Works as a hydration pack with a variety of bladders.</li>
<li>It is a Crumpler it will be durable.</li>
</ul>
<h2>Cons</h2>
<ul>
<li>Smaller than most backpacks, need to pack carefully.</li>
<li>Tight squeeze sliding a MacBook Pro in, not a problem with the Acer Aspire One though.</li>
<li>It is a Crumpler ;-)</li>
</ul>
<p>There is a difference between last year’s model which is made from thicker more durable material, has a waterproof pocket and wider belt straps than this year’s model which comes in more funky colours. So if you want one and I recommend last year’s model for durability and practically I would head into your local crumpler store now. I have owned mine for 8 weeks and I would highly recommend it.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/NickCowie?a=n1xA-AQFIJo:v5woiiVvw0U:XhI0_UKdTUU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=n1xA-AQFIJo:v5woiiVvw0U:XhI0_UKdTUU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=n1xA-AQFIJo:v5woiiVvw0U:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=n1xA-AQFIJo:v5woiiVvw0U:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=n1xA-AQFIJo:v5woiiVvw0U:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=n1xA-AQFIJo:v5woiiVvw0U:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=n1xA-AQFIJo:v5woiiVvw0U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/NickCowie?i=n1xA-AQFIJo:v5woiiVvw0U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/NickCowie?a=n1xA-AQFIJo:v5woiiVvw0U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/NickCowie?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://nickcowie.com/2009/crumpler-yee-ross-review/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
