<?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>JonnyReeves.co.uk &#187; Personal</title>
	<atom:link href="http://www.jonnyreeves.co.uk/category/personal/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jonnyreeves.co.uk</link>
	<description>Actionscript, Flash, PHP and stuff</description>
	<lastBuildDate>Mon, 19 Jul 2010 15:36:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MoshiMonsters.com Homepage Redesign</title>
		<link>http://www.jonnyreeves.co.uk/2009/03/moshimonsterscom-homepage-redesign/</link>
		<comments>http://www.jonnyreeves.co.uk/2009/03/moshimonsterscom-homepage-redesign/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 21:07:06 +0000</pubDate>
		<dc:creator>Jonny</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.jonnyreeves.co.uk/?p=69</guid>
		<description><![CDATA[As some of you may know, I am currently working for MindCandy as an ActionScript 3 developer hacking away on Moshi Monsters &#8211; a safe, online world for kids to learn and play.  This week is a very proud one for myself as the homepage redesign which I worked on went live &#8211; I thought [...]]]></description>
			<content:encoded><![CDATA[<p>As some of you may know, I am currently working for <a href="http://mindcandy.com/">MindCandy</a> as an ActionScript 3 developer hacking away on <a href="http://moshimonsters.com/">Moshi Monsters</a> &#8211; a safe, online world for kids to learn and play.  This week is a very proud one for myself as the homepage redesign which I worked on went live &#8211; I thought I would take the opportunity to explain some of the problems faced and the solutions used.</p>
<p style="text-align: left;">
<p style="text-align: center;"><a href="http://moshimonsters.com/"><img class="size-full wp-image-70 aligncenter" title="MoshiMonsters.com Homepage, March 2009" src="http://www.jonnyreeves.co.uk/wp-content/uploads/2009/03/moshi-homepage.jpg" alt="MoshiMonsters.com Homepage, March 2009" width="500" height="280" /></a></p>
<p style="text-align: left;">First off I need to give full credit where it&#8217;s due; to our amazing designers.  I got to work with three such talented chaps on this project, <a href="http://mindcandy.com/people/#trev">Trevor</a>, <a href="http://mindcandy.com/people/#benp">Ben P</a>. and our latest hire, Axel.  These guys spent a good week illustrating the concept for the new homepage and creating the animations and elements which I wired up to make the finished product.</p>
<p style="text-align: left;">The page splits into two parts, the main body and the navigation is delivered in normal HTML with CSS styling and the central content including the monsters and ocean background are delivered using Flash.  One of the challenges to over-come was the fact the page had to scale horizontally to allow the user to resize their browser, this was achieved by using the ActionScript <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/Stage.html#scaleMode">StageScale.NO_SCALE</a> setting and using <a href="http://code.google.com/p/swfobject/">SWFObject</a> to set the embed width to 100%.  By <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/Stage.html#event:resize">registering an Event.RESIZE  listener to the Stage</a>, I am able to adjust the width property of the background gradients&#8217; (which make up the ocean) DisplayObject.  It&#8217;s awesome to see the site still look great even when stretched across two 24&#8243; monitors!</p>
<p style="text-align: left;">One of the key points of the new homepage&#8217;s <a href="http://en.wikipedia.org/wiki/Acceptance_testing">Acceptance Test</a> was that it weighed around the same as the static HTML version it was replacing.  Using <a href="http://getfirebug.com/">firebug</a>, I was able to tell that the original homepage weighed ~360kb; it wasn&#8217;t going to be easy providing all this interactivity.  We managed to come in at ~430kb which wasn&#8217;t too far off!  We made savings filesize savings on both the HTML and Flash by a combination of <a href="http://www.alistapart.com/articles/sprites/">CSS Spriting</a> and optimisation of all animations and MovieClips (the majority of the Flash optimisations were done by our Animator Ben P. so you will have to ask him for his tips and tricks!).  We didn&#8217;t go down the route of trying to optimise the ActionScript to reduce filesize as legibility is more important to us than a couple of kilobytes at the CDN.</p>
<p style="text-align: left;">Finally, the last goal of the new site was that it displayed on the user screen as quickly as possible &#8211; the last thing we wan the user to see is a massive white hole in the middle of our page whilst it loads!  Pre-Loaders in ActionScript 3 are not quite as intuitive as they used to be in AS2, but thanks to <a href="http://www.bit-101.com/blog/?p=946">Keith over at Bit-101, they are reliviley straight forward once you know what you&#8217;re doing</a>!  During the Preloader we render the background gradients in actionscript which helps the Flash element fit seamlessly with the HTML and CSS while the remaining 200kb loads.  Once the app has finished loading, the user can start interacting with the buttons, watch the tour video, etc.  At this point, we send off a background call to load in the monster animations and sound effects.  The monster anims are all contained in a single swf which weighs in around 130kb &#8211; we chose to use a single swf to reduce the number of requests on the web server (infact the entire page now renders in under 15 requests to our own server, down from well over 30!).  The monster animations SWF contains linkages for all the various animations &#8211; these are loaded into the <a href="http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/system/ApplicationDomain.html">Current ApplicationDomain</a> and then initialised via<a href="http://thillerson.wordpress.com/2007/03/01/runtime-class-instantiation-in-actionscript-30/"> getDefinitionByName</a>.</p>
<p style="text-align: left;">If you are already a Moshi user then I hope you enjoy the new MoshiMonsters homepage and all the new features that our team keeps working on &#8211; and if you&#8217;re not yet a member, well get on over there and adopt one today!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonnyreeves.co.uk/2009/03/moshimonsterscom-homepage-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steaming HD Content to the Playstation 3 with Windows Media Player 11</title>
		<link>http://www.jonnyreeves.co.uk/2009/01/steaming-hd-content-to-the-playstation-3-with-windows-media-player-11/</link>
		<comments>http://www.jonnyreeves.co.uk/2009/01/steaming-hd-content-to-the-playstation-3-with-windows-media-player-11/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 15:54:00 +0000</pubDate>
		<dc:creator>Jonny</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[homeplug]]></category>
		<category><![CDATA[media playback]]></category>
		<category><![CDATA[mkv]]></category>
		<category><![CDATA[mp4]]></category>
		<category><![CDATA[playstation 3]]></category>
		<category><![CDATA[ps3]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[xmbc]]></category>

		<guid isPermaLink="false">http://www.jonnyreeves.co.uk/?p=66</guid>
		<description><![CDATA[This month I took the plunge and upgraded my entire Media Setup in the front room by replacing my ancient Goodmans 32&#8243; CRT TV with a Samsung 37&#8243; 720p LCD.  As with most major upgrades, this started a chain of events which resulted in me replacing my trust soft-modded Xbox running XBMC with a shiny [...]]]></description>
			<content:encoded><![CDATA[<p>This month I took the plunge and upgraded my entire Media Setup in the front room by replacing my ancient Goodmans 32&#8243; CRT TV with a Samsung 37&#8243; 720p LCD.  As with most major upgrades, this started a chain of events which resulted in me replacing my trust soft-modded Xbox running XBMC with a shiny new Playstation 3 to take advantage of the HDMI Output, HD Playback and enhanced upscaling which the system offers over the Xbox. (The compression artifacts on Xvids became incredibly distracting on the LCD screen and the Xbox is simply not powerful enough to play back HD.)</p>
<p>The first step in my journey was to setup a <a href="http://blog.us.playstation.com/2007/12/27/playstation-tips-4-dlna-media-server/">DLNA Media Server</a> to push my media to the Playstation.  I must admit that I was pretty disappointed that I couldn&#8217;t just set up SMB shares as I could on XBMC &#8211; but then the entire Playstation 3 experience isn&#8217;t terribly configurable (I guess Sony recon most people aren&#8217;t interested in tinkering!).  After a bit of reading on the <a href="http://avsforum.com">AVSForums</a>, I realised that my two options for the DNLA Media Server on Windows Vista x64 were Windows Media Player 11 and <a href="http://tversity.com/">TVerstity</a>.  Havnig a bit of a distruct of Windows Media Player, I opted to download and install <a href="http://tversity.com/">TVersity </a>from their site &#8211; however, during the install I was instructed to turn off UAC (Vista&#8217;s User Account Control security model).  I know a lot of people hate UAC but I see it as a serious step forward for Window&#8217;s security model and if programmers aren&#8217;t willing to write their software to cope and comply with it then I&#8217;m not interested in running it &#8211; so <a href="http://tversity.com/">TVersity </a>was ruled out leaving Windows Media Player as the only option.</p>
<p>Setting up DNLA Media Sharing on WMP11 (Windows Media Player 11) is straight forward &#8211; I was also able to add additional folders outside of the &#8220;My Videos&#8221; folder in my User Account folder visible.  Once this was done (and my PS3 was granted access), My computer showed up in the list of avaliable sources on the Playstation&#8217;s &#8216;Home&#8217; screen and all of my Xvid files were immediatley made avaliable and played back without hassle (Complete with excellent upscaling and filtering with the Playstation 3 offers which smooths out nearly all compression artifacts without making the image appear out of focus).  However, all was not smooth as every 10 minutes or so the video stream would break up between key frames due to network dropouts &#8211; a problem which I had not experienced on the Xbox.  I presumed that the dropouts were due to the PS3 not using a large enough cache for the video stream; wireless networks are inherently dodgy and prone to dropouts &#8211; I could live with this for the time being, but I knew it would have to be addressed at some point.</p>
<p>I was fairly happy at this point &#8211; Xvids were playing back and looking better than on the Xbox, but it was time to try out some HD content and start playing back some video encoded using the h264 codec.</p>
<p>Using <a href="http://handbrake.fr/">Handbrake</a>, I converted a set of DVD VOBs into an MP4 file using the Playstation 3 preset.  The resulting MP4 file looked amazing on the computer via Quicktime and I was looking forward to being able to archive all my DVDs in this new, higher quality format.  I put the MP4 file into the &#8220;My Videos&#8221; file and then jumped onto the PS3.  When I first looked, I couldn&#8217;t see the MP4 file, so I restarted the PS3 &#8211; still no MP4 file &#8211; this is when I started to get a bit upset.</p>
<p>After a bit of googling I discovered that Windows Media Player 11 does not, by default, support the &#8220;discovery&#8221; of h264.  I was surprised by this as I had already installed the <a href="http://www.cccp-project.net/">CCCP (Combined Community Codec Pack)</a> and the files could play back via WMP11 on the PC.  Luckily there is a <a href="http://a8t8.spaces.live.com/blog/cns!2518DD508BB713E8!156.entry">small registry hack</a> (compatible with both Vista 32 and 64) which enables the discovery of h264 content.  Once the patch is installed and your computer is restarted, the PS3 will be able to see the mp4 files &#8211; excellent!  I dived onto the couch and hit the Play button the Remote &#8211; only to be bitterly disappointed.</p>
<p>Although the video played back (and looked fantastic compared to the Xvids before it) &#8211; the dropout made it un-watchable.  The video was stuttering all over the place!  A quick check via the &#8216;Select&#8217; button showed that the video was trying to steam 5mbps over the wireless &#8211; seeing as 802.11g only offers an ideal bandwidth of 54mpbs (which is pretty much theoretical) I knew that asking it for 5mbps (plus the overhead from the DLNA services) was pushing it too far!  As my house doesn&#8217;t have CAT-5 running through the walls, my own hope was to purchase a set of <a href="http://en.wikipedia.org/wiki/HomePlug">HomePlug network devices</a> to run the network data over my home&#8217;s powerlines.  I&#8217;ve always been a bit dubious of HomePlug&#8217;s and had heard negative things about them but seeing as I didn&#8217;t have many optins left, I opted for a pair of <a href="http://www.scan.co.uk/Product.aspx?WebProductId=947922">Linksys PLE200&#8217;s from Scan.co.uk</a> (I was quite suprised that they were only £49 for a pack of 2, I expected to pay twice that much).  These devices touted that they were capable of stream HD Content over a network and could manage 200mbps (Which is a lovely bit of marketing seeing as they only have 100mbps interfaces &#8211; the 200mbps mentioned on the box is referring to the devices running in full duplex mode &#8211; and seeing as I only have a 100mbps router, it all becomes a bit of a moot point).</p>
<p>The Homeplugs arrived the next day and I set about installing them.  The box told me to install the management software before plugging them in.  I dutifly inserted the CD and ran the software only to be greeted by an error dialogue reading: &#8220;Failed to initialize Networks Interface &#8211; exiting&#8221;.  I guess the software that ships with the devices isn&#8217;t compatible with Vista x64 then.  Throwing caution to the window I proceeded to plug the devices in, wiring one into my router and the other into the back of the PS3.  I then headed to the Linksys website and began downloading the <a href="http://www.linksysbycisco.com/US/en/support/PLE200/download">latest drivers for the PLE200</a>.  The download was coming in at a miserable 60kbps so I switch my attention back over the PS3 and went to see if the devices would work without the managment software (after all they are network devices &#8211; what setup do the really need once they gain a DHCP lease from the router?).  To my suprise, the PS3 managed to gain a lease and sucessfully connect to the Internet &#8211; score one for Homeplugs!  Seeing as I live in a bungalow I don&#8217;t really see the point of enabling encryption on the devices (which I&#8217;m pretty sure would just limit the amout of avaliable bandwidth anyway due to the overhead) so I am yet to install the latest managment software (and to be honest, I don&#8217;t really want to install another bit of crapware on this box anyway!).</p>
<p>With the Homeplugs setup and my PS3 back on the network, I tried to watch the mp4 file again &#8211; to my delight it started playing back smoothly; a smile almost crept onto my face!</p>
<p>So, now that I had x264&#8217;s playing back, my last hurdle was to get true 720p HD content in the MKV container to play back on the PS3.  I knew already that the PS3 (nor WMP11) supports the MKV container (which is a great shame, as it&#8217;s the best replacement for the aging AVI contaner out there), so I jumped back onto Google and came across a guide which detailed <a href="http://hubpages.com/hub/How-To-Play-MKV-Files-On-Playstation-3">How to Play MKV Files on the Playstation 3</a>.  As MKV is just a container, your first step is to swap out the contained Video and Audio streams and place them into a container the PS3 can accept (VOB).  The piece of software which performs this magic mxing is called (immaginativley) <a href="http://www.mkv2vob.com/">MKV2VOB</a> and does exactly what is says on the tin with no loss of quality.</p>
<p>MKV2VOB takes about a minute to swap the containers of a 120 minute MKV movie, once the conversion was complete I was able to see the resuling .mpg file on the PS3 but it complained about &#8220;Corrupt Data&#8221;, a commenter on an earlier Blog Post pointed out that he had to change the file extension to be &#8220;.MP4&#8243; before the file would playback on the PS3 and sure enough this worked and I was able to watch the re-muxed MKV on the PS3 in glorious HD with an average datarate of almost 10mbps! &#8211; lovley stuff.  To make future transcoding easier, MKV2VOB has a setting in it&#8217;s Configuration tab to automatically rename the output file to .MP4 and then delete the source MKV &#8211; combined with a bit of scripting, it will probably be farily easy to get this conversion to happen automatically.</p>
<p>The only thing I need to figure out now is:</p>
<ul>
<li>How to get thumbnails to appear on the PS3 when browsing the Video&#8217;s served via WMP11</li>
<li>How to change to way the folders are presented on the PS3 as all my media is currently buried under a massive folder hierarchy.  (Videos -&gt; Folders -&gt; Videos -&gt; TV Shows!)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jonnyreeves.co.uk/2009/01/steaming-hd-content-to-the-playstation-3-with-windows-media-player-11/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Dead Space Review.</title>
		<link>http://www.jonnyreeves.co.uk/2008/12/dead-space-review/</link>
		<comments>http://www.jonnyreeves.co.uk/2008/12/dead-space-review/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 22:06:11 +0000</pubDate>
		<dc:creator>Jonny</dc:creator>
				<category><![CDATA[Game Reviews]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.jonnyreeves.co.uk/?p=64</guid>
		<description><![CDATA[I&#8217;ve been doing a bit of reviewing over at dooyoo.co.uk in an attempt to raise a bit of pocket money in my down time.  I thought I&#8217;d cross post my thoughts on Dead Space.
It&#8217;s not often that a game will scare you senseless, but Dead Space is one of those rare gems which, if you [...]]]></description>
			<content:encoded><![CDATA[<p><em>I&#8217;ve been doing a bit of reviewing over at <a href="http://dooyoo.co.uk/">dooyoo.co.uk</a> in an attempt to raise a bit of pocket money in my down time.  I thought I&#8217;d cross post my thoughts on Dead Space.</em></p>
<p>It&#8217;s not often that a game will scare you senseless, but Dead Space is one of those rare gems which, if you allow it, will leave you with nightmarish visions, twitching in the corner!</p>
<p>Dead Space takes a slightly different spin on the usual First Person Shooter genre by positioning the camera just behind your avatar&#8217;s shoulder, in a similar vein to Gears of War. At first I didn&#8217;t think I&#8217;d like this angle, but after a few hours of gameplay I hardly even noticed the aspect shift; infact I&#8217;ll go as far as to say that I think it adds to the game, showing your character (Isaac) getting slammed to the floor, or dragged along by his leg by a monstrous tentacle, which brings me nicely onto the best aspect of dead space &#8211; the enemy!</p>
<p style="text-align: center;"><img class="aligncenter" style="vertical-align: baseline;" src="http://ps3media.ign.com/ps3/image/article/825/825859/dead-space-20071009030504067-000.jpg" alt="" width="480" height="270" /></p>
<p>The game&#8217;s opening cinematic gives nothing away &#8211; you and a small crew aboard a service ship are heading towards the USG Ishimura to repair a damaged comms array; from the moment you step foot off the shuttle you can fear the tension close in around you knowing full well that something is about to go hideously wrong. This is one game that really needs to be played in the dark with a good pair of headphones in order for you to get the most out of it; The audio is superb with a great score which puts the predictable dross of the Lost Soundtrack to shame. This is further heightened by whispering voices, malfunctioning equipment and eerie clanking noises emanating from the vents and ducts. The game has some excellent environment effects, the first time you experience a hull breach and are introduced to the vacuum of space is pretty intense.</p>
<p>The game continues the immersion by removing all HUD elements from the screen; this is replaced with a health meter running down your character&#8217;s spine and ammo readouts on the weapons themselves. The developers came up with a clever system for accessing the inventory; pressing the Tab key will project a hologram infront of your avatar which moves around in the game world. Activating the inventory does pause the game, so there&#8217;s no respite in the midst of an intense battle, again adding to the sense of urgency rather than taking away from it. New weapons, ammo and items can be purchased from the shops which are scattered around the game &#8211; I find it hard to believe that these would still be functional whilst the entire crew lies in pieces, but I guess the story writers ran out of good ideas!</p>
<p><a href="http://www.escapistmagazine.com/videos/view/zero-punctuation/333-Dead-Space">Some reviewers</a> have critiqued Dead Space for its unimaginative and repetitive scenery, however I think this is slightly unjust given the setting of the game (Spaceships, for all their intergalactic glory, are pretty grey affairs on the inside). The Game progresses you through multiple parts of the Ship with boss battles taking place around the usual landmarks (The sequence in the morgue is particularly memorable). However I will agree with others that the range of weapons is lacking &#8211; you&#8217;ll often find yourself falling back one one or two staple weapons, especially when the ammo starts getting sparse later in the game, but I guess we should be grateful that the developers didn&#8217;t fall back on the usual Doom formula of shotgun, rifle, rocket launcher.</p>
<p>Dead Space is another one of those game which feels like a console port &#8211; for example, you can only save you game at certain Save Points (at which you are also limited to four saves!) and there is no Quick Save (but again, this adds to the tension and makes you value your health!). The transition from gamepad to keyboard feels slightly strange and no matter how I remapped the keys I never felt I had that &#8220;Half-life level&#8221; of keybinding. There are also certain gameplay elements that don&#8217;t translate as well; one mission has you shooting at incoming asteroids, something which is quite tricky on a PS3 (or so I&#8217;m told), but it was just 5 minutes of tedium for me as I popped off rock after rock with the pinpoint precision a mouse offers you)</p>
<p>The graphics are one place where the PC version shines above its console brethren; I was able to run the game with everything on High setting at 1680&#215;1050 resolution on my 768mb Nvidia 9800GTS (far in excess of the 720p limit on the consoles). One small problem that I came across was the incredible mouse lag when I first started it up; this was quickly solved by turning off the VSync setting in the Graphics menu (and no, this did not produce any visual tearing for me). It should also be noted that you can further improve the graphics by enabling Anti-Aliasing in your Graphics Card settings as there are no AA Options in the Game.</p>
<p>To conclude, I really can&#8217;t fault Dead Space, it&#8217;s been a long time since I&#8217;ve played a game compelling enough to warrant 8 hour stints that last long into the night. Of course, this game is not without its faults, but it would definitely be in my Top 5 picks of 2008. This game would make an excellent present for any avid gamer, but I wouldn&#8217;t reccomend letting younger children play it due to the extreme graphic nature and the incredibly dark and twisted setting (I&#8217;ve woken up from a couple of warped dreams since playing this game!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonnyreeves.co.uk/2008/12/dead-space-review/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Holiday Photography</title>
		<link>http://www.jonnyreeves.co.uk/2008/06/holiday-photography/</link>
		<comments>http://www.jonnyreeves.co.uk/2008/06/holiday-photography/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 08:20:39 +0000</pubDate>
		<dc:creator>Jonny</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.jonnyreeves.co.uk/?p=48</guid>
		<description><![CDATA[I&#8217;m back from a week long holiday in the bay of Elounda, Crete.  During my stay I took about 200 pictures using my trusty Samsung i6 my favourite of which were taken on the Island of Spinalonga which served as a leprosy colony until 1957, the following pic was snapped looking back towards Plaka.

The [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m back from a week long holiday in the bay of <a href="http://maps.google.co.uk/maps?f=q&#038;hl=en&#038;geocode=&#038;q=crete&#038;ie=UTF8&#038;ll=35.276806,25.729465&#038;spn=0.044214,0.062485&#038;t=h&#038;z=14">Elounda, Crete</a>.  During my stay I took about 200 pictures using my trusty <a href="http://www.digicamreview.co.uk/samsung_digimax_i6_review.htm">Samsung i6</a> my favourite of which were taken on the <a href="http://en.wikipedia.org/wiki/Spinalonga">Island of Spinalonga</a> which served as a leprosy colony until 1957, the following pic was snapped looking back towards Plaka.</p>
<p style="text-align: center;"><a href='http://www.jonnyreeves.co.uk/wp-content/uploads/2008/06/lonely-tree-spinalonga.jpg'><img src="http://www.jonnyreeves.co.uk/wp-content/uploads/2008/06/ssl20297.png" alt="A sole tree on the Island of Spinalonga, Crete" title="Lonely Tree, Spinalonga" width="500" height="242" class="aligncenter" /></a></p>
<p>The following picture was taken in the town of <a href="http://maps.google.co.uk/maps?f=q&#038;hl=en&#038;geocode=&#038;q=crete&#038;ie=UTF8&#038;t=h&#038;ll=35.188378,25.721295&#038;spn=0.002639,0.003905&#038;z=18&#038;iwloc=addr">Aghios Nikolaos</a>, which features a large central lake / dock which is famed for being bottomless and surrounded by restaurants.  This particular flower was found all around Crete and looked like a giant dandelion &#8211; the &#8220;ball&#8221; was comprised of hundreds of blue spikes.  I took this particular picture in response to a Chris&#8217; own picture, <a href="http://chris-beaumont.com/blog/2008/06/01/hyperactive-bumble-bee/">Drunken Bumble Bee</a> to which mine pales in comparison!</p>
<p style="text-align: center;"><a href='http://www.jonnyreeves.co.uk/wp-content/uploads/2008/06/mr-bee.jpg'><img src="http://www.jonnyreeves.co.uk/wp-content/uploads/2008/06/mr-bee-thumbnail.jpg" alt="A bee on a plant in Aghios Nikolaos" title="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonnyreeves.co.uk/2008/06/holiday-photography/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New House</title>
		<link>http://www.jonnyreeves.co.uk/2007/08/new-house/</link>
		<comments>http://www.jonnyreeves.co.uk/2007/08/new-house/#comments</comments>
		<pubDate>Thu, 09 Aug 2007 23:02:51 +0000</pubDate>
		<dc:creator>Jonny</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.jonnyreeves.co.uk/2007/08/new-house/</guid>
		<description><![CDATA[Here&#8217;s a picture of the house me and Katy are buying &#8211; this one&#8217;s for you Gus:

Plenty of pics when we actually get around to moving in :)
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a picture of the house me and Katy are buying &#8211; this one&#8217;s for you Gus:</p>
<p align="center"><img src="http://www.jonnyreeves.co.uk/wp-content/uploads/2007/08/new_house.jpg" alt="New House" /></p>
<p>Plenty of pics when we actually get around to moving in :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonnyreeves.co.uk/2007/08/new-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crave Podcast</title>
		<link>http://www.jonnyreeves.co.uk/2007/07/crave-podcast/</link>
		<comments>http://www.jonnyreeves.co.uk/2007/07/crave-podcast/#comments</comments>
		<pubDate>Fri, 13 Jul 2007 14:05:14 +0000</pubDate>
		<dc:creator>Jonny</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.jonnyreeves.co.uk/2007/07/crave-podcast/</guid>
		<description><![CDATA[Just a quick update to mention that I&#8217;m in this week&#8217;s CNET.co.uk&#8217;s CRAVE Podcast talking about getting into Podcasting and the setup we have running down here at CNET.
You can download the show as an MP3 right here.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jonnyreeves.co.uk/wp-content/uploads/2007/07/01-crave_logo.jpg" title="CNET.co.uk - Crave Logo" alt="CNET.co.uk - Crave Logo" align="left" />Just a quick update to mention that I&#8217;m in this week&#8217;s <a href="http://crave.cnet.co.uk/podcast/">CNET.co.uk&#8217;s CRAVE Podcast</a> talking about getting into Podcasting and the setup we have running down here at CNET.</p>
<p>You can download the show as an <a href="http://www.podtrac.com/pts/redirect.mp3?http://download.cnetuk.co.uk.edgesuite.net/cnetcouk/podcasts/crave/The_Crave_Podcast-Episode_41.mp3">MP3 right here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonnyreeves.co.uk/2007/07/crave-podcast/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://www.podtrac.com/pts/redirect.mp3?http://download.cnetuk.co.uk.edgesuite.net/cnetcouk/podcasts/crave/The_Crave_Podcast-Episode_41.mp3" length="27283538" type="audio/mpeg" />
		</item>
		<item>
		<title>Ubuntu Upgrade to 7.04</title>
		<link>http://www.jonnyreeves.co.uk/2007/04/ubuntu-upgrade-to-704/</link>
		<comments>http://www.jonnyreeves.co.uk/2007/04/ubuntu-upgrade-to-704/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 09:52:42 +0000</pubDate>
		<dc:creator>Jonny</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://jonny.xaedalus.net/2007/04/ubuntu-upgrade-to-704/</guid>
		<description><![CDATA[April 19th is a landmark occasion of the Ubuntu Distribution of Linux.  The new release of 7.04 may not bring so much in the way of features but it does have a certain &#8220;Coming of Age&#8221; quality to it.
I only run Linux on my laptop at home after our experiment with Linux on the [...]]]></description>
			<content:encoded><![CDATA[<p>April 19th is a landmark occasion of the <a href="http://www.ubuntu.org">Ubuntu</a> Distribution of Linux.  The new release of 7.04 may not bring so much in the way of features but it does have a certain &#8220;Coming of Age&#8221; quality to it.</p>
<p>I only run Linux on my laptop at home after our experiment with Linux on the desktop wasn&#8217;t met with success.  I wasn&#8217;t planning on upgrading from Ubuntu 6.10 to 7.04 in the near future because of the lack of a CD-ROM drive for my laptop (well, more the lack of a power supply for my Lacie Firewire CD-RW).  As a result, I was pleasantly surprised to see Ubuntu&#8217;s update manager pop up in the corner of my screen telling me that a new &#8216;distribution release 7.04&#8242; was available complete with a nice chunky (got to love the Gnome) &#8220;Upgrade&#8221; button begging to be pressed.</p>
<p>The installers first step was to pull down the &#8220;Upgrade Assistant&#8221; which &#8216;guides you through the install process&#8217;.  Now my laptop is not the fastest (733mhz P3) but this step took an age before the assistant actually appeared.  Top indicated that the CPU was having a bit of a nap, so I presume the delay was due to the sheer number of &#8220;updaters&#8221; eagerly following the same path as myself.</p>
<p>I gave up for the night and tried upgrading again a few days later.  This time the Update Assistant appears immediately, a good sign!  The update took about 60 mins to download all the packages and update them, upon completing I was asked to restart the system.  During the update I was still able to use Firefox to browse the web, a privilege that would certainly be unheard of on any other major OS!</p>
<p>My initial impression of 7.04 is that not much has changed, the new control pannel is quite snazzy (not that I need to make much use of it now my laptop has been set up) and Wireless Access Points are now automatically detected (no more dropping down to the terminal to switch!).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonnyreeves.co.uk/2007/04/ubuntu-upgrade-to-704/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
