<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Rob Cowell&#039;s Blog</title>
	<atom:link href="http://robcowell.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://robcowell.wordpress.com</link>
	<description>This used to be my playground - now its (mostly) just a repeat of what I said on Twitter</description>
	<lastBuildDate>Wed, 11 Jan 2012 14:28:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='robcowell.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Rob Cowell&#039;s Blog</title>
		<link>http://robcowell.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://robcowell.wordpress.com/osd.xml" title="Rob Cowell&#039;s Blog" />
	<atom:link rel='hub' href='http://robcowell.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Visualforce and the Konami Code</title>
		<link>http://robcowell.wordpress.com/2012/01/11/visualforce-and-the-konami-code/</link>
		<comments>http://robcowell.wordpress.com/2012/01/11/visualforce-and-the-konami-code/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 14:28:27 +0000</pubDate>
		<dc:creator>robcowell</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://robcowell.wordpress.com/?p=1298</guid>
		<description><![CDATA[So I promised to give details on my hidden, Konami Code triggered debug panel yesterday, so here we go&#8230; Firstly, in your Visualforce page, you&#8217;ll need to pull in the Konami Code javascript from Google Code, like so :- &#60;script type="text/javascript" src="http://konami-js.googlecode.com/svn/trunk/konami.js"&#62;&#60;/script&#62; after which, we can tell it what action to trigger when the code [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1298&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I promised to give details on my hidden, <a href="http://en.wikipedia.org/wiki/Konami_Code">Konami Code</a> triggered debug panel yesterday, so here we go&#8230;</p>
<p>Firstly, in your Visualforce page, you&#8217;ll need to pull in the Konami Code javascript from Google Code, like so :-</p>
<div><code>&lt;script type="text/javascript" src="http://konami-js.googlecode.com/svn/trunk/konami.js"&gt;&lt;/script&gt;</code></div>
<p>after which, we can tell it what action to trigger when the code is entered correctly :-</p>
<div><code>&lt;script type="text/javascript"&gt; <br />konami = new Konami() <br />konami.code = function() <br />{ <br />enableDebug(); <br />} <br />konami.load() <br />&lt;/script&gt;</code></div>
<p>where enableDebug calls back to the controller apex via an apex actionfunction :-</p>
<p><code>&lt;apex:actionFunction name="enableDebug" action="{!debugOn}" rerender="debug /&gt;</code></p>
<p>This calls the server-side apex function called debugOn &#8211; note how it re-renders the debug panel on completion. This panel is defined as :-</p>
<p><code>&lt;apex:pageBlock title="Debug" id="debug" rendered="{!isDebug}"&gt; <br />&lt;apex:outputText value="{!debug}" /&gt; <br />&lt;/apex:pageBlock&gt;</code></p>
<p>you can see a couple of things here. Firstly, the panel is only rendered if the value of isDebug is set to true. This value is toggled by the Konami Code. Secondly, it displays the contents of variable debug, which you can set to anything you like. I frequently use it to show the SOQL string I&#8217;m querying against</p>
<p>Having set up the VisualForce side of things, we need to implement the server-side callback function in our Apex controller for the page :-</p>
<p><code>public string debug {get;set;}</code></p>
<p><code>public Boolean isDebug {get;set;}</code></p>
<p><code>public void debugOn() <br />{ <br />isDebug = !isDebug; <br />}</code></p>
<p>so now at any point in your code, you can store a string value in the debug variable and it will be displayed on the rendered page once you enter the Konami Code (<strong>and press Enter</strong>)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robcowell.wordpress.com/1298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robcowell.wordpress.com/1298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robcowell.wordpress.com/1298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robcowell.wordpress.com/1298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robcowell.wordpress.com/1298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robcowell.wordpress.com/1298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robcowell.wordpress.com/1298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robcowell.wordpress.com/1298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robcowell.wordpress.com/1298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robcowell.wordpress.com/1298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robcowell.wordpress.com/1298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robcowell.wordpress.com/1298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robcowell.wordpress.com/1298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robcowell.wordpress.com/1298/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1298&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robcowell.wordpress.com/2012/01/11/visualforce-and-the-konami-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc758575c8c25d2489e1862fe2c3a1a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robcowell</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://robcowell.wordpress.com/2011/09/24/1246/</link>
		<comments>http://robcowell.wordpress.com/2011/09/24/1246/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 07:43:13 +0000</pubDate>
		<dc:creator>robcowell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://robcowell.wordpress.com/2011/09/24/1246/</guid>
		<description><![CDATA[I am now spaced out with two wisdom teeth missing<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1246&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am now spaced out with two wisdom teeth missing</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robcowell.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robcowell.wordpress.com/1246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robcowell.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robcowell.wordpress.com/1246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robcowell.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robcowell.wordpress.com/1246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robcowell.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robcowell.wordpress.com/1246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robcowell.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robcowell.wordpress.com/1246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robcowell.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robcowell.wordpress.com/1246/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robcowell.wordpress.com/1246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robcowell.wordpress.com/1246/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1246&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robcowell.wordpress.com/2011/09/24/1246/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc758575c8c25d2489e1862fe2c3a1a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robcowell</media:title>
		</media:content>
	</item>
		<item>
		<title>Laugh a minute</title>
		<link>http://robcowell.wordpress.com/2011/05/25/laugh-a-minute/</link>
		<comments>http://robcowell.wordpress.com/2011/05/25/laugh-a-minute/#comments</comments>
		<pubDate>Wed, 25 May 2011 14:03:30 +0000</pubDate>
		<dc:creator>robcowell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://robcowell.wordpress.com/?p=1243</guid>
		<description><![CDATA[Earlier in the week, I entered a free prize draw via the coffee vendor at the train station to win a pair of tickets to the local comedy club.  Got an email through today to say that I&#8217;ve won them &#8211; w00t! The lineup :-  Headline &#8211; James Sherwood  &#8221;Elegant, intelligent stand-up, with regular  laughs [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1243&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Earlier in the week, I entered a free prize draw via the coffee vendor at the train station to win a pair of tickets to the local comedy club.  Got an email through today to say that I&#8217;ve won them &#8211; w00t!</p>
<p>The lineup :-</p>
<p> Headline &#8211; James Sherwood  &#8221;Elegant, intelligent stand-up, with regular  laughs to keep everyone satisfied.&#8221; <em>Guardian</em></p>
<p>Support &#8211; Craig Murray &#8211; &#8220;Bloody funny&#8221; <em>Jo Brand</em></p>
<p>Support &#8211; Luke Benson &#8220;one of the most instantly likeable personalities on the line-up. His punch-lines hit the targets&#8230; even more impressive was how he found a clear voice whatever style or subject of comedy he tackled.&#8221;  <em>The Stage</em></p>
<p>Compere &#8211; Paul T Eyres &#8211; &#8220;Fantastic. I was laughing every 15 seconds&#8221; - (<em>Sol Bernstein aka Steve Jamieson</em>)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robcowell.wordpress.com/1243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robcowell.wordpress.com/1243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robcowell.wordpress.com/1243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robcowell.wordpress.com/1243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robcowell.wordpress.com/1243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robcowell.wordpress.com/1243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robcowell.wordpress.com/1243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robcowell.wordpress.com/1243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robcowell.wordpress.com/1243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robcowell.wordpress.com/1243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robcowell.wordpress.com/1243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robcowell.wordpress.com/1243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robcowell.wordpress.com/1243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robcowell.wordpress.com/1243/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1243&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robcowell.wordpress.com/2011/05/25/laugh-a-minute/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc758575c8c25d2489e1862fe2c3a1a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robcowell</media:title>
		</media:content>
	</item>
		<item>
		<title>Weekend update</title>
		<link>http://robcowell.wordpress.com/2011/05/22/weekend-update/</link>
		<comments>http://robcowell.wordpress.com/2011/05/22/weekend-update/#comments</comments>
		<pubDate>Sun, 22 May 2011 16:36:05 +0000</pubDate>
		<dc:creator>robcowell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://robcowell.wordpress.com/2011/05/22/weekend-update/</guid>
		<description><![CDATA[Busy weekend clearing the garden, or at least making a start on it. Night off last night, inlaws babysitting so out for a Nepalese meal. Sunday more work in garden and now we&#8217;re off to a kids birthday with Elena, who is in her new party dress<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1240&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Busy weekend clearing the garden, or at least making a start on it. Night off last night, inlaws babysitting so out for a Nepalese meal.</p>
<p>Sunday more work in garden and now we&#8217;re off to a kids birthday with Elena, who is in her new party dress</p>
<p><a href="http://robcowell.files.wordpress.com/2011/05/20110523-055907.jpg"><img src="http://robcowell.files.wordpress.com/2011/05/20110523-055907.jpg?w=450" alt="20110523-055907.jpg" class="alignnone size-full" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robcowell.wordpress.com/1240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robcowell.wordpress.com/1240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robcowell.wordpress.com/1240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robcowell.wordpress.com/1240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robcowell.wordpress.com/1240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robcowell.wordpress.com/1240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robcowell.wordpress.com/1240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robcowell.wordpress.com/1240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robcowell.wordpress.com/1240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robcowell.wordpress.com/1240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robcowell.wordpress.com/1240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robcowell.wordpress.com/1240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robcowell.wordpress.com/1240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robcowell.wordpress.com/1240/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1240&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robcowell.wordpress.com/2011/05/22/weekend-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc758575c8c25d2489e1862fe2c3a1a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robcowell</media:title>
		</media:content>

		<media:content url="http://robcowell.files.wordpress.com/2011/05/20110523-055907.jpg" medium="image">
			<media:title type="html">20110523-055907.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>So long (Facebook) and thanks for all the fish</title>
		<link>http://robcowell.wordpress.com/2011/05/20/so-long-facebook-and-thanks-for-all-the-fish/</link>
		<comments>http://robcowell.wordpress.com/2011/05/20/so-long-facebook-and-thanks-for-all-the-fish/#comments</comments>
		<pubDate>Fri, 20 May 2011 12:17:45 +0000</pubDate>
		<dc:creator>robcowell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://robcowell.wordpress.com/?p=1237</guid>
		<description><![CDATA[So I&#8217;ve killed off my Facebook account (again).  Fed up with it.  My musings will be here and on my tumblr blog<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1237&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve killed off my Facebook account (again).  Fed up with it.  My musings will be here and on my <a href="http://robcowell.tumblr.com/">tumblr blog</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robcowell.wordpress.com/1237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robcowell.wordpress.com/1237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robcowell.wordpress.com/1237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robcowell.wordpress.com/1237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robcowell.wordpress.com/1237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robcowell.wordpress.com/1237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robcowell.wordpress.com/1237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robcowell.wordpress.com/1237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robcowell.wordpress.com/1237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robcowell.wordpress.com/1237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robcowell.wordpress.com/1237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robcowell.wordpress.com/1237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robcowell.wordpress.com/1237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robcowell.wordpress.com/1237/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1237&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robcowell.wordpress.com/2011/05/20/so-long-facebook-and-thanks-for-all-the-fish/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc758575c8c25d2489e1862fe2c3a1a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robcowell</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://robcowell.wordpress.com/2010/12/01/1235/</link>
		<comments>http://robcowell.wordpress.com/2010/12/01/1235/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 09:37:52 +0000</pubDate>
		<dc:creator>robcowell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://robcowell.wordpress.com/2010/12/01/1235/</guid>
		<description><![CDATA[Why are VST plugins so prohibitively expensive?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1235&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Why are VST plugins so prohibitively expensive?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robcowell.wordpress.com/1235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robcowell.wordpress.com/1235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robcowell.wordpress.com/1235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robcowell.wordpress.com/1235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robcowell.wordpress.com/1235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robcowell.wordpress.com/1235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robcowell.wordpress.com/1235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robcowell.wordpress.com/1235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robcowell.wordpress.com/1235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robcowell.wordpress.com/1235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robcowell.wordpress.com/1235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robcowell.wordpress.com/1235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robcowell.wordpress.com/1235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robcowell.wordpress.com/1235/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1235&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robcowell.wordpress.com/2010/12/01/1235/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc758575c8c25d2489e1862fe2c3a1a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robcowell</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://robcowell.wordpress.com/2010/11/12/1234/</link>
		<comments>http://robcowell.wordpress.com/2010/11/12/1234/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 09:56:55 +0000</pubDate>
		<dc:creator>robcowell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://robcowell.wordpress.com/2010/11/12/1234/</guid>
		<description><![CDATA[There&#8217;s a rainbow inside your mind.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1234&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a rainbow inside your mind.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robcowell.wordpress.com/1234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robcowell.wordpress.com/1234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robcowell.wordpress.com/1234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robcowell.wordpress.com/1234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robcowell.wordpress.com/1234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robcowell.wordpress.com/1234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robcowell.wordpress.com/1234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robcowell.wordpress.com/1234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robcowell.wordpress.com/1234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robcowell.wordpress.com/1234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robcowell.wordpress.com/1234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robcowell.wordpress.com/1234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robcowell.wordpress.com/1234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robcowell.wordpress.com/1234/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1234&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robcowell.wordpress.com/2010/11/12/1234/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc758575c8c25d2489e1862fe2c3a1a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robcowell</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://robcowell.wordpress.com/2010/11/08/1233/</link>
		<comments>http://robcowell.wordpress.com/2010/11/08/1233/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 06:50:13 +0000</pubDate>
		<dc:creator>robcowell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://robcowell.wordpress.com/2010/11/08/1233/</guid>
		<description><![CDATA[Time for Tubby bye bye&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1233&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Time for Tubby bye bye&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robcowell.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robcowell.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robcowell.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robcowell.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robcowell.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robcowell.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robcowell.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robcowell.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robcowell.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robcowell.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robcowell.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robcowell.wordpress.com/1233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robcowell.wordpress.com/1233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robcowell.wordpress.com/1233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1233&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robcowell.wordpress.com/2010/11/08/1233/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc758575c8c25d2489e1862fe2c3a1a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robcowell</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://robcowell.wordpress.com/2010/11/01/1232/</link>
		<comments>http://robcowell.wordpress.com/2010/11/01/1232/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 07:42:24 +0000</pubDate>
		<dc:creator>robcowell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://robcowell.wordpress.com/2010/11/01/1232/</guid>
		<description><![CDATA[Psytrance for my ears, Objective-C book for my eyes. Monday brain-load started&#8230;.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1232&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Psytrance for my ears, Objective-C book for my eyes. Monday brain-load started&#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robcowell.wordpress.com/1232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robcowell.wordpress.com/1232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robcowell.wordpress.com/1232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robcowell.wordpress.com/1232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robcowell.wordpress.com/1232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robcowell.wordpress.com/1232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robcowell.wordpress.com/1232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robcowell.wordpress.com/1232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robcowell.wordpress.com/1232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robcowell.wordpress.com/1232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robcowell.wordpress.com/1232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robcowell.wordpress.com/1232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robcowell.wordpress.com/1232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robcowell.wordpress.com/1232/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1232&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robcowell.wordpress.com/2010/11/01/1232/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc758575c8c25d2489e1862fe2c3a1a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robcowell</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://robcowell.wordpress.com/2010/10/28/1231/</link>
		<comments>http://robcowell.wordpress.com/2010/10/28/1231/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 08:25:27 +0000</pubDate>
		<dc:creator>robcowell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://robcowell.wordpress.com/2010/10/28/1231/</guid>
		<description><![CDATA[Children should only be allowed one VTech toy, to prevent them all making irritating noises simultaneously.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1231&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Children should only be allowed one VTech toy, to prevent them all making irritating noises simultaneously.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/robcowell.wordpress.com/1231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/robcowell.wordpress.com/1231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/robcowell.wordpress.com/1231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/robcowell.wordpress.com/1231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/robcowell.wordpress.com/1231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/robcowell.wordpress.com/1231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/robcowell.wordpress.com/1231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/robcowell.wordpress.com/1231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/robcowell.wordpress.com/1231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/robcowell.wordpress.com/1231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/robcowell.wordpress.com/1231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/robcowell.wordpress.com/1231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/robcowell.wordpress.com/1231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/robcowell.wordpress.com/1231/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=robcowell.wordpress.com&amp;blog=11433092&amp;post=1231&amp;subd=robcowell&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://robcowell.wordpress.com/2010/10/28/1231/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc758575c8c25d2489e1862fe2c3a1a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">robcowell</media:title>
		</media:content>
	</item>
	</channel>
</rss>
