<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>SuperFineShag</title>
	<link>http://superfineshag.org</link>
	<description>all things super fine</description>
	<pubDate>Tue, 20 May 2008 17:00:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>brechfa</title>
		<link>http://superfineshag.org/2008/05/20/brechfa/</link>
		<comments>http://superfineshag.org/2008/05/20/brechfa/#comments</comments>
		<pubDate>Tue, 20 May 2008 17:00:59 +0000</pubDate>
		<dc:creator>superfineshag</dc:creator>
		
		<category><![CDATA[biking]]></category>

	<!-- AutoMeta Start -->
	<category>brechfa</category>
	<category>snaps</category>
	<category>tasty</category>
	<category>weekend</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://superfineshag.org/2008/05/20/brechfa/</guid>
		<description><![CDATA[some tasty snaps of my weekend in brechfa
Here&#8217;s how not to fall off the log (i thought the ground was only a few feet away, but the mud was super deep - over the handle bars i went straight onto an unforgiving log)

Here&#8217;s how to bail stylishly

did it eventually&#8230;
and heres a couple of jumps:


]]></description>
			<content:encoded><![CDATA[<p>some tasty snaps of my weekend in brechfa<br />
Here&#8217;s how not to fall off the log (i thought the ground was only a few feet away, but the mud was super deep - over the handle bars i went straight onto an unforgiving log)<br />
<a href='http://superfineshag.org/2008/05/20/brechfa/bad-way-to-fall/' rel='attachment wp-att-114' title='bad way to fall'><img src='http://superfineshag.org/wp-content/uploads/2008/05/bigfall1.thumbnail.jpg' alt='bad way to fall' /></a></p>
<p>Here&#8217;s how to bail stylishly<br />
<a href='http://superfineshag.org/2008/05/20/brechfa/falling-off-the-log-1/' rel='attachment wp-att-111' title='falling off the log 1'><img src='http://superfineshag.org/wp-content/uploads/2008/05/alifall.thumbnail.jpg' alt='falling off the log 1' /></a></p>
<p>did it eventually&#8230;</p>
<p>and heres a couple of jumps:<br />
<a href='http://superfineshag.org/wp-content/uploads/2008/05/jump1.jpg' title='jump 1'><img src='http://superfineshag.org/wp-content/uploads/2008/05/jump1.thumbnail.jpg' alt='jump 1' /></a></p>
<p><a href='http://superfineshag.org/wp-content/uploads/2008/05/jump2.jpg' title='jump 2'><img src='http://superfineshag.org/wp-content/uploads/2008/05/jump2.thumbnail.jpg' alt='jump 2' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://superfineshag.org/2008/05/20/brechfa/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Debugging your CSS</title>
		<link>http://superfineshag.org/2008/03/20/debugging-your-css/</link>
		<comments>http://superfineshag.org/2008/03/20/debugging-your-css/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 10:28:14 +0000</pubDate>
		<dc:creator>superfineshag</dc:creator>
		
		<category><![CDATA[Blog]]></category>

	<!-- AutoMeta Start -->
	<category>unpractical</category>
	<category>browsers</category>
	<category>firefox</category>
	<category>debug</category>
	<category>advise</category>
	<category>quickly</category>
	<category>intel</category>
	<category>computers</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://superfineshag.org/2008/03/20/debugging-your-css/</guid>
		<description><![CDATA[How to debug your css quickly in all browsers&#8230;
First of all, buy lots of computers and load every browser in the sun on them. Or if like me you find this a little unpractical then buy an intel mac.
First of all i&#8217;d advise to get everything looking good on Firefox - it is more standard [...]]]></description>
			<content:encoded><![CDATA[<p>How to debug your css quickly in all browsers&#8230;<br />
First of all, buy lots of computers and load every browser in the sun on them. Or if like me you find this a little unpractical then buy an intel mac.</p>
<p>First of all i&#8217;d advise to get everything looking good on Firefox - it is more standard compliant than the rest and is a great starting point to getting your css sorted.</p>
<ul>
<li>Download Firebug: <a href="http://www.getfirebug.com/">http://www.getfirebug.com/</a>
<p>This is a great way to look at your CSS, and a lot more besides. It also allows you to edit your CSS (and html) right in the browser, allowing you to quickly try stuff out.</li>
<li>Install Parallels and a version of Windows. With Parallels you can have multiple installs of Windows, allowing you to install every version of IE (each one will need a new windows install i believe)</li>
<li>For IE download the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=e59c3964-672d-4511-bb3e-2d5e1db91038&#038;displaylang=en">IE Developer Toolbar</a>. This gives you much of the Firebug functionality within IE</li>
</ul>
<p>I always try and aim to solve any cross browser problems by finding a happy medium, rather than hacking about too much - this is often a bit of a nightmare when you want to change something later on, as you&#8217;ll have more CSS to change, and it increases the download size of your CSS. But here&#8217;s some hacks you can use to target IE (there are loads more, just google):</p>
<p>#css-id-tag {<br />
	padding: 7px 0 0 10px; /* for all other browsers */<br />
}<br />
* html #css-id-tag {<br />
	\padding: 7px 0 0 10px; /* for IE5 and IE6 in quirks mode */<br />
	p\adding: 9px 0 0 10px; /* for IE6 in standards mode */<br />
}</p>
<p>Here&#8217;s a method of targetting the other way round which can also be useful, this particular example is for forms:</p>
<p>#edit-submit {<br />
  height: 55px; /* For all browsers */<br />
  cursor: pointer; /* hand-shaped cursor */<br />
  cursor: hand; /* for IE 5.x */<br />
}<br />
form>#edit-submit { /* For non-IE browsers */<br />
  height: 0px;<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://superfineshag.org/2008/03/20/debugging-your-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>setting up a testing server on your mac (updated)</title>
		<link>http://superfineshag.org/2007/11/01/setting-up-a-testing-server-on-your-mac/</link>
		<comments>http://superfineshag.org/2007/11/01/setting-up-a-testing-server-on-your-mac/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 16:40:47 +0000</pubDate>
		<dc:creator>superfineshag</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<category><![CDATA[Tutorials]]></category>

	<!-- AutoMeta Start -->
	<category>building</category>
	<category>testing</category>
	<category>environment</category>
	<category>macbook</category>
	<category>busy</category>
	<category>sites</category>
	<category>drupal</category>
	<category>nice</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://superfineshag.org/2007/11/01/setting-up-a-testing-server-on-your-mac/</guid>
		<description><![CDATA[Well its been a long time since the last posts - but Ive been a busy boy. I&#8217;m currently building a few Drupal sites and have got myself a new MacBook to help with the process. Here&#8217;s a tip for building a nice testing environment on your machine.

Download and install MAMP, you can get it [...]]]></description>
			<content:encoded><![CDATA[<p>Well its been a long time since the last posts - but Ive been a busy boy. I&#8217;m currently building a few Drupal sites and have got myself a new MacBook to help with the process. Here&#8217;s a tip for building a nice testing environment on your machine.</p>
<ol>
<li>Download and install <a href="http://www.mamp.info/en/index.php">MAMP</a>, you can get it all working with the built in server if you like - but using MAMP makes lots of things much easier. You can switch between php 4 and 5 and upgrading your system will be simple as everything is contained in one directory. In addition everything starts up and shuts down by clicking a button (apache and MySQL).</li>
<li>I switched the default Apache root to my sites folder in my user directory - but this is really your preference, and i&#8217;m sure there are pros and cons here.</li>
<li>I changed the Apache port to 80 as this means I can view my files at localhost without the &#8220;:8888&#8243; suffix, this does of course mean you <strong>can&#8217;t</strong> use the built in apache as this will use the same port, and it also means you need to type in your password whenever starting MAMP.</li>
<li>Give your testing server a nice domain name like <em>sitename</em>.dev that is mapped to a specific site, rather than the whole Sites folder (or wherever you&#8217;ve chosen to put it). For leopard follow this tutorial: <a href="http://stringfoo.com/2007/11/07/mamp-setup-leopard/">Setting up a Web Server on Leopard (OS X 10.5) Using MAMP - A Step by Step Guide</a>. For pre-leopard follow this excellent tutorial <a href="http://www.jangro.com/a/2007/06/19/webdev-how-to-set-up-a-sandbox-server-in-os-x/">Webdev: How to Set Up a Sandbox Server in OS X</a>.</li>
<li>If you want to then test your server on a windows environment and you have Parallels installed then go to this post here on <a href="http://www.blazenewmedia.com/articles/howto-virtual-hosts-with-parallels-and-osx">Virtual Hosts with Parallels and OS X</a>.</li>
<p>Once all this is done you can startup your Apache server MySQL database and php all by clicking a button, you&#8217;ll be able to view your site on your local machine at <em>sitename</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superfineshag.org/2007/11/01/setting-up-a-testing-server-on-your-mac/feed/</wfw:commentRss>
		</item>
		<item>
		<title>running to avoid the tube in london</title>
		<link>http://superfineshag.org/2007/08/08/running-to-avoid-the-tube-in-london/</link>
		<comments>http://superfineshag.org/2007/08/08/running-to-avoid-the-tube-in-london/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 11:22:46 +0000</pubDate>
		<dc:creator>superfineshag</dc:creator>
		
		<category><![CDATA[Running]]></category>

	<!-- AutoMeta Start -->
	<category>bridge</category>
	<category>tube</category>
	<category>london</category>
	<category>overland</category>
	<category>forest</category>
	<category>hill</category>
	<category>journey</category>
	<category>minutes</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://superfineshag.org/2007/08/08/running-to-avoid-the-tube-in-london/</guid>
		<description><![CDATA[My journey to work goes like this:
overland train, Forest Hill to London Bridge - about 15 minutes
tube, London Bridge to Old Street - about 6 minutes
except that getting from the train to the tube take about 3-4 minutes walk, plus a wait for the tube - about 2-5 minutes, plus a 5 minute walk to [...]]]></description>
			<content:encoded><![CDATA[<p>My journey to work goes like this:<br />
overland train, Forest Hill to London Bridge - about 15 minutes<br />
tube, London Bridge to Old Street - about 6 minutes</p>
<p>except that getting from the train to the tube take about 3-4 minutes walk, plus a wait for the tube - about 2-5 minutes, plus a 5 minute walk to Leonard Street. I&#8217;ve never done the whole thing faster than 35 minutes and it&#8217;s often much longer as the tube is crap and hot.</p>
<p><a href='http://superfineshag.org/wp-content/uploads/2007/08/picture-10.png' title='running time &#038; pace'><img src='http://superfineshag.org/wp-content/uploads/2007/08/picture-10.thumbnail.png' alt='running time &#038; pace' align="left" /></a>So here&#8217;s my solution and its much more fun - run from London Bridge to Leonard street, its 1.55 miles and i can do it with a heavy backpack in about 13 minutes (i hope to improve on that - and normally not carry a heavy backpack). My new Nike + Ipod helps me improve - have a look at the images (by the way the Nike + Ipod doesn&#8217;t plot a map for you, i did that myself using their Google Maps API on their site). </p>
<p><a href='http://superfineshag.org/wp-content/uploads/2007/08/picture-11.png' title='Run map'><img src='http://superfineshag.org/wp-content/uploads/2007/08/picture-11.thumbnail.png' alt='Run map'  align="left" /></a>It did gauge my running distance to within 0.02 miles, which is small enough to be accounted for by inaccuracies in the mapping or just running round junctions, cars etc.</p>
<p>So now my total time is about 30 minutes including waiting about for the Forest Hill train which i didn&#8217;t include above, and I save at least £2-3 (offpeak/peak) per day by not buying a travelcard</p>
]]></content:encoded>
			<wfw:commentRss>http://superfineshag.org/2007/08/08/running-to-avoid-the-tube-in-london/feed/</wfw:commentRss>
		</item>
		<item>
		<title>nike + ipod with any shoe</title>
		<link>http://superfineshag.org/2007/08/06/nike-ipod/</link>
		<comments>http://superfineshag.org/2007/08/06/nike-ipod/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 12:49:17 +0000</pubDate>
		<dc:creator>superfineshag</dc:creator>
		
		<category><![CDATA[Running]]></category>

	<!-- AutoMeta Start -->
	<category>nike</category>
	<category>ipod</category>
	<category>recording</category>
	<category>runs</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://superfineshag.org/2007/08/06/nike-ipod/</guid>
		<description><![CDATA[Heres how to use the Nike + Ipod kit with any shoe. Cut a small hole in the tongue of your shoe and slip the sensor in  - works fine and costs nothing. Tongues are usually two pieces of material sewn together, by cutting a few stitches along the join you can make a [...]]]></description>
			<content:encoded><![CDATA[<p>Heres how to use the Nike + Ipod kit with any shoe. Cut a small hole in the tongue of your shoe and slip the sensor in  - works fine and costs nothing. Tongues are usually two pieces of material sewn together, by cutting a few stitches along the join you can make a hole big enough to fit in the sensor. Make sure you then stitch either side of this hole to prevent the tongue stitches from unraveling further. You can make this hole quite tight to ensure the sensor doesn&#8217;t fall out - or just push the sensor down a bit toward the toe so the laces hold it in.</p>
<p>Now go and run.</p>
]]></content:encoded>
			<wfw:commentRss>http://superfineshag.org/2007/08/06/nike-ipod/feed/</wfw:commentRss>
		</item>
		<item>
		<title>bottled water - what the &#8230;.</title>
		<link>http://superfineshag.org/2007/08/01/bottled-water-what-the/</link>
		<comments>http://superfineshag.org/2007/08/01/bottled-water-what-the/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 15:38:46 +0000</pubDate>
		<dc:creator>superfineshag</dc:creator>
		
		<category><![CDATA[Carbon]]></category>

	<!-- AutoMeta Start -->
	<category>bottled</category>
	<category>idea</category>
	<category>water</category>
	<category>mentioned</category>
	<category>wrong</category>
	<category>producing</category>
	<category>usefulness</category>
	<category>provokes</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://superfineshag.org/2007/08/01/bottled-water-what-the/</guid>
		<description><![CDATA[I&#8217;ve always been against the idea of drinking bottled water, though if you look at my artwork you&#8217;ll see i&#8217;m fascinated by the stuff (nothing wrong with a little duality here and there). But someone mentioned to me the carbon footprint the stuff produces compared to its usefulness and it provokes an important point.
Obviously there [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been against the idea of drinking bottled water, though if you look at my artwork you&#8217;ll see i&#8217;m fascinated by the stuff (nothing wrong with a little duality here and there). But someone mentioned to me the carbon footprint the stuff produces compared to its usefulness and it provokes an important point.</p>
<p>Obviously there is an idea where we completely avoid producing excess CO2, but its still just an ideal, so its worth considering the value of any activity that produces CO2 as well as the amount that activity produces. For instance a single person in a car driving to a gym is a fairly daft use energy (run/cycle to the gym and save energy and money while doubling the workout). But a single person in a car driving a donor organ to a hospital is clearly forgivable use of energy.</p>
<p>So lets look at drinks/foodstuffs and their relative value. Transporting water thousands of miles by road from the French alps to London, which contains almost identical, perfectly clean water is not only pointless, but an extremely frivolous waste of energy. You waste energy transferring the water, which is by volume a heavy substance and so therefore take a large amount of energy to transport it. You waste more energy by putting small units of water in individual containers. Most of these containers will be thrown away and not recycled.</p>
<p>We think twice about plastic bags in supermarkets, but if you drink bottled water you&#8217;re using much more plastic and way more energy. Have a look at these articles:<br />
<a href="http://www.commondreams.org/headlines06/0629-01.htm">http://www.commondreams.org/headlines06/0629-01.htm</a><br />
<a href="http://lighterfootstep.com/5-reasons-not-to-drink-bottled-water-2.html">http://lighterfootstep.com/5-reasons-not-to-drink-bottled-water-2.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://superfineshag.org/2007/08/01/bottled-water-what-the/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Actionscript 3.0</title>
		<link>http://superfineshag.org/2007/08/01/actionscript-30/</link>
		<comments>http://superfineshag.org/2007/08/01/actionscript-30/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 11:10:44 +0000</pubDate>
		<dc:creator>superfineshag</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Tutorials]]></category>

	<!-- AutoMeta Start -->
	<category>moment</category>
	<category>actionscript</category>
	<category>slightly</category>
	<category>uphill</category>
	<category>computers</category>
	<category>battle</category>
	<category>worth</category>
	<category>gradually</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://superfineshag.org/2007/08/01/actionscript-30/</guid>
		<description><![CDATA[I&#8217;m gradually trying to convert some flash files to actionscript 3.0, which is a slightly tortuous process, but it will be well worth it. Some Julian Opie animations i&#8217;m making at the moment are really heavy on the computers and i need to eek out every ounce of extra efficiency that i can.
Its a slightly [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m gradually trying to convert some flash files to actionscript 3.0, which is a slightly tortuous process, but it will be well worth it. Some Julian Opie animations i&#8217;m making at the moment are really heavy on the computers and i need to eek out every ounce of extra efficiency that i can.</p>
<p>Its a slightly uphill battle at the moment, but theres some great tutorials on the Adobe site, have a look here:<br />
<a href="http://www.adobe.com/devnet/flash/">http://www.adobe.com/devnet/flash/</a></p>
<p>If you love the Apple style reflections that they use all over the place then look no further than here (it will save you so much time):<br />
<a href="http://www.adobe.com/devnet/flash/articles/reflect_class_as3.html">http://www.adobe.com/devnet/flash/articles/reflect_class_as3.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://superfineshag.org/2007/08/01/actionscript-30/feed/</wfw:commentRss>
		</item>
		<item>
		<title>simplicity is king (today)</title>
		<link>http://superfineshag.org/2007/07/31/simplicity-is-king-today/</link>
		<comments>http://superfineshag.org/2007/07/31/simplicity-is-king-today/#comments</comments>
		<pubDate>Tue, 31 Jul 2007 11:53:10 +0000</pubDate>
		<dc:creator>superfineshag</dc:creator>
		
		<category><![CDATA[Blog]]></category>

	<!-- AutoMeta Start -->
	<category>simplicity</category>
	<category>announcement</category>
	<category>bombshells</category>
	<category>twitters</category>
	<category>simplified</category>
	<category>twittering</category>
	<category>spirit</category>
	<category>things</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://superfineshag.org/2007/07/31/simplicity-is-king-today/</guid>
		<description><![CDATA[in the spirit of simplicity this blog is now simple
mmm - well that&#8217;s not an astounding announcement, but i&#8217;ve simplified things and added stuff too. I&#8217;ll be twittering from now on for all little things and adding the bombshells in the main blog -> look right for the latest twitters.
At some point in the near [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://superfineshag.org/wp-content/uploads/2007/07/circle.jpg' alt='circle' align="left" />in the spirit of simplicity this blog is now simple</p>
<p>mmm - well that&#8217;s not an astounding announcement, but i&#8217;ve simplified things and added stuff too. I&#8217;ll be <a href="http://www.twitter.com/mcclymont">twittering</a> from now on for all little things and adding the bombshells in the main blog -> look right for the latest <a href="http://www.twitter.com/mcclymont">twitters</a>.</p>
<p>At some point in the near future the work page will be going the same way - its currently at <a href="http://www.alistairm.co.uk">alistairm.co.uk</a>, but things are set to change.</p>
]]></content:encoded>
			<wfw:commentRss>http://superfineshag.org/2007/07/31/simplicity-is-king-today/feed/</wfw:commentRss>
		</item>
		<item>
		<title>native surfboards</title>
		<link>http://superfineshag.org/2007/06/24/native-surfboards/</link>
		<comments>http://superfineshag.org/2007/06/24/native-surfboards/#comments</comments>
		<pubDate>Sun, 24 Jun 2007 21:26:33 +0000</pubDate>
		<dc:creator>superfineshag</dc:creator>
		
		<category><![CDATA[Surf]]></category>

	<!-- AutoMeta Start -->
	<category>board</category>
	<category>aluminum</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://superfineshag.org/2007/06/24/native-surfboards/</guid>
		<description><![CDATA[have a look at the Native Surfboards site here for a lots of surf info, i&#8217;ve seen this article about aluminium boards, and i want one now. If you lose it you can find it by radar, and now i&#8217;ve an excuse to buy radar too, sweet.
]]></description>
			<content:encoded><![CDATA[<p>have a look at the <a href="http://www.nativesurfboard.com/about-surfing.html">Native Surfboards site here</a> for a lots of surf info, i&#8217;ve seen this article about <a href="http://www.nativesurfboard.com/surfboards-surfboards-carbon-fiber-and-aluminum.html">aluminium boards</a>, and i want one now. If you lose it you can find it by radar, and now i&#8217;ve an excuse to buy radar too, sweet.</p>
]]></content:encoded>
			<wfw:commentRss>http://superfineshag.org/2007/06/24/native-surfboards/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Virals from Glue</title>
		<link>http://superfineshag.org/2007/05/16/virals-from-glue/</link>
		<comments>http://superfineshag.org/2007/05/16/virals-from-glue/#comments</comments>
		<pubDate>Wed, 16 May 2007 09:07:31 +0000</pubDate>
		<dc:creator>superfineshag</dc:creator>
		
		<category><![CDATA[Blog]]></category>

	<!-- AutoMeta Start -->
	<category>glue</category>
	<category>viral</category>
	<category>getthemessage</category>
	<category>campaigns</category>
	<category>impossiblestory</category>
	<category>mate</category>
	<category>worked</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://superfineshag.org/2007/05/16/virals-from-glue/</guid>
		<description><![CDATA[http://www.impossiblestory.com
http://www.getthemessage.net
Have a look at these 2 viral campaigns, worked on by my mate Des at Glue. For the Royal Navy one I advise you to put in the most flippant message you can think of, makes it so much more amusing.
To see an example of a truly important message that the Royal Navy might use [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.impossiblestory.com/">http://www.impossiblestory.com</a><br />
<a href="http://www.getthemessage.net/">http://www.getthemessage.net</a></p>
<p>Have a look at these 2 viral campaigns, worked on by my mate Des at Glue. For the Royal Navy one I advise you to put in the most flippant message you can think of, makes it so much more amusing.</p>
<p>To see an example of a truly important message that the Royal Navy might use helicopters for <a href="http://www.getthemessage.net/index.php?id=MTk5NQ==">click here</a>, feel free to reply with the most imaginative thing you can think of.</p>
]]></content:encoded>
			<wfw:commentRss>http://superfineshag.org/2007/05/16/virals-from-glue/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
