<?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>TheGibson.net</title>
	<atom:link href="http://thegibson.net/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://thegibson.net</link>
	<description>Tech, Food and fun</description>
	<lastBuildDate>Tue, 05 Jul 2011 16:19:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
		<item>
		<title>Arduino</title>
		<link>http://thegibson.net/index.php/2010/04/09/arduino/</link>
		<comments>http://thegibson.net/index.php/2010/04/09/arduino/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 21:27:09 +0000</pubDate>
		<dc:creator>PPC</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://thegibson.net/?p=88</guid>
		<description><![CDATA[After some coercion from @jaaaaam I finally bought an Arduino from EarthShine Design. The kit contains lots of things to get started with the Arduino, as well as being accompanied by a basic starter manual. For the last few weeks i&#8217;ve been teaching myself to program using Processing using the Learning Processing book on O&#8217;Reilly&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>After some coercion from <a href="http://twitter.com/jaaaaam">@jaaaaam</a> I finally bought an <a href="http://arduino.cc">Arduino</a> from <a href="http://www.earthshinedesign.co.uk/">EarthShine Design</a>.<br />
The <a href="http://www.earthshinedesign.co.uk/index.php?route=product/product&amp;product_id=81">kit</a> contains lots of things to get started with the Arduino, as well as being accompanied by a <a href="http://www.earthshinedesign.co.uk/ASKManual/Site/ASKManual.html">basic starter manual</a>.<br />
For the last few weeks i&#8217;ve been teaching myself to program using <a href="http://processing.org">Processing</a> using the <a href="http://www.learningprocessing.com/">Learning Processing</a> book on <a href="http://safari.oreilly.com/">O&#8217;Reilly&#8217;s Safari</a> service.<br />
Having no prior knowledge of programming, it took some time to get my head around how things work.</p>
<p>One of the examples in the starter manual was a traffic lights system.<br />
The example given would just cycle a loop, and when you push the button, the loop would reset and it would run again.<br />
I decided i&#8217;d like to try and challenge myself and change this.</p>
<p>I wanted the lights to</p>
<ul>
<li>Loop the car lights in sequence</li>
<li>Check for request from the button for a pedestrian to cross</li>
<li>If there is a request, start the crossing sequence</li>
<li>Once crossing is completed, return to the car lights sequence</li>
</ul>
<p>Here is the code I came up with</p>
<pre class="brush: arduino; title: ; notranslate">
// Car light pins
int carRed = 12;
int carYellow = 11;
int carGreen = 10;

//Pedestrian light pins
int pedRed = 9;
int pedGreen = 8;

//Crossing button
int button = 2;

//Delay times
int crossTime = 5000;
int delayTime = 3000;
unsigned long previousMillis = 0;

//Crossing request
int request = 0;

// Array for all lights
int allLights[] = {
 12 , 11, 10, 9 ,8};

// Array for carGreen pedGreen
int carsGo[] = {
 10, 9};

// Array for carYellow pedGreen
int carsWait[] = {
 11, 9};

// Array for carRed pedRed
int carsStop[] = {
 12, 9};

// Array for carRed pedGreen
int pedsGo[] = {
 12, 8};

void setup() {
 //Set pins to output
 pinMode(carRed, OUTPUT);
 pinMode(carYellow, OUTPUT);
 pinMode(carGreen, OUTPUT);
 pinMode(pedRed, OUTPUT);
 pinMode(pedGreen, OUTPUT);
 //Set button pin to input
 pinMode(button, INPUT);
 //Set Car lights to green and Pedestrian lights to red
 digitalWrite(carGreen, HIGH);
 digitalWrite(pedRed, HIGH);
}

void loop(){
 //Start normal traffic light sequence
 normalLights();
 //Check for crossing request
 checkCrossingRequest();
 //If crossing request is present, run pedestrian crossing sequence
 lightsCheck();
}

//Function to turn all lights off
void allLightsOff(){
 for(int i = 0 ; i &lt; 5; i++){
 digitalWrite(allLights[i], LOW);
 }
}

//Function for pedestrian lights
void pedLights(){
 //Delay for .5 sec
 delay(500);
 // Turn off all lights, turn on pedestrian red, turn on car yellow
 allLightsOff();
 digitalWrite(pedRed, HIGH);
 digitalWrite(carYellow , HIGH);
 //Delay for 1 sec
 delay(1000);
 // Turn off all lights, turn on pedestrian red, turn on car red
 allLightsOff();
 digitalWrite(pedRed, HIGH);
 digitalWrite(carRed, HIGH);
 //Delay for 1 sec
 delay(1000);
 // Turn off all lights, turn on pedestrian green, turn on car red
 digitalWrite(pedRed, LOW);
 digitalWrite(pedGreen, HIGH);
 //Delay for crossing time
 delay(crossTime);
 //Flash lights 10 times, each time taking .5 sec
 for (int x=0; x&lt;10; x++) {
 digitalWrite(pedGreen, HIGH);
 delay(250);
 digitalWrite(pedGreen, LOW);
 delay(250);
 }
 //Turn off all lights, turn on pedestrian red, turn on car red
 allLightsOff();
 digitalWrite(carRed, HIGH);
 digitalWrite(pedRed, HIGH);
 //Wait 1 second
 delay(1000);
}

//Normal light sequence
void normalLights(){
 //Set currentMillis to the current time on the board
 unsigned long currentMillis = millis();
 //If current time minus the time the loop was last run is greater than 4 times the delay time, reset last run time
 if(currentMillis - previousMillis &gt; delayTime*4){
 previousMillis = currentMillis;
 }
 // if loop lenght time is greater than 3 times the delay time, set car lights yellow off and red on
 else if(currentMillis - previousMillis &gt; delayTime*3){
 digitalWrite(carYellow, LOW);
 digitalWrite(carRed, HIGH);
 }
 // if loop lenght time is greater than 2 times the delay time, set car lights green off and yellow on
 else if(currentMillis - previousMillis &gt; delayTime*2){
 digitalWrite(carGreen, LOW);
 digitalWrite(carYellow, HIGH);
 }
 // if loop lenght time is greater than the delay time, set car lights red off and green on
 else if(currentMillis - previousMillis &lt; delayTime) {
 digitalWrite(carRed, LOW);
 digitalWrite(carGreen, HIGH);
 }
}

//Check for a crossing request and return a value of 1 or 0
int checkCrossingRequest(){
 //Set val to button
 int val = digitalRead(button);
 if (val == HIGH) {
 return 1;
 }
 else{
 return 0;
 }

}
//Check the value of the crossing request, if 0 do nothing, if 1 do pedestrian sequence
void lightsCheck(){
 request = checkCrossingRequest();
 if (request &gt; 0) {
 pedLights();
 }
}
</pre>
<p>Here is the hardware side of things</p>
<p style="text-align: center;"><a href="http://thegibson.net/wp-content/uploads/2010/04/Traffic-Lights1.png"><img class="size-full wp-image-99 aligncenter" title="Traffic Lights" src="http://thegibson.net/wp-content/uploads/2010/04/Traffic-Lights1.png" alt="" width="595" height="391" /></a></p>
<p>I&#8217;m looking forward to hooking up the 8&#215;8 led display and 16&#215;2 LCD I have.</p>
<p>Further projects will involve <a href="http://www.arduino.cc/playground/Main/CoffeeTronics">CoffeeTronics</a> i hope <img src='http://thegibson.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://thegibson.net/index.php/2010/04/09/arduino/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Chicken Tikka Masorta</title>
		<link>http://thegibson.net/index.php/2010/02/03/chicken-tikka-masorta/</link>
		<comments>http://thegibson.net/index.php/2010/02/03/chicken-tikka-masorta/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 20:20:07 +0000</pubDate>
		<dc:creator>PPC</dc:creator>
				<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://thegibson.net/?p=74</guid>
		<description><![CDATA[This is my twist on chicken Tikka Masala. Spices 1TBSP Mild Curry Powder 2TBSP Paprika 1TBSP Garam Masala 1TSP Cayenne Pepper Toasted and ground 1TSP Coriander Seeds 1TSP Whole Cumin Seeds Meat 4 Breasts of Chicken chopped Others 1 Tin of Plum tomatoes 1 Tin of Tomato puree 2 Garlic Cloves 1 Red Onion 200G Low Fat [...]]]></description>
			<content:encoded><![CDATA[<p>This is my twist on chicken Tikka Masala.</p>
<p><strong>Spices</strong></p>
<ul>
<li>1TBSP Mild Curry Powder</li>
<li>2TBSP Paprika</li>
<li>1TBSP Garam Masala</li>
<li>1TSP Cayenne Pepper</li>
</ul>
<p><strong>Toasted and ground</strong></p>
<ul>
<li><span style="font-weight: normal;">1TSP Coriander Seeds</span></li>
<li><span style="font-weight: normal;">1TSP Whole Cumin Seeds</span></li>
</ul>
<p><strong>Meat</strong></p>
<ul>
<li><span style="font-weight: normal;">4 Breasts of Chicken chopped</span></li>
</ul>
<p><strong>Others</strong></p>
<ul>
<li>1 Tin of Plum tomatoes</li>
<li>1 Tin of Tomato puree</li>
<li>2 Garlic Cloves</li>
<li>1 Red Onion</li>
<li>200G Low Fat Greek Yoghurt</li>
<li>Fresh Coriander</li>
<li>250ml of Chicken stock</li>
</ul>
<p><strong>Marinade</strong></p>
<p>Toast the coriander and cumin and grind in a mortar and pestle or in a food processor</p>
<p>Mix with remaining spices.</p>
<p>Chop garlic and fresh coriander and add to the mix.</p>
<p>Mix in the yoghurt and 1TSP Tomato paste until everything is evenly coloured</p>
<p>Add in all the chopped chicken and leave sit for 1 hour.</p>
<p><strong>Cooking</strong></p>
<p><em>I normally use a castiron casserole pot for cooking this, you could use a large heavy bottomed pot aswell.</em></p>
<p>Chop and fry the 1/2 red onion in some olive oil spray (or normal olive oil) for 3 minutes on a low heat to soften it<strong>.</strong></p>
<p>Add the marinade and chicken to the pot and stir.</p>
<p>Add the tin of chopped tomatoes and the rest of the tomato paste and stir it in.</p>
<p>Add the chicken stock and stir it in.</p>
<p>Bring to the boil and reduce the heat to a simmer.</p>
<p>Stir every now and again and cook covered for 20 minutes.</p>
<p>For the last 10 minutes take off the lid, this will allow the sauce to thicken.</p>
<p>This works well with fluffy basmati rice and a naan bread.</p>
<p><strong>Rice</strong></p>
<p>Bring some water to a boil in a medium sized pot.</p>
<p>Take about 25-40g of rice per person and put in a sieve and run under cold water until it runs clear.</p>
<p>Put rice into the water and cook for 5 minutes.</p>
<p>The rice should almost be cooked, drain it and fill about 2cm of water into the pot again.</p>
<p>Bring the water to the boil, then place the sieve with the drained rice ontop of the pot, cover with the pot lid.</p>
<p>Allow the rice to cook until it is soft, use a fork to make it fluffy.</p>
<p><strong>The Result</strong></p>
<p><a href="http://thegibson.net/wp-content/uploads/2010/02/MG_1432.jpg"><img class="alignleft size-large wp-image-86" title="_MG_1432" src="http://thegibson.net/wp-content/uploads/2010/02/MG_1432-1024x682.jpg" alt="" width="738" height="491" /></a></p>
<p><strong>UPDATE!</strong></p>
<p>I&#8217;ve changed the cooking part slightly and it gives a much creamier texture.</p>
<p><strong>Cooking</strong></p>
<p><em>I normally use a castiron casserole pot for cooking this, you could use a large heavy bottomed pot aswell.</em></p>
<p>Blend the  red onion and some garlic and sweat it in some neutral oil.</p>
<p>Blend the tomatoes, paste and stock and add to the pan.</p>
<p>Add the marinade and chicken to the pan and mix.</p>
<p>Bring to the boil and reduce the heat to a simmer.</p>
<p>Stir every now and again and cook covered for 20-40 minutes.</p>
<p>For the last 10 minutes take off the lid, this will allow the sauce to thicken.</p>
<p>This works well with fluffy basmati rice and a naan bread.</p>
]]></content:encoded>
			<wfw:commentRss>http://thegibson.net/index.php/2010/02/03/chicken-tikka-masorta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modding the Mad Catz Xbox 360 Street Fighter IV Arcade FightStick</title>
		<link>http://thegibson.net/index.php/2009/06/15/modding-the-mad-catz-xbox-360-street-fighter-iv-arcade-fightstick/</link>
		<comments>http://thegibson.net/index.php/2009/06/15/modding-the-mad-catz-xbox-360-street-fighter-iv-arcade-fightstick/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 22:17:37 +0000</pubDate>
		<dc:creator>PPC</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://thegibson.net/?p=58</guid>
		<description><![CDATA[After a few months of searching i was finally able to track down a Mad Catz Xbox 360 Street Fighter IV Arcade FightStick from Amazon.co.uk for €90 Here is a stock version of the stick: I decided on using the following parts for my stick. 1x Sanwa JLF-TP-8YT Joystick with orange 2x Sanwa OBSF-30, green [...]]]></description>
			<content:encoded><![CDATA[<p>After a few months of searching i was finally able to track down a <a href="http://www.amazon.co.uk/Catz-Street-Fighter-Arcade-FightStick/dp/B001M22VCU/ref=sr_1_3?ie=UTF8&#038;s=videogames&#038;qid=1245100053&#038;sr=8-3">Mad Catz Xbox 360 Street Fighter IV Arcade FightStick</a> from Amazon.co.uk for €90</p>
<p>Here is a stock version of the stick:</p>
<p><img src="http://thegibson.net/wp-content/uploads/2009/06/madcatz-streetfighter-499x438-300x263.jpg" alt="madcatz-streetfighter-499x438" title="madcatz-streetfighter-499x438" width="300" height="263" class="alignnone size-medium wp-image-60" /></p>
<p>I decided on using the following parts for my stick.</p>
<ul>
<li>1x <a href="http://www.arcadeshop.de/Joysticks-JLF-TP-8YT-Sanwa_627.html">Sanwa JLF-TP-8YT Joystick with orange</a></p>
</li>
<li>2x <a href="http://www.arcadeshop.de/Sanwa-Buttons-Sanwa-OBSF-30-green_577.html">Sanwa OBSF-30, green</a></li>
<li>6x <a href="http://www.arcadeshop.de/Sanwa-Buttons-Sanwa-OBSF-30-orange_583.html">Sanwa OBSF-30, orange</a></li>
<li>1x <a href="http://www.arcadeshop.de/Seimitsu-Joysticks-Seimitsu-Ball-LB-39-clear-orange_614.html">Seimitsu Ball LB-39, clear-orange</a></li>
</ul>
<p>The modding itself was very easy after reading an article on the <a href="http://forums.shoryuken.com/showthread.php?t=175882">SRK Forums</a></p>
<p>End result was a nice and fresh stick<br />
<img src="http://thegibson.net/wp-content/uploads/2009/06/IMG_0025.JPG" alt="IMG_0025" title="IMG_0025" width="800" height="533" class="alignleft size-full wp-image-65" /></p>
<p>Close up of the ball<br />
<img src="http://thegibson.net/wp-content/uploads/2009/06/IMG_0026.JPG" alt="IMG_0026" title="IMG_0026" width="800" height="533" class="alignleft size-full wp-image-66" /><br />
<br/><br />
<br/><br />
<br/><br />
Someone said as an inexperienced stick player that i probably wouldn&#8217;t notice the difference in parts. Infact its the opposite, the new parts make a huge difference with accuracy.<br />
Overall i&#8217;m very happy with the stick and hope to mod an MC Cthulhu and imp into it to allow me to use it both on the xbox and ps3. (<a href="http://forums.shoryuken.com/showthread.php?t=184787">Guide</a>)</p>
<p>Next project will be building a stick from scratch using a <a href="http://gamingnow.net/DIY.html">Polycarbonate Control Panel<br />
</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://thegibson.net/index.php/2009/06/15/modding-the-mad-catz-xbox-360-street-fighter-iv-arcade-fightstick/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Safety Razor</title>
		<link>http://thegibson.net/index.php/2009/05/19/safety-razor/</link>
		<comments>http://thegibson.net/index.php/2009/05/19/safety-razor/#comments</comments>
		<pubDate>Tue, 19 May 2009 22:35:30 +0000</pubDate>
		<dc:creator>PPC</dc:creator>
				<category><![CDATA[Shaving]]></category>

		<guid isPermaLink="false">http://thegibson.net/?p=39</guid>
		<description><![CDATA[For the last few weeks i&#8217;ve been using a Boots Double Edge Razor. Shaving with a Gillette Fusion for the last few years has worked out ok, but I wasn&#8217;t satisfied with the results. Changing to a safety razor was an interesting and bloody experience for the first shave or two, but after reading some [...]]]></description>
			<content:encoded><![CDATA[<p>For the last few weeks i&#8217;ve been using a <a href="http://www.boots.com/webapp/wcs/stores/servlet/ProductDisplay?storeId=10052&amp;productId=12442&amp;callingViewName=&amp;langId=-1&amp;catalogId=11051">Boots Double Edge Razor</a>. Shaving with a Gillette Fusion for the last few years has worked out ok, but I wasn&#8217;t satisfied with the results.</p>
<p>Changing to a safety razor was an interesting and bloody experience for the first shave or two, but after reading some guides online, things became a bit more clear.</p>
<p>So i decided to take the plunge and buy some proper equipment:</p>
<p><img class="size-medium wp-image-45 alignleft" title="p-1600-1200-2d6d41e4-231d-4186-80c8-90a867cdeaac.jpeg" src="http://thegibson.net/wp-content/uploads/2009/05/p-1600-1200-2d6d41e4-231d-4186-80c8-90a867cdeaac-225x300.jpg" alt="p-1600-1200-2d6d41e4-231d-4186-80c8-90a867cdeaac.jpeg" width="225" height="300" /></p>
<ul>
<li><a href="http://www.shaving-shack.com/shop/product.php?productid=2670"> Merkur 570 Chrome &#8220;Progress&#8221; Safety Razor</a></li>
<li><a href="http://www.shaving-shack.com/shop/product.php?productid=2606"> Pure Badger Shaving Brush</a></li>
<li><a href="http://www.shaving-shack.com/shop/product.php?productid=2736"> Taylor Of Old Bond St Sandalwood Soap and Bowl</a></li>
<li><a href="http://www.shaving-shack.com/shop/product.php?productid=2647"> Alum Block</a></li>
<li><a href="http://www.shaving-shack.com/shop/product.php?productid=2807"> 10 Gillette 7 O&#8217; Clock Double Edged Razor Blades</a></li>
<li><a href="http://www.shaving-shack.com/shop/product.php?productid=2718"> 10 Derby Extra Double Edged Razor blades</a></li>
<li><a href="http://www.shaving-shack.com/shop/product.php?productid=2803"> 10 Feather Hi-Stainless Double Edged Razor Blades</a></li>
<li><a href="http://www.shaving-shack.com/shop/product.php?productid=2705"> 30 Israeli Made Double Edged Razor Blades</a></li>
</ul>
<p style="text-align: left;">First shave was pretty smooth, with a few nicks, but the alum block sorted that out. There&#8217;s a huge difference between the Boots razor and the Merkur one. Hopefully after a few more shaves there will be less blood.</p>
]]></content:encoded>
			<wfw:commentRss>http://thegibson.net/index.php/2009/05/19/safety-razor/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Chicken with crispy prosciutto and Parmesan served with prosciutto wrapped asparagus and pasta</title>
		<link>http://thegibson.net/index.php/2009/05/19/chicken-with-crispy-prosciutto-and-parmesan-served-with-prosciutto-wrapped-asparagus-and-pasta/</link>
		<comments>http://thegibson.net/index.php/2009/05/19/chicken-with-crispy-prosciutto-and-parmesan-served-with-prosciutto-wrapped-asparagus-and-pasta/#comments</comments>
		<pubDate>Tue, 19 May 2009 20:54:56 +0000</pubDate>
		<dc:creator>PPC</dc:creator>
				<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://thegibson.net/?p=36</guid>
		<description><![CDATA[Here’s a recipe I saw on Jamie’s Ministry of Food What you need 30g of grated Parmesan cheese 2 sprigs of fresh thyme leaves removed from the stalks 10 slices of Prosciutto ham 2 Chicken breasts 1 Lemon Freshly ground pepper Olive oil Cling film 2 Cherry tomatoes 10 Asparagus tips Chicken Score the bottom [...]]]></description>
			<content:encoded><![CDATA[<p>Here’s a recipe I saw on <a href="#mce_temp_url#">Jamie’s Ministry of Food </a></p>
<p><strong>What you need<br />
</strong></p>
<p><strong></strong></p>
<p><strong></p>
<ul>
<li><span style="font-weight: normal; ">30g of grated Parmesan cheese</span></li>
<li><span style="font-weight: normal; ">2 sprigs of fresh thyme leaves removed from the stalks</span></li>
<li><span style="font-weight: normal; ">10 slices of Prosciutto ham</span></li>
<li><span style="font-weight: normal; ">2 Chicken breasts</span></li>
<li><span style="font-weight: normal; ">1 Lemon</span></li>
<li><span style="font-weight: normal; ">Freshly ground pepper</span></li>
<li><span style="font-weight: normal; ">Olive oil</span></li>
<li><span style="font-weight: normal; ">Cling film</span></li>
<li><span style="font-weight: normal; ">2 Cherry tomatoes</span></li>
<li><span style="font-weight: normal; ">10 Asparagus tips</span></li>
</ul>
<p></strong></p>
<p><strong> Chicken</strong></p>
<p><strong></p>
<ol>
<li><span style="font-weight: normal; ">Score the bottom of your chicken with diagonal lines.</span></li>
<li><span style="font-weight: normal; ">Place both pieces of chicken side by side on an even surface.</span></li>
<li><span style="font-weight: normal; ">Season lightly with some freshly ground pepper.</span></li>
<li><span style="font-weight: normal; ">Zest some lemon onto the chicken and add 15g of parmesan to each fillet.</span></li>
<li><span style="font-weight: normal; ">Lay 3 prosciutto slices onto each fillet, this will also work as the salt seasoning, so no need for extra salt.</span></li>
<li><span style="font-weight: normal; ">Place a layer of cling film of each fillet and squash them by hitting them with a frying pan. Try get them as thin as you can, about 1cm or so for each fillet.</span></li>
<li><span style="font-weight: normal; ">Heat a pan to a medium heat and drizzle some olive oil on.</span></li>
<li><span style="font-weight: normal; ">Place the fillets prosciutto side down and fry for 3 minutes, flip and fry for another 3 minutes, flip one more time and fry for 30 seconds to crisp the prosciutto.</span></li>
<li><span style="font-weight: normal; ">Take off the pan and serve.</span></li>
</ol>
<p></strong></p>
<p><strong> Asparagus</strong></p>
<p><strong></p>
<ol>
<li><span style="font-weight: normal; ">Lay 2 pieces of prosciutto down on a flat surface.</span></li>
<li><span style="font-weight: normal; ">Add 4 asparagus tips to each piece of prosciutto.</span></li>
<li><span style="font-weight: normal; ">Squeeze a cherry tomato so that all the pips come out and open it up and lay it down on the 4 tips.</span></li>
<li><span style="font-weight: normal; ">Place 2 more asparagus on each of the prepared pieces.</span></li>
<li><span style="font-weight: normal; ">Roll the prosciutto over the asparagus and keep rolling until its all together.</span></li>
<li><span style="font-weight: normal; ">Roll each package in one more piece of prosciutto to keep it together.</span></li>
<li><span style="font-weight: normal; ">Place each package on a roasting dish.</span></li>
<li><span style="font-weight: normal; ">Cut the lemon that was zested earlier in half and place in the middle of the 2 packages.</span></li>
<li><span style="font-weight: normal; ">Drizzle in olive oil, making sure you cover the tips.</span></li>
<li><span style="font-weight: normal; ">Cook at 200*c for 5 minutes.</span></li>
<li><span style="font-weight: normal; ">When cooked, squeeze the lemons over each package and serve</span></li>
</ol>
<p></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></p>
<ol>
<li><span style="font-weight: normal; ">I served this with some chunky pasta tossed in a bit of butter.</span></li>
</ol>
<p></strong></p>
<p><img class="alignnone size-full wp-image-35" title="dinner" src="http://thegibson.net/wp-content/uploads/2009/05/dinner.jpg" alt="dinner" width="640" height="480" /></p>
]]></content:encoded>
			<wfw:commentRss>http://thegibson.net/index.php/2009/05/19/chicken-with-crispy-prosciutto-and-parmesan-served-with-prosciutto-wrapped-asparagus-and-pasta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hot and spicy beef stirfry</title>
		<link>http://thegibson.net/index.php/2008/11/23/hot-and-spicy-beef-stirfry/</link>
		<comments>http://thegibson.net/index.php/2008/11/23/hot-and-spicy-beef-stirfry/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 23:51:22 +0000</pubDate>
		<dc:creator>PPC</dc:creator>
				<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://thegibson.net/?p=22</guid>
		<description><![CDATA[This is one of my girlfriend Catriona&#8217;s favourite dishes. What you Need Thinly sliced beef Vegetables &#8211; Carrots, Broccoli, Mangetout, baby corn &#8211; M&#38;S Chefs prepared vegetables Vermicelli Noodles &#8211; 2 portions 1 tsp Chili Powder 1 tsp Cayenne Pepper 2 Cloves of garlic &#8211; minced 1 tbsp Sesame seeds 2 capfuls of Xiaoxing rice [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of my girlfriend Catriona&#8217;s favourite dishes.</p>
<p><strong>What you Need</strong></p>
<ul>
<li>Thinly sliced beef</li>
<li>Vegetables &#8211; Carrots, Broccoli, Mangetout, baby corn &#8211; M&amp;S Chefs prepared vegetables</li>
<li>Vermicelli Noodles &#8211; 2 portions</li>
<li>1 tsp Chili Powder</li>
<li>1 tsp Cayenne Pepper</li>
<li>2 Cloves of garlic &#8211; minced</li>
<li>1 tbsp Sesame seeds</li>
<li>2 capfuls of Xiaoxing rice wine</li>
<li>1 dash of Rice Vinegar</li>
<li>Sesame seed oil</li>
<li>Ground nut oil</li>
<li>Dark and light soy sauce</li>
</ul>
<p><strong>Preperation</strong></p>
<ul>
<li>Chop vegetables into bit size pieces.</li>
<li>Slice beef into bit size pieces.</li>
<li>Add some sesame seed and ground nut oil to your wok and heat on high.</li>
<li>Mince garlic.</li>
<li>Prepare 1tsp of chili powder and 1tsp of cayenne pepper and 1tbsp of sesame seeds.</li>
<li>Prepare noodles as directed for stir frying &#8211; For me i had to place the noodles in boiling water for 3 minutes.</li>
</ul>
<p><strong>Cooking</strong></p>
<ol>
<li>Add the chili powder and cayenne pepper to the oil and mix.</li>
<li>Add the garlic and let it reach a nice golden colour.</li>
<li>Add your beef, make sure all the pieces have separated.</li>
<li>Add 2 capfuls of rice wine plus 1 dash of rice vinegar and mix into the beef and oil.</li>
<li>Once meat is browned, add all of the vegetables and mix into the sauce.</li>
<li>When the vegetables are starting to get soft, add the sesame seeds and mix.</li>
<li>Now add the noodles and mix thoroughly.</li>
<li>Add some light soy for taste and dark soy for colour.</li>
<li>Continue to fry for another minute until all the noodles have reached the same colour then serve.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://thegibson.net/index.php/2008/11/23/hot-and-spicy-beef-stirfry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Glazed filet steaks with mash and asparagus</title>
		<link>http://thegibson.net/index.php/2008/11/23/glazed-filet-steaks-with-mash-and-asparagus/</link>
		<comments>http://thegibson.net/index.php/2008/11/23/glazed-filet-steaks-with-mash-and-asparagus/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 23:50:00 +0000</pubDate>
		<dc:creator>PPC</dc:creator>
				<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://thegibson.net/?p=25</guid>
		<description><![CDATA[What you need 2 8oz filets 2 cloves garlic, whole, lightly crushed 1 Sprig rosemary 1 Sprig thyme 1 bay leaf Approx 250ml chicken stock &#8211; I used a stock cube to make this Olive oil Salt &#38; freshly ground black pepper 2 lemons, zested Handful flat leaf parsley, chopped finely 500g of Maris Piper [...]]]></description>
			<content:encoded><![CDATA[<div class="insert size4"><strong>What you need</strong></p>
<ul class="bullet">
<li>2 8oz filets</li>
<li>2 cloves garlic, whole, lightly crushed</li>
<li>1 Sprig rosemary</li>
<li>1 Sprig thyme</li>
<li>1 bay leaf</li>
<li>Approx 250ml chicken stock &#8211; I used a stock cube to make this</li>
<li>Olive oil</li>
<li>Salt &amp; freshly ground black pepper</li>
<li>2 lemons, zested</li>
<li>Handful flat leaf parsley, chopped finely</li>
<li>500g of Maris Piper potatoes</li>
<li>8 Asparagus tip</li>
</ul>
<p><strong>Mashed Potatoes</strong></p>
<ol>
<li>Wash and peel potatoes.</li>
<li>Chop potatoes in small cubes to cook faster.</li>
<li>Place potatoes into the pot and run under cool water until all the starch has disappeared form the water.</li>
<li>Add some sea salt and bring to the boil.</li>
<li>Prick the potatoes with a fork, when they slide off easily you’ll know they’re done.</li>
<li>Drain potatoes in a colander and leave them sitting in it with the lid left on top and allow to dry for a bit.</li>
<li>Use a potato ricer to mince your potatoes into the pot</li>
<li>Add some butter and milk to taste and mix thoroughly</li>
</ol>
</div>
<div class="insert size4"><strong>Glazed Steak</strong></div>
<div class="insert size4">
<ol>
<li>Heat a small bit of olive oil in a pan to a high heat</li>
<li>Season your steaks with salt and pepper</li>
<li>Place steaks onto the pan away from you and allow to sear</li>
<li>Turn steaks with some thongs and do this for 2.5 minutes, the goal is to get a good colour on the steaks</li>
<li>Once steaks are full seared, add the garlic, rosemary, bay leaf and thyme to the pan and allow to heat for a few seconds</li>
<li>Add 1/4 of the stock to the pan, making sure it touches everything</li>
<li>Roll the steaks in the stock to try and get a coating</li>
<li>Once the stock is gone, keep adding a small bit at a time, just enough to coat the bottom of the pan</li>
<li>Mix the ingredients in the stock again and keep coating the steaks</li>
<li>Repeat this for 8 minutes.</li>
</ol>
</div>
<div class="insert size4"><strong>Asparagus</strong></div>
<div class="insert size4">
<ol>
<li>Prepare asparagus by chopping off the woody stalks</li>
<li>Steam for 4-8 minutes until they have turned bright green</li>
<li>Quickly sear in the pan after the steaks have been cooked to add more flavour</li>
</ol>
</div>
<div class="insert size4"><strong>Gremolata </strong></div>
<div class="insert size4">
<ol>
<li>Finely zest both lemons</li>
<li>Finely chop some parsley</li>
<li>Mix both and chill in the fridge until serving</li>
</ol>
<p><strong>Serving</strong></div>
<div class="insert size4">
<ol>
<li>Lay 2 asparagus in the center of the plate. Roughly 9/10ths the length apart</li>
<li>Place another 2 on top of those in the other direction to create a square</li>
<li>Butterfly cut the steaks and place on top of the asparagus</li>
<li>Sprinkle the gremolata on top of the steaks</li>
<li>Add a dollop of mash on either side of the steak</li>
<li>Drizzle a small bit of the pan juices all along the edge of the steak</li>
<li>Serve</li>
</ol>
</div>
<div class="insert size4"><a href="http://thegibson.net/wp-content/uploads/2008/11/p-640-480-5801fe0b-519e-4a16-b342-0a3fc8fb2f53.jpeg"><img class="alignnone size-full wp-image-31" title="p-640-480-5801fe0b-519e-4a16-b342-0a3fc8fb2f53.jpeg" src="http://thegibson.net/wp-content/uploads/2008/11/p-640-480-5801fe0b-519e-4a16-b342-0a3fc8fb2f53.jpeg" alt="" width="480" height="640" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://thegibson.net/index.php/2008/11/23/glazed-filet-steaks-with-mash-and-asparagus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Roast Chicken</title>
		<link>http://thegibson.net/index.php/2008/09/29/roast-chicken/</link>
		<comments>http://thegibson.net/index.php/2008/09/29/roast-chicken/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 09:52:42 +0000</pubDate>
		<dc:creator>PPC</dc:creator>
				<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://thegibson.net/?p=13</guid>
		<description><![CDATA[Sunday is roast day, doesn&#8217;t matter what animal it is, but it needs to be roasted. Yesterday i decided to do chicken with roast potatoes, mashed potatoes and roast carrots &#38; parsnips. What you Need Whole Chicken &#8211; I used M&#38;S&#8217;s chicken for this 2x 500g of Maris Pipers Potatoes &#8211; These potatoes seem to [...]]]></description>
			<content:encoded><![CDATA[<p>Sunday is roast day, doesn&#8217;t matter what animal it is, but it needs to be roasted.</p>
<p>Yesterday i decided to do chicken with roast potatoes, mashed potatoes and roast carrots &amp; parsnips.</p>
<p><strong>What you Need</strong></p>
<ul>
<li>Whole Chicken &#8211; I used M&amp;S&#8217;s chicken for this</li>
<li>2x 500g of Maris Pipers Potatoes &#8211; These potatoes seem to be the perfect all rounder</li>
<li>Seasonings &#8211; Salt, pepper, paprika</li>
<li>Carrots &#8211; 2 or 3 would feed 1-2 people</li>
<li>Parsnip &#8211; 1 large one would feed 1-2 people</li>
<li>Butter &amp; milk &#8211; For the potatoes</li>
<li>Olive Oil</li>
<li>Bisto</li>
<li>Stock Cube &#8211; I used Knorr bouillon cubes</li>
<li>1 Lemon &#8211; Cut into wedges</li>
<li>2 Cloves of garlic</li>
</ul>
<p><strong>Chicken</strong></p>
<ol>
<li>Take chicken out of packaging and remove the binding.</li>
<li>Clean the chicken if it has not been prepared already.</li>
<li>Make a mixture of salt, pepper and olive oil for rubbing onto the chicken.</li>
<li>Rub the inside of the cavity with this mixture, then fill it with lemon wedges and garlic.</li>
<li>Separate the skin from the breasts by pushing your fingers in-between it, be careful not to push too hard as it might tear the skin. Rub some of the oil mixture onto the breasts aswell.</li>
<li>Bind the chicken backup with the legs sticking into the cavity.</li>
<li>Rub down the chicken with the oil mixture making sure its completely covered.</li>
<li>Sprinkle a little paprika onto the chicken and rub it all over for a bit of colour and flavour.</li>
<li>Place into baking tray or back into the foil tin the chicken came in and place in the oven on the middle/top shelf at about 150ºc for time specified for the chicken, about 1hour per kg or so.</li>
</ol>
<p><strong>Mashed Potatoes</strong></p>
<ol>
<li>Wash and peel potatoes.</li>
<li>Chop potatoes in small cubes to cook faster.</li>
<li>Place potatoes into the pot and run under cool water until all the starch has disappeared form the water.</li>
<li>Add some sea salt and bring to the boil.</li>
<li>Prick the potatoes with a fork, when they slide off easily you&#8217;ll know they&#8217;re done.</li>
<li>Drain potatoes in a colander and leave them sitting in it with the lid left on top and allow to dry for a bit.</li>
<li>Use a potato ricer to mince your potatoes into the pot</li>
<li>Add some butter and milk to taste and mix thoroughly</li>
</ol>
<p><strong>Roast Potatoes</strong></p>
<ol>
<li>Wash and peel potatoes.</li>
<li>Chop potatoes in small cubes to cook faster.</li>
<li>Place potatoes into the pot and run under cool water until all the starch has disappeared form the water.</li>
<li>Add some sea salt and bring to the boil.</li>
<li>Prick the potatoes with a fork, when they slide off with a small bit of resistance you&#8217;ll know they&#8217;re done.</li>
<li>Drain potatoes in a colander and leave them sitting in it with the lid left on top and allow to dry for a bit.</li>
<li>Put some olive oil on a baking tray and place potatoes on it.</li>
<li>Put in the oven for 35-45 minutes.</li>
<li>Drain on paper towels to remove excess oil.</li>
</ol>
<p><strong>Roast carrots and parsnips</strong></p>
<ol>
<li>Wash and peel the vegetables.</li>
<li>Cut into sticks.</li>
<li>Place in a preparation bowl and add brown sugar to coat.</li>
<li>Put in the fridge until needed.</li>
<li>Place on baking tray or in the roasting dish (chicken was inside its foil container) and drizzle with a bit of olive oil and add a bit more sugar.</li>
<li>Cook for 25-35minutes until they&#8217;re cooked to preference.</li>
<li>Drain on paper towels to remove excess oil.</li>
</ol>
<p><strong>Gravy</strong></p>
<ol>
<li>Add 20ml or Bisto into a pot.</li>
<li>Add 1 bouillon cube.</li>
<li>Add the juices from the chicken, make sure to tip it up to get all the juices from the cavity.</li>
<li>Add about 150ml of hot water and mix and bring to the boil to thicken.</li>
</ol>
<p>To serve, I cut the breasts away from the chicken and placed on the plates.</p>
<p>Potatoes and vegetables were served in bowls with paper towels</p>
<p>Gravy was served in a gravy jug.</p>
<p>Mash was served in dollaps on the plate with the chicken.</p>
<p><a href="http://thegibson.net/wp-content/uploads/2008/09/p-640-480-9f0d9ac7-25ac-4ce3-8b25-ee7d2c826839.jpeg"><img class="alignnone size-full wp-image-364" src="http://thegibson.net/wp-content/uploads/2008/09/p-640-480-9f0d9ac7-25ac-4ce3-8b25-ee7d2c826839.jpeg" alt="" width="225" height="300" /></a></p>
<p><a href="http://thegibson.net/wp-content/uploads/2008/09/p-640-480-ccaee87b-a39d-4919-92e5-655d0fa22925.jpeg"><img class="alignnone size-full wp-image-364" src="http://thegibson.net/wp-content/uploads/2008/09/p-640-480-ccaee87b-a39d-4919-92e5-655d0fa22925.jpeg" alt="" width="225" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thegibson.net/index.php/2008/09/29/roast-chicken/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Its alive!</title>
		<link>http://thegibson.net/index.php/2008/09/28/its-alive/</link>
		<comments>http://thegibson.net/index.php/2008/09/28/its-alive/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 00:13:16 +0000</pubDate>
		<dc:creator>PPC</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[tech roomba]]></category>

		<guid isPermaLink="false">http://thegibson.net/?p=8</guid>
		<description><![CDATA[After some modding to the psu, my Roomba 535 is now in action. After it&#8217;s inital 16 hour charge it was time to test it out. I gave it a small test and tried it in the hallway. After about 30mins of runtime it started making some weird noises so I decided to check it [...]]]></description>
			<content:encoded><![CDATA[<p>After some <a href="http://abecemod.blogspot.com/" target="_blank">modding to the psu</a>, my Roomba 535 is now in action. After it&#8217;s inital 16 hour charge it was time to test it out. I gave it a small test and tried it in the hallway. After about 30mins of runtime it started making some weird noises so I decided to check it out. The brushes were completely clogged with hair and fluff from the carpet. After a quick clean of it&#8217;s parts it spent another 30mins or so cleaning and gave a little chirp to let me know of was complete. First results were a success. I will now need to try clear some paths in the bigger rooms so it can run it&#8217;s own course.</p>
<p><a href="http://thegibson.net/wp-content/uploads/2008/09/p-640-480-4cd0dc03-d3b3-45e4-a809-40efa53b5823.jpeg"><img class="alignnone size-full wp-image-364" src="http://thegibson.net/wp-content/uploads/2008/09/p-640-480-4cd0dc03-d3b3-45e4-a809-40efa53b5823.jpeg" alt="" width="225" height="300" /></a></p>
<p><a href="http://thegibson.net/wp-content/uploads/2008/09/p-640-480-6b4056c5-a4ab-4c41-ad47-20cbb92dbf77.jpeg"><img class="alignnone size-full wp-image-364" src="http://thegibson.net/wp-content/uploads/2008/09/p-640-480-6b4056c5-a4ab-4c41-ad47-20cbb92dbf77.jpeg" alt="" width="225" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thegibson.net/index.php/2008/09/28/its-alive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First post</title>
		<link>http://thegibson.net/index.php/2008/09/26/first-post/</link>
		<comments>http://thegibson.net/index.php/2008/09/26/first-post/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 23:09:54 +0000</pubDate>
		<dc:creator>PPC</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thegibson.net/?p=3</guid>
		<description><![CDATA[So first post and I&#8217;m trying it from my iPhone. The client seems pretty fully featured bar missing horizontal support. I&#8217;ve just tried getting the maemo client for my Nokia N800 to connect but with no joy. More to come]]></description>
			<content:encoded><![CDATA[<p>So first post and I&#8217;m trying it from my iPhone. The client seems pretty fully featured bar missing horizontal support. I&#8217;ve just tried getting the maemo client for my Nokia N800 to connect but with no joy.<br />
More to come</p>
]]></content:encoded>
			<wfw:commentRss>http://thegibson.net/index.php/2008/09/26/first-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->