<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IKnowFooBar</title>
	<atom:link href="http://www.iknowfoobar.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iknowfoobar.co.uk</link>
	<description>A developer's [mis] take?</description>
	<lastBuildDate>Wed, 23 Jun 2010 11:52:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<cloud domain='www.iknowfoobar.co.uk' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Pesky Directory Alphabet Filters Made Easy (PHP)</title>
		<link>http://www.iknowfoobar.co.uk/2009/10/13/pesky-directory-alphabet-filters-made-easy/</link>
		<comments>http://www.iknowfoobar.co.uk/2009/10/13/pesky-directory-alphabet-filters-made-easy/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 09:37:15 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[alphabet]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.projectroon.co.uk/?p=801</guid>
		<description><![CDATA[I have built quite a few directory systems in my years as a web developer and one thing that has always annoyed me is building letter filters to return results depending on the first letter of a title. Normally I would waste a lot of time actually typing out the entire alphabet string: $alphabet = [...]]]></description>
			<content:encoded><![CDATA[<p>I have built quite a few directory systems in my years as a web developer and one thing that has always annoyed me is building letter filters to return results depending on the first letter of a title.</p>
<p>Normally I would waste a lot of time actually typing out the entire alphabet string:</p>
<pre name="code" class="php">$alphabet = 'abcdefghijklmnopqrstuvwxyz';</pre>
<p>which can take a lot of time (Go on try it, I&#8217;ll bet no matter how fast you can type, typing out the alphabet quickly will be tricky!) then looping through the string like so:</p>
<pre name="code" class="php">for($i = 0; $i &lt; strlen($alphabet); $i++)
{
  echo substr($alphabet, $i, 1);
} </pre>
<p>However there are 2 other much simpler methods:</p>
<h3>Method 1 &#8211; Loop through the ASCII numbers</h3>
<pre name="code" class="php">for($i = 65; $i &lt;= 90; $i++)
{
  echo chr($i);
}</pre>
<p>or my new personal favourite using PHP&#8217;s <a title="PHP Manual range()" href="http://docs.php.net/manual/en/function.range.php" target="_blank">range()</a> function:</p>
<h3>Method 2 &#8211; Using range()</h3>
<pre name="code" class="php">foreach(range('A', 'Z') as $i)
{
  echo $i;
}</pre>
<p>Then all you have to do is add in any code to make sure you set the right CSS selectors and highlight which letter you are currently viewing and add the ability to filter by first letter to your list function.</p>
<p>Simple.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2009/10/13/pesky-directory-alphabet-filters-made-easy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The RSS Cloud &#8211; Real Time Blogging</title>
		<link>http://www.iknowfoobar.co.uk/2009/09/08/the-rss-cloud-real-time-blogging/</link>
		<comments>http://www.iknowfoobar.co.uk/2009/09/08/the-rss-cloud-real-time-blogging/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 13:40:02 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.projectroon.co.uk/?p=790</guid>
		<description><![CDATA[As with any WordPress Blog and pretty much any other blog or news website projectroon.co.uk has an RSS Feed and if you look closely at the source of this RSS feed you may notice a new element &#60;cloud&#62; What is this? Well currently most Feed Aggregators will poll selected RSS feeds and check if there [...]]]></description>
			<content:encoded><![CDATA[<p>As with any <a title="WordPress Blogging Platform" href="http://www.wordpress.com" target="_blank">WordPress</a> Blog and pretty much any other blog or news website projectroon.co.uk has an <a title="ProjectRoon RSS Feed" href="http://feeds2.feedburner.com/roon" target="_blank">RSS Feed</a> and if you look closely at the source of this RSS feed you may notice a new element</p>
<pre name="code" class="html">&lt;cloud&gt;</pre>
<p>What is this? Well currently most Feed Aggregators will poll selected RSS feeds and check if there are any new items. This can be slow and resource heavy especially for someone like <a title="Google" href="http://www.google.com" target="_blank">Google</a> who has to check millions of feeds many times every day with their <a title="Google Reader" href="http://www.google.com/reader" target="_blank">reader technology</a></p>
<p>The cloud element has always been available in <a title="RSS 2.0" href="http://en.wikipedia.org/wiki/Rss#RSS_2.0" target="_blank">RSS 2.0</a> however most have ignored it or failed to appreciate its possible uses.</p>
<p>Anyone who is familiar with a <a title="Blackberry by RIM" href="http://www.blackberry.com" target="_blank">Blackberry</a> mobile phone will know just how much money they save in data charges by using the Blackberry&#8217;s Push technology.  Push technology means that the phone doesn&#8217;t have to keep connecting to it&#8217;s mail server and asking if there are any new emails available. Instead the server waits until it has a new email and then contacts the phone to deliver it. This results in far less load on the mail server and means you don&#8217;t have to wait to receive your email.</p>
<p>The RSS cloud works in the same way, feed readers that support the cloud element will be informed every time a blog owner publishes a new post, meaning readers using that reader will be able to start reading instantly after posting.</p>
<p>Find out more from the <a title="WordPress RSS in the clouds" href="http://en.blog.wordpress.com/2009/09/07/rss-in-the-clouds/" target="_blank">Official Announcement by WordPress</a> or add support for the RSS cloud for your wordpress blog <a title="WordPress RSS Cloud Plugin" href="http://wordpress.org/extend/plugins/rsscloud/" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2009/09/08/the-rss-cloud-real-time-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advertising is damaging the Internet experience</title>
		<link>http://www.iknowfoobar.co.uk/2009/03/12/advertising-is-damaging-the-internet-experience/</link>
		<comments>http://www.iknowfoobar.co.uk/2009/03/12/advertising-is-damaging-the-internet-experience/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 13:42:02 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[world wide web]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=760</guid>
		<description><![CDATA[In my humble little opinion the original intention of the web was to be a worldwide free medium to share documents and discuss idea. So far this ideal has been somewhat achieved but there is something that is threatening the ideal. I have recently stopped following some blogs and websites, not because I find their [...]]]></description>
			<content:encoded><![CDATA[<p>In my humble little opinion the original intention of the web was to be a worldwide free medium to share documents and discuss idea. So far this ideal has been somewhat achieved but there is something that is threatening the ideal.</p>
<p>I have recently stopped following some blogs and websites, not because I find their content irrelevant or or lackluster, but because my experience whilst on these sites has become so tarnished by advertising that I can&#8217;t read the content. Some of these sites are industry leaders in breaking news for the technology and IT worlds, but if I cannot read the content I am not going to bother coming back.</p>
<p>Now I am not saying that advertising is all bad, most of these blogs and websites depend on it to remain publishing. However as the average user learns to automatically and involuntarily tune out the distractions, advertisers keep coming up with new innovative methods of annoyance.</p>
<p>I am at <strong>breaking point</strong>.</p>
<p>First we had JavaScript pop ups loading advertising pages up continually in your face and these were easily stopped by blocking JavaScript. These were soon replaced by flash banners normally at the top or sides of a website, which flash, scream or try to get you to shoot a duck.</p>
<p>Oh yes the ones that really drive me mad are the holding page adverts, where if you don&#8217;t have a cookie for a particular site you have to sit and wait for 10 seconds while several adverts are paraded in front of your face.</p>
<p>Now we have the CSS/Ajax pop up windows asking stupid questions like</p>
<blockquote><p>&#8220;As a valued visitor please take a moment to tell us what you think about our site, and then if you wouldn&#8217;t mind visiting one or two of our sponsors&#8230;&#8221;</p></blockquote>
<p>So I am quite certain that the vast majority of Internet users will agree with me here, but by charging less and less for more intrusive adverts, the only long term success that will be gained will be in driving readers away, not wealth.</p>
<p>The web is now one of the most powerful mediums on the planet, surely there is a better way of generating revenue whilst still maintaining a meaning?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2009/03/12/advertising-is-damaging-the-internet-experience/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>British Government to accelerate use of Open Source</title>
		<link>http://www.iknowfoobar.co.uk/2009/03/12/british-government-to-accelerate-use-of-open-source/</link>
		<comments>http://www.iknowfoobar.co.uk/2009/03/12/british-government-to-accelerate-use-of-open-source/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 08:00:18 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[british government]]></category>
		<category><![CDATA[digital engagement]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[proprietary]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=745</guid>
		<description><![CDATA[Quote from BBC.co.uk Tom Watson MP, minister for digital engagement, said open source software would be on a level playing field with proprietary software such as Windows. Open source software will be adopted &#8220;when it delivers best value for money&#8221;, the government said. It added that public services should where possible avoid being &#8220;locked into [...]]]></description>
			<content:encoded><![CDATA[<p><a title="UK government backs open source" href="http://news.bbc.co.uk/1/hi/technology/7910110.stm" target="_blank">Quote from BBC.co.uk</a></p>
<blockquote><p>Tom Watson MP, minister for digital engagement, said open source software would be on a level playing field with proprietary software such as Windows.</p>
<p>Open source software will be adopted &#8220;when it delivers best value for money&#8221;, the government said.</p>
<p>It added that public services should where possible avoid being &#8220;locked into proprietary software&#8221;.</p></blockquote>
<p>It is great to see that even governments are realising that there is quality community built software around that fulfils their needs just as well and probably better than any proprietary softare can do.</p>
<p>On several occasions I have argued the whole <a title="OpenOffice.org - The free alternative to Microsoft Office" href="http://www.openoffice.org/" target="_blank">OpenOffice.org</a> vs Microsoft Office and the only argument I ever really get is that Microsoft Office is what they know. This indicates towards how much the average user is afraid of moving away from &#8216;what they know&#8217; and finding an alternative. Even though the alternative has all of the functionality (and more), has fewer bugs, is more stable and doesn&#8217;t cost a penny to use, upgrade or be supported compared with the product that they are used to. In the case of OpenOffice.org their alternative even looks like Office so that you can instantly feel at home using it.</p>
<p>With the recent economic climate there is also another reason why proprietary software isn&#8217;t such a great idea. Smari McCarthy talks about a new crisis about to hit businesses in Iceland:</p>
<p><a title="Smari McCarthy" href="http://smari.yaxic.org/blag/2009/03/06/microsoft-skull-fucks-icelands-economy-contracts-syphilis/" target="_blank">Smari McCarthy:</a></p>
<blockquote><p>The companies and institutions that buy these generally don’t buy these directly through Microsoft. Instead, they sell contracts in bulk to Microsoft Certified Partners (MCPs), which are local companies that lobby the software, generally at a loss to themselves, as they know that Microsoft’s lock-in is powerful enough that they can only get service contracts from the company if they offer a substantial discount on the Microsoft products.</p>
<p>Now, the licensing term is three years, but the licensing fee is made in the form of annual payments. Here is where the fun begins.</p>
<p>Now, say an economy collapses. Say some fifteen hundred companies in your local economy go bankrupt. Now, say that Microsoft comes to collect its annual fee from the MCPs. The MCPs say, of course, &#8220;wait, the company that we sold this license to has gone bankrupt, we shouldn’t have to pay.&#8221;</p>
<p>&#8220;Aha!&#8221; says the suit from Redmond. &#8220;You made a contract with us, and another with them. Their inability to uphold their end of the contract does not invalidate your commitment to us.&#8221;</p></blockquote>
<p>One of the biggest mistakes users make when trying out Open Source software is that they immediately want to know if they can use their favourite application. The answer is often &#8216;No&#8217; however there is always an alternative. I have already mentioned OpenOffice.org for Microsoft Office. Here are a few more:</p>
<ul>
<li>Internet Explorer &#8211; <a title="Mozilla Firefox" href="http://www.mozilla-europe.org/en/firefox/" target="_blank">Mozilla Firefox</a></li>
<li>Outlook Express/Outlook &#8211; <a title="Evolution" href="http://www.gnome.org/projects/evolution/" target="_blank">Evolution</a>, <a title="Mozilla Thunderbird" href="http://www.mozillamessaging.com/thunderbird/" target="_blank">Mozilla Thunderbird</a>, <a title="Kmail" href="http://kmail.kde.org/" target="_blank">Kmail</a></li>
<li>Adobe Acrobat &#8211; <a title="Ghostscript" href="http://www.cs.wisc.edu/%7Eghost/" target="_blank">Ghostscript</a>, <a title="OpenOffice.org - The free alternative to Microsoft Office" href="http://www.openoffice.org/" target="_blank">OpenOffice.org</a></li>
<li>Windows Media Player &#8211; <a title="Amarok" href="http://amarok.kde.org/" target="_blank">Amarok</a>, <a title="Rhythmbox" href="http://projects.gnome.org/rhythmbox/" target="_blank">Rhythmbox</a>, <a title="Songbird" href="http://www.getsongbird.com/" target="_blank">Songbird</a>, <a title="VLC" href="http://www.videolan.org/vlc/" target="_blank">VLC</a>, <a title="MPlayer" href="http://www.mplayerhq.hu/" target="_blank">MPlayer</a></li>
<li>Adobe Photoshop, Paint Shop Pro &#8211; <a title="Gimp" href="http://www.gimp.org/" target="_blank">Gimp</a>, <a title="ImageMagick" href="http://www.imagemagick.org/" target="_blank">ImageMagick</a></li>
<li>Adobe Illustrator &#8211; <a title="Inkscape" href="http://www.inkscape.org/" target="_blank">Inkscape</a>, <a title="Sketch" href="http://sketch.sourceforge.net/" target="_blank">Sketch</a></li>
</ul>
<p>This is only a few highlights from a <a title="The table of equivalents / replacements / analogs of Windows software in Linux." href="http://www.linuxrsp.ru/win-lin-soft/table-eng.html" target="_blank">much larger list</a> but if you look at the list you will quickly see that your options in the Open Source world are far greater, than any paid for software.</p>
<p>Lets hope the British Government really mean what they say and start to advocate the use of Open Source software so we the public can stop having to pay for all to often shoddy software&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2009/03/12/british-government-to-accelerate-use-of-open-source/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why do IT Pros have so much free time?</title>
		<link>http://www.iknowfoobar.co.uk/2009/03/11/why-do-it-pros-have-so-much-free-time/</link>
		<comments>http://www.iknowfoobar.co.uk/2009/03/11/why-do-it-pros-have-so-much-free-time/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 16:20:24 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[professional]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=749</guid>
		<description><![CDATA[eviljaymz.com]]></description>
			<content:encoded><![CDATA[<div id="attachment_750" class="wp-caption alignnone" style="width: 510px"><a href="http://www.pureroon.co.uk/wp-content/uploads/2009/03/whypeopleseemtohavefreetime.png"><img class="size-medium wp-image-750" title="whypeopleseemtohavefreetime" src="http://www.pureroon.co.uk/wp-content/uploads/2009/03/whypeopleseemtohavefreetime-500x413.png" alt="Why do IT Pros seem to have so much free time?" width="500" height="413" /></a><p class="wp-caption-text">Why do IT Pros seem to have so much free time?</p></div>
<p><a href="http://eviljaymz.com/?q=node/33" target="_blank">eviljaymz.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2009/03/11/why-do-it-pros-have-so-much-free-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get Ubuntu 8.04 Server running Lighttpd ready for the mighty WordPress</title>
		<link>http://www.iknowfoobar.co.uk/2009/02/05/how-to-get-ubuntu-804-server-running-lighttpd-ready-for-the-mighty-wordpress/</link>
		<comments>http://www.iknowfoobar.co.uk/2009/02/05/how-to-get-ubuntu-804-server-running-lighttpd-ready-for-the-mighty-wordpress/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 16:19:03 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtual server]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.panicroon.co.uk/?p=633</guid>
		<description><![CDATA[This site has always been hosted on shared hosting, along with a few other blogs I maintain for friends (On The Wrong Planet and Darth McCarth to name a couple&#8230;). Even while I was freelancing I have always used shared hosting as it has always been perfect for my needs However the popularity of this [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_635" class="wp-caption alignright" style="width: 180px"><a href="http://www.lighttpd.net/"><img class="size-full wp-image-635" title="Lighttpd Logo" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/light_logo_170px.png" alt="Lighttpd - Fly Light" width="170" height="168" /></a><p class="wp-caption-text">Lighttpd - Fly Light</p></div>
<p>This site has always been hosted on shared hosting, along with a few other blogs I maintain for friends (<a title="On The Wrong Planet" href="http://www.onthewrongplanet.co.uk" target="_blank">On The Wrong Planet</a> and <a title="Darth McCarth: Conspiracies Uncovered" href="http://darthmccarth.co.uk" target="_blank">Darth McCarth</a> to name a couple&#8230;). Even while I was freelancing I have always used shared hosting as it has always been perfect for my needs However the popularity of this blog has grown a lot in the last 7 months so I felt it was time to invest in some meatier hosting to something that would give me more control over the resources available to me and my site.</p>
<p>I don&#8217;t think that I require a dedicated server quite yet, especially not considering how much they cost for a reasonable one, so I decided to take the <a title="Virtual Private Server" href="http://en.wikipedia.org/wiki/Virtual_private_server" target="_blank">Virtual Server</a> route. There are many very decent offers around, I chose to go with <a title="CheapVPS - Virtual Private Servers" href="http://www.cheapvps.co.uk/" target="_blank">CheapVPS</a> (A brand of <a title="VAServe Ltd" href="http://www.vaserv.com/" target="_blank">VAServe Ltd</a>) on the reccomendation of a colleague and Linux Engineer. Right lets get started then!</p>
<h3>Install Lighttpd (Lighty)</h3>
<p>I am assuming that you already have Ubuntu 8.04 installed on your VPS here as most VPSs come with the operating system pre-installed or provide a system like HyperVM to manage your server setup. I am also assuming that you have root access to your server, which is also provided by most VPS. If you don&#8217;t have root access then you will need to prepend these commands with sudo.</p>
<p>Log in as root and type:</p>
<pre name="code">apt-get install lighttpd</pre>
<p>Watch as Lighty is downloaded and installed on your system. Once Lighty is installed you may want to remove Apache as it will probably just get in your way! To remove type:</p>
<pre><code>apt-get remove apache2</code></pre>
<p>If you have installed with a default setup then you will find Lighty&#8217;s main configuration at <em>/etc/lighttpd/lighttpd.conf</em> and the service script will be located <em>/etc/init.d/lighttpd</em></p>
<p>to start, stop, restart or reload Lighty use these commands respectively:</p>
<pre><code>/etc/init.d/lighttpd start
/etc/init.d/lighttpd stop
/etc/init.d/lighttpd restart
/etc/init.d/lighttpd force-reload</code></pre>
<h3>Configuring Lighty for Virtual Hosting</h3>
<p>In a similar fashion to Apache, Lighttpd keeps its configuration files in one location and expects you the create a symlink to them from another location to active certain features. These two folders can be found at <em>/etc/lighttpd/conf-available</em> and <em>/etc/lighttpd/conf-enabled</em>.</p>
<p>To enable virtual hosts and create the symlink type:</p>
<pre><code>ln -s /etc/lighttpd/conf-available/10-simple-vhost.conf /etc/lighttpd/conf-enabled/10-simple-vhost.conf</code></pre>
<p>Before creating the Lighty configuration for the virtual hosts we need to create all of the folders and files that are going to be required. As I allow my friends access to the server to modify their own websites I need to make sure that they don&#8217;t have access to other users websites. To create a user type:</p>
<pre><code>adduser username</code></pre>
<p>Where <em>username</em> should be replace by whatever username you want. Once a user is created we need to create the folders where their website files and logs are going to be stored and give them the correct permissions and ownerships. Again replace <em>username</em> with whatever you like and <em>domain.com</em> with your domain:</p>
<pre><code>mkdir /home/username/domains
mkdir /home/username/domains/domain.com
mkdir /home/username/domains/domain.com/html
mkdir /home/username/domains/domain.com/logs
touch /home/username/domains/domain.com/logs/access.log
touch /home/username/domains/domain.com/logs/error.log
chown -R username:username /home/username/domains
chown www-data:www-data /home/username/domains/domain.com/logs/*</code></pre>
<p>You can repeat this process for however many users and domains that you require. Or if you know what you are doing you could create a script to automate this process.</p>
<p>Now lets edit the virtual hosts config file:</p>
<pre><code>vi /etc/lighttpd/conf-available/10-simple-vhost.conf</code></pre>
<p>Now here is an example config block for <a href="http://www.pureroon.co.uk" target="_self">pureroon.co.uk</a>:</p>
<pre><code>$HTTP["host"] =~ "(^|.)(panicroon|pureroon|roon)(.co|.me).uk$" {
    server.document-root = "/home/roon/domains/pureroon.co.uk/public_html"
    server.errorlog = "/home/roon/domains/pureroon.co.uk/logs/error.log"
    accesslog.filename = "/home/roon/domains/pureroon.co.uk/logs/access.log"
    url.rewrite = (
        "^/(wp-.+).*/?" =&gt; "$0",
        "^/(sitemap.xml)" =&gt; "$0",
        "^/(sitemap.xml.gz)" =&gt; "$0",
        "^/(robots.txt)" =&gt; "$0",
        "^/(xmlrpc.php)" =&gt; "$0",
        "^/(favicon.ico)" =&gt; "$0",
        "^/(cgi-.+).*/?" =&gt; "$0",
        "^/(icon.+).*/?" =&gt; "$0",
        "^/(.+)/?$" =&gt; "/index.php/$1"
    )
}</code></pre>
<p>The first line</p>
<pre><code>$HTTP["host"] =~ "(^|.)(panicroon|pureroon|roon)(.co|.me).uk$"</code></pre>
<p>is telling lighty which domain to look out for, you can use regular expressions here and you can see that I am capturing panicroon.co.uk, pureroon.co.uk and roon.me.co.uk. I then let wordpress redirect the user to the correct domain (pureroon.co.uk).</p>
<p>The next 3 lines are telling lighty where to find the document root (the location of your web files), and the locations of the error log and access log respectively.</p>
<p>To be able to use <strong>URL rewriting</strong> in your wordpress blog you need to set up the url.rewrite lighty module. The problem I have found with the url rewriting is that lighty doesn&#8217;t support the Apache &#8216;if file doesn&#8217;t exist function&#8217; so you have to give it a list of files that shouldn&#8217;t be rewritten:</p>
<pre><code>"^/(sitemap.xml)" =&gt; "$0"</code></pre>
<p>will redirect &#8216;/sitemap.xml&#8217; to itself. The final line:<br />
<code>"^/(.+)/?$" =&gt; "/index.php/$1"</code><br />
redirects all other requests to &#8216;/index.php&#8217; and the wordpress software will take care of everything from there.</p>
<p>That&#8217;s it, restart Lighty and you are ready to start installing <a title="MySQL Open Source Database Engine" href="http://www.mysql.com/" target="_blank">MySQL</a> and finally <a title="The Mighty WordPress Blogging Software" href="http://wordpress.org/" target="_blank">WordPress</a>, check back soon for the next two stages</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2009/02/05/how-to-get-ubuntu-804-server-running-lighttpd-ready-for-the-mighty-wordpress/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Epsilon Eridani: A snapshot of our history</title>
		<link>http://www.iknowfoobar.co.uk/2008/11/17/epsilon-eridani-a-snapshot-of-our-history/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/11/17/epsilon-eridani-a-snapshot-of-our-history/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 12:16:37 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Up in Space]]></category>
		<category><![CDATA[asteroid]]></category>
		<category><![CDATA[asteroid belt]]></category>
		<category><![CDATA[earth]]></category>
		<category><![CDATA[epsilon eridani]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[solar system]]></category>

		<guid isPermaLink="false">http://www.panicroon.co.uk/?p=678</guid>
		<description><![CDATA[NASA scientists have discovered that one of the closest solar systems to ours shows some very striking resemlblances to how are solar system looked when it was a lot younger. The star at the center of the nearby system, called Epsilon Eridani, is a younger, slightly cooler and fainter version of the sun. Previously, astronomers [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_680" class="wp-caption alignnone" style="width: 510px"><a href="http://www.pureroon.co.uk/wp-content/uploads/2008/11/dual-asteroid-belts1.jpg"><img class="size-medium wp-image-680" title="Dual Asteroid Belts" src="http://www.pureroon.co.uk/wp-content/uploads/2008/11/dual-asteroid-belts1-500x266.jpg" alt="From NASA Spitzer Project" width="500" height="266" /></a><p class="wp-caption-text">From NASA Spitzer Project</p></div>
<p>NASA scientists have <a title="NASA Spitzer Project" href="http://www.nasa.gov/mission_pages/spitzer/news/spitzer-20081027.html" target="_blank">discovered that one of the closest solar systems</a> to ours shows some very striking resemlblances to how are solar system looked when it was a lot younger.</p>
<blockquote><p>The star at the center of the nearby system, called Epsilon Eridani, is a younger, slightly cooler and fainter version of the sun. Previously, astronomers had uncovered evidence for two possible planets in the system, and for a broad, outer ring of icy comets similar to our own Kuiper Belt.</p></blockquote>
<div id="attachment_682" class="wp-caption alignnone" style="width: 510px"><a href="http://www.pureroon.co.uk/wp-content/uploads/2008/11/epsilon-eridani-diagram.jpg"><img class="size-medium wp-image-682" title="Epsilon Eridani Diagram" src="http://www.pureroon.co.uk/wp-content/uploads/2008/11/epsilon-eridani-diagram-500x400.jpg" alt="The outer comet ring around Epsilon Eridani is denser than our comet ring, called the Kuiper belt, because the system is younger. Over time, Epsilon Eridani's ring will become wispier like the Kuiper Belt. Its comets will collide with each other and break up, or get pushed out of the ring by the gravitational influences of planets." width="500" height="400" /></a><p class="wp-caption-text">The outer comet ring around Epsilon Eridani is denser than our comet ring, called the Kuiper belt, because the system is younger.</p></div>
<p>This new discovery should assist scientists and astronomers to model what our own solar system was like around the time life started taking hold on earth. Astronomers have discovered similar systems before but never one as close, only 10 light years away, to us.</p>
<blockquote><p>&#8220;Because the system is so close to us, Spitzer can really pick out details in the dust, giving us a good look at the system&#8217;s architecture,&#8221;</p></blockquote>
<p>said co-author Karl Stapelfeldt of NASA&#8217;s Jet Propulsion Laboratory, Pasadena, Calif.</p>
<p>Asteroid belts are often the left overs from planet formation. The formed planet will then shepherd the nearby belt keeping it in its disk like orbit around its star. An asteroid belt is much easier to detect than an individual planet, but its existence allows astronomers to deduce what the size and composition of nearby planets. Asteroid belts are detected by using infra-red telescopes which can pick out the small releases of heat given off when dust and particles in the belt collides.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/11/17/epsilon-eridani-a-snapshot-of-our-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BMW embrace Open Source for In Car Entertainment</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/29/bmw-embrace-open-source-for-in-car-entertainment/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/29/bmw-embrace-open-source-for-in-car-entertainment/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 21:11:28 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[bmw]]></category>
		<category><![CDATA[car]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[entertainment]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[proprietary]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.panicroon.co.uk/?p=659</guid>
		<description><![CDATA[BMW is looking pioneer a move away from proprietary systems used for in-car entertainment systems, allowing developers to build plug and play applications especially for their cars. This could be extremely good news for the open source community and another &#8216;notch in the bed post&#8217; in the fight against closed source systems. When a manufacturer [...]]]></description>
			<content:encoded><![CDATA[<p><a title="BMW Homepage" href="http://www.bmw.co.uk" target="_blank">BMW</a> is looking pioneer a move away from proprietary systems used for in-car entertainment systems, allowing developers to build plug and play applications especially for their cars. This could be extremely good news for the <a title="The Open Source Initiative" href="http://www.opensource.org" target="_blank">open source</a> community and another &#8216;notch in the bed post&#8217; in the fight against closed source systems.</p>
<p>When a manufacturer or software provider uses closed source systems those systems are then not open to modification and customisation by it&#8217;s user. A user is essentially restricted by what that manufacturer or provider allows you to do, which is often not a lot. Closed source systems don&#8217;t allow interaction with other company&#8217;s products and whilst this may be preferable to that company, as it ties the user to their products it doesn&#8217;t really benefit the consumer leaving them frustrated and annoyed.</p>
<p><a title="Apple" href="http://www.apple.com/uk/" target="_blank">Apple&#8217;s</a> <a title="iPod" href="http://en.wikipedia.org/wiki/IPod">iPod</a> is a great example of this problem. Originally Apple didn&#8217;t allow interaction between their product and 3rd party products. This meant that a Linux user couldn&#8217;t use an iPod as they had no method of song management because <a title="iTunes" href="http://www.apple.com/itunes/">iTunes</a> is not compatible with Linux Operating Systems. Similarly if you had an iPod dock to play your music out loud, you couldn&#8217;t use that dock to play music from a 3rd party MP3 player. This has since changed as many developers and hardware providers have found ways of &#8216;hacking&#8217; into the iPod and forcing it to be compatible with their systems.</p>
<blockquote><p>&#8220;We were convinced we had to develop an open platform that would allow for open software since the speed in the infotainment and entertainment industry requires us to be on a much faster track,&#8221;</p></blockquote>
<p>said Gunter Reichart, BMW vice president of driver assistance, body electronics and electrical networks.</p>
<blockquote><p>&#8220;We invite other OEMs to join with us, to exchange with us. We are open to exchange with others.&#8221;</p></blockquote>
<p>A great example of the power of Open Source systems that most of us can relate to has to be the <a title="Mozilla Firefox" href="http://www.mozilla-europe.org/en/firefox/" target="_blank">Mozilla Firefox Internet Browser software</a>. Thousands of add ons have been developed by a thriving community of developers to enhance the functionality of the browser and talking from personal experience, I simply cannot use other web browsers as they just don&#8217;t provide what I need.</p>
<p>Well done BMW, lets hope you can convince the other manufaturers to follow your example.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/29/bmw-embrace-open-source-for-in-car-entertainment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is your page indexed by Google? Firefox Plugin</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/28/is-your-page-indexed-by-google-firefox-plugin/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/28/is-your-page-indexed-by-google-firefox-plugin/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 22:31:36 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[cache-checker]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.panicroon.co.uk/?p=645</guid>
		<description><![CDATA[Many of you here are either involved with the marketing of a web site for another company or operate a web site or blog of your own. For either case, being able to immediately see if a page is cached by Google would be invaluable. That’s exactly what the Google Cache Checker extension for Firefox [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Many of you here are either involved with the marketing of a web site for another company or operate a web site or blog of your own.  For either case, being able to immediately see if a page is cached by Google would be invaluable.  That’s exactly what the Google Cache Checker extension for Firefox offers.</p></blockquote>
<p><a title="Go to Gadget Advisor to download plugin" href="http://www.gadgetadvisor.com/computer-software/free-google-cache-checker-firefox-extension" target="_blank">Google Cache Checker is provided by Gadget Advisor</a></p>
<p>I have been using this plugin all day, and already it has come in quite handy working out which pages on my site are indexed by Google after switching my domain from pureroon.co.uk to panicroon.co.uk. I have already noticed that its the older posts that Google has picked up the move for so far, which was quite unexpected. I thought that it would be the newer and fresher posts first working backwards. Well the Google gods are extremely fickle.</p>
<p>This plugin simply displays a green tick or a red cross in the corner of your firefox browser to indicate whether or not the url that you have landed on is indexed or not. This can be extrememly useful for making snap descisions on the relevancy of the content of the page.</p>
<div id="attachment_646" class="wp-caption alignnone" style="width: 510px"><a href="http://www.gadgetadvisor.com/computer-software/free-google-cache-checker-firefox-extension"><img class="size-full wp-image-646" title="Google Cache Checker" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/google-cache-checker.png" alt="Google Cache Checker" width="500" height="382" /></a><p class="wp-caption-text">Google Cache Checker</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/28/is-your-page-indexed-by-google-firefox-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blog: Hatching Out by Andew Hatch</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/23/new-blog-hatching-out-by-andew-hatch/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/23/new-blog-hatching-out-by-andew-hatch/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 13:43:49 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[andrew hatch]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[new blog]]></category>
		<category><![CDATA[observational]]></category>

		<guid isPermaLink="false">http://www.panicroon.co.uk/?p=592</guid>
		<description><![CDATA[His strap line is: Seeing things, thinking things, writing things. Andrew Hatch wants you to find out why he says this]]></description>
			<content:encoded><![CDATA[<p>His strap line is:</p>
<blockquote><p>Seeing things, thinking things, writing things.</p></blockquote>
<p><a title="Andrew Hatch: Hatching Out" href="http://andrewhatch.wordpress.com/" target="_blank">Andrew Hatch wants you to find out why he says this</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/23/new-blog-hatching-out-by-andew-hatch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft Patent Looks To Censor Live Speach</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/22/microsoft-patent-looks-to-censor-live-speach/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/22/microsoft-patent-looks-to-censor-live-speach/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 12:37:33 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[censorship]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[patent]]></category>
		<category><![CDATA[skeptical]]></category>
		<category><![CDATA[xbox 360]]></category>

		<guid isPermaLink="false">http://www.panicroon.co.uk/?p=542</guid>
		<description><![CDATA[Automatic censorship of audio data for broadcast by Microsoft An input audio data stream comprising speech is processed by an automatic censoring filter in either a real-time mode, or a batch mode, producing censored speech that has been altered so that undesired words or phrases are either unintelligible or inaudible. The automatic censoring filter employs [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Automatic censorship of audio data for broadcast " href="http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&amp;Sect2=HITOFF&amp;d=PALL&amp;p=1&amp;u=%2Fnetahtml%2FPTO%2Fsrchnum.htm&amp;r=1&amp;f=G&amp;l=50&amp;s1=7,437,290.PN.&amp;OS=PN/7,437,290&amp;RS=PN/7,437,290" target="_blank">Automatic censorship of audio data for broadcast by Microsoft</a></p>
<blockquote><p>An input audio data stream comprising speech is processed by an automatic      censoring filter in either a real-time mode, or a batch mode, producing      censored speech that has been altered so that undesired words or phrases      are either unintelligible or inaudible. The automatic censoring filter      employs a lattice comprising either phonemes and/or words derived from      phonemes for comparison against corresponding phonemes or words included      in undesired speech data. If the probability that a phoneme or word in      the input audio data stream matches a corresponding phoneme or word in      the undesired speech data is greater than a probability threshold, the      input audio data stream is altered so that the undesired word or a phrase      comprising a plurality of such words is unintelligible or inaudible. The      censored speech can either be stored or made available to an audience in      real-time.</p></blockquote>
<p>I feel a little skeptical here, the intention may be honorable however I think the implementation is going to be a little more difficult than Microsoft think, or at least more complicated than they have made it appear in the patent.</p>
<p>Consider the phrase (<a title="Metafilter" href="http://www.metafilter.com/75825/You-cant-say-that#2306863" target="_blank">found on Metafilter</a>):</p>
<blockquote><p>Did you enjoy your shitaki mushroom, Mr. Fukawa? Excellent. Are you still planing on going to the bird sanctuary today? I hear they have a new display of boobies and great tits, as well as some chickens. I just love those cocks and hens. Also, I hear that they have set up a petting zoo outside with an ass, a bitch, and a couple of pussy cats. If you have any problems finding the place, just give us a call and ask for the manager, his name is Dick Kunt.</p></blockquote>
<p>if this phrase were to be censored using the methods that Microsoft proposed, it would end up becoming completely unintelligable. I am all for censorship of intentionally offensive or inflamatory web and media content but censorship without analysis of context is not going to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/22/microsoft-patent-looks-to-censor-live-speach/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Strange Oyster Crater found by HiRiSE on Mars</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/22/strange-oyster-crater-found-by-hirise-on-mars/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/22/strange-oyster-crater-found-by-hirise-on-mars/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 12:12:59 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Up in Space]]></category>
		<category><![CDATA[crater]]></category>
		<category><![CDATA[geologic]]></category>
		<category><![CDATA[hirise]]></category>
		<category><![CDATA[ice cap]]></category>
		<category><![CDATA[mars]]></category>
		<category><![CDATA[oyster]]></category>

		<guid isPermaLink="false">http://www.panicroon.co.uk/?p=525</guid>
		<description><![CDATA[From the HiRISE Website The north polar layered deposits, and the bright ice cap that covers them, are very young (by geologic standards) features. To try and figure out the age of an area, or how quickly it&#8217;s being resurfaced, planetary scientists count up the number of craters at different sizes. An older surface has [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_529" class="wp-caption alignnone" style="width: 510px"><a href="http://www.pureroon.co.uk/wp-content/uploads/2008/10/hirise-oyster-crater-mars1.jpg" target="_blank"><img class="size-medium wp-image-529" title="HiRise Oyster Crater on Mars" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/hirise-oyster-crater-mars1-500x375.jpg" alt="Crater on North Polar Layered Deposits. Credit: NASA/JPL/University of Arizona" width="500" height="375" /></a><p class="wp-caption-text">Crater on North Polar Layered Deposits. Credit: NASA/JPL/University of Arizona</p></div>
<p><a title="From the HiRISE Website" href="http://hirise.lpl.arizona.edu/PSP_009663_2635" target="_blank">From the HiRISE Website</a></p>
<blockquote><p>The north polar layered deposits, and the bright ice cap that covers them, are very young (by geologic standards) features. To try and figure out the age of an area, or how quickly it&#8217;s being resurfaced, planetary scientists count up the number of craters at different sizes. An older surface has more time to accumulate more craters whereas a younger surface, or one that has a lot of geologic activity that destroys craters, doesn&#8217;t have many impact craters.</p>
<p>These polar deposits have a very low crater count so it is possible that the ice cap (bright white in this image) might only by about 10,000 years old and the surface of the layered deposits (orange-brown in this image) may be only a few million years old. This sounds like a long time but is very short compared to other surfaces on Mars.</p></blockquote>
<p>The ice has not melted because it is being sheltered from the sun by the high crater walls,  keeping the contents of the crater well preserved.</p>
<p>So much for Mars being a dead planet, what with <a title="Water found on Mars! Scientists say Woot!" href="http://www.pureroon.co.uk/2008/06/20/water-found-on-mars-scientists-say-woot/">ice</a>, <a title="Avalanche on Mars - Caught in the act!" href="http://www.pureroon.co.uk/2008/03/04/avalanche-on-mars-caught-in-the-act/" target="_self">avalanches</a>, <a title="There was once rain on Mars…" href="http://www.pureroon.co.uk/2008/09/29/there-was-once-rain-on-mars/">rain</a>, <a title="More amazing images of Sand Dunes from HiRISE" href="http://www.pureroon.co.uk/2008/04/12/more-amazing-images-of-sand-dunes-from-hirise/">moving sand dunes</a> and <a title="First Weather Report from Mars" href="http://www.pureroon.co.uk/2008/10/14/first-weather-report-from-mars/">weather systems</a>, it seems quite alive!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/22/strange-oyster-crater-found-by-hirise-on-mars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We Must Regulate the Internet: UK Government</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/21/we-must-regulate-the-internet-uk-government/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/21/we-must-regulate-the-internet-uk-government/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 14:58:06 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[ofcom]]></category>
		<category><![CDATA[regulation]]></category>
		<category><![CDATA[uk]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=504</guid>
		<description><![CDATA[The EU have been pushing for more stringent regulation of Internet content for quite a while, however Lord Currie, the Head of Ofcom, has hatched an ingenious plan to combat growing numbers of unemployment. Internet regulation could possibly create thousands of jobs, as the Register have pointed out: Quote The Reg took up the challenge [...]]]></description>
			<content:encoded><![CDATA[<p>The EU have been pushing for more stringent regulation of Internet content for quite a while, however Lord Currie, the Head of <a title="Ofcom Homepage" href="http://www.ofcom.org.uk/" target="_blank">Ofcom</a>, has hatched an ingenious plan to combat growing numbers of unemployment. Internet regulation could possibly create thousands of jobs, as the Register have pointed out:</p>
<p><a title="Article on The Register" href="http://www.theregister.co.uk/2008/10/20/government_internet_regulation/" target="_blank">Quote</a></p>
<blockquote><p><em>The Reg</em> took up the challenge and with the help of a pencil and the back of an envelope came to some startling conclusions.</p>
<p>Youtube puts up approximately 10 hours – or 600 minutes – of new content every minute. Classifying that material would take 600 people watching 24 hours a day. Assuming that individuals could function productively for six hours, YouTube has just gained an additional 2,400 employees.</p></blockquote>
<p>Now that is just the numbers for <a title="YouTube" href="http://www.youtube.com" target="_blank">Youtube</a>, is Lord Currie seriously suggesting that all sites should be regulated, that would require an extremely vast number of eyes. Its all very well proposing a way of helping with unemployment, however how would all these new employees be paid, would it be down to Ofcom, the government, the owners of each individual site. If it came down to owners of each individual site, small blogs would probably cease to exist as they would be unable to afford regulators.</p>
<p>Ever since the realisation in the late 90&#8242;s of the power of the internet, commercial entities have sought to control it, and governments have tried to censor it. The current method of group regulation (the <a title="Home of Open Source" href="http://www.opensource.org/" target="_blank">open source</a> ideology), whereby Internet users actively point out inflamatory or intollerant websites has been quite successful, but this doesn&#8217;t sit well with most power hungry governments who continually look to control and tame the thoughts and writings of it&#8217;s people.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/21/we-must-regulate-the-internet-uk-government/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Forbid Yourself From Sending Another Drunk Email!</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/16/forbid-yourself-from-sending-another-drunk-email/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/16/forbid-yourself-from-sending-another-drunk-email/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 18:42:18 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[booze]]></category>
		<category><![CDATA[drunk]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[mail goggles]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=465</guid>
		<description><![CDATA[I am quite sure that you have all done something similar to me; had a few drinks, then sent a text message or email whilst not quite &#8216;mentally balanced&#8217;. Most of the time these drunken messages result in nothing more than a slightly red face. Very occasionally something that may have seemed like an infallible [...]]]></description>
			<content:encoded><![CDATA[<p>I am quite sure that you have all done something similar to me; had a few drinks, then sent a text message or email whilst not quite &#8216;mentally balanced&#8217;. Most of the time these drunken messages result in nothing more than a slightly red face. Very occasionally something that may have seemed like an infallible idea the night before, may come with extreme unwanted circumstances.</p>
<p>I am guessing a few of you are nodding in agreement?</p>
<p>Well Google in their &#8216;make things better&#8217; way have come up with a way to reduce embarrassment, and they have called it Mail Goggles.</p>
<p>Mail Goggles is simply activated late at night and before you are allowed to send an email using your Gmail account you will be challenged with a few questions that hopefully should determine your sobriety&#8230;</p>
<div id="attachment_466" class="wp-caption alignnone" style="width: 410px"><img class="size-full wp-image-466" title="Mail Goggles" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/mail-goggles.png" alt="Mail Goggles" width="400" height="204" /><p class="wp-caption-text">Mail Goggles</p></div>
<p>If you can solve the maths questions in less than a minute then you a deemed to be sober enough to send your email, easy as that. Quite simple and clever really, but I know next time I am off to the local boozer I won&#8217;t forget to activate my Mail Goggles!</p>
<p><a title="Gmail Blog" href="http://gmailblog.blogspot.com/2008/10/new-in-labs-stop-sending-mail-you-later.html" target="_blank">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/16/forbid-yourself-from-sending-another-drunk-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Sense of Your Notes: Muji Chronotebook</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/16/make-sense-of-your-notes-muji-chronotebook/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/16/make-sense-of-your-notes-muji-chronotebook/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 17:26:51 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[award]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[muji]]></category>
		<category><![CDATA[muji chronotebook]]></category>
		<category><![CDATA[notebook]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[uml]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=456</guid>
		<description><![CDATA[Quote Because of the numerous hours in a day (and various other constraints), the lines in a diary are typically very narrow. They are also usually equally distributed (somewhat). But our information is a hierarchy. Some are more important to us. Some we feel happier about. We want to highlight stuff that’s important to us. [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_458" class="wp-caption alignnone" style="width: 510px"><a href="http://www.pureroon.co.uk/wp-content/uploads/2008/10/muji-chrononotebook.jpg"><img class="size-medium wp-image-458" title="Muji Chrononotebook" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/muji-chrononotebook.jpg" alt="Muji Chrononotebook" width="500" height="347" /></a><p class="wp-caption-text">Muji Chrononotebook</p></div>
<p><a title="Muji Chronotebook" href="http://jackcheng.com/stuff-i-love-muji-chronotebook" target="_blank">Quote</a></p>
<blockquote><p>Because of the numerous hours in a day (and various other constraints), the lines in a diary are typically very narrow. They are also usually equally distributed (somewhat). But our information is a hierarchy. Some are more important to us. Some we feel happier about. We want to highlight stuff that’s important to us. We want to write things that are more important in <span class="caps">BIGGER</span> sizes. Our lives cannot be so easily and clearly divided into equal parcels</p></blockquote>
<p>Normally when we make notes they follow the same pattern, you start at the top of the page and work your way downwards adding notes. The Chronotebook allows you to organise your notes using time. Not only can you use it to sort your thoughts, you can also use it to keep an eye on the length and time of any particular event.</p>
<p>Being a developer who uses nothing but relational databases all day, I tend to organise my notes using my own simplified <a title="UML, Unified Modeling Language" href="http://en.wikipedia.org/wiki/Unified_Modeling_Language" target="_blank">UML structure</a>, something my colleagues find mystifying! Everyone is unique, however I find that my method allows me to analyse a problem or scenario as I am making notes which helps me understant the situation before I sit down and properly think about it. However I have to be careful that I don&#8217;t spend too much time thinking about how I am going to make notes, rather than listening to what the client is actually saying!</p>
<p>The Chronotebook won the <a title="Muji Award International Design Competition" href="http://www.muji.net/award/results.html#en" target="_blank">Muji Award International Design Competition</a> for 2007, find out more at the link above&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/16/make-sense-of-your-notes-muji-chronotebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Accounces Just 20 Editions of Windows 7</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/16/microsoft-accounces-just-20-editions-of-windows-7/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/16/microsoft-accounces-just-20-editions-of-windows-7/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 13:11:41 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[pirate]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=462</guid>
		<description><![CDATA[I will be looking to diagonalgrade my crappy copy of Vista Home Premium, that I never use&#8230;]]></description>
			<content:encoded><![CDATA[<p>I will be looking to diagonalgrade my crappy copy of Vista Home Premium, that I never use&#8230;</p>
<div id="attachment_463" class="wp-caption alignnone" style="width: 510px"><a title="Original from Boin Boing" href="http://gadgets.boingboing.net/2008/10/14/microsoft-announces-1.html" target="_blank"><img class="size-full wp-image-463" title="Microsoft Windows 7: 20 Editions" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/windows-7-20-editions.png" alt="Microsoft Windows 7: 20 Editions" width="500" height="2307" /></a><p class="wp-caption-text">Microsoft Windows 7: 20 Editions</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/16/microsoft-accounces-just-20-editions-of-windows-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Programming Gives You Real Life Bad Habbits&#8230;</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/15/programming-gives-you-real-life-bad-habbits/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/15/programming-gives-you-real-life-bad-habbits/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 17:42:39 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[habbits]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=448</guid>
		<description><![CDATA[Quote It may be cliche, but it seems that people who get good at writing software are motivated by laziness. If everyone was as constructively lazy as a good programmer is, the whole world would be more efficient. [..] I wish I could grep my keys. [..] Programming teaches you that the universe is predictable [...]]]></description>
			<content:encoded><![CDATA[<p><a title="What real life bad habits has programming given you?" href="http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you" target="_blank">Quote</a></p>
<blockquote><p>It may be cliche, but it seems that people who get good at writing software are motivated by laziness. If everyone was as constructively lazy as a good programmer is, the whole world would be more efficient.</p>
<p>[..]</p>
<p>I wish I could grep my keys.</p>
<p>[..]</p>
<p>Programming teaches you that the universe is predictable and deterministic. I&#8217;ve personally found that this has shaped my expectations and fed my impatience with people and things that are not.</p>
<p>There&#8217;s a positive side to this &#8211; I think that spending time in an environment where you can&#8217;t &#8220;fudge&#8221; the answer or bullS**t your way through (you can&#8217;t &#8220;kind-of&#8221; sort a set of integers, and it won&#8217;t sort unless you tell the computer exactly what to do, and correctly) has sensitized me to b.s. in other environments, from commercials to claims about tax cuts &#8211; I just find it much more obvious when people are clearly hand-waving/fudging an answer.</p></blockquote>
<p>If you are a bit geeky, you will be lol for hours!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/15/programming-gives-you-real-life-bad-habbits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dogma, Atheists, Agnostics and the Easter Bunny</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/14/dogma-atheists-agnostics-and-the-easter-bunny/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/14/dogma-atheists-agnostics-and-the-easter-bunny/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 18:16:13 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[agnostic]]></category>
		<category><![CDATA[atheist]]></category>
		<category><![CDATA[dogma]]></category>
		<category><![CDATA[easter bunny]]></category>
		<category><![CDATA[pastafarian]]></category>
		<category><![CDATA[religion]]></category>
		<category><![CDATA[vampirist]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=443</guid>
		<description><![CDATA[Quote Paschalepist &#8212; one who believes that on the Sunday following the full moon closest in time to the vernal equinox, a fluffy white mountain hare (of the species lepus timidus) hides chocolate eggs. Apaschalepist &#8212; a person who does not believe that the Easter Bunny is real. Vampirist &#8212; one who believes that pale, [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Original Post on Who Has Time For This?" href="http://whohastimeforthis.blogspot.com/2008/10/militant-avamparists-are-so-irritating.html" target="_blank">Quote</a></p>
<blockquote><p><strong>Paschalepist</strong> &#8212; one who believes that on the Sunday following the full moon closest in time to the vernal equinox, a fluffy white mountain hare (of the species lepus timidus) hides chocolate eggs.</p>
<p><strong>Apaschalepist</strong> &#8212; a person who does not believe that the Easter Bunny is real.</p>
<p><strong>Vampirist</strong> &#8212; one who believes that pale, fanged immortals stalk the night, sometimes in the form of bats.</p>
<p><strong>Avampirist</strong> &#8212; a person who thinks that un-dead, bloodthirsty demons are mythical.</p>
<p><strong>Pastafarian</strong> &#8212; one who believes that the universe has been created and tended by the great Flying Spaghetti Monster, blessed be His name.</p>
<p><strong>Antipasta</strong> &#8212; a person who doesn&#8217;t believe that the Flying Spaghetti Monster exists.</p></blockquote>
<p><a title="Original Post on Who Has Time For This?" href="http://whohastimeforthis.blogspot.com/2008/10/militant-avamparists-are-so-irritating.html" target="_blank">A good point well made&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/14/dogma-atheists-agnostics-and-the-easter-bunny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Weather Report from Mars</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/14/first-weather-report-from-mars/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/14/first-weather-report-from-mars/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 17:43:57 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Up in Space]]></category>
		<category><![CDATA[hirise]]></category>
		<category><![CDATA[mars]]></category>
		<category><![CDATA[nasa]]></category>
		<category><![CDATA[reconnaissance orbiter]]></category>
		<category><![CDATA[weather]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=439</guid>
		<description><![CDATA[Quote from Universe Today Reconnaissance Orbiter has been circling Mars for over two years now, and has provided unprecedented views of the Red Planet with its HiRISE Camera. But did you also know that MRO is a weather-monitoring satellite, too? The Mars Climate Sounder instrument is examining the Martian atmosphere and has issued its first [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_440" class="wp-caption alignnone" style="width: 510px"><a href="http://www.pureroon.co.uk/wp-content/uploads/2008/10/mro-mars-climate-sounder_br.jpg"><img class="size-medium wp-image-440" title="NASA Reconnaissance Orbiter" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/mro-mars-climate-sounder_br.jpg" alt="NASA Reconnaissance Orbiter" width="500" height="375" /></a><p class="wp-caption-text">NASA Reconnaissance Orbiter</p></div>
<p><a title="Quote from Universe Today" href="http://www.universetoday.com/2008/10/13/mars-satellites-first-weather-report/" target="_blank">Quote from Universe Today</a></p>
<blockquote><p>Reconnaissance Orbiter has been circling Mars for over two years now, and has provided unprecedented views of the Red Planet with its HiRISE Camera. But did you also know that MRO is a weather-monitoring satellite, too? The Mars Climate Sounder instrument is examining the Martian atmosphere and has issued its first Mars weather report. &#8220;It has taken 20 years and three missions but we finally have an instrument in orbit that gives us a detailed view of the entire atmosphere of Mars and it is already giving us fresh insights into the Martian climate,&#8221; said Professor Fred Taylor of Oxford University. Within a paper issued by the Mars &#8216;weather team&#8217; comes surprising news: during the freezing Martian winter the atmosphere above the planet’s South Pole is considerably warmer than predicted.</p></blockquote>
<p>I wonder if a Mars forecast will be just as reliable as the forecasts we get on Earth?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/14/first-weather-report-from-mars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mmmm Microsoft &#8216;M&#8217;?</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/14/mmmm-microsoft-m/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/14/mmmm-microsoft-m/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 17:18:04 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[m]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[ms sql]]></category>
		<category><![CDATA[object oriented]]></category>
		<category><![CDATA[oslo]]></category>
		<category><![CDATA[quadrant]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[xaml]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=433</guid>
		<description><![CDATA[Quote In a software-centric world where we already have many, many languages to program in, from scripting to bytecode compiled languages, to frameworks on top of languages and embedded languages, now Redmond wants to bring ANOTHER language to the table, titled ‘M’ (for Microsoft?). The new language is to be a part of Microsoft’s new [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Microsoft’s new ‘M’ programming language" href="http://thecoffeedesk.com/news/index.php/archives/74" target="_blank">Quote</a></p>
<blockquote><p>In a software-centric world where we already have many, many languages to program in, from scripting to bytecode compiled languages, to frameworks on top of languages and embedded languages, now Redmond wants to bring ANOTHER language to the table, titled ‘M’ (for Microsoft?).</p>
<p>The new language is to be a part of Microsoft’s new Oslo development and service-oriented strategy, incorporating features from XAML while being textual and domain-specific. M is to be used directly with 2 other components to be released with M along with Visual Studio 2010: Quadrant, a tool for building models visually, and a repository for storing and viewing models in an SQL database.</p></blockquote>
<p><a title="Microsoft Home Page" href="http://www.microsoft.com/" target="_blank">Microsoft</a> are claiming the new language will be completely cross platform, but with a little catch. Microsoft won&#8217;t be building the back end for any other platforms and the database used must by <a title="Microsoft MS SQL Server" href="http://www.microsoft.com/sqlserver" target="_blank">MS SQL</a>. Well I suppose that for Microsoft that is a large step in the right direction!</p>
<p>A testing preview should be released this month at the <a title="Microsoft Professional Developer's Conference" href="http://www.microsoftpdc.com/" target="_blank">Microsoft Professional Developers&#8217; Conference</a>, but there is no word on a final release date. I would guess it&#8217;s going to be included with Visual Studio 2010, so some time next year.</p>
<p>The language should be geared towards Object Oriented Programmers however its reliance on MS SQL and .net is hardly going to make it very attractive to open source developers, whom Microsoft seem to be making an attempt to please recently.</p>
<p>The name makes me a little suspicious here, is this just Microsoft trying to get hold of a slightly more funky image? Well I guess we will find out when programmers start using it, you never know &#8216;M&#8217; might even be part of Microsoft&#8217;s vision to finally see off <a title="Find out about C" href="http://en.wikipedia.org/wiki/C_programming_language" target="_blank">C</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/14/mmmm-microsoft-m/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WikiVS: MySQL vs. PostgreSQL. Why Would You?</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/13/wikivs-mysql-vs-postgresql-why-would-you/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/13/wikivs-mysql-vs-postgresql-why-would-you/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 17:15:41 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[awstats]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[parallel programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=425</guid>
		<description><![CDATA[I just came across this article published last week from the WikiVS guys. As a web developer I normally use MySQL, however I have been working on some projects recently that MySQL just hasn&#8217;t been able to handle because of the sheer number of rows used. The most recent is a program that reads apache [...]]]></description>
			<content:encoded><![CDATA[<p>I just came across <a title="MySQL Vs PostgreSQL" href="http://www.wikivs.com/wiki/MySQL_vs_PostgreSQL" target="_blank">this article</a> published last week from the <a title="WikiVS" href="http://www.wikivs.com/wiki/Main_Page" target="_blank">WikiVS</a> guys. As a web developer I normally use <a title="MySQL Website" href="http://www.mysql.com/" target="_blank">MySQL</a>, however I have been working on some projects recently that <a title="MySQL Website" href="http://www.mysql.com/" target="_blank">MySQL</a> just hasn&#8217;t been able to handle because of the sheer number of rows used. The most recent is a program that reads apache log files and allows real time <a title="AWStats - Website Logfile Analysis" href="http://awstats.sourceforge.net/" target="_blank">awstats</a> style reporting, as well as comparisons between all websites that are being tracked. As you can imagine, when tracking stats for over a hundred websites, many of which get more than several thousand unique hits a day, the number of rows quickly flew into the millions and that combined with a highly relational structure brought <a title="MySQL" href="http://www.mysql.com/" target="_blank">MySQL</a> crying to its knees. Even on an 8 core machine with as many parallel programming techniques that <a title="PHP Website" href="http://www.php.net/" target="_blank">PHP5</a> would let me lay my hands on!</p>
<p>In jumped <a title="PostgreSQL" href="http://www.postgresql.org/" target="_blank">PostgreSQL</a> to the rescue, along with my own query caching method and the software was back up and running!</p>
<p><a title="MySQL Vs PostgreSQL" href="http://www.wikivs.com/wiki/MySQL_vs_PostgreSQL" target="_blank">Quote</a></p>
<blockquote><p><strong><a title="MySQL Website" href="http://www.mysql.com/" target="_blank">MySQL</a> vs <a title="PostgreSQL" href="http://www.postgresql.org/" target="_blank">PostgreSQL</a></strong> is a decision many must make when approaching open-source relational databases management systems. Both are time-proven solutions that compete strongly with proprietary database software. MySQL has long been assumed to be the faster but less full-featured of the two database systems, while PostgreSQL was assumed to be a more densely featured database system often described as an open-source version of Oracle. MySQL has been popular among various software projects because of its speed and ease of use, while PostgreSQL has had a close following from developers who come from an Oracle or SQL Server background.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/13/wikivs-mysql-vs-postgresql-why-would-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fly By Reveals the First Full Photo of Mercury</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/12/fly-by-reveals-the-first-full-photo-of-mercury/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/12/fly-by-reveals-the-first-full-photo-of-mercury/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 08:55:55 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Up in Space]]></category>
		<category><![CDATA[mercury]]></category>
		<category><![CDATA[messenger]]></category>
		<category><![CDATA[nasa]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=418</guid>
		<description><![CDATA[MESSENGER is the first mission where a space craft has been sent to orbit Mercury, the closest planet to the sun. On October 6th 2008 at 04:40 the probe came within 200km of the toastie planet&#8217;s surface and took as many pictures as it could. NASA is hoping that the probe will be in full [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_420" class="wp-caption alignnone" style="width: 510px"><a href="http://www.pureroon.co.uk/wp-content/uploads/2008/10/mercury-flyby-photo.jpg"><img class="size-medium wp-image-420" title="mercury-flyby-photo" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/mercury-flyby-photo-500x500.jpg" alt="Credit: NASA/Johns Hopkins University Applied Physics Laboratory/Carnegie Institution of Washington" width="500" height="500" /></a><p class="wp-caption-text">Credit: NASA/Johns Hopkins University Applied Physics Laboratory/Carnegie Institution of Washington</p></div>
<p>MESSENGER is the first mission where a space craft has been sent to orbit Mercury, the closest planet to the sun. On October 6th 2008 at 04:40 the probe came within 200km of the toastie planet&#8217;s surface and took as many pictures as it could.</p>
<p><a title="NASA" href="http://www.nasa.gov/mission_pages/messenger/main/index.html" target="_blank">NASA</a> is hoping that the probe will be in full orbit around the planet by 2011 and that MESSENGER will be Mercury&#8217;s first artificial satelite.</p>
<p>The very bright crater just south of the equator is Kuiper which was identified using photos from the 1970s. The area east of Kuiper has never been photographed, until MESSENGER.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/12/fly-by-reveals-the-first-full-photo-of-mercury/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Worried about missing an Email? Never Again!</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/06/worried-about-missing-an-email-never-again/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/06/worried-about-missing-an-email-never-again/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 17:01:17 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[webmail]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=414</guid>
		<description><![CDATA[Quote Webmail Notifier connects to your private email account when you can not, and let you know what is going on! It works in the background to inform you every time you receive a personal email and even the capacity of unread emails! No external battery required, power by USB Soft Illuminated Blue, Red, Green [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_415" class="wp-caption alignnone" style="width: 510px"><a href="http://www.pureroon.co.uk/wp-content/uploads/2008/10/usb-webmail-notifier-600.jpg"><img class="size-medium wp-image-415" title="usb-webmail-notifier-600" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/usb-webmail-notifier-600-500x375.jpg" alt="USB Webmail Notifier from USB Geek" width="500" height="375" /></a><p class="wp-caption-text">USB Webmail Notifier from USB Geek</p></div>
<p><a title="Buy this for yourself!" href="http://www.usbgeek.com/prod_detail.php?prod_id=0922" target="_blank">Quote</a></p>
<blockquote>
<li> Webmail Notifier connects to your private email account when you can not, and let you know what is going on!</li>
<li> It works in the background to inform you every time you receive a personal email and even the capacity of unread emails!</li>
<li> No external battery required, power by USB</li>
<li> Soft Illuminated Blue, Red, Green indicator</li>
<li> Webmail Notifier supports: Hotmail, Gmail, Yahoo Mail, Outlook, Outlook Express, POP 3 mail</li>
</blockquote>
<p>Need I say any more, other than you can get this for just $17+pp!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/06/worried-about-missing-an-email-never-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sustainable Computing: How Do Google Do It?</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/04/sustainable-computing-how-do-google-do-it/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/04/sustainable-computing-how-do-google-do-it/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 07:30:41 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[data center]]></category>
		<category><![CDATA[eco]]></category>
		<category><![CDATA[efficient]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mission]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=408</guid>
		<description><![CDATA[Internet dominator Google have come up with a 5 step approach to building sustainable and eco-friendly data centers. Google&#8217;s mission is to organize the world&#8217;s information and make it universally accessible and useful. Hundreds of millions of users access our services through the web, and supporting this traffic requires lots of computers. We strive to [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Google's Predicted Energy Usage" href="http://www.google.com/corporate/datacenters/" target="_blank"><img class="size-medium wp-image-411 alignright" title="eusage" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/eusage.gif" alt="" width="403" height="284" /></a>Internet dominator Google have come up with a 5 step approach to building sustainable and eco-friendly data centers.</p>
<blockquote><p>Google&#8217;s mission is to organize the world&#8217;s information and make it universally accessible and useful. Hundreds of millions of users access our services through the web, and supporting this traffic requires lots of computers. We strive to offer great internet services while taking our energy use very seriously. That&#8217;s why, almost a decade ago, we started our efforts to make our computing infrastructure as sustainable as possible. Today we are operating what we believe to be the world&#8217;s most efficient data centers.</p></blockquote>
<p>This is quite blatantly a mission statement rather than a report. There are no specifics or detailed facts or figures. There is a lot of uses of graphs like this one, that have no scales on them, which makes them rather meaningless.</p>
<p>I am quite happy to accept that Google have become more efficient, but exactly how much?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/04/sustainable-computing-how-do-google-do-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Microsoft Cloud; A Month Away</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/03/the-microsoft-cloud-a-month-away/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/03/the-microsoft-cloud-a-month-away/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 12:36:11 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[ballmer]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[soa]]></category>
		<category><![CDATA[windows cloud]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=403</guid>
		<description><![CDATA[Quote Cloud computing&#8217; is a term used to describe a situation where applications are based on web servers and accessed through internet connections, rather than being installed on clients. This leads to a new business model of subscription-based applications, generally known as &#8216;software as a service&#8217; (SaaS) but dubbed by Microsoft as &#8216;software plus services. [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Microsoft to launch 'Windows Cloud' in a month - ZDNet.com" href="http://news.zdnet.co.uk/internet/0,1000000097,39497208,00.htm">Quote</a></p>
<blockquote><p>Cloud computing&#8217; is a term used to describe a situation where applications are based on web servers and accessed through internet connections, rather than being installed on clients. This leads to a new business model of subscription-based applications, generally known as &#8216;software as a service&#8217; (SaaS) but dubbed by Microsoft as &#8216;software plus services.</p>
<p>[..]</p>
<p>&#8220;Every time there&#8217;s a big new trend, a big new opportunity, we write a new operating system,&#8221; Ballmer told delegates at the conference. &#8220;We&#8217;re now in the process of writing a new operating system. For lack of a better term, before we announce it in four weeks, I&#8217;ll call it Windows Cloud.&#8221;</p></blockquote>
<p><a title="'Windows Cloud' to descend this month, says Ballmer - The Register" href="http://www.theregister.co.uk/2008/10/01/steve_ballmer_windows_cloud/" target="_blank">Quote</a></p>
<blockquote><p>Ballmer also hinted at what would be built into the new OS, including geo replication, how to design apps intended to commingle [we think he means appeasing regulators by providing more interoperability], management modelling and an SOA model, to effectively create a new platform.</p>
<p>“We’re not driving an agenda towards being service providers but we’ve gotta build a service that is Windows in the cloud,” admitted Ballmer.</p>
<p>He also hit out at internet kingpin and pesky rival Google.</p>
<p>“If you talk to Google they’ll say it&#8217;s thin client computing but then they’ll issue a new browser that’s basically a big fat operating system designed to compete with Windows but running on top of it,” he said.</p></blockquote>
<p>Please excuse my heavy quoting&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/03/the-microsoft-cloud-a-month-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twinkle Twinkle Little Star&#8230;. BANG!!!</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/03/twinkle-twinkle-little-star-bang/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/03/twinkle-twinkle-little-star-bang/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 12:22:22 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Up in Space]]></category>
		<category><![CDATA[black hole]]></category>
		<category><![CDATA[gamma ray]]></category>
		<category><![CDATA[infrared]]></category>
		<category><![CDATA[star]]></category>
		<category><![CDATA[x-ray]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=400</guid>
		<description><![CDATA[Quote Swift has made another unusual discovery. The orbiting satellite detected a very strange star that &#8220;twinkled&#8221; with gamma rays, X-rays, and light — and then vanished. Back in June the satellite detected a spike of gamma-rays that lasted less than five seconds. But this high-energy flash wasn&#8217;t a gamma-ray burst — the birth cry [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_399" class="wp-caption alignnone" style="width: 509px"><a href="http://www.pureroon.co.uk/wp-content/uploads/2008/10/starthatbursts.jpg"><img class="size-medium wp-image-399" title="Start That Bursts" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/starthatbursts-499x499.jpg" alt="Illustration of the flare from magnetar Swift J195509+261406. A starquake is probably what triggered the object's 40 optical flares. Credit: NASA/Swift/Sonoma State University/A. Simonnet" width="499" height="499" /></a><p class="wp-caption-text">Illustration of the flare from magnetar Swift J195509+261406. A starquake is probably what triggered the object</p></div>
<p><a title="Original Post on Universe Today" href="http://www.universetoday.com/2008/10/02/little-star-twinkles-then-vanishes/" target="_blank">Quote</a></p>
<blockquote><p>Swift has made another unusual discovery. The orbiting satellite detected a very strange star that &#8220;twinkled&#8221; with gamma rays, X-rays, and light — and then vanished. Back in June the satellite detected a spike of gamma-rays that lasted less than five seconds. But this high-energy flash wasn&#8217;t a gamma-ray burst — the birth cry of a black hole far across the universe. It was something much closer to home. During the next three days, the object brightened and faded in visible light. It flashed over 40 times! Eleven days later, it flashed again, this time at infrared wavelengths. Then, it disappeared from view!</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/03/twinkle-twinkle-little-star-bang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fantastic Ground Based Image of Jupiter</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/03/fantastic-ground-based-image-of-jupiter/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/03/fantastic-ground-based-image-of-jupiter/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 12:02:20 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Up in Space]]></category>
		<category><![CDATA[astronomy]]></category>
		<category><![CDATA[jupiter]]></category>
		<category><![CDATA[mad]]></category>
		<category><![CDATA[moon]]></category>
		<category><![CDATA[star]]></category>
		<category><![CDATA[telescope]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=396</guid>
		<description><![CDATA[Quote Everyone loves twinkling stars and moonlit nights—EXCEPT astronomers. But astronomers are crafty people, so they&#8217;ve come up with ways to mitigate the distortion that Earth&#8216;s thick atmosphere causes for ground based telescopes (from which stars appear to twinkle). And now, a new image-correction technique has delivered the sharpest whole-planet ground-based picture ever. The Very [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_395" class="wp-caption alignnone" style="width: 509px"><a href="http://www.pureroon.co.uk/wp-content/uploads/2008/10/jupiter-mad.jpg"><img class="size-medium wp-image-395" title="jupiter-mad" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/jupiter-mad-499x499.jpg" alt="Jupiter from the VLT.  Credit:  ESO" width="499" height="499" /></a><p class="wp-caption-text">Jupiter from the VLT.  Credit:  ESO</p></div>
<p><a title="Original Post on Universe Today" href="http://www.universetoday.com/2008/10/02/best-ground-based-image-of-jupiter-ever/" target="_blank">Quote</a></p>
<blockquote><p>Everyone loves twinkling stars and moonlit nights—EXCEPT astronomers. But astronomers are crafty people, so they&#8217;ve come up with ways to mitigate the distortion that <a class="alinks_links" onclick="return alinks_click(this);" rel="external" href="http://www.universetoday.com/guide-to-space/earth/">Earth</a>&#8216;s thick atmosphere causes for ground based <a class="alinks_links" onclick="return alinks_click(this);" rel="external" href="http://www.universetoday.com/guide-to-space/telescopes/">telescopes</a> (from which stars appear to twinkle). And now, a new image-correction technique has delivered the sharpest whole-planet ground-based picture ever. The Very Large <a class="alinks_links" onclick="return alinks_click(this);" rel="external" href="http://www.universetoday.com/guide-to-space/telescopes/">Telescope</a> (VLT) performed a record two-hour observation of Jupiter using a breakthrough technique to remove atmospheric blur. And what a result! Just take a look at that gorgeous image…And this new image reveals changes in Jupiter&#8217;s smog-like haze, probably in response to a planet-wide upheaval more than a year ago.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/03/fantastic-ground-based-image-of-jupiter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What does the offshoring backlash tell us?</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/03/what-does-the-offshoring-backlash-tell-us/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/03/what-does-the-offshoring-backlash-tell-us/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 08:30:46 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[outsourcing]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=387</guid>
		<description><![CDATA[Quote After 2 years of excuses, laziness, constant turnover (complete waste of training time when the guy/girl buggers off and leaves you with a new muppet), terrible or copied-from-Google code, never-ending bugs, headaches, baffling phone calls where no-one understood each other, emails that promised to &#8220;do the needful&#8221; but went ignored, applications that just didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Original Article from TheRegister" href="http://www.theregister.co.uk/2008/10/01/offshore_dev_poll_200810/" target="_blank">Quote</a></p>
<blockquote><p>After 2 years of excuses, laziness, constant turnover (complete waste of training time when the guy/girl buggers off and leaves you with a new muppet), terrible or copied-from-Google code, never-ending bugs, headaches, baffling phone calls where no-one understood each other, emails that promised to &#8220;do the needful&#8221; but went ignored, applications that just didn&#8217;t work, MILLIONS of dollars, and much, much more&#8230;&#8230;. we had enough, and told the Indian coding behemoth we&#8217;d had enough and brought our dev team back in house.</p>
<p>Saying that things go more smoothly is a massive understatement. Don&#8217;t know why we bothered. Oh yes, some spreadsheet said it would be cheaper.</p></blockquote>
<p>When writing software the developer needs to be in constant communication with both the project manager and the author. Out-sourcing your coding just doesn&#8217;t work. In my experience a programmer often has a completely different take on how to solve a problem to most other people, they will often find the simplest and most efficient way of producing software, which while it sounds good is often not the best method.</p>
<p>Any well rounded developer knows that sometimes the specs given to them can be illogical or not well thought through by an author or project manager that doesn&#8217;t fully understand the coding process. This means that the full team building a particular piece of software need to be flexible to some degree and this cannot be acheived when outsourcing.</p>
<p>It doesn&#8217;t even have to be incomplete specs that will upset the process, clients love to change their minds, especially when they see a prototype of their software. Things I hear all to regularly are &#8216;can we move that to there&#8217;, &#8216;what if we swapped this round&#8217; or the dreaded &#8216;Oh, actually I don&#8217;t need that bit any more&#8230;&#8217;</p>
<p>So on paper it may look like it is a lot cheaper to outsource, but in the long run the lack of communication, understanding and flexibility will have you wishing you had seen sense when that email from an asian coding beast offering you the chance to slash your development costs drops into your inbox.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/03/what-does-the-offshoring-backlash-tell-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t get an Interview with Sarah Palin?</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/02/cant-get-an-interview-with-sarah-palin/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/02/cant-get-an-interview-with-sarah-palin/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 18:30:41 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[democracy]]></category>
		<category><![CDATA[economy]]></category>
		<category><![CDATA[sarah palin]]></category>
		<category><![CDATA[us election]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=380</guid>
		<description><![CDATA[We&#8217;ve got you covered: Q: How will you fix the economy? A: The economy and putting it back on the world. I&#8217;m not looking at poll numbers. What I think it was an unfair attack on the war on terror. And I asked President Karzai, &#8220;Is that what you are seeking, also? That strategy that [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve got you covered:</p>
<blockquote><p><strong>Q:</strong> <strong>How will you fix the economy?</strong><br />
<strong>A:</strong> The economy and putting it back on the world. I&#8217;m not looking at poll numbers. What I think it was an unfair attack on the war on terror. And I asked President Karzai, &#8220;Is that what you are seeking, also? That strategy that has been the Washington elite. I don&#8217;t know if the task is from Alaska that we take the fight to them. We never again let them come onto our soil and try to destroy not only our democracy, but communities like the idea though of taxpayers being used to bailout these corporations. Today it was AIG, important call there, though, because of the status quo, going with the energy source that is needed to help shore up our economy and putting it back on the right reasons and serving something greater than himself and not just let one party try to destroy not only our democracy, but communities like the idea though of taxpayers being used to talk about, America being the beacon of light and hope for those who are hell bent on destroying America and our allies.</p></blockquote>
<p><a title="Ask Sarah Palin" href="http://interviewpalin.com/" target="_blank">Ask Sarah all the questions you want</a></p>
<p><a title="What is this about Sarah Palin?" href="http://interviewpalin.com/about" target="_blank">What is this?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/02/cant-get-an-interview-with-sarah-palin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2008 Definition of Optimist</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/02/2008-definition-of-optimist/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/02/2008-definition-of-optimist/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 18:00:49 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[investment banker]]></category>
		<category><![CDATA[optimist]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=378</guid>
		<description><![CDATA[Quote Optimist: an investment banker who irons five shirts on Sunday evening.]]></description>
			<content:encoded><![CDATA[<p><a title="Original Post" href="http://www.netfunny.com/rhf/jokes/08/Sep/optimist_2008.html" target="_blank">Quote</a></p>
<blockquote><p>Optimist:  an investment banker who irons five shirts on Sunday evening.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/02/2008-definition-of-optimist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Ready for the Procrastination Loop</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/02/get-ready-for-the-procrastination-loop/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/02/get-ready-for-the-procrastination-loop/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 17:45:42 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[flow chart]]></category>
		<category><![CDATA[procrastination]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=371</guid>
		<description><![CDATA[Ever wanted to have a definitive way of planning out just how effectively you can waste your time? Now you can! Use this flow diagram to effectively plan your working day. All bases are covered, decide how you are going to surf the web, where and what to eat for lunch, efficiently process your social [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_373" class="wp-caption alignright" style="width: 310px"><a title="Click to View the Full Procrastination Flow Chart" href="http://www.pureroon.co.uk/wp-content/uploads/2008/10/imagesprocrastination-20flowchart.jpg" target="_blank"><img class="size-medium wp-image-373" title="Procrastination Flow Chart" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/imagesprocrastination-20flowchart-300x226.jpg" alt="Procrastination Flow Chart" width="300" height="226" /></a><p class="wp-caption-text">Procrastination Flow Chart</p></div>
<p>Ever wanted to have a definitive way of planning out just how effectively you can waste your time?</p>
<p>Now you can! Use this flow diagram to effectively plan your working day. All bases are covered, decide how you are going to surf the web, where and what to eat for lunch, efficiently process your social networking daily dosage and if there is any free time left; how you can crowbar a little work in&#8230;</p>
<p>Thanks to <a title="Project Sidewalk" href="http://www.projectsidewalk.com/" target="_blank">Project Sidewalk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/02/get-ready-for-the-procrastination-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stunning HDR Photographs of Abandoned Places</title>
		<link>http://www.iknowfoobar.co.uk/2008/10/02/stunning-hdr-photographs-of-abandoned-places/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/10/02/stunning-hdr-photographs-of-abandoned-places/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 17:30:21 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[abandoned]]></category>
		<category><![CDATA[hdr]]></category>
		<category><![CDATA[hdri]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=368</guid>
		<description><![CDATA[Quote Something about the vibrant colors, stark contrasts and vivid depths of an HDR approach lends abandonments to HDR photography like few other subjects. Beautiful HDR pictures bring dead places and long disused spaces powerfully to back to life. HDR Photography can have some extremely interesting results, some of these photos are quite spooky when [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Original Post on WebUrbanist" href="http://weburbanist.com/2008/09/21/24-stunning-hdr-photographs-of-abandoned-places/" target="_blank">Quote</a></p>
<blockquote><p>Something about the vibrant colors, stark contrasts and vivid depths of an HDR approach lends <a title="WebUrbanist: Abandonments Archive" href="http://weburbanist.com/category/abandonments/">abandonments</a> to HDR photography like few other subjects. Beautiful HDR pictures bring dead places and long disused spaces powerfully to back to life.</p></blockquote>
<div id="attachment_367" class="wp-caption alignnone" style="width: 478px"><a title="Original Post on WebUrbanist" href="http://weburbanist.com/2008/09/21/24-stunning-hdr-photographs-of-abandoned-places/" target="_blank"><img class="size-full wp-image-367" title="11-hdr-rusted-truck" src="http://www.pureroon.co.uk/wp-content/uploads/2008/10/11-hdr-rusted-truck.jpg" alt="HDR Rusted Truck" width="468" height="306" /></a><p class="wp-caption-text">HDR Rusted Truck</p></div>
<p>HDR Photography can have some extremely interesting results, some of these photos are quite spooky when portraid with such vivid and high contrasting colours.</p>
<p><a title="High Dynamic Range Imaging" href="http://en.wikipedia.org/wiki/High_dynamic_range_imaging" target="_blank">HDR</a> stands for &#8216;High Dynamic Range&#8217; and uses various techniques, generally orientated around blending a range of exposures or range of light and dark areas.</p>
<p><a title="Original Post on WebUrbanist" href="http://weburbanist.com/2008/09/21/24-stunning-hdr-photographs-of-abandoned-places/" target="_blank">View an impressive range of HDR photography of abandoned buildings and places</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/10/02/stunning-hdr-photographs-of-abandoned-places/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A True Image from False Kiva</title>
		<link>http://www.iknowfoobar.co.uk/2008/09/30/a-true-image-from-false-kiva/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/09/30/a-true-image-from-false-kiva/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 08:52:32 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Up in Space]]></category>
		<category><![CDATA[astronomy]]></category>
		<category><![CDATA[false kiva]]></category>
		<category><![CDATA[jupiter]]></category>
		<category><![CDATA[mesa]]></category>
		<category><![CDATA[milky way galaxy]]></category>
		<category><![CDATA[nasa]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[wally pacholka]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=339</guid>
		<description><![CDATA[Quote Explanation: Is there any place in the world you could see a real sight like this? Yes. Pictured above is single exposure image spectacular near, far, and in between. Diving into the Earth far in the distance is part of the central band of our Milky Way Galaxy, taken with a long duration exposure. [...]]]></description>
			<content:encoded><![CDATA[<p><a title="False Kiva Pacholka" href="http://antwrp.gsfc.nasa.gov/apod/ap080929.html" target="_blank">Quote</a></p>
<div id="attachment_338" class="wp-caption alignnone" style="width: 510px"><a title="A True Image from False Kiva" href="http://antwrp.gsfc.nasa.gov/apod/ap080929.html"><img class="size-full wp-image-338" title="False Kiva Pacholka" src="http://www.pureroon.co.uk/wp-content/uploads/2008/09/milky-way-jupiter.png" alt="A True Image from False Kiva Credit &amp; Copyright: Wally Pacholka (Astropics.com/TWAN)" width="500" height="333" /></a><p class="wp-caption-text">A True Image from False Kiva Credit &amp; Copyright: Wally Pacholka (Astropics.com/TWAN)</p></div>
<blockquote><p><strong>Explanation: </strong> Is there any place in the world you could see a real sight like this?  Yes.  <a href="http://www.twanight.org/newTWAN/photos.asp?ID=3001638" target="_blank">Pictured above</a> is single exposure image spectacular near, far, and in between.    Diving into the Earth far in the distance is part of the  <a href="http://antwrp.gsfc.nasa.gov/apod/ap070930.html" target="_blank">central band</a> of our  <a href="http://en.wikipedia.org/wiki/Milky_Way_galaxy" target="_blank">Milky Way Galaxy</a>, taken with a long duration exposure.   Much closer, the planet  <a href="http://antwrp.gsfc.nasa.gov/apod/ap080718.html" target="_blank">Jupiter</a> is visible as the bright point just to band&#8217;s left.    Closer still are  <a href="http://antwrp.gsfc.nasa.gov/apod/ap071225.html" target="_blank">picture</a>sque  <a href="http://en.wikipedia.org/wiki/Butte" target="_blank">buttes</a> and  <a href="http://en.wikipedia.org/wiki/Mesa" target="_blank">mesas</a> of the  <a href="http://www.nps.gov/cany/" target="_blank">Canyonlands National Park</a> in  <a href="http://en.wikipedia.org/wiki/Utah" target="_blank">Utah</a>,  <a href="https://www.cia.gov/library/publications/the-world-factbook/geos/us.html" target="_blank">USA</a>, lit by a  <a href="http://antwrp.gsfc.nasa.gov/apod/ap060618.html" target="_blank">crescent</a> moon.  In the foreground is a cave housing a stone circle of unknown origin named  <a href="http://www.aguntherphotography.com/usa_west/canyonlands/false-kiva.html" target="_blank">False Kiva</a>.     The cave was briefly lit by flashlight during the long exposure.  Astrophotographer  <a href="http://www.astropics.com/latimes.htm" target="_blank">Wally Pacholka</a> reports that getting to the cave  to take this image was no easy  <a href="http://www.startrek.com/" target="_blank">trek</a>.    Also, <a href="http://www.mountainlion.org/" target="_blank">mountain lions</a> were a concern while waiting alone in the dark for just the right exposure.</p></blockquote>
<p>This is a fantastic photo, as an amateur photographer I can really appreciate how difficult this shot was to take and the amount of patience required to get exactly the right exposure!</p>
<p>Lighting the cave with a flash really gives the whole photo quite a surreal effect, very impressive.</p>
<p>Follow <a title="NASA's Astronomy Picture of the Day Archive" href="http://antwrp.gsfc.nasa.gov/apod/archivepix.html" target="_blank">NASA&#8217;s Astronomy Picture of the Day Archive</a> (no RSS feed I am afraid, you will have to do it the old fashioned way and just visit the site!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/09/30/a-true-image-from-false-kiva/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>There was once rain on Mars&#8230;</title>
		<link>http://www.iknowfoobar.co.uk/2008/09/29/there-was-once-rain-on-mars/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/09/29/there-was-once-rain-on-mars/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 14:28:58 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Up in Space]]></category>
		<category><![CDATA[earth]]></category>
		<category><![CDATA[ernst hauber]]></category>
		<category><![CDATA[german aerospace center]]></category>
		<category><![CDATA[hirise]]></category>
		<category><![CDATA[mars]]></category>
		<category><![CDATA[nasa]]></category>
		<category><![CDATA[precipitation]]></category>
		<category><![CDATA[rain]]></category>
		<category><![CDATA[red planet]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=329</guid>
		<description><![CDATA[Images of layered sedimentary deposits and deltas on Mars have provided evidence for lakes and flowing rivers that carried eroded material downstream. A team of researchers also believes there is evidence for precipitation in the Red Planet&#8217;s past. &#8220;For years scientists have been suspecting that the current appearance of the landscape has, in part, been [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_330" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-330" title="Rain on Mars (Credit:  NASA's HiRISE Camera)" src="http://www.pureroon.co.uk/wp-content/uploads/2008/09/rain-on-mars.png" alt="Rain on Mars (Credit:  NASA's HiRISE Camera)" width="500" height="428" /><p class="wp-caption-text">Rain on Mars (Credit:  NASA</p></div>
<blockquote><p>Images of layered sedimentary deposits and deltas on Mars have provided evidence for lakes and flowing rivers that carried eroded material downstream. A team of researchers also believes there is evidence for precipitation in the Red Planet&#8217;s past. &#8220;For years scientists have been suspecting that the current appearance of the landscape has, in part, been shaped by rivers that cut into the surface,&#8221; said Ernst Hauber of the German Aerospace Center. â€œWe can see layered sediments where these valleys open into impact craters. The shape of certain sediments is typical for deltas formed in standing water.&#8221; Hauber and his team also believe that surface runoff from rain or snowmelt completes the picture of past <a class="alinks_links" onclick="return alinks_click(this);" rel="external" href="http://www.universetoday.com/guide-to-space/mars/water-on-mars/">water on Mars</a>.</p></blockquote>
<p>There seems to be more and more evidense coming from NASA&#8217;s <a title="NASA's HiRISE Project" href="http://marsoweb.nas.nasa.gov/HiRISE/" target="_blank">HiRISE</a> that Mars was once very similar to Earth, in both it&#8217;s surface and it&#8217;s atmosphere. At some point however Mars has taken a very different tack and ended up as very cold, very dry and very barren. Other recent photographs from Mars show dried up lakes, river valleys, estuarys and other features associated with a once wet planet.</p>
<p>Whatever did happen was very brief in Mar&#8217;s overall history and any precipitation that did occur dried up around 3.5 to 3.8 billion years ago.</p>
<p>Read more on <a title="Read More on Universe Today" href="http://www.universetoday.com/2008/09/24/evidence-of-rain-on-mars/" target="_blank">Universe Today</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/09/29/there-was-once-rain-on-mars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Screenshots?</title>
		<link>http://www.iknowfoobar.co.uk/2008/09/26/windows-7-screenshots/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/09/26/windows-7-screenshots/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 15:29:48 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[screen shot]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=324</guid>
		<description><![CDATA[I don&#8217;t know how genuine these really are, because in my opinion they don&#8217;t look very different at all from Vista. Another build of Windows 7 was circulated a few days ago and inevitably a few screen shots were leaked. You can see a much lighter interface for Windows Media player and a few changes [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know how genuine these really are, because in my opinion they don&#8217;t look very different at all from Vista. Another build of Windows 7 was circulated a few days ago and inevitably a few screen shots were leaked.</p>
<div id="attachment_325" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pureroon.co.uk/wp-content/uploads/2008/09/wmp.png"><img class="size-medium wp-image-325" title="Windows 7 Media Player" src="http://www.pureroon.co.uk/wp-content/uploads/2008/09/wmp-300x224.png" alt="Windows 7 Media Player" width="300" height="224" /></a><p class="wp-caption-text">Windows 7 Media Player</p></div>
<p>You can see a much lighter interface for Windows Media player and a few changes to the control panel. Maybe cutting back on the graphics a bit might actually speed up Windows 7 a bit as Vista was a dam nightmare!</p>
<div id="attachment_326" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pureroon.co.uk/wp-content/uploads/2008/09/solution-center.png"><img class="size-medium wp-image-326" title="Windows 7 Solution Center" src="http://www.pureroon.co.uk/wp-content/uploads/2008/09/solution-center-300x250.png" alt="Windows 7 Solution Center" width="300" height="250" /></a><p class="wp-caption-text">Windows 7 Solution Center</p></div>
<p><a title="Windows 7 Screen Shots" href="http://windows7news.com/2008/09/20/windows-7-m3-screenshots-galore/" target="_blank">Go here to see loads more, but hurry they probably won&#8217;t hang around forever!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/09/26/windows-7-screenshots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get your PHP on the right Trax</title>
		<link>http://www.iknowfoobar.co.uk/2008/09/26/get-your-php-on-the-right-trax/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/09/26/get-your-php-on-the-right-trax/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 08:42:38 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[model-view-controller]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=320</guid>
		<description><![CDATA[Original Article on The Register Hands on Ruby on Rails has become a popular framework for developing database-based web applications using the Model-View-Controller (MVC) pattern. Before Ruby on Rails, though, PHP was hogging the web-development limelight. Problem was, there was no Model-View-Controller (MVC) framework for PHP. With Ruby on Rails, though, PHP developers have come [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Get you PHP on the right Trax" href="http://www.theregister.co.uk/2008/09/24/php_on_rails/" target="_blank">Original Article on The Register</a></p>
<blockquote><p><strong class="trailer">Hands on</strong> Ruby on Rails has become a popular framework for developing database-based web applications using the Model-View-Controller (MVC) pattern.</p>
<p>Before Ruby on Rails, though, PHP was hogging the web-development limelight. Problem was, there was no Model-View-Controller (MVC) framework for PHP.</p>
<p>With Ruby on Rails, though, PHP developers have come to realize the timesaving benefits of MVC &#8211; a fact that led to the development of various PHP frameworks that are actually based on Ruby on Rails.</p>
<p>Among them, the Akelos framework and PHP On Trax.</p>
<p>In this article we shall develop an MVC Create-Read-Update-Delete (CRUD) application using the PHP On Trax Framework. Why this particular framework? Simple: it is a direct port of the Ruby on Rails framework.</p></blockquote>
<p>I haven&#8217;t managed to try this out yet but it I didn&#8217;t see anything in it that would&#8217;t be able to be set up in a linux environment, The article goes into a fair amount of detail (3 pages) in how to get it working. If anyone has had a go at this let me know how you have got on, I don&#8217;t really have the time at the moment!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/09/26/get-your-php-on-the-right-trax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sheriff Lott&#8217;s New Toy</title>
		<link>http://www.iknowfoobar.co.uk/2008/09/03/sheriff-lotts-new-toy/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/09/03/sheriff-lotts-new-toy/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 14:31:18 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[armored vehicle]]></category>
		<category><![CDATA[machine gun]]></category>
		<category><![CDATA[sheriff]]></category>
		<category><![CDATA[south carolina]]></category>
		<category><![CDATA[United States of America]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=314</guid>
		<description><![CDATA[Quote The Richland County, South Carolina Sheriff&#8217;s Department (that&#8217;s them above) just obtained an armored personnel carrier, complete with a belt-fed, .50-cal turreted machine gun. Sheriff Leon Lott has charmingly named the vehicle &#8220;The Peacemaker,&#8221; and insists that using a caliber of ammunition that even the U.S. military is reluctant to use against human targets [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_315" class="wp-caption alignnone" style="width: 441px"><img class="size-full wp-image-315" title="Serve and Protect with the 'Peacemaker'" src="http://www.pureroon.co.uk/wp-content/uploads/2008/09/serveandprotect.jpg" alt="Serve and Protect with the 'Peacemaker'" width="431" height="269" /><p class="wp-caption-text">Serve and Protect with the Peacemaker</p></div>
<p><a title="Quote" href="http://www.reason.com/blog/show/128482.html" target="_blank">Quote</a></p>
<blockquote><p>The Richland County, South Carolina Sheriff&#8217;s Department (that&#8217;s them above) <a href="http://www.policemag.com/News/2008/03/06/S-C-Sheriffs-Department-Armored-Vehicle-with-Belt-Fed-Machine-Gun.aspx" target="_blank">just obtained an armored personnel carrier,</a> complete with a belt-fed, .50-cal turreted machine gun.  Sheriff Leon Lott has charmingly named the vehicle &#8220;The Peacemaker,&#8221; and insists that using a caliber of ammunition that even the U.S. military is reluctant to use against human targets (it&#8217;s generally reserved for use against armored vehicles) will &#8220;save lives.&#8221;</p>
<p>[..]</p>
<p>Like most of these military toys obtained by local police departments, the Peacemaker will inevitably be used on drug and gambling raids—that is, to enforce laws against consensual activities.  Or, <a href="http://www.salon.com/opinion/greenwald/2008/08/30/police_raids/index.html" target="_blank">as we&#8217;re now seeing in Minnesota</a>, perhaps on raids against leftist political activists.</p></blockquote>
<p>Umm what exactly can I say to this, I could come up with something cliched like &#8220;Only in the US&#8221; but I think that everyone has become used to the fact that appears to be hiding behind a collective intelligence that only a privileged few have access to. Oh and in my experience the &#8216;chosen ones&#8217; don&#8217;t appear to be in the US they are all over here in Europe.</p>
<p>Who on earth do these boys think they are going to be arresting, I just don&#8217;t understand how an apparent pioneer of world peace can think it needs to treat its own people in this way?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/09/03/sheriff-lotts-new-toy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hug A Developer today</title>
		<link>http://www.iknowfoobar.co.uk/2008/08/29/hug-a-developer-today/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/08/29/hug-a-developer-today/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 11:24:34 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[pain]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=305</guid>
		<description><![CDATA[For all developers everywhere, we all share the pain&#8230;]]></description>
			<content:encoded><![CDATA[<p><embed src="http://blip.tv/play/Cfitzpatrick-HugADeveloperToday681" type="application/x-shockwave-flash" width="400" height="294" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>For all developers everywhere, we all share the pain&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/08/29/hug-a-developer-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google minus Google</title>
		<link>http://www.iknowfoobar.co.uk/2008/08/28/google-minus-google/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/08/28/google-minus-google/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 15:58:22 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[startupbin]]></category>
		<category><![CDATA[web startup]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=302</guid>
		<description><![CDATA[Quote Inspired by an article in NYT about Google becoming a media company, I decided that something had to be done. So I created a way to Search with Google without getting results from Google sites such as Knol, Blogger and YouTube. Timo Paloheimo has built the search engine using Google&#8217;s Custom Search Engine and [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Quote" href="http://www.startupbin.com/2008/08/11/google-minus-google/" target="_blank">Quote</a></p>
<blockquote><p>Inspired by an article in <a title="Is Google a Media Company?" href="http://www.nytimes.com/2008/08/11/technology/11google.html?_r=2&amp;oref=slogin&amp;partner=rssnyt&amp;emc=rss&amp;pagewanted=all&amp;oref=slogin" target="_blank">NYT</a> about Google becoming a media company, I decided that something had to be done. So I created a way to Search with Google without getting results from Google sites such as Knol, Blogger and YouTube.</p></blockquote>
<p><a title="Timo Paloheimo" href="http://www.startupbin.com/author/timo/" target="_blank">Timo Paloheimo</a> has built the search engine using <a title="Google's Custom Search Engine" href="http://www.google.com/coop/cse/" target="_blank">Google&#8217;s Custom Search Engine</a> and has filtered out all links to Google Sites. Other ignored google domains include Jaiku, Gmail and Blogspot. Strangely whenever I put anything in I get Wikipedia as the top link, but then you get the same when searching Google anyway. A good step forward would be to filter out all of the big fish; Wikipedia, MSN, Yahoo, etc and all domains added by them, maybe even chop and choose which domains you want to filter out allowing you to find pages swirling around at the bottom of the tank?</p>
<p>Timo runs a blog called <a title="Go to Startupbin" href="http://www.startupbin.com/" target="_blank">Startupbin</a> and is aiming to find out as much as he can about web startups, with a goal of finding that &#8216;idea&#8217; to kick start his own. If anyone has any of those ideas, please share them with me before passing them onto Timo!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/08/28/google-minus-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook and Dell are teaming up with a new Cloud</title>
		<link>http://www.iknowfoobar.co.uk/2008/08/26/facebook-and-dell-are-teaming-up-with-a-new-cloud/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/08/26/facebook-and-dell-are-teaming-up-with-a-new-cloud/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 13:42:09 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[data center]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=299</guid>
		<description><![CDATA[Cnet have announced that Dell and Facebook are prepping a &#8216;significant&#8217; announcement. Quote So what, exactly, are they doing together? Well, we already know Dell provides servers for Palo Alto, Calif.-based Facebook, but what other plans the two have hatched together beyond that is unclear. The event is scheduled for next Tuesday, but other than [...]]]></description>
			<content:encoded><![CDATA[<p>Cnet have announced that Dell and Facebook are prepping a &#8216;significant&#8217; announcement.</p>
<p><a title="Quote" href="http://news.cnet.com/8301-1023_3-10020590-93.html?hhTest=1" target="_blank">Quote</a></p>
<blockquote><p>So what, exactly, are they doing together? Well, we already know Dell provides servers for Palo Alto, Calif.-based Facebook, but what other plans the two have hatched together beyond that is unclear. The event is scheduled for next Tuesday, but other than sending out a nicely worded invitation, the only thing the companies are saying about the partnership is that it involves &#8220;the next generation of cloud computing.&#8221;</p></blockquote>
<p><a title="Facebook borrowed $100 Million" href="http://www.datacenterknowledge.com/archives/2008/May/12/facebook_borrows_100_million_to_buy_servers.html" target="_blank">Facebook recently borrowed $100 Million</a> as reported by Data Center Knowledge, I would guess a fair proportion of that money will be dropped straight into Dell&#8217;s pockets as part of a new deal. The announcement is planned for next week, so lets see what happens!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/08/26/facebook-and-dell-are-teaming-up-with-a-new-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Eee PC from Asus, this time with a Hard Drive!</title>
		<link>http://www.iknowfoobar.co.uk/2008/08/26/another-eee-pc-from-asus-this-time-with-a-hard-drive/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/08/26/another-eee-pc-from-asus-this-time-with-a-hard-drive/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 13:07:49 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[900]]></category>
		<category><![CDATA[900HD]]></category>
		<category><![CDATA[asus]]></category>
		<category><![CDATA[eee]]></category>
		<category><![CDATA[eee pc]]></category>
		<category><![CDATA[fcc]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=293</guid>
		<description><![CDATA[Here comes another version of the Asus Eee PC. This one is being thrown into the 900 series and will come with a Hard Drive. This new version hasn&#8217;t been announced by Asus yet but it has been spotted on the FCC website getting it&#8217;s wireless certification. Quote Pictures from the FCC website show an [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_295" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-295" title="Eee PC 900HD" src="http://www.pureroon.co.uk/wp-content/uploads/2008/08/eee_900hd_1.png" alt="Eee PC 900HD removable baseplate for upgradable HDD" width="500" height="328" /><p class="wp-caption-text">Eee PC 900HD removable baseplate for upgradable HDD</p></div>
<p>Here comes another version of the Asus Eee PC. This one is being thrown into the 900 series and will come with a Hard Drive. This new version hasn&#8217;t been announced by Asus yet but it has been spotted on the FCC website getting it&#8217;s wireless certification.</p>
<p><a title="Quote" href="http://www.reghardware.co.uk/2008/08/26/asus_readies_fourth_eee_900/" target="_blank">Quote</a></p>
<blockquote><p>Pictures from the FCC website show an Eee with an much larger baseplate hatchway. That&#8217;s a good sign, since it surely indicates the drive will be easily upgradeable &#8211; a key advantage the Eee line generally has over rival Small, Cheap Computers.</p></blockquote>
<p>There are no details available yet other than the photo above showing that the baseplate is much larger than the other models.</p>
<p>Do you think there are too many versions of the <a title="Eee PC Range" href="http://eeepc.asus.com/global/product.htm" target="_blank">Eee PC</a> yet?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/08/26/another-eee-pc-from-asus-this-time-with-a-hard-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LG confirms 8Mp cameraphone plan as details leak</title>
		<link>http://www.iknowfoobar.co.uk/2008/08/26/lg-confirms-8mp-cameraphone-plan-as-details-leak/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/08/26/lg-confirms-8mp-cameraphone-plan-as-details-leak/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 12:13:41 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[kc910]]></category>
		<category><![CDATA[lg]]></category>
		<category><![CDATA[micro SD]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[wi-fi]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=289</guid>
		<description><![CDATA[Quote LG has confirmed it will release an eight-megapixel cameraphone this year &#8211; even as details and juicy pictures emerged online of what the release is expected to be: the KC910. The cameras on phones are now beginning to rival some of the latest compacts, not only does the camera on this baby come with [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_290" class="wp-caption alignnone" style="width: 460px"><img class="size-full wp-image-290" title="LG KC910" src="http://www.pureroon.co.uk/wp-content/uploads/2008/08/lg_kc910_01.jpg" alt="LG KC910" width="450" height="367" /><p class="wp-caption-text">LG KC910</p></div>
<p><a title="Quote from The Register" href="http://www.reghardware.co.uk/2008/08/22/lg_kc910_leak/" target="_blank">Quote</a></p>
<blockquote><p>LG has confirmed it will release an eight-megapixel cameraphone this year &#8211; even as details and juicy pictures emerged online of what the release is expected to be: the KC910.</p></blockquote>
<p>The cameras on phones are now beginning to rival some of the latest compacts, not only does the camera on this baby come with manual focusing if you need it, it also has face, smile and blink detection, standards in the latest compact cameras. To keep the feature list up it also has a Xenon flash and image stability too.</p>
<p>The KC910 will have space for micro SD cards, USB, Bluetooth and Wi-Fi connectivity. It also has a 240x400mm touch screen display</p>
<p>Should be released &#8220;Some time this year&#8221; and a price is yet to be announced.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/08/26/lg-confirms-8mp-cameraphone-plan-as-details-leak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazing Photography from the 2008 Olympics in Beijing, China</title>
		<link>http://www.iknowfoobar.co.uk/2008/08/23/amazing-photography-from-the-2008-olympics-in-beijing-china/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/08/23/amazing-photography-from-the-2008-olympics-in-beijing-china/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 16:50:11 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[beijing]]></category>
		<category><![CDATA[china]]></category>
		<category><![CDATA[olympics]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=284</guid>
		<description><![CDATA[Click on the photo above to see some fantastic photography from the Beijing Olympics 2008, everything from the ecstacy of winning to the pain of losing, and it is all stuff I bet you didn&#8217;t see on the tv coverage! UPDATE (26/08/08): Appears the link is no longer available, sorry!]]></description>
			<content:encoded><![CDATA[<div id="attachment_283" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-283" title="Beijing 2008 Photography" src="http://www.pureroon.co.uk/wp-content/uploads/2008/08/beijing_2008_photography.png" alt="Beijing 2008 Photography" width="500" height="333" /><p class="wp-caption-text">Beijing 2008 Photography</p></div>
<p>Click on the photo above to see some fantastic photography from the Beijing Olympics 2008, everything from the ecstacy of winning to the pain of losing, and it is all stuff I bet you didn&#8217;t see on the tv coverage!</p>
<p><strong>UPDATE (26/08/08): Appears the link is no longer available, sorry!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/08/23/amazing-photography-from-the-2008-olympics-in-beijing-china/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Booooooooo RIAA</title>
		<link>http://www.iknowfoobar.co.uk/2008/08/20/booooooooo-riaa/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/08/20/booooooooo-riaa/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 16:58:55 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[muxtape]]></category>
		<category><![CDATA[riaa]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=278</guid>
		<description><![CDATA[Here is a screenshot from the current muxtape.com homepage: Muxtape will be unavailable for a brief period while we sort out a problem with the RIAA Have any artists complained or is this just the RIAA on their high horse?]]></description>
			<content:encoded><![CDATA[<p>Here is a screenshot from the current muxtape.com homepage:</p>
<p><a href="http://muxtape.com/"><img class="alignnone size-full wp-image-279" title="Muxtape Homepage" src="http://www.pureroon.co.uk/wp-content/uploads/2008/08/muxtape.png" alt="" width="361" height="279" /></a></p>
<blockquote><p>Muxtape will be unavailable for a brief period while we sort out a problem with the RIAA</p></blockquote>
<p>Have any artists complained or is this just the RIAA on their high horse?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/08/20/booooooooo-riaa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reduce your bandwidth bills using Apache&#8217;s page compression</title>
		<link>http://www.iknowfoobar.co.uk/2008/08/20/reduce-your-bandwidth-bills-using-apaches-page-compression/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/08/20/reduce-your-bandwidth-bills-using-apaches-page-compression/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 16:22:33 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache.conf]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[bandwidth]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[mod_deflate]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=274</guid>
		<description><![CDATA[By using the mod_deflate (link) module of apache you can quite easily reduce a 30k page down to 3k worth of transmitted data, and guess what it is extremely simple to enable! To enable the module (apache2) try something like: # cd /etc/apache2/mods-enabled/ # ln -s /etc/apache2/mods-available/deflate.load . Then add the following line to your [...]]]></description>
			<content:encoded><![CDATA[<p>By using the <code>mod_deflate</code> (<a title="Apache Mod Deflate" href="http://httpd.apache.org/docs/2.0/mod/mod_deflate.html" target="_blank">link</a>) module of apache you can quite easily reduce a 30k page down to 3k worth of transmitted data, and guess what it is extremely simple to enable!</p>
<p>To enable the module (apache2) try something like:</p>
<p><code># cd /etc/apache2/mods-enabled/</code><br />
<code># ln -s /etc/apache2/mods-available/deflate.load .</code></p>
<p>Then add the following line to your <code>apache.conf</code></p>
<p><code>AddOutputFilterByType DEFLATE text/html text/plain text/xml</code></p>
<p>Now restart apache and all plain text, html, and xml files should be compressed before being sent to the client.</p>
<p>Easy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/08/20/reduce-your-bandwidth-bills-using-apaches-page-compression/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Piracy</title>
		<link>http://www.iknowfoobar.co.uk/2008/08/20/piracy/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/08/20/piracy/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 12:13:06 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[advert]]></category>
		<category><![CDATA[anti piracy]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[england]]></category>
		<category><![CDATA[football]]></category>
		<category><![CDATA[piracy]]></category>
		<category><![CDATA[rupert murdoch]]></category>
		<category><![CDATA[setanta]]></category>
		<category><![CDATA[sky]]></category>
		<category><![CDATA[soccer]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=270</guid>
		<description><![CDATA[Now I&#8217;ve got to site through an unskippable anti-piracy advert every single time I put the disc into my dvd player, even though I own a legit, shop-bought copy for fucking fuck&#8217;s sake One day when every has really had enough and every one stops buying their products completely, these companies might, maybe, possibly, doubtfully, [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_271" class="wp-caption alignnone" style="width: 380px"><a href="http://broken-tv.blogspot.com/"><img class="size-full wp-image-271" title="Piracy" src="http://www.pureroon.co.uk/wp-content/uploads/2008/08/piracyua6.jpg" alt="Anti Piracy, adverts and DVDs" width="370" height="522" /></a><p class="wp-caption-text">Anti Piracy, adverts and DVDs</p></div>
<blockquote><p>Now I&#8217;ve got to site through an unskippable anti-piracy advert every single time I put the disc into my dvd player, even though I own a legit, shop-bought copy for fucking fuck&#8217;s sake</p></blockquote>
<p>One day when every has really had enough and every one stops buying their products completely, these companies might, maybe, possibly, doubtfully, get the message.</p>
<p>Oh and I have just discovered that all the England away football (soccer) matches this season are on <a title="Dickheads" href="http://www.setanta.com/en/UK/" target="_blank">Setanta Sports</a> this season, great so now I have to pay to watch my own country qualify for the world cup!</p>
<p>Rupert Murdoch = Money Grabbing W*&amp;^$%</p>
<p>Please excuse my profanity in this post, it&#8217;s one of those days&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/08/20/piracy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text Internet Marketing Launches Free Express Web Test</title>
		<link>http://www.iknowfoobar.co.uk/2008/08/20/text-internet-marketing-launches-free-express-web-test/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/08/20/text-internet-marketing-launches-free-express-web-test/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 10:14:35 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[express web test]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[ukfast]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=267</guid>
		<description><![CDATA[Original Article Leading online marketing specialist Text Internet Marketing has launched a revolutionary new website diagnostic tool which will be invaluable for all website administrators. [..] Text&#8217;s Business Development Manager, Graeme Hastings commented: &#8220;Unlike other internet marketing agencies, Text Internet Marketing does not believe in shrouding services such as web design, SEO and pay-per-click campaigns [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Text Internet Marketing Launches Free Express Web Test" href="http://text.co.uk/internet-marketing-news/text_internet_marketing_launches_free_express_web_test.html" target="_blank">Original Article</a></p>
<blockquote><p>Leading online marketing specialist Text Internet Marketing has launched a revolutionary new website diagnostic tool which will be invaluable for all website administrators.</p>
<p>[..]</p>
<p>Text&#8217;s Business Development Manager, Graeme Hastings commented: &#8220;Unlike other internet marketing agencies, Text Internet Marketing does not believe in shrouding services such as web design, SEO and pay-per-click campaigns in mystery,&#8221; adding &#8220;there are no dark arts involved, it&#8217;s common sense and hard work.&#8221;</p>
<p>The Free Express Web Test enables webmasters to review their sites instantly to gauge their effectiveness in search engine rankings, enabling the reviewer to ascertain areas within the site that need to be addressed.</p>
<p>Manchester based Text is at the forefront of internet marketing, specialising in content based web design, PPC campaigns, banner advertising, link building, online PR and much more with clients ranging from <a href="http://text.co.uk/text-internet-marketing-website-portfolio/haydock-park-web-design.html">Haydock Park</a>, to <a href="http://text.co.uk/text-internet-marketing-website-portfolio/bainesandernst-web-design.html">Baines and Ernst</a> and <a href="http://text.co.uk/text-internet-marketing-website-portfolio/donington-park-web-design.html">Donington Park </a>(a list of Texts web design clients can be found on Text&#8217;s portfolio page).</p></blockquote>
<p>You can try out the new Express Web Tester at the <a title="Text Internet Marketing Free Express Web Test" href="http://text.co.uk" target="_blank">Text.co.uk Website</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/08/20/text-internet-marketing-launches-free-express-web-test/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Good Bye PHP 4</title>
		<link>http://www.iknowfoobar.co.uk/2008/08/08/good-bye-php-4/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/08/08/good-bye-php-4/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 17:24:24 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[IT, Tech & Internet]]></category>
		<category><![CDATA[4]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=265</guid>
		<description><![CDATA[Link Here Good bye and thanks for all the fish&#8230;]]></description>
			<content:encoded><![CDATA[<p><a title="Good Bye PHP 4" href="http://www.php.net/archive/2008.php#id2008-08-07-1" target="_blank">Link Here</a></p>
<p>Good bye and thanks for all the fish&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/08/08/good-bye-php-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Aviators &#8211; Cambridge Big Day Out</title>
		<link>http://www.iknowfoobar.co.uk/2008/07/23/the-aviators-cambridge-big-day-out/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/07/23/the-aviators-cambridge-big-day-out/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 08:54:18 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[aviators]]></category>
		<category><![CDATA[band]]></category>
		<category><![CDATA[big day out]]></category>
		<category><![CDATA[cambridge]]></category>
		<category><![CDATA[funk]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=264</guid>
		<description><![CDATA[Well done to Theo, my little bro! You can listen to the whole set and find out more about the band at their website: http://www.myspace.com/TheAviatorsFunkBand Phoebe Reith &#8212; Vocals / Drums, William Harrison &#8212; Electric Guitar, Joseph Ziegler &#8212; Bass Guitar, Theodore Smith &#8212; Drums/Sax Influences Average white band, Herbie Hancock, James Brown, Chic, Bijoumiyo, [...]]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/pVsGmYUbAqQ&#038;fs=1" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/pVsGmYUbAqQ&#038;fs=1" /><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>
<p>Well done to Theo, my little bro!</p>
<p>You can listen to the whole set and find out more about the band at their website:</p>
<p><a title="The Aviators Funk Band" href="http://www.myspace.com/theaviatorsfunkband" target="_blank">http://www.myspace.com/TheAviatorsFunkBand</a></p>
<blockquote><p>Phoebe Reith &#8212; Vocals / Drums,<br />
William Harrison &#8212; Electric Guitar,<br />
Joseph Ziegler &#8212; Bass Guitar,<br />
Theodore Smith &#8212; Drums/Sax</p>
<p>Influences	Average white band, Herbie Hancock, James Brown, Chic, Bijoumiyo, Jimi Hendrix, Eric Clapton, Joe Walsh, The Eagles, Kool &amp; the Gang, Mike Stern, Queen, Red Hot Chili Peppers, Stevie Ray Vaughan, The Police, Stevie Wonder, THE FUNK&#8230; to name but a few</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/07/23/the-aviators-cambridge-big-day-out/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Colour of Venice</title>
		<link>http://www.iknowfoobar.co.uk/2008/06/24/the-colour-of-venice/</link>
		<comments>http://www.iknowfoobar.co.uk/2008/06/24/the-colour-of-venice/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 22:35:50 +0000</pubDate>
		<dc:creator>Giles Smith</dc:creator>
				<category><![CDATA[Mistfits & Humour]]></category>
		<category><![CDATA[italy]]></category>
		<category><![CDATA[overcrowded]]></category>
		<category><![CDATA[subdued]]></category>
		<category><![CDATA[venice]]></category>

		<guid isPermaLink="false">http://www.pureroon.co.uk/?p=262</guid>
		<description><![CDATA[I have had these photos for nearly a year now and done nothing with them, suddenly at half 11 in the evening I got the inspiration for a collection. Venice was a fantastic city architecturally however it was extremely overcrowded which damaged some of it&#8217;s mysticism. There was so much rubbish around it got hard [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://picasaweb.google.co.uk/gilesrsmith/TheColourOfVenice"><img class="alignnone size-full wp-image-263" title="The Colour of Venice" src="http://www.pureroon.co.uk/wp-content/uploads/2008/06/thecolourofvenice.jpg" alt="The Colour of Venice" width="500" height="751" /></a></p>
<p>I have had these photos for nearly a year now and done nothing with them, suddenly at half 11 in the evening I got the inspiration for a collection.</p>
<p>Venice was a fantastic city architecturally however it was extremely overcrowded which damaged some of it&#8217;s mysticism. There was so much rubbish around it got hard to look past it. Thats why I decided to go for this rather subdued look for these photos. Some of these have people&#8217;s faces in but noone is smiling.</p>
<p><a title="The Colour of Venice - View whole album" href="http://picasaweb.google.co.uk/gilesrsmith/TheColourOfVenice" target="_blank">View the whole album here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iknowfoobar.co.uk/2008/06/24/the-colour-of-venice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
