<?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"
	>

<channel>
	<title>Red Root</title>
	<atom:link href="http://www.red-root.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.red-root.com</link>
	<description>Lost in Cyberspace</description>
	<pubDate>Mon, 12 May 2008 09:41:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Decompressing (p,a,c,k,e,d) Javascript Files</title>
		<link>http://www.red-root.com/code/decompressing-packed-javascript-files/</link>
		<comments>http://www.red-root.com/code/decompressing-packed-javascript-files/#comments</comments>
		<pubDate>Mon, 12 May 2008 09:41:21 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.red-root.com/?p=147</guid>
		<description><![CDATA[Now, I know why most people compress they&#8217;re js files, because they don&#8217;t won&#8217;t people to steal the code, but it must be the case that sometimes, like what happened to me today, you&#8217;ve just gotta crack that encryption. I&#8217;m a bit worried about posting this, so I hope it&#8217;s in someway new and/or useful.
Basically [...]]]></description>
			<content:encoded><![CDATA[<p>Now, I know why most people compress they&#8217;re<strong> js</strong> files, because they don&#8217;t won&#8217;t people to steal the code, but it must be the case that sometimes, like what happened to me today, you&#8217;ve just gotta crack that encryption. I&#8217;m a bit worried about posting this, so I hope it&#8217;s in someway new and/or useful.</p>
<p>Basically we need to go into a <strong>js</strong> file that was given to us, in order to change a few DOM-based functions. I opened up the file, and lo and behold, this was the first few characters&#8230;</p>
<blockquote><p>eval(function(p,a,c,k,e,d){&#8230;</p></blockquote>
<p>This is the trademark sign of the <a href="http://dean.edwards.name/packer/">packer by Dean Edwards</a>. I&#8217;d seen this a few more times, and used it myself too, but never had to decode it before. So I did a little searching and found a nice method of decoding it:</p>
<ol>
<li><strong>Use the bookmarklet <a href="http://yaisb.blogspot.com/2006/10/defeating-dean-edwards-javascript.html">found here</a> whilst on the packer encode/decode page.</strong> This will enable the decode button and remove the read-only limitation on the bottom text area.</li>
<li><strong>Paste your encoded code into the bottom textarea and press decode</strong>. In theory, you should get the original code, but without line breaks, whitespace etc.</li>
<li><strong>To put the whitespace back in, I used &#8216;J<a href="http://www.howtocreate.co.uk/tutorials/jsexamples/JSTidy.html">avascript Tidy</a>&#8216;</strong>. Whilst not 100% successful (depends on your browser it seems somewhat), is did tidy up the majority of the code.</li>
</ol>
<p>So yeah, that&#8217;s how to decode the p,a,c,k,e,r compressor. Theres other ways too, apparently replacing the <strong>eval</strong> function with <strong>alert</strong> works too, didn&#8217;t seem too for me unfortunately.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-root.com/code/decompressing-packed-javascript-files/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Redemption of Wordpress</title>
		<link>http://www.red-root.com/wordpress/the-redemption-of-wordpress/</link>
		<comments>http://www.red-root.com/wordpress/the-redemption-of-wordpress/#comments</comments>
		<pubDate>Thu, 01 May 2008 14:53:22 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.red-root.com/?p=146</guid>
		<description><![CDATA[Having made about 8 websites using Wordpress in 4 or so months up until I went away, I was a litte fed up of the system, having to find increasingly complex solutions to some of the more advanced CMS functions required of each site. I was pretty glad when I came back that I didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Having made about 8 <a href="http://www.red-root.com/work/using-wordpress-as-a-cms/">websites using Wordpress</a> in 4 or so months up until I went away, I was a litte fed up of the system, having to find increasingly complex solutions to some of the more advanced CMS functions required of each site. I was pretty glad when I came back that I didn&#8217;t have to dive straight into another one, as much as I <a href="http://welovewp.com/">love the system</a>. But I&#8217;ve been using it again for the new version of the website of the <a href="http://www.webdezign.c.uk">company</a> I&#8217;m with, and the 2.5 version no less, and I&#8217;ve embraced it once more, implementing it in a tight efficient manner.</p>
<p>It&#8217;s a wonderful feeling as you pull the knowledge out of your head from all that experience without even realizing it, and the hugely impressive <a href="http://codex.wordpress.org/Function_Reference/">improved documentation</a> really helps. One of the reasons it&#8217;s become easier is I&#8217;ve just discovered a few new functions to utilize. First one is <a title="Nothing here yet, check out get_posts though" href="http://codex.wordpress.org/Function_Reference/get_page"><strong>get_page</strong></a>, which does exactly what is said on the tin and returns an array or object with the ID specified. Very useful, especially as before I was always using the <a href="http://codex.wordpress.org/Function_Reference/WP_Query"><strong>WP_Query</strong></a> system, which was nice and bulky, not to mention buggy if I ever used more than two on the same page.</p>
<p>Another great function is <a title="boren.nu post on the function" href="http://boren.nu/archives/2008/03/04/avatars-in-wordpress-25/"><strong>get_avatar</strong></a>, which is a new feature as of 2.5, and this little beauty actually get the <a href="http://www.gravatar.com"><strong>Gravatar</strong></a> that matches the e-mail you put in. And all because the <a href="http://www.automattic.com">same sharp minds</a> built both Wordpress and Gravatar. I just feel sorry for all those people who made the plug-ins before it was included.</p>
<p>Last one I&#8217;m going to document isn&#8217;t actually new, but I&#8217;ve only just discovered it: <a href="http://codex.wordpress.org/Template_Tags/wp_tag_cloud"><strong>wp_tag_cloud</strong></a>. Now, I&#8217;m not the biggest purveyor of tag clouds when it comes to my own sites, but the amount of times clients have seem them and gone &#8216;I want that one&#8217; is endless. Always talked them out of it mind<a href="#footnote-1-146" id="footnote-link-1-146" title="See the footnote."><sup>1</sup></a>but it&#8217;s nice to know that the option (with lots of settings too) is now there without having to search for a plug-in for it.</p>
<p>So yeah, all this rediscovery of this wonderful system has really lightened me up. The improved documentation has quite a bit to do with it, as for the last 2 months I&#8217;ve either been creating my own system, or using a <a href="http://digishop.sumeffect.com/">shopping cart</a> with no documentation. Good on you, Wordpress!
<ol class="footnotes">
<li id="footnote-1-146">Either that or they realize there&#8217;s not really much to tag in their 10 page CMS site with no blog  [<a href="#footnote-link-1-146">back</a>]</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.red-root.com/wordpress/the-redemption-of-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hitting The Brick Wall</title>
		<link>http://www.red-root.com/design/hitting-the-brick-wall/</link>
		<comments>http://www.red-root.com/design/hitting-the-brick-wall/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 11:14:59 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.red-root.com/?p=145</guid>
		<description><![CDATA[Okay. Redesign is not happening yet. I had set myself the deadline to finish it by the May 1st Reboot, but to no avail. I think the main problem is that when you spend 9 hours of every day working with websites, primarily programming, the last thing you want to do in your downtime at [...]]]></description>
			<content:encoded><![CDATA[<p>Okay. <a href="http://www.red-root.com/design/the-initial-sketch/">Redesign</a> is not happening yet. I had set myself the deadline to finish it by the May 1st Reboot, but to no avail. I think the main problem is that when you spend 9 hours of every day working with websites, primarily programming, the last thing you want to do in your downtime at home is feel pressured to design a website for a deadlineBefore India I had a knack for rubbing my eyebrows if I was stressed, making them quite thin. And guess what, it happened again. Not healthy, and not worth it.. To be fair, some of the main features of the site are there in terms of structure, which has always been my favoured part (mathematical systems ftw), but visually I am not at all happy.</p>
<p>This particular redesign is important. This one needs to put more emphasis on my work since soon I&#8217;ll be moving into part time freelancing while at <a href="http://kent.ac.uk">University</a>., Needs to be visually enticing. Needs to be professional yet personable. Needs to be &#8216;the shit&#8217;. And it needs to be on my own terms and it will be only be there when I remember to have fun designing.</p>
<p>Is this an excuse? Not sure, but I need to record the justification for leaving the redesign for now for my own benefit, to let me relax. Basically fighting against myself.</p>
<h2>Sidenote: The Omega Man</h2>
<p>Finally watched <a title="I Am Legend (film)" href="http://en.wikipedia.org/wiki/I_Am_Legend_%28film%29">I Am Legend</a> last night, and personally I thought it was pretty good. The <a href="http://en.wikipedia.org/wiki/I_Am_Legend">book</a>, which I read a few months ago, was very enjoyable morbidly powerful. I describe it in that way because you do really live through the desperate isolation of Robert Neville, the main character, which is an interesting trick seeing as you do in some way become his companion. One of the most moving parts of the both the movie and the book for me, being a dog lover, was the death of Sam (the dog)  and I&#8217;m glad they kept that in the movie because it is such a pivotal event. Overall, a good film, but I must suggest you do not watch it after 1am, it&#8217;s not one of those movies that will soothe you to sleep, as I should have known.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-root.com/design/hitting-the-brick-wall/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rewriting URLs: Good for the Soul</title>
		<link>http://www.red-root.com/code/rewriting-urls-is-good-for-the-soul/</link>
		<comments>http://www.red-root.com/code/rewriting-urls-is-good-for-the-soul/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 13:29:56 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.red-root.com/?p=144</guid>
		<description><![CDATA[The Caribbean property website I&#8217;ve been working on at Webdezign is nearing completion. Nothing to show quite yet, but I&#8217;ve very happy about it, and I got to flex my UI design skills in the administration section (the front-end design was ably undertaken by Peter). One of the multitude of new things I had to [...]]]></description>
			<content:encoded><![CDATA[<p>The Caribbean property website I&#8217;ve been working on at <a href="http://www.webdezign.co.uk">Webdezign</a> is nearing completion. Nothing to show quite yet, but I&#8217;ve very happy about it, and I got to flex my UI design skills in the administration section (the front-end design was ably undertaken by <a title="Peter Wimren's batcave" href="http://www.peweedesign.com">Peter</a>). One of the multitude of new things I had to learn with this project was <strong>mod rewriting URLs</strong> using the APACHE rewrite module, which, even if I only used it in a limited way, is a very powerful tool. So I&#8217;ve written a little case study about what I did.</p>
<h2>Part 1: Search Engine Friendly Property URLS</h2>
<p>One of the most enjoyable (or challenging, depends on what day it was) tasks was creating a unique identifier for each property with using the ID. I took tips from a fellow programmer and from the Wordpress method and created a field for each property which contained what that property&#8217;s rewritten URL would look like. For this site, each property has a name, island, and accomodation type, so I used: <strong>island/accomodation/name</strong>, so for example:</p>
<p><code>st-lucia/villa/la-mer</code>.</p>
<p>So instead of the URL for the property <strong>La Mer</strong> being found at <em>www.site.com/property.php?id=3 </em>which is all I&#8217;ve used so far, the pure unrewritten URL now read <em>www.site.com/property.php?id=st-lucia/villa/la_mer</em>. All the fun with checking for duplications every time a new property was added or edited aside, the next step was the rewriting, which in this case was nice and simple:</p>
<p><code>RewriteRule properties/(.*)/ property.php?prop=$1</code></p>
<p>This would be found in the root directory&#8217;s <strong>.htaccess</strong> file. This rule actually works both ways, i.e. it can start for the rewritten statement or the normal statement, depending on what the browser requests. I like to explain it as the rewritten one: The server detects when someone has gone to view a property at a page such as <em>www.site.com/properties/st-lucia/villa/la-mer/ </em>, and then kicks into action. The <em>(.*)</em> bit in the rule is the clever bit: this is a little bit of rewriting <abbr title="Regular Expression">regex</abbr> that is designed to catch <strong>everything and anything</strong><a href="#footnote-1-144" id="footnote-link-1-144" title="See the footnote."><sup>1</sup></a>, and it takes the information as the full string that is found between the forward slash at the end of <em>properties</em> and the last forward slash of the URL. The brackets mean that this value is to be used as a reference, and since there is only one set of brackets, this references to the number 1. And hey! Look at that, there is <em>$1</em> over in the other statement. So the captured value is then set at the <em>prop </em>value in the second statement. Not all that difficult eh?</p>
<p>So for example, if someone put in this URL:</p>
<p><code>http://www.site.com/properties/barbados/hotel/john-smiths-house/</code></p>
<p>They would actually get sent here:</p>
<p><code>http://www.site.com/property.php?prop=barbados/hotel/john-smiths-house</code></p>
<h2>Part 2: Content Managed Pages and Files</h2>
<p>That was the gentle first step, the next hard bit in the specification was that they wanted stand-alone pages, which would have the URL structure <em>www.site.com/page-name/</em>. Ah okay, doesn&#8217;t sound to tricky, so I set up a little line like this in the .htaccess file:</p>
<p><code>RewriteRule ^(.*)/$ page.php?title=$1</code></p>
<p>Similar to before, but theres two new characters shown here. The <strong>^</strong> signifies a start of the string, and <strong>$</strong> the end of the string. This stops the module trying to rewrite every URL with a trailing slash at the end, and only affects thos with one slash, and only have the base domain preceding the required part of the URL. So this worked nice and fine, but I wanted to also rewrite my <strong>search.php</strong> file as <strong>search/</strong>, and the error came blaring up all over my search section. Why? Because the rewrite rule was rewriting <em>search/</em> as <em>page.php?title=search</em>. Not so good. So I turned to ye olde Wordpress and found exactly what I needed:</p>
<p><code>RewriteCond %{REQUEST_FILENAME} !-f</code></p>
<p>Brilliant! This goes before the rewrite rule, and basically says &#8216;if the name of the page you are rewriting actually matches a file, don&#8217;t rewrite it&#8217;. Problem solved. But what about for a directory, such as <em>admin/</em>. Well, this is not quite a simple one-line job like with files, you need to a line for every directory. Nice easy format, so here&#8217;s an example for the admin:<br />
<code><br />
RewriteRule ^admin/.*$ - [PT]</code></p>
<p>So this means that anything (<strong>.*</strong> again) following <em>admin/ </em>will be completely ignored by the rewriting module.</p>
<h2>Part 3: Multiple Variables on Island pages</h2>
<p>Another interesting hurdle I found was when I tried to do pagination on a page that&#8217;s already being rewritten. I have individual pages on five specific islands running, which show all properties on those islands. The URL structure used is <em>www.site.com/islands/island-name/</em>, so for example, <em>www.site.com/islands/barbados/</em>. The rewrite rule used was:</p>
<p><code>RewriteRule islands/(.*)/ island.php?name=$1</code></p>
<p>Now to set the pagination in motion, I needed to put another variable to island.php called <strong>offset</strong>. I&#8217;m using a PHP pagination class that generates all the links and things with just a few input variables, but the problem was when I sent the variable to the URL as it was, errors came up because I was already rewriting based on the one <strong>$_GET</strong> variable &#8216;name&#8217;, so two messed it right up. And even then, I counlt just append <strong>?offset=x</strong> at the end either for a similar reason, so it had to be written taking both into account. But technically I needed two rules, one for when there are pages, using the structure <em>islands/islandname/page/pagenumber/</em>, and one for when page-browsing hasn&#8217;t happened yet, i.e. only one <strong>$_GET</strong> variable. So, I used two rules:</p>
<p><code>RewriteRule islands/(.*)/page/(.*)$ island.php?name=$1&amp;offset=$2<br />
RewriteRule islands/(.*)/$ island.php?name=$1</code></p>
<p>The 2nd rule&#8217;s technicalities should be fairly familiar now, with the variable capture <strong>(.*)</strong> and the <strong>$</strong> terminating the string. The 1st rule is similar, but this time we have two variables to capture, and each occurence is given a reference number, starting from 1 unlike most PHP iterations, which start from 0, so we get <strong>$1</strong> and <strong>$2</strong> in the rule in the second bit. Technically this could go on forever, as long as the numbers of bracketed statements in the first statement was equal to the number of variables in the second.</p>
<h2>That&#8217;s all folks!</h2>
<p>Hope you enjoyed me documenting my small foray into the intricacies of mod rewriting with PHP and Apache, I think I&#8217;m going to go find how the regex for my own genetic code because I can.
<ol class="footnotes">
<li id="footnote-1-144">To be be specific, the . means any character that is not a line-breaking character, and the * means as many characters matching the preceding statement as you like. So In theory, I could have used ([a-z][\-]*), which matches the charcters between a and z, and a hyphen, as many times as needed. But that may have been too clever.  [<a href="#footnote-link-1-144">back</a>]</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.red-root.com/code/rewriting-urls-is-good-for-the-soul/feed/</wfw:commentRss>
		</item>
		<item>
		<title>This website is naked</title>
		<link>http://www.red-root.com/the-web/this-website-is-naked/</link>
		<comments>http://www.red-root.com/the-web/this-website-is-naked/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 08:55:34 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[The Web]]></category>

		<guid isPermaLink="false">http://www.red-root.com/?p=140</guid>
		<description><![CDATA[Today (April 9th) is CSS Naked Day, all day long. Enjoy the ugly.
(This all validates too funnily enough! Checked the validator yesterday for the first time for a long time. Probably not SEO friendly though eeek)
]]></description>
			<content:encoded><![CDATA[<p>Today (April 9th) is <strong><a title="CSS Naked Day" href="http://naked.dustindiaz.com/">CSS Naked Day</a>,</strong> all day long. Enjoy the ugly.</p>
<p>(This all validates too funnily enough! Checked the validator yesterday for the first time for a long time. Probably not SEO friendly though eeek)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-root.com/the-web/this-website-is-naked/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BBC.co.uk redesigned!</title>
		<link>http://www.red-root.com/design/bbccouk-redesigned/</link>
		<comments>http://www.red-root.com/design/bbccouk-redesigned/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 13:32:26 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[The Web]]></category>

		<guid isPermaLink="false">http://www.red-root.com/?p=139</guid>
		<description><![CDATA[The Beeb have just launched their new site, and boy is it fantastic. I was sitting there looking at the rugby news, and presto as the page loads I notice a different layout. Very, very good work. Take a look.
]]></description>
			<content:encoded><![CDATA[<p>The Beeb have just launched their new site, and boy is it fantastic. I was sitting there looking at the rugby news, and presto as the page loads I notice a different layout. Very, very good work. <a href="http://www.bbc.co.uk">Take a look</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-root.com/design/bbccouk-redesigned/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress 2.5 Released</title>
		<link>http://www.red-root.com/wordpress/wordpress-25-released/</link>
		<comments>http://www.red-root.com/wordpress/wordpress-25-released/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 10:42:56 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.red-root.com/?p=138</guid>
		<description><![CDATA[Venture yonder to read more. Just installed it, quite a nice administration section I must say, navigation is slightly different but it&#8217;s intuitive enough that I quickly clocked where everything was. Just ironing out a few issues now e.g. a few template functions have been deprecated.
]]></description>
			<content:encoded><![CDATA[<p><a title="Wordpress 2.5" href="http://wordpress.org/development/2008/03/wordpress-25-brecker/">Venture yonder</a> to read more. Just installed it, quite a nice administration section I must say, navigation is slightly different but it&#8217;s intuitive enough that I quickly clocked where everything was. Just ironing out a few issues now e.g. a few template functions have been <a href="http://codex.wordpress.org/Template_Tags/get_links">deprecated</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-root.com/wordpress/wordpress-25-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Initial Sketch!</title>
		<link>http://www.red-root.com/design/the-initial-sketch/</link>
		<comments>http://www.red-root.com/design/the-initial-sketch/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 12:38:13 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.red-root.com/design/the-initial-sketch/</guid>
		<description><![CDATA[Guess what! Been working on a re-design again, Oops! Never happy am I.
Personally, this time I blame the over-saturation of nice websites from numerous CSS galleries, which I&#8217;ve had to catch up with while I was away, and the fact that my design has been up all of, say, 5 months or whatever it was. [...]]]></description>
			<content:encoded><![CDATA[<p>Guess what! Been working on a re-design again, Oops! Never happy am I.</p>
<p>Personally, this time I blame the over-saturation of nice websites from <a href="http://www.cssremix.com" title="CSS Remix">numerous</a> <a href="http://cssvault.com">CSS</a> <a href="http://www.bestwebgallery.com" title="best web gallery">galleries</a>, which I&#8217;ve had to catch up with while I was away, and the fact that my design has been up all of, say, 5 months or whatever it was. But anyway, I&#8217;m doing it, no sure when, but definitely cracking it out. What I will probably do is simply modify this existing theme, since most of the features I want to implement have already been done. Still exciting though!</p>
<p><a rel="lightbox" href="http://www.red-root.com/wp-content/uploads/2008/03/sketchings.jpg" title="Sketchings FTW"><img src="http://www.red-root.com/wp-content/uploads/2008/03/sketchings.thumbnail.jpg" alt="Sketchings FTW" class="alignright" /></a>At the moment I&#8217;m torn between a couple of design concepts, as I&#8217;m tempted to go <a href="http://david.sutoyo.com" title="David Sutoyo (nice and clean)">minimalist and clean</a>, but also <a href="http://www.introzo.com/">dark and grungy</a>, or simply arty-farty and <a href="http://ilovedust.com/">&#8216;out there&#8217;</a>.<a href="#footnote-1-136" id="footnote-link-1-136" title="See the footnote."><sup>1</sup></a> Currently flickering between those three sort of styles, but I think I have found an amalgamation of the styles i.e. I&#8217;ve been sketching furiously when I really be working. </p>
<p>Jotting this down for evidence.</p>
<p>Watch this space!
<ol class="footnotes">
<li id="footnote-1-136">Incidentally, all this linking is also a little SEO experiment, been digging extensively into this recently.  [<a href="#footnote-link-1-136">back</a>]</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.red-root.com/design/the-initial-sketch/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Any sufficiently advanced technology is indistinguishable from magic&#8221;</title>
		<link>http://www.red-root.com/life/rip-arthur-c-clarke/</link>
		<comments>http://www.red-root.com/life/rip-arthur-c-clarke/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 23:29:22 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.red-root.com/life/rip-arthur-c-clarke/</guid>
		<description><![CDATA[One my favourite sci-fi authors, Arthur C. Clarke, died this week at the age of 90. The visionary behind classic stories like 2001: A Space Odyssey and City and The Stars (which also happens to have been my read of the India trip) , he is an outright leg-end. Long may his tales endure.
The title [...]]]></description>
			<content:encoded><![CDATA[<p>One my favourite sci-fi authors, <a href="http://news.bbc.co.uk/1/hi/uk/2358011.stm">Arthur C. Clarke</a>, died this week at the age of 90. The visionary behind classic stories like <strong>2001: A Space Odyssey </strong>and <strong>City and The Stars</strong> (which also happens to have been my read of the India trip) , he is an outright <em>leg-end</em>. Long may his tales endure.</p>
<p>The title of this post is one of his three &#8216;laws&#8217;. Wiki it, foo!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-root.com/life/rip-arthur-c-clarke/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Playing the race card</title>
		<link>http://www.red-root.com/the-web/playing-the-race-card/</link>
		<comments>http://www.red-root.com/the-web/playing-the-race-card/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 16:39:18 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[The Web]]></category>

		<guid isPermaLink="false">http://www.red-root.com/the-web/playing-the-race-card/</guid>
		<description><![CDATA[Never seen it played like this before. Wilfred Emmanuel-Jones is a farmer, who sells his own produce under the Black Farmer &#8482; brand, who one day realized that he was in fact the only black farmer in England. Thanks to good PR and interest in his situation, he has made a bundle, even starting a [...]]]></description>
			<content:encoded><![CDATA[<p>Never seen it played like this before. <a href="http://www.theblackfarmer.com/" title="The Black Farmer" target="_blank">Wilfred Emmanuel-Jones</a> is a farmer, who sells his own produce under the Black Farmer &#8482; brand, who one day realized that he was in fact the only black farmer in England. Thanks to good PR and interest in his situation, he has made a bundle, even starting a <a href="http://www.theblackfarmer.com/bf_blog.htm">blog</a> about it all. Woah.</p>
<p>I wonder what I could blag being a 1/8 Welsh, 1/8 Irish, 1/4 Greek, 3/8 Norwichian, 1/8 Israeli web developer? Suggestions are welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-root.com/the-web/playing-the-race-card/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
