<?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>Irregular Verbiage</title>
	<atom:link href="http://www.coralbark.net/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.coralbark.net/blog</link>
	<description>Sporadic Musings</description>
	<lastBuildDate>Sun, 20 Nov 2011 01:48:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Problems with Qt Creator installed in /opt</title>
		<link>http://www.coralbark.net/blog/?p=209</link>
		<comments>http://www.coralbark.net/blog/?p=209#comments</comments>
		<pubDate>Sun, 20 Nov 2011 01:48:56 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.coralbark.net/blog/?p=209</guid>
		<description><![CDATA[I&#8217;ve been doing a bit of fiddling with using Qt for developing mobile apps. When I installed the Qt SDK I installed it to /opt. This means the user running the IDE does not have write access to the IDE which has caused a number of problems. Updating the SDK: If you run the SDK [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been doing a bit of fiddling with using Qt for developing mobile apps. When I installed the Qt SDK I installed it to /opt. This means the user running the IDE does not have write access to the IDE which has caused a number of problems.</p>
<ul>
<li><b>Updating the SDK:</b> If you run the SDK as the normal user, the &#8220;Help > Start Updater&#8221; menu option still exists and appears to work. It seemed to detect that I had sudo access and asked for my password but then hung using 100% CPU. Instead of using that menu option, I ran /opt/QtSDK/SDKMaintenanceTool as root which works.</li>
<li><b>Running the QEMU phone emulator:</b> This failed with &#8220;Qemu finished with error: Exit code was 1&#8243;. To fix this, I ran QEMU manually:<br />
<code>/opt/QtSDK/Madde/bin/mad remote -r dfl61-harmattan_2.2011.39-5 poweron -fg</code><br />
This showed I needed write access to the qemu disk images. As I&#8217;m the only user on the system*, I gave all users access:<br />
<code>chmod a+w /opt/QtSDK/Madde/runtimes/dfl61-harmattan_2.2011.39-5/arm-qemu-rm680-*</code></li>
</ul>
<p>Hope this helps someone stumbling across this via Google</p>
<p>* = Yeah. There was no need to install Qt into /opt &#8211; it just seemed tidier than putting it in my home directory</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coralbark.net/blog/?feed=rss2&#038;p=209</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logitech C300 webcam on Linux</title>
		<link>http://www.coralbark.net/blog/?p=206</link>
		<comments>http://www.coralbark.net/blog/?p=206#comments</comments>
		<pubDate>Wed, 28 Sep 2011 19:16:37 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.coralbark.net/blog/?p=206</guid>
		<description><![CDATA[The Logitech C300 webcam worked fine with Fedora 15 as it shipped but a kernel update caused the audio to come out really squeaky/high-pitched/&#8221;chipmunk&#8221;ed. I&#8217;m not the only one having issues with similar webcams: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/858412 https://bugzilla.redhat.com/show_bug.cgi?id=729269 https://bbs.archlinux.org/viewtopic.php?id=121607&#038;p=3 Based on the patch in the third link in that list (for a few different webcams), I&#8217;ve found [...]]]></description>
			<content:encoded><![CDATA[<p>The Logitech C300 webcam worked fine with Fedora 15 as it shipped but a kernel update caused the audio to come out really squeaky/high-pitched/&#8221;chipmunk&#8221;ed.</p>
<p>I&#8217;m not the only one having issues with similar webcams:</p>
<ul>
<li>https://bugs.launchpad.net/ubuntu/+source/linux/+bug/858412</li>
<li>https://bugzilla.redhat.com/show_bug.cgi?id=729269</li>
<li>https://bbs.archlinux.org/viewtopic.php?id=121607&#038;p=3</li>
</ul>
<p>Based on the patch in the third link in that list (for a few different webcams), I&#8217;ve found that the following trivial patch fixed the problem:<br />
<code><br />
diff -uNrp kernel-2.6.40.fc15.orig/drivers/usb/core/quirks.c kernel-2.6.40.fc15.new/drivers/usb/core/quirks.c<br />
--- kernel-2.6.40.fc15.orig/drivers/usb/core/quirks.c	2011-09-27 21:23:58.801051233 +0100<br />
+++ kernel-2.6.40.fc15.new/drivers/usb/core/quirks.c	2011-09-27 21:30:35.184686232 +0100<br />
@@ -44,6 +44,9 @@ static const struct usb_device_id usb_qu<br />
 	/* Logitech Webcam C250 */<br />
 	{ USB_DEVICE(0x046d, 0x0804), .driver_info = USB_QUIRK_RESET_RESUME },</p>
<p>+	/* Logitech Webcam C300 */<br />
+	{ USB_DEVICE(0x046d, 0x0805), .driver_info = USB_QUIRK_RESET_RESUME },<br />
+<br />
 	/* Logitech Webcam C310 */<br />
 	{ USB_DEVICE(0x046d, 0x081b), .driver_info = USB_QUIRK_RESET_RESUME },<br />
</code></p>
<p>If you want to try that before Fedora make a fix available, it&#8217;s easy enough to <a href="http://fedoraproject.org/wiki/Building_a_custom_kernel">build your own kernel</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coralbark.net/blog/?feed=rss2&#038;p=206</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple graphical Javascript Timer</title>
		<link>http://www.coralbark.net/blog/?p=202</link>
		<comments>http://www.coralbark.net/blog/?p=202#comments</comments>
		<pubDate>Fri, 26 Aug 2011 18:19:42 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.coralbark.net/blog/?p=202</guid>
		<description><![CDATA[A while ago, for a friend&#8217;s party I wrote a very simple Javascript Timer. The other day, my daughter (too young to understand a numeric countdown at the moment) was messing around at dinner (not unusual). I wanted a simple graphical way to explain that after a set amount of time I would take her [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago, for a friend&#8217;s party I wrote a very simple <a href="http://www.coralbark.net/javascriptTimer/">Javascript Timer</a>.</p>
<p>The other day, my daughter (too young to understand a numeric countdown at the moment) was messing around at dinner (not unusual). I wanted a simple graphical way to explain that after a set amount of time I would take her dinner away to encourage her to eat up.</p>
<p>Slightly to my surprise I couldn&#8217;t find anything with Google (my Google-fu is obviously weak). So I extended my little timer so that it shows a green ball for each second remaining. As the time ticks down, the balls turn red.</p>
<p>I was originally going to use a progress bar but this way shows, at a glance, how much total time there was&#8230;</p>
<p>I think it&#8217;s <a href="http://www.coralbark.net/javascriptTimer/">working pretty well</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coralbark.net/blog/?feed=rss2&#038;p=202</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My &#8220;YES to AV&#8221; masterpiece</title>
		<link>http://www.coralbark.net/blog/?p=195</link>
		<comments>http://www.coralbark.net/blog/?p=195#comments</comments>
		<pubDate>Fri, 15 Apr 2011 20:52:37 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.coralbark.net/blog/?p=195</guid>
		<description><![CDATA[The opinion-polls that show AV and first-past-the-post neck and neck make me sad. AV isn&#8217;t perfect but all its drawbacks (e.g. gerrymandering) apply to FPTP too. AV has the big advantage that tactical voting isn&#8217;t necessary &#8211; a huge drawback in the current system. The main argument against AV &#8220;people who vote for smaller parties [...]]]></description>
			<content:encoded><![CDATA[<p>The opinion-polls that show AV and first-past-the-post neck and neck make me sad. AV isn&#8217;t perfect but all its drawbacks (e.g. gerrymandering) apply to FPTP too. AV has the big advantage that tactical voting isn&#8217;t necessary &#8211; a huge drawback in the current system. The main argument against AV &#8220;people who vote for smaller parties get to vote twice&#8221; seems confused or intellectually dishonest.</p>
<p>I drew a beautiful masterpiece that sums up the situation to post to the <a href="http://b3ta.com/">b3ta</a> <a href="http://b3ta.com/challenge/yesornotoav/popular/">AV image challenge</a> but as a new member it turns out I&#8217;m not eligible to post until Tuesday.</p>
<p>Oh well, it reduces the number of people who will doubt my mental age to the readership of this blog entry&#8230;</p>
<div style="text-align: center"><img src="http://www.coralbark.net/1column.png" width="193" height="972" title="Hmm... works better when XKCD does it" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.coralbark.net/blog/?feed=rss2&#038;p=195</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RHEL5 and ext4</title>
		<link>http://www.coralbark.net/blog/?p=191</link>
		<comments>http://www.coralbark.net/blog/?p=191#comments</comments>
		<pubDate>Tue, 07 Sep 2010 17:17:24 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.coralbark.net/blog/?p=191</guid>
		<description><![CDATA[Using RHEL5.5 in order to upgrade an ext3 volume to ext4: yum install e4fsprogs umount &#60;mountpoint&#62; tune4fs -O extents,uninit_bg,dir_index &#60;device&#62; e4fsck &#60;device&#62; mount -t ext4 &#60;device&#62; &#60;mountpoint&#62;]]></description>
			<content:encoded><![CDATA[<p>Using RHEL5.5 in order to upgrade an ext3 volume to ext4:</p>
<ol>
<li>yum install e4fsprogs</li>
<li>umount &lt;mountpoint&gt;</li>
<li>tune4fs  -O extents,uninit_bg,dir_index &lt;device&gt;</li>
<li>e4fsck  &lt;device&gt;</li>
<li>mount -t ext4 &lt;device&gt; &lt;mountpoint&gt;</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.coralbark.net/blog/?feed=rss2&#038;p=191</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mackerel Fishing and Politics</title>
		<link>http://www.coralbark.net/blog/?p=165</link>
		<comments>http://www.coralbark.net/blog/?p=165#comments</comments>
		<pubDate>Sun, 05 Sep 2010 21:51:44 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[libdems]]></category>
		<category><![CDATA[mackerel]]></category>

		<guid isPermaLink="false">http://www.coralbark.net/blog/?p=165</guid>
		<description><![CDATA[It&#8217;s possible that politics is like fishing; without experience (or a good guide) it can have a steep learning curve. Hence my plan at today&#8217;s meeting of the Winchester local Liberal Democrat Conference was to listen much more than I talked. I have been to very few overtly political events and I have much to [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s possible that politics is like fishing; without experience (or a good guide) it can have a steep learning curve. Hence my plan at today&#8217;s meeting of the Winchester local Liberal Democrat Conference was to listen much more than I talked. I have been to very few overtly political events and I have much to learn.</p>
<div style="margin-top: 0.5em; text-align: center">
<div id="attachment_166" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.coralbark.net/blog/?attachment_id=166" rel="attachment wp-att-166"><img src="http://www.coralbark.net/blog/wp-content/uploads/2010/09/20100905_002-300x225.jpg" alt="Mackerel on a plate" title="They don&#039;t get much fresher." width="300" height="225" class="size-medium wp-image-166" /></a><p class="wp-caption-text">Four mackerel I caught this evening spinning in the Solent</p></div>
</div>
<p>The event was not at all what I expected; it was well attended but the average age was higher than I envisaged. Approaching my mid-thirties, my young daughter often makes me feel old &#8211; today however I felt young! Also the format was not what I imagined. Instead of a mini version of the national conference with impassioned debate and voting on controversial motions it was a cosy chat with councillors discussing their plans and general agreement (mostly via post-it note) on motions to be voted on at the national conference.</p>
<p>There were issues raised that tempted me to talk &#8211; in particular the cost of housing in Winchester but, at least on this occasion, I kept quiet. Firstly because I wasn&#8217;t keen for most of the membership&#8217;s first sight of me to be disagreement in a very consensual atmosphere. I would very much have liked Barton Farm to have been built on but the <a href="http://winld.org.uk/news/000255/barton_farm_lib_dem_council_fights_application.html">Liberal Democrat council opposed it</a>. Given I own a flat about 500m from the proposed site, my support might be slightly unexpected but I am (by most standards) fairly well paid and struggled to buy a house in Winchester &#8211; most people are less fortunate!</p>
<p>I was slightly sad that a motion at the national conference in support of equal marriage rights was not discussed. It seems self-evident to me that the discrimination in our current laws should be changed but maybe it was not discussed because it would have been unanimously supported.</p>
<p>This was all new territory for me and I hope to attend more party meetings in the future (Em&#8217;s shift patterns allowing) so hopefully I&#8217;ll feel like one of the natives soon &#8211; it wasn&#8217;t what I expected but everyone was very welcoming.</p>
<p>So from being a fish out of water to hauling fish out of water&#8230; After the politics I went fishing. We hadn&#8217;t arranged it in advance but I met my Dad at the coast. It was a warm summer&#8217;s evening perfect for mackerel and there were shoals of them teeming along the shore. We could have caught as many as we liked. I stopped at four, plenty for my (small) family &#8211; Dad (unusually) chose to go up to double figures as he wanted some for neighbours. It&#8217;s not always as easy as this evening but the fish combined with the weather and the views made everything seem perfect. I&#8217;m even starting to feel like I know what I&#8217;m doing &#8211; at least with a mackerel rod!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coralbark.net/blog/?feed=rss2&#038;p=165</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 13 and old NFS servers</title>
		<link>http://www.coralbark.net/blog/?p=162</link>
		<comments>http://www.coralbark.net/blog/?p=162#comments</comments>
		<pubDate>Fri, 25 Jun 2010 10:09:49 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[nfs]]></category>

		<guid isPermaLink="false">http://www.coralbark.net/blog/?p=162</guid>
		<description><![CDATA[On Fedora 13, the NFS client tries to use NFSv4 by default. When talking to the old (AIX-based) NFS servers at work the mount command failed with: mount.nfs: Remote I/O error In order to be able to mount the NFS shares I had to add -o vers=3 to my mount command.]]></description>
			<content:encoded><![CDATA[<p>On Fedora 13, the NFS client tries to use NFSv4 by default. When talking to the old (AIX-based) NFS servers at work the mount command failed with:</p>
<p><code> mount.nfs: Remote I/O error</code></p>
<p>In order to be able to mount the NFS shares I had to add <code>-o vers=3</code> to my mount command.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coralbark.net/blog/?feed=rss2&#038;p=162</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frustrated by the Digital Economy Bill</title>
		<link>http://www.coralbark.net/blog/?p=147</link>
		<comments>http://www.coralbark.net/blog/?p=147#comments</comments>
		<pubDate>Mon, 12 Apr 2010 07:24:03 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.coralbark.net/blog/?p=147</guid>
		<description><![CDATA[Days after the Digital Economy Bill (more details) was made law, I&#8217;m still incredibly angry and frustrated about the stitch-up that saw both the Tories and Labour rush an extremely bad bill into law, forcing their MPs to vote for it after a derisory debate with a three-line whip. I understand that with the state [...]]]></description>
			<content:encoded><![CDATA[<p>Days after the <a href="http://www.businesszone.co.uk/blogs/doug-richard/doug-richard-blogs/digital-copyright-bill-becomes-law-costs-terrible-mistake-0">Digital Economy Bill</a> (more <a href="http://www.guardian.co.uk/media/pda/2010/apr/08/digital-economy-bill-quick-guide-45-measures">details</a>) was made law, I&#8217;m still incredibly angry and frustrated about the stitch-up that saw both the Tories and Labour rush an extremely bad bill into law, forcing their MPs to vote for it after a derisory debate with a <a href="http://en.wikipedia.org/wiki/Whip_(politics)">three-line whip</a>.</p>
<p>I understand that with the state of the economy, the deficit, Afghanistan the Digital Economy Bill might not be the top priority in this election. Apparently however, it&#8217;s important enough to railroad into the statue book with controversial amendments being added days before becoming law. Watching the passage of the bill was an eye-opening experience&#8230;.</p>
<blockquote><p>Everyone should watch a parliamentary debate on something they know about, finance, shipbuilding whatever. See how gvt &#8220;works&#8221;. #debill</p></blockquote>
<div style="text-align: right"><i><a href="http://twitter.com/tonywhitmore/status/11787990578">@tonywhitmore on Twitter</a></i></div>
<p style="margin-top: 2em">This law was not made the way I expected law to be passed. What I expected was neatly summed up by <a href="http://cameronneylon.net/blog/a-letter-to-my-mp/?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed%3A+ScienceInTheOpen+%28Science+in+the+open%29&#038;utm_content=Google+Reader">Cameron Neylon</a>:</p>
<blockquote><p>Representative democracy bases its existence on the assumption that the full community can not be effectively involved in an informed and considered criticism of proposed bills and that it is therefore of value to both place some buffer between raw, and probably ill informed public opinion, and actual decision making. This presumes that MPs, particularly party spokespersons take the time to become expert on the matter of bills they represent.</p></blockquote>
<p>Instead what I witnessed in debates in the House of Commons was a scarily ill-informed, rushed mess which was typified when it emerged that the &#8220;Minister for Digital Britain&#8221;, who is in charge of this travesty thought that <a href="http://www.boingboing.net/2010/04/08/minister-for-digital.html">the IP in &#8220;IP address&#8221; stands for Intellectual Property</a></p>
<p>There were MPs who &#8220;got it&#8221; from all parties, exemplified by the Labour back-bencher <a href="http://www.tom-watson.co.uk/">Tom Watson</a> but only the Lib Dems voted against the bill as a party and even then, many did not turn up to vote!</p>
<p>I am not angry because I file-share illegal files. I do not. Copyright violation is already an offence. As that well-known bastion of communist hippies, the Telegraph, <a href="http://blogs.telegraph.co.uk/technology/mikebutcher/100004879/the-digital-economy-bill-a-nightmare-of-unintended-consequences/">says</a>:</p>
<blockquote><p>In the past the lawyers had to go after the infringers, with actual proof. Remember being innocent until proven guilty? That’s out now. Now, the holder of the internet account (Mum, Dad, Granny and the small business that can’t afford the legal fees) will be held to account for what happens over their connection.</p></blockquote>
<p>Aside from the eye-watering insight into how law is made, I&#8217;m cross for a number of reasons:</p>
<ul>
<li><strong>It won&#8217;t do what it tries to do</strong>, The Telegraph again:
<p>&#8221; In April last year, Sweden’s internet traffic took a dramatic 30 per cent dip as the country’s new anti-file sharing law came into effect. Before this, Sweden, the home of the Pirate Bay, had been a hotbed of illegal trade in movies and music.</p>
<p>But several months later traffic levels started to surpass the old levels. Consultancy firm Mediavision found that the accessing of illegally shared movies, TV shows and music simply recovered. But there was one crucial difference. Much of the internet traffic was now encrypted.&#8221;</p>
</li>
<li style="margin-top: 1em"><strong>It will make running a wifi hotspot a massive headache</strong> Small cafes have to decide whether to <a href="http://www.zdnet.co.uk/news/networking/2010/02/26/open-wi-fi-outlawed-by-digital-economy-bill-40057470/">try to be ISPs or be responsible for copyright infringement on their hotspots</a> and use technological measures to prevent abuse. Good luck finding workable &#8220;technological measures&#8221; that don&#8217;t massively restrict legal use of the internet!</li>
<li style="margin-top: 1em"><strong>It will have a chilling effect on free speech</strong> The Bill has a clause that will allow &#8220;the secretary of state for business to order the blocking of &#8220;a location on the internet which the court is satisfied has been, is being or is likely to be used for or in connection with an activity that infringes copyright&#8221; (via <a href="http://www.guardian.co.uk/technology/2010/apr/08/digital-economy-bill-passes-third-reading">The Guardian</a>). It has some safe-guards but there is concern that sites like <a href="http://wikileaks.org/">WikiLeaks</a> (which recently broadcast leaked video footage of American Pilots firing on innocent people including Reuters journalists) could be banned. <a href="http://www.guardian.co.uk/technology/blog/2010/mar/31/digital-economy-clause-18">ISPs will be worried about court costs</a> which means even the threat of a ban will often get pages removed.</li>
</ul>
<p>So if you&#8217;ve made it through this far, I&#8217;m hoping you agree with some of what I&#8217;m saying. So what can we do? A number of things: </p>
<ol>
<li>Join the <a href="http://www.openrightsgroup.org/">Open Rights Group</a> who campaigned against this fiasco.</li>
<li>Find out about your local candidates. For example, <a href="http://www.theyworkforthebpi.co.uk/">which way did they vote on the Digital Economy Bill</a> or did they not even bother to show up for work?</li>
<li><a href="http://votegeek.org.uk/">Share info about the candidates</a> with other people who care about internet freedom.</li>
<li>What else? I&#8217;m not sure &#8211; I&#8217;m half tempted to wander down my local high street (Winchester) handing out leaflets summarising this blog entry and pointing out what one of the local candidates (<a href="http://www.martintod.org.uk/about/">Martin Tod</a>) is a founder member of ORG.</li>
</ol>
<p>If you have better ideas, let me know in the comments&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coralbark.net/blog/?feed=rss2&#038;p=147</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>At Wembley!</title>
		<link>http://www.coralbark.net/blog/?p=144</link>
		<comments>http://www.coralbark.net/blog/?p=144#comments</comments>
		<pubDate>Sun, 28 Mar 2010 10:52:01 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.coralbark.net/blog/?p=144</guid>
		<description><![CDATA[At Wembley to watch the Johnstone&#8217;s Paint Trophy between Southampton and Carlisle. The new Wembley stadium is very impressive (it&#8217;s my first visit). Update: We won 4-1! I was there when the Saints went marching in! Great atmosphere. Loved it!]]></description>
			<content:encoded><![CDATA[<p>At Wembley to watch the Johnstone&#8217;s Paint Trophy between Southampton and Carlisle. The new Wembley stadium is very impressive (it&#8217;s my first visit).</p>
<p><a href="http://www.coralbark.net/blog/wp-content/uploads/2010/03/20100328_006.jpg"><img src="http://www.coralbark.net/blog/wp-content/uploads/2010/03/20100328_006-300x225.jpg" /></a><a href="http://www.coralbark.net/blog/wp-content/uploads/2010/03/20100328_008.jpg"><img src="http://www.coralbark.net/blog/wp-content/uploads/2010/03/20100328_008-300x225.jpg" /></a><a href="http://www.coralbark.net/blog/wp-content/uploads/2010/03/20100328_016.jpg"><img src="http://www.coralbark.net/blog/wp-content/uploads/2010/03/20100328_016-300x225.jpg" /></a></p>
<p><span style="font-weight: bold">Update:</span> We won 4-1! I was there when the Saints went marching in! Great atmosphere. Loved it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coralbark.net/blog/?feed=rss2&#038;p=144</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring is here.</title>
		<link>http://www.coralbark.net/blog/?p=138</link>
		<comments>http://www.coralbark.net/blog/?p=138#comments</comments>
		<pubDate>Sun, 14 Mar 2010 14:43:56 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.coralbark.net/blog/?p=138</guid>
		<description><![CDATA[There is a warmth in the air. About a week ago I had a few days off and we went to Oxford and Long Down farm. It was clear but cold. This weekend, when the sun is shining it feels much warmer. Katie can now happily play in the sunshine in the garden. P.S. If [...]]]></description>
			<content:encoded><![CDATA[<p>There is a warmth in the air. About a week ago I had a few days off and we went to Oxford and Long Down farm. It was clear but cold. This weekend, when the sun is shining it feels much warmer.</p>
<p><a href="http://www.coralbark.net/blog/wp-content/uploads/2010/03/QgCWVwtX.jpg"><img src="http://www.coralbark.net/blog/wp-content/uploads/2010/03/QgCWVwtX-225x300.jpg" /></a><a href="http://www.coralbark.net/blog/wp-content/uploads/2010/03/TomwbbYi.jpg"><img src="http://www.coralbark.net/blog/wp-content/uploads/2010/03/TomwbbYi-225x300.jpg" /></a></p>
<p>Katie can now happily play in the sunshine in the garden.</p>
<p>P.S. If it wasn&#8217;t clear &#8211; this entry is really to test the WordPress plugin that I mentioned in my <a href="http://www.coralbark.net/blog/?p=138">last entry</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coralbark.net/blog/?feed=rss2&#038;p=138</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
