<?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>The Drogon Blogon</title>
	<atom:link href="http://drogon.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://drogon.net/blog</link>
	<description>A selection of posts, ideas, thoughts and general ramblings from Gordon Henderson/Drogon Systems</description>
	<lastBuildDate>Wed, 28 Mar 2012 15:37:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Return to BASIC</title>
		<link>http://drogon.net/blog/2012/03/return-to-basic/</link>
		<comments>http://drogon.net/blog/2012/03/return-to-basic/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 17:33:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[RTB]]></category>
		<category><![CDATA[BASIC]]></category>

		<guid isPermaLink="false">http://drogon.net/blog/?p=273</guid>
		<description><![CDATA[Edit &#8211; 28th March 2012: I&#8217;ve moved this posting over to the projects website, but will leave the pretty picture for now! RTB is a modern BASIC &#8211; it has while/until looping constructs and named functions and procedures which can &#8230; <a href="http://drogon.net/blog/2012/03/return-to-basic/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Edit &#8211; 28th March 2012: I&#8217;ve <a title="Return to Basic" href="http://projects.drogon.net/return-to-basic/">moved this posting over to the projects website</a>, but will leave the pretty picture for now!</p>
<p style="text-align: justify;">RTB is a modern BASIC &#8211; it has while/until looping constructs and named functions and procedures which can have local variables and be called recursively. It has  simplified colour scheme (or you can use all 24-bits if you like), and the usual point, line and shape drawing primitives as well as some nice turtle graphics commands:</p>
<p style="text-align: justify;"><img class="aligncenter" title="Simple Turtle Graphics program in RTB" src="http://unicorn.drogon.net/rtb1.png" alt="Simple Turtle Graphics program in RTB" width="654" height="509" /></p>
]]></content:encoded>
			<wfw:commentRss>http://drogon.net/blog/2012/03/return-to-basic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raspberry Pi in QEMU (Debian)</title>
		<link>http://drogon.net/blog/2012/03/raspberry-pi-in-qemu-debian/</link>
		<comments>http://drogon.net/blog/2012/03/raspberry-pi-in-qemu-debian/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 21:03:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[QEMU]]></category>
		<category><![CDATA[Raspberry Pi]]></category>

		<guid isPermaLink="false">http://drogon.net/blog/?p=263</guid>
		<description><![CDATA[With my Raspberry Pi on-order, I thought I&#8217;d get a head-start on having some fun by getting the Debian image running under QEMU. A few false starts later and it&#8217;s working just fine, however I wanted to get USB going&#8230; &#8230; <a href="http://drogon.net/blog/2012/03/raspberry-pi-in-qemu-debian/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">With my Raspberry Pi on-order, I thought I&#8217;d get a head-start on having some fun by getting the Debian image running under QEMU. A few false starts later and it&#8217;s working just fine, however I wanted to get USB going&#8230; QEMU supports USB emulation, but I had to compile my own version &#8211; then compile my own kernel to run inside QEMU&#8230; Here is what I did:</p>
<p style="text-align: justify;">The first problem I faced was that the supplied QEMU for my Debian Squeeze (stable) workstation doesn&#8217;t support the right ARM processor emulator, so get and build QEMU from scratch, but first make sure you don&#8217;t already have one installed:</p>
<pre style="text-align: justify;">dpkg -l | fgrep -i qemu</pre>
<p style="text-align: justify;">and if you find anything, then purge it. Now fetch and install QEMU:</p>
<pre style="text-align: justify;">cd
mkdir -p rpi/qemu ; cd rpi/qemu
wget http://wiki.qemu.org/download/qemu-1.0.tar.gz
tar zzvf qemu-1.0.tar.gz
cd qemu-1.0
./configure –target-list=arm-softmmu,arm-linux-user
make
sudo make install</pre>
<p style="text-align: justify;">with a bit of luck that will just work although the ./configure stage may suggest some packages to install.</p>
<p style="text-align: justify;">The next step is to get, configure and compile a new Linux Kernel. This may be quite daunting if you&#8217;ve never done it before, and I offer a few alternatives &#8211; the first is to fetch a pre-compiled kernel (easy), then next is to fetch the kernel config file and finally to create your own kernel config file (harder) and compile your own kernel (harder) However, before you compile the kernel, there is a patch you need to apply to it which can be found online in several places, but also on my server as detailed below.</p>
<p style="text-align: justify;">I suggest starting with my pre-compiled kernel, then fetch the config file and patch to compile your own.</p>
<pre style="text-align: justify;">cd ~/rpi
wget http://unicorn.drogon.net/rpi/zImage</pre>
<p style="text-align: justify;">or if you want to get the kernel .config file:</p>
<pre>wget http://unicorn.drogon.net/rpi/config
wget http://unicorn.drogon.net/rpi/linux-arm.patch</pre>
<p style="text-align: justify;">You&#8217;ll then need to fetch a kernel (I used 3.1.9 here), get the cross compiler tools, compile and install the kernel, etc. I&#8217;ll do another article on that, but at it gets close to hardware time, it might not be needed as you will be able to compile a kernel on the Raspberry Pi itself (although it might take all night!)</p>
<p style="text-align: justify;">The final part of the puzzle is to get the Debian SD card image. I used BitTorrent to fetch the file and it&#8217;s probably still the best way to get it now. Start at the <a title="Raspberry Pi Downloads page" href="http://www.raspberrypi.org/downloads" target="_blank">downloads</a> page on the Raspberry Pi website, or use this <a title="Torrent Link" href="http://downloads.raspberrypi.org/images/debian/6/debian6-17-02-2012/debian6-17-02-2012.zip.torrent" target="_blank">direct link</a> to get the torrent file.</p>
<p style="text-align: justify;">You may have read a lot of writings on splitting up that file, working out some magical offsets, etc. but none of that is required at all! This is what&#8217;s needed to start QEMU using the supplied Debian image and the kernel you just fetched:</p>
<p style="text-align: justify;">Lets assume you have the zImage kernel and the Debian image in the same directory. Edit this into a little script called (e.g.) go:</p>
<pre style="text-align: justify;">qemu-system-arm -M versatilepb -cpu arm1176 -m 192      \       
        -hda debian6-17-02-2012.img                     \       
        -kernel zImage                                  \       
        -append "root=/dev/sda2"                        \       
        -serial stdio -redir tcp:2222::22               \
        -usb -usbdevice host:0403:6001</pre>
<p style="text-align: justify;">and run it by typing</p>
<pre style="text-align: justify;">sh go</pre>
<p style="text-align: justify;">Note the last line &#8211; that tells QEMU to use USB device with id 0403:6001 on the host PC and assign it to the emulated CPU. You identify the device with the lsusb command on the host. That device on my workstation is the USB serial port to an Arduino &#8211; more on connecting the Raspberry Pi to an Arduino later&#8230;</p>
<p style="text-align: justify;">If all goes well, it should look like this:</p>
<p style="text-align: justify;"><a href="http://drogon.net/blog/wp-content/uploads/2012/03/boot.png"><img class="aligncenter size-full wp-image-269" title="Raspberry Pi in QEMU" src="http://drogon.net/blog/wp-content/uploads/2012/03/boot.png" alt="" width="654" height="509" /></a>I can&#8217;t claim originality for it all &#8211; I&#8217;ve picked a lot of this up from online resources, the Raspberry Pi forums and elsewhere &#8211; e.g. <a title="cnx-software" href="www.cnx-software.com/2011/10/18/raspberry-pi-emulator-in-ubuntu-with-qemu/" target="_blank">cnx-software</a></p>
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://drogon.net/blog/2012/03/raspberry-pi-in-qemu-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sourdough &#8211; Again</title>
		<link>http://drogon.net/blog/2012/02/sourdough-again/</link>
		<comments>http://drogon.net/blog/2012/02/sourdough-again/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 14:02:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cooking]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[baking]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[sourdough]]></category>

		<guid isPermaLink="false">http://drogon.net/blog/?p=250</guid>
		<description><![CDATA[From the &#8220;never stop learning&#8221; department&#8230; So&#8230; a recent TV series on Channel 4 &#8220;The Fabulous Baker Brothers&#8221; featuring the wonderful Hobbs House Bakery has made me re-think the way I&#8217;ve been making my sourdough bread. I started my sourdough &#8230; <a href="http://drogon.net/blog/2012/02/sourdough-again/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">From the &#8220;never stop learning&#8221; department&#8230;</p>
<p style="text-align: justify;">So&#8230; a recent TV series on Channel 4 &#8220;The Fabulous Baker Brothers&#8221; featuring the wonderful <a title="Hobbs House" href="http://www.hobbshousebakery.co.uk/" target="_blank">Hobbs House Bakery</a> has made me re-think the way I&#8217;ve been making my sourdough bread.</p>
<p style="text-align: justify;">I started my sourdough some 6 months ago (Start of August 2011) after seeing it featured on the River cottage programs. I&#8217;ve always liked sourdough since I first tasted it in San Francisco in the early 90&#8242;s. I reckon sourdough is the king of breads, yet it&#8217;s possibly one of the easiest to make &#8211; I&#8217;ve been making bread for a great number of years, so when I saw the River cottage sourdough, I thought I&#8217;d give it a go, and since last August I&#8217;ve been making about one sourdough loaf a week, sometimes more, sometimes less. Always with the same great <a title="Shipton Mill" href="http://www.shipton-mill.com/" target="_blank">Shipton Mill</a> flour which I buy locally.</p>
<p style="text-align: justify;">And so-far, so good, however their way seems such a long-winded method, so when I saw the Baker Brothers program, I thought I&#8217;d try their method.</p>
<p style="text-align: justify;">Briefly, the <a title="River Cottage Sourdough" href="http://www.rivercottage.net/recipes/river-cottage-sourdough" target="_blank">River Cottage method</a> involves taking some starter, adding to it a smallish quantity of flour and water, then leaving this &#8220;sponge&#8221; overnight, then adding more flour (and water &amp; salt) into it, kneading it, letting it rise for 8 hours, then giving it a brief knead again, transfer to a forming basket, let it rise again, but just for an hour or 2 then into the oven.</p>
<p style="text-align: justify;">The (Fabulous) Baker Brothers method removes the overnight sponge step &#8211; it&#8217;s a good quantity of starter into all the flour, add a bit more water and salt, give it a decent 10+ minute knead, let it rise for 2 hours, then a light knead/shape transfer to the forming basket and let it rise for 8-12 hours, then bake.</p>
<p style="text-align: justify;">And what a difference. It&#8217;s risen more than it usually does, the crumb is fluffier and lighter and it has a slightly more intense sour &#8220;tang&#8221; flavour to it. I&#8217;m attributing this to letting the starter get full-contact with all the flour right from the start, so it can get working, and keep on working.</p>
<p style="text-align: justify;">It&#8217;s also now trivially easy to get a loaf ready first thing in the morning, as the final 8-12 hour rise can be overnight, then get up only a shade earlier than normal to crank the oven up and bake that loaf!</p>
<div id="attachment_253" class="wp-caption aligncenter" style="width: 1034px"><a href="http://drogon.net/blog/wp-content/uploads/2012/02/sourdough1.jpg"><img class="size-full wp-image-253" title="Fresh Sourdough" src="http://drogon.net/blog/wp-content/uploads/2012/02/sourdough1.jpg" alt="Fresh Sourdough" width="1024" height="726" /></a><p class="wp-caption-text">Fresh Sourdough on my baking &quot;stone&quot; which is really a hand-beaten Kenyan chuppati pan - next to my forming basket</p></div>
<div id="attachment_255" class="wp-caption aligncenter" style="width: 1034px"><a href="http://drogon.net/blog/wp-content/uploads/2012/02/sourdough2.jpg"><img class="size-full wp-image-255" title="From Starter to Finish" src="http://drogon.net/blog/wp-content/uploads/2012/02/sourdough2.jpg" alt="From Starter to Finish" width="1024" height="744" /></a><p class="wp-caption-text">From Starter to Finish - my jar of starter next to the finished bread!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://drogon.net/blog/2012/02/sourdough-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dualit &#8211; Made in the UK? What could possibly go wrong&#8230;</title>
		<link>http://drogon.net/blog/2011/12/dualit-made-in-the-uk-what-could-possibly-go-wrong/</link>
		<comments>http://drogon.net/blog/2011/12/dualit-made-in-the-uk-what-could-possibly-go-wrong/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 13:49:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cooking]]></category>
		<category><![CDATA[Dualit]]></category>
		<category><![CDATA[Whinges]]></category>
		<category><![CDATA[coffee]]></category>
		<category><![CDATA[dualit]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://drogon.net/blog/?p=238</guid>
		<description><![CDATA[My Gaggia espresso maker went bang recently, so looked about for a new coffee maker. Settled on the Dualit Espressivo machine. It seemed to tick all the right boxes, won awards, designed/made in the UK and so on. What could &#8230; <a href="http://drogon.net/blog/2011/12/dualit-made-in-the-uk-what-could-possibly-go-wrong/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">My G<img class="alignleft size-full wp-image-239" title="Dualit Espressivo" src="http://drogon.net/blog/wp-content/uploads/2011/12/thumb_1485.jpg" alt="Dualit Espressivo" width="90" height="90" />aggia espresso maker went bang recently, so looked about for a new coffee maker. Settled on the Dualit Espressivo machine. It seemed to tick all the right boxes, won awards, designed/made in the UK and so on. What could possibly go wrong?</p>
<p style="text-align: justify;">One word: Service.</p>
<p style="text-align: justify;">As in customer service and the whole buying experience making me reluctant to recommend Dualit to any of my friends and I certainly will never buy from them again.</p>
<p style="text-align: justify;">The website (and the machine &#8211; see below) is actually quite good. Online manuals and photo guides. No printed manuals with the machine, however &#8211; one more thing I was disappointed with.</p>
<p style="text-align: justify;">Another thing I was disappointed with &#8211; the ordering process. The website told me that it was in-stock, yet at the very end, <strong>after</strong> I&#8217;d paid for it, I was informed it would take up to 7 working days to be delivered.</p>
<p style="text-align: justify;">Come on! It&#8217;s 2011! You have something in-stock and can&#8217;t deliver the same (or next) working day? You&#8217;re either lying or are just lazy. If I&#8217;d known that I&#8217;d have to wait for it, I&#8217;d have bought it off Amazon (cheaper!) and not wasted my time dealing directly with you.</p>
<p style="text-align: justify;">I was also promised 50 coffee pods with delivery too. Despite one phone call and 2 emails, (which Dualit acknowledged with changes promised) these have yet to arrive. It&#8217;s now almost 3 weeks later and <strong>I still don&#8217;t have them</strong>. You told me on Thursday the 1st of December that they had been dispatched. It&#8217;s now the 5th of December&#8230; <strong>Where is my coffee?</strong></p>
<p style="text-align: justify;">On the phone to Dualit on the day of delivery, I was told I had to fill out a voucher and send it in &#8211; because they have 3 different types of coffee. There was no voucher with the machine. Worse, there was no indication that I&#8217;d need to do this on the website. I could have been left waiting for weeks before I realised that I wasn&#8217;t going to get my coffee&#8230; (and how many people have?) That means that they must have people phoning the factory all the time! Every time someone buys one of their coffee machines they have to phone the factory to get a voucher. Just how inefficient is that? No-wonder they take 7 working days to deliver stuff &#8211; they&#8217;re dealing with phone complains all the time! In my email I suggested that since they have 3 different types that they simply send a selection of all three &#8211; they have told me that they will take this suggestion on-board, but as yet no change to their website. No indication either that it will take up to 7 working days for delivery. Actually, I lie and notice that there has been an update. It&#8217;s now <strong>10 working days</strong>.. Looks like if you want a Dualit for xmas then you&#8217;re out of luck, so don&#8217;t even bother. (Or get it from Amazon)</p>
<p style="text-align: justify;">As for the machine itself? Yes, it makes good espresso coffee, it has simple controls and is easy to use &#8211; however it has a bunch of irritations that take the edge off it&#8217;s otherwise good ability to make coffee.. The grounds end up as a soggy mess in the filter making it impossible to simply tap out in one nice compacted &#8220;cake&#8221; which the Gaggia used to produce. (So making more than one large coffee is a PITA) and the steam nozzle is too close to the body of the machine, making the use of a larger milk jug quite tricky (the one supplied is far too small for anything other than a thimble full of milk) Here&#8217;s a tip for Dualit and other kitchen equipment manufacturers: As well as producing nice photo shoots for making coffee&#8230; How about making one for cleaning it out afterwards!</p>
<p style="text-align: justify;">I&#8217;ve more or less given-up on the coffee pods &#8211; probably just as well as I have my own coffee beans anyway, but it would have been nice to play with the pods rather than the beans I normally use. Of-course by not giving me the pods I&#8217;ve now absolutely no incentive to buy them, so you&#8217;ve lost there, Dualit. I could have been a good customer &#8211; there is some nice kitchen kit on the Dualit website and I&#8217;m sure it&#8217;s all perfectly good, but because of my experiences with your ordering process, I&#8217;m simply going to look elsewhere in the future.</p>
<p style="text-align: justify;"><strong>UPDATE: 10th Dec 2011 &#8211; The coffee pods arrived!</strong></p>
<p style="text-align: justify;">So the coffee finally arrived. An outer box, an inner box, one lightweight jute bag and 50 foil pouches containing the pods.</p>
<p style="text-align: justify;">It&#8217;s not the best of coffee I have to admit. Despite being their espresso brand, I find it rather weak and insipid. There&#8217;s no indication of origin either. At £65 +P&amp;P for a pack of 50 pods, I do think it&#8217;s rather a lot to pay for the convenience of not having to slop out the soggy grounds. I won&#8217;t be buying any from Dualit (nor anyone else for that matter)</p>
]]></content:encoded>
			<wfw:commentRss>http://drogon.net/blog/2011/12/dualit-made-in-the-uk-what-could-possibly-go-wrong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Sourdough Project &#8211; Parts 2, 3 and 4!</title>
		<link>http://drogon.net/blog/2011/09/the-sourdough-project-parts-2-3-and-4/</link>
		<comments>http://drogon.net/blog/2011/09/the-sourdough-project-parts-2-3-and-4/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 17:55:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cooking]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[bread]]></category>
		<category><![CDATA[cooking]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[sourdough]]></category>

		<guid isPermaLink="false">http://drogon.net/blog/?p=220</guid>
		<description><![CDATA[Or maybe that ought to be loaves 2, 3 and 4, as the saga continues and it&#8217;s almost becoming a regular weekly thing in the Henderson kitchen now! My starter seems to have settled in and each loaf is getting &#8230; <a href="http://drogon.net/blog/2011/09/the-sourdough-project-parts-2-3-and-4/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Or maybe that ought to be loaves 2, 3 and 4, as the saga continues and it&#8217;s almost becoming a regular weekly thing in the Henderson kitchen now!</p>
<p style="text-align: justify;">My starter seems to have settled in and each loaf is getting better than the next. It&#8217;s going to be hard to beat number 4 though!</p>
<div id="attachment_225" class="wp-caption aligncenter" style="width: 310px"><a href="http://drogon.net/blog/wp-content/uploads/2011/09/sd41.jpg"><img class="size-medium wp-image-225" title="Sourdough loaf number 3" src="http://drogon.net/blog/wp-content/uploads/2011/09/sd41-300x179.jpg" alt="Sourdough loaf number 3" width="300" height="179" /></a><p class="wp-caption-text">Sourdough loaf number 3</p></div>
<p style="text-align: justify;">Number 1 was 100% wholemeal flour &#8211; and it really was a bit too heavy, so after that I switched to some malted grannary flour with sunflower and pumpkin seeds which has a really nice flavour. I&#8217;m feeding the starter with what&#8217;s left of the wholemeal, so it&#8217;s got a little bit of everything. Eventually, the starter will be fed with whilte flour. Still using the organic stuff from the Shipton Mill. (And one day I want to make one with as much white flour as possible &#8211; just because!)</p>
<div id="attachment_223" class="wp-caption aligncenter" style="width: 310px"><a href="http://drogon.net/blog/wp-content/uploads/2011/09/sd2.jpg"><img class="size-medium wp-image-223" title="Number 4 cooling on the rack" src="http://drogon.net/blog/wp-content/uploads/2011/09/sd2-300x179.jpg" alt="Number 4 cooling on the rack" width="300" height="179" /></a><p class="wp-caption-text">Number 4 cooling on the rack</p></div>
<div id="attachment_226" class="wp-caption aligncenter" style="width: 310px"><a href="http://drogon.net/blog/wp-content/uploads/2011/09/sd1.jpg"><img class="size-medium wp-image-226" title="Number 4 after some essential quality control!" src="http://drogon.net/blog/wp-content/uploads/2011/09/sd1-300x179.jpg" alt="Number 4 after some essential quality control!" width="300" height="179" /></a><p class="wp-caption-text">Number 4 after some essential quality control!</p></div>
<p style="text-align: justify;">The now weekly process starts with getting the starter out of the fridge on a Friday or Saturday afternoon, leaving it to come up to room temperature after a brief stir to wake it up! Then I take 200g of the starter and put it into the mixing bowl, then add in more flour and water to make the &#8220;sponge&#8221;. The starter gets another 100g of flour and 100g of water added and both are left overnight (with some clingfilm over the bowl)</p>
<p style="text-align: justify;">In the morning, more flour and water added to the mixing bowl with a good teaspoon of salt, kneaded up and left to rise &#8211; this typically takes a good 4-5 hours. It&#8217;s a lot slower than commercial yeast. After that, another kneading and turning into the forming bowl &#8211; for me that&#8217;s a colander lined with some muslin and flour to stop it sticking. This is left to rise again, then we have the tricky part&#8230; Turning this out onto the baking tray without disturbing it too much, a few slashes on the top and into a hot oven &#8211; which has an old baking tray at the bottom which then gets a mug of boiling water poured into it which creates a bit of steam and creates a good crust (or at least I understand that&#8217;s what it&#8217;s doing &#8211; I might try one without this just to see!)</p>
<p style="text-align: justify;">About half way through cooking, I take it off the baking sheet and put it directly on the next shelf down to help cook through, and that&#8217;s it. A loaf of tasty sourdough just ready to have butter spread thickly on&#8230; (Or, since we&#8217;re in Devon, clotted cream and strawberry jam!)</p>
<p style="text-align: justify;">I&#8217;t's still a little bit of trial and error with the quantities, but I&#8217;m slowly working out the exact quantities to make it easier to get it consistent. I might even publish my recipe when done!</p>
]]></content:encoded>
			<wfw:commentRss>http://drogon.net/blog/2011/09/the-sourdough-project-parts-2-3-and-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Sourdough project &#8211; Part 1</title>
		<link>http://drogon.net/blog/2011/08/the-sourdough-project-part-1/</link>
		<comments>http://drogon.net/blog/2011/08/the-sourdough-project-part-1/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 14:35:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cooking]]></category>

		<guid isPermaLink="false">http://drogon.net/blog/?p=213</guid>
		<description><![CDATA[In the early 1990&#8242;s I found myself living and working near San Francisco, California, USA. While there building supercomputers for Lawrence Livermore Labs, I experienced a new taste &#8211; sourdough bread! Now&#8230; Sourdough isn&#8217;t exactly new and one bakery over &#8230; <a href="http://drogon.net/blog/2011/08/the-sourdough-project-part-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">In the early 1990&#8242;s I found myself living and working near San Francisco, California, USA. While there building supercomputers for Lawrence Livermore Labs, I experienced a new taste &#8211; sourdough bread! Now&#8230; Sourdough isn&#8217;t exactly new and one bakery over there was celebrating over 100 years of sourdough, but sourdough goes back much further than that. Thousands of years in-fact!</p>
<p style="text-align: justify;">Look it up in <a title="Sourdough Wikipedia page" href="http://en.wikipedia.org/wiki/Sourdough" target="_blank">Wikipedia</a> if you like, but in simple terms, sourdough is made from Lactobacillus bacteria and naturally occurring yeasts. The Lactobacillus gives it an acidic nature which acts as a natural preservative and gives it a tangy/sour taste and the yeasts help it rise.</p>
<p style="text-align: justify;">Once I returned from SF, I found it almost impossible to get sourdough bread so quietly forgot about it &#8211; until recently! Now, there are artisan bakeries popping up who&#8217;re making the stuff, and people like Hugh Fearnly-Whittingstall showing it in TV, but the few I&#8217;ve had recently, while good, have lacked that real &#8220;tangy&#8221; taste I remembered from the breads I had in SF.</p>
<p style="text-align: justify;">So I decided to make my own.</p>
<p style="text-align: justify;">Patience. Plenty of patience is what you need to make sourdough. You will not make a loaf of sourdough in under 24 hours, and you need at least a week, preferably more to make sure your starter is healthy!</p>
<p style="text-align: justify;">I made the mistake of starting with 100% wholemeal flour &#8211; something the <a title="Ellas in Ashburton" href="http://www.thisissouthdevon.co.uk/Ella-s-love-bread-making-led-starting-bakery/story-12367282-detail/story.html" target="_blank">local artisan baker</a> subsequently advised against, but it did work and it was (is!) edible, if a little doughy and heavy.</p>
<p style="text-align: justify;">To make good bread needs good ingredients, so some stoneground wholemeal flour from <a title="Shipton Mill" href="http://www.shipton-mill.com/" target="_blank">Shipton Mill</a> was obtained, and off I went. Mixed some with water, left it outside on a warm evening with a cloth tied over it to hopefully allow some natural yeasts to invade, let it rest in a warm place, add more flour and water a day later, take some out add more in, and so on for a week. I was somewhat dubious, but there was definitely action happening &#8211; plenty of bubbles (CO2 hopefully!) and a definite aroma of alcohol (as brewers would recognise!) &#8211; yeast basically eats sugars (carbohydrates in the flour in this instance), burps CO2 and pees alcohol &#8211; meanwhile the Lactobacillus is also digesting the carbohydrates and producing lactic acid &#8211; which gives the sour flavour and acts as a preservative. The production of CO2 is really what we&#8217;re after &#8211; that&#8217;s what makes the bread rise and gives it its springy texture! I did have a bit of separation of the flour and water, but I suspect that&#8217;s because I used heavier wholemeal flour &#8211; I&#8217;m currently weaning the starter off wholemeal to plain white flour, so hopefully that&#8217;ll change in time.</p>
<p style="text-align: justify;">So, after the first week or so, making a loaf still takes a day and a half! The first stage is to make the &#8220;sponge&#8221; by mixing a portion of starter with more flour and water, making a thinnish paste and leave it overnight &#8211; hopefully producing a frothing mass in the morning! Into this, add salt, more flour and knead &#8211; for a good 10 minutes! (although next time I might just use the K-Mix!) Leave to rise, knead again, turn into a forming basket (I used a colander and a floured cloth), leave to rise again, gently turn out onto a floured baking tray, a few signature slashes on-top and into a hot oven. A bit of steam helps it rise and form a nice crust, so I have a baking tray in the bottom which I poured some boiling water into.</p>
<p style="text-align: justify;">Simples!</p>
<p style="text-align: justify;">Or maybe it would have been, had I used a lighter flour, however the resulting loaf was edible, although it&#8217;s a touch undercooked, it&#8217;s good in the toaster with fresh farmhouse butter, or even clotted cream! And the one thing I wanted was definitely there; a real tangy sourdough taste! (So hurrah for the local Devon yeasts <img src='http://drogon.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  )</p>
<p style="text-align: justify;"><a href="http://drogon.net/blog/wp-content/uploads/2011/08/bread.jpg"><img class="aligncenter size-full wp-image-214" title="First Loaf of Sourdough" src="http://drogon.net/blog/wp-content/uploads/2011/08/bread.jpg" alt="First Loaf of Sourdough" width="800" height="479" /></a>The first loaf</p>
<p style="text-align: justify;"><a href="http://drogon.net/blog/wp-content/uploads/2011/08/starter.jpg"><img class="aligncenter size-full wp-image-215" title="Sourdough starter in a jar" src="http://drogon.net/blog/wp-content/uploads/2011/08/starter.jpg" alt="Sourdough starter in a jar" width="800" height="479" /></a></p>
<p style="text-align: justify;">The starter &#8211; not bubbling too much as I&#8217;d just added some more flour into it. It&#8217;ll sit in the airing cupboard now until tomorrow, but as I&#8217;m probably not going to make another loaf until next weekend, it might go in the fridge.</p>
]]></content:encoded>
			<wfw:commentRss>http://drogon.net/blog/2011/08/the-sourdough-project-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VoIP for the Devon Air Ambulance Charity Phone-In</title>
		<link>http://drogon.net/blog/2011/02/voip-for-the-devon-air-ambulance-charity-phone-in/</link>
		<comments>http://drogon.net/blog/2011/02/voip-for-the-devon-air-ambulance-charity-phone-in/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 09:11:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Telecoms]]></category>
		<category><![CDATA[03]]></category>
		<category><![CDATA[Charity]]></category>
		<category><![CDATA[voip]]></category>

		<guid isPermaLink="false">http://drogon.net/blog/?p=176</guid>
		<description><![CDATA[Thank you to everyone who called the Devon Air Ambulance/BBC Radio Devon Folk Relief charity phone-in, and a big &#8220;hurrah!&#8221; to the volunteers who answered the phones in that time. In the 24-hours from Friday 2pm until Saturday 2pm (18th &#8230; <a href="http://drogon.net/blog/2011/02/voip-for-the-devon-air-ambulance-charity-phone-in/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Thank you to everyone who called the <a title="Devon Air Ambulance" href="http://www.daat.org/" target="_blank">Devon Air Ambulance</a>/<a title="BBC Radion (&amp;TV) Devon" href="http://news.bbc.co.uk/local/devon/hi/tv_and_radio/" target="_blank">BBC Radio Devon</a> <a title="Folk relief" href="http://news.bbc.co.uk/local/devon/hi/tv_and_radio/newsid_9112000/9112132.stm" target="_blank">Folk Relief</a> charity phone-in, and a big &#8220;hurrah!&#8221; to the volunteers who answered the phones in that time.</p>
<p style="text-align: justify;">In the 24-hours from Friday 2pm until Saturday 2pm (18th Feb). Just short of £16,000 was raised!</p>
<p style="text-align: justify;">The phones and setup were provided by <a title="Bluegrass Computer Services" href="http://www.bluegrasscs.com/" target="_blank">Bluegrass Computer Services</a>, backed up by us here at Drogon Systems.</p>
<p style="text-align: justify;">We handled about 550 calls during the time, although most seemed to come in between 9am and 10am on the Saturday, keeping the volunteers on the phones very busy indeed! It seems that&#8217;s a very popular time for BBC Radio Devon listeners.</p>
<p style="text-align: justify;">So how did we do it?</p>
<p style="text-align: justify;">It was all VoIP because that&#8217;s what we do here at Drogon Systems! We now have the best part of 5 years experience using VoIP, so it was 2nd nature to us. Originally it was going to be hosted by BBC Radio Devon, but was changed rather late in the day, so with the flexibility of VoIP we were able to make it happen without any fuss. Bluegrass installed a 2nd ADSL line at the Devon Air Ambulance Trust HQ in Pinhoe, Exeter and re-provisioned some Linksys VoIP phones left-over from another project and we supplied the back-end infrastructure to plumb their phones via the Internet to the PSTN. And thanks to <a title="Magrathea Telecom" href="http://www.magrathea-telecom.co.uk/" target="_blank">Magrathea</a>, we also managed to get a nice charity phone number for them to use too (03030 400 400) We also provided a backup set of phones, just in-case (which weren&#8217;t needed in the end and just got in the way!)</p>
<p style="text-align: justify;">We had 6 stations, each with 2 phones &#8211; the main one connected to the ADSL line Bluegrass provisioned for the task and a backup phone connected to the offices existing ADSL line just in-case. The credit card terminals were also connected to the LAN, so that made for some interesting wiring on the table and the meeting room in the DAAT office did look a bit &#8220;Heath Robinson&#8221;, but it all worked very well indeed.</p>
<p style="text-align: justify;">Saturday morning took us  rather by  surprise and did see a small number of people queue for a  little over  10 minutes before their call was answered,  but once they got 6 people answering the phones the process speeded up somewhat and it all it  went  rather well!</p>
<p style="text-align: justify;">Behind  the scenes was a hosted call answering and queuing system (hosted in the  Drogon Server bunker in Sheffield) The server there did the hard work of connecting the callers telephones to the volunteers phones via the queuing system &#8211; callers got some nice music and  the voice of Richard Digance from BBC Radio Devon while the team of  volunteers took callers details and donations. 550 calls isn&#8217;t a big amount by any traditional call centre standards (and it&#8217;s a fraction of what we handle anyway), but it was a nice little setup and example of what can be done at relatively short notice.</p>
<div id="attachment_187" class="wp-caption aligncenter" style="width: 310px"><a href="http://drogon.net/blog/wp-content/uploads/2011/02/daat.jpg"><img class="size-medium wp-image-187" title="daat" src="http://drogon.net/blog/wp-content/uploads/2011/02/daat-300x169.jpg" alt="Volunteers taking calls for the DAAT Charity Phone-In" width="300" height="169" /></a><p class="wp-caption-text">Volunteers taking calls for the DAAT Charity Phone-In</p></div>
<p style="text-align: center;">Well done to the team taking the calls, and everyone else involved!</p>
<p><strong>Footnote: What&#8217;s an 03 number?</strong></p>
<p style="text-align: justify;">03 numbers were introduced by Ofcom early in 2007. They are defined as non-geographic number with no revenue share &#8211; unlike 084x, 087x numbers where the operator does get revenue from each call placed to them. They should be billed at the same rate as regular 01 and 02 numbers with calls to them coming from any inclusive minute call plans you may have. 03 numbers where the 3rd digit is a zero (030&#8230;) are designated for charity or NGO use.</p>
<p style="text-align: justify;">Here at Drogon, we can queue calls to any number &#8211; we&#8217;re not restricted to 084x or 087x numbers at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://drogon.net/blog/2011/02/voip-for-the-devon-air-ambulance-charity-phone-in/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Are you ready for IPv6?</title>
		<link>http://drogon.net/blog/2011/01/are-you-ready-for-ipv6/</link>
		<comments>http://drogon.net/blog/2011/01/are-you-ready-for-ipv6/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 11:38:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[Telecoms]]></category>
		<category><![CDATA[IP Address]]></category>
		<category><![CDATA[IPv4]]></category>
		<category><![CDATA[Running Out]]></category>

		<guid isPermaLink="false">http://drogon.net/blog/?p=160</guid>
		<description><![CDATA[Are you ready for IPv6? Read here to learn and find out more. <a href="http://drogon.net/blog/2011/01/are-you-ready-for-ipv6/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: justify;">Or are you asking yourself: &#8220;What is IPv6?&#8221;</h2>
<p style="text-align: justify;">Over the next few weeks, I&#8217;m going to write some articles here telling you about IPv6, why it&#8217;s important and what it will mean. I&#8217;ll start with what&#8217;s happening to IPv4&#8230;</p>
<p style="text-align: justify;">But before that &#8211; what&#8217;s an IP address again? An IP (Internet Protocol) address is a number that uniquely identifies a site or device connected to the Internet. This could be your home broadband connection, a website, or your fridge/freezer&#8230; Since we&#8217;re good at remembering names, not numbers, we normally use a system called DNS &#8211; Domain Name Service that does the name to number translation for us, so it&#8217;s quite rare to see an actual IP address.</p>
<h3 style="text-align: justify;">What is IPv4?</h3>
<p style="text-align: justify;">IPv4 is the current version (i.e. version 4) of the Internet Protocol. It uses a 32-bit number to hold an IP address which gives the potential for just over 4,300,000,000 different IP addresses. If we write them, we usually put down 4 decimal digits separated by dots. E.G. 195.10.225.68. You can see why using names is sometimes easier, even if longer to type &#8211; that IP address is unicorn.drogon.net. IPv6 still uses names, but the underlying numbers are bigger &#8211; much bigger!</p>
<p style="text-align: justify;">Due to the way IPv4 addresses were carved-up in the early days (mid-1980&#8242;s) not all these 4.3 billion addresses are usable, however even if they were, it would only put off the inevitable &#8211; <strong><em>we are running out of IPv4 addresses</em>.</strong></p>
<h3 style="text-align: justify;">What will happen when we run out?</h3>
<p style="text-align: justify;">Well, be reassured that the Internet will not stop, grind to a halt or have anything else disastrous happen. Things will keep on going as they are, but we might see a slow-down of new sites appearing, or a slow-down of new Internet connections happen &#8211; as the existing providers struggle to clean-up unused ones, recycle old, and so on. Eventually there will come a point when we&#8217;re well and truly out of IPv4 addresses.</p>
<h3 style="text-align: justify;">When will we run out of IPv4 addresses?</h3>
<p style="text-align: justify;">IP addresses are allocated in a hierarchy. At the top there is <a title="IANA (Opens in a new window)" href="http://en.wikipedia.org/wiki/Internet_Assigned_Numbers_Authority" target="_blank">IANA</a> &#8211; they hand out big allocations to local registries who then hand out smaller allocations to ISPs and so on. There are five local registries across the globe. E.G. <a title="RIPE (Opens in a new window)" href="http://en.wikipedia.org/wiki/RIPE" target="_blank">RIPE</a> manages Europe.</p>
<p style="text-align: justify;">As of January 20, 2011, only seven of the 255 allocation blocks remain available, or less than 3% of the IPv4 address space&#8230; <a title="APNIC (opens in a new window)" href="http://en.wikipedia.org/wiki/APNIC" target="_blank">APNIC</a> will be allocated 2 of these blocks in the next few days then the remaining 5 blocks will be allocated to each of the local registrys soon after that, and then IANA will have no more to hand out. The local registrys will tighten up on allocations and there will be a squeeze&#8230; How long it will take before we&#8217;re properly out is anyones guess. It could be a year, or more or less.</p>
<h3 style="text-align: justify;">Enter IPv6</h3>
<p style="text-align: justify;">IPv6 will give us the potential for 2^128 unique addresses. That&#8217;s about 3.4×10^38. That&#8217;s a very big number. It&#8217;s not new either &#8211; it was defined in 1995 &#8211; some 15 years ago at the time of writing this post and more or less adopted as a standard round about the year 2000.</p>
<p style="text-align: justify;">So why aren&#8217;t use using it? Who knows. Lazyness, lack of knowledge, fear of the unknown are just some reasons I can think of right now, and I&#8217;m hoping that in time I&#8217;ll be able to help with some of these. Keep reading these articles to find out more!</p>
<p style="text-align: justify;">
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://drogon.net/blog/2011/01/are-you-ready-for-ipv6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geek Yoghurt (or Yogurt?)</title>
		<link>http://drogon.net/blog/2011/01/geek-yoghurt/</link>
		<comments>http://drogon.net/blog/2011/01/geek-yoghurt/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 22:29:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cooking]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://drogon.net/blog/?p=148</guid>
		<description><![CDATA[And now for something completely different&#8230; Not the usual run of the mill posting from me, but today I&#8217;ve made 2 pints of yogurt as we seemed to have a surplus of milk this weekend. The geek part was using &#8230; <a href="http://drogon.net/blog/2011/01/geek-yoghurt/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">And now for something completely different&#8230;</p>
<p style="text-align: justify;">Not the usual run of the mill posting from me, but today I&#8217;ve made 2 pints of yogurt as we seemed to have a surplus of milk this weekend.</p>
<p style="text-align: justify;">The geek part was using my infra-red laser pointer thermometer to keep an eye on the milk temperature. (A tip I picked up from watching the chef in the Riverford Field Kitchen!)</p>
<p style="text-align: justify;">It&#8217;s trivially easy to make too &#8211; you need milk and some live yoghurt to use as a starter. Gently heat the milk to just under boiling point (not more than 85C), chill it to 45C (pan in bath of cold water), stir in a few tablespoons of live yoghurt, pour it into a warmed thermos flask and leave for 7 hours. Chill overnight in the fridge and voila. A pint of something that costs over a pound in shops for 50p and a few minutes of work in the kitchen. It will last 1-2 weeks in the fridge too &#8211; an ideal way to preserve spare milk!</p>
<p style="text-align: justify;">Of-course you do need some live yoghurt to start with &#8211; which does beg the question &#8211; where did the first live yoghurt come from? Well for us, we almost always have some, so it&#8217;s easy &#8211; the fridge! Our milk comes in bottles and is  unpasteurised from Scorriton Farm and it seems to make really nice yoghurt! (And Kefir too &#8211; and I always have a surplus of Kefir grains if anyone local wants them!)</p>
]]></content:encoded>
			<wfw:commentRss>http://drogon.net/blog/2011/01/geek-yoghurt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Cloud over Drogon</title>
		<link>http://drogon.net/blog/2010/03/a-cloud-over-drogon/</link>
		<comments>http://drogon.net/blog/2010/03/a-cloud-over-drogon/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 14:36:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Telecoms]]></category>

		<guid isPermaLink="false">http://watertower.drogon.net/notes/?p=125</guid>
		<description><![CDATA[Here at Drogon Systems, our main thing is to sell, re-sell and support our VoIP and Telephony operations, however to do this we need to host servers in a data centre, and this is actually something we&#8217;ve been doing for &#8230; <a href="http://drogon.net/blog/2010/03/a-cloud-over-drogon/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Here at Drogon Systems, our main thing is to sell, re-sell and support our VoIP and Telephony operations, however to do this we need to host servers in a data centre, and this is actually something we&#8217;ve been doing for a considerable number of years now &#8211; even before our business turned to VoIP. The existing servers are used to host web and email solutions for ourselves and others &#8211; e.g. web design companies and so on.</p>
<p style="text-align: justify;">Managing these servers is relatively straightforward, but recent expansions have required a small re-think of how we work&#8230;</p>
<p style="text-align: justify;">Until relatively recently, we&#8217;ve ignored the cloud or virtual servers &#8211; much preferring to use a real, physical server &#8211; you know where you are with a real server! However, our latest product is a hosted version of our popular in-office based PBX, so trying to host dozens of these poses a challenge &#8211; not only in hosting costs, but additional infrastructure required, so enter server virtualisation which arguably is the core of &#8220;The Cloud&#8221;.</p>
<p style="text-align: justify;">&#8220;The Cloud&#8221; is a term that seems to be used to cover a multitude of applications &#8211; from a simple remote hosted service to 1000&#8242;s of servers all working together on big scientific applications and even to distributed or remote data storage. We like to think that our cloud is just a means to enable us to better manage and utilise available resources and give us additional and more efficient recovery mechanisms from hardware failures and so on.</p>
<p style="text-align: justify;">Taking a single server and carving it up into many virtual hosts is something that&#8217;s been going on for many years &#8211; right since the days of putting many web sites on the same IP address. Server virtualisation takes this one step further and provides servers-inside-servers. Advantages? Many &#8211; you can take one of these servers and migrate it to different hardware &#8211; sometimes completely transparently!</p>
<p style="text-align: justify;">This give the hosting company the ability to better manage resources &#8211; we can move a virtual server onto new hardware should it be required (e.g. faster CPU, more memory), they can use it to enhance disaster recovery should a servers hardware before unreliable or fail, and probably as important, can ultimately require less physical servers to host everything on.</p>
<p style="text-align: justify;">Less servers means less infrastructure costs &#8211; which leads to less energy used which can arguably be considered &#8220;green&#8221;. However from our point of view, it allows for a simple model of server hosting and facilitating. The base servers can be identical (or as near identical as required), the virtual servers then do the customisations as required.</p>
<p style="text-align: justify;">There is a down-side&#8230; The virtualisation mechanisms do require additional learning for the administrators and a lot of testing required! However in our opinion, it&#8217;s well worth it.</p>
<p style="text-align: justify;">The Drogon Cloud is actually two clouds. A cloud of VoIP servers and a separate cloud of <a title="Wikipedia LAMP" href="http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29" target="_blank">LAMP</a> servers. The VoIP servers have a somewhat different requirement to LAMP servers, so are maintaned separately from them.</p>
<p style="text-align: justify;">The maintenance and running of them is very similar though, and the strategy we&#8217;re adopting is to always have at least one spare server of each type, so if a server fails then we have the option of migrating the individual virtual servers on that server to other servers, or we can migrate everything to the spare server.</p>
<p style="text-align: justify;">So, it&#8217;s all gone cloudy, but for once, this is a good thing!</p>
]]></content:encoded>
			<wfw:commentRss>http://drogon.net/blog/2010/03/a-cloud-over-drogon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

