<?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>Jonathon Bolster &#187; Random Musings</title>
	<atom:link href="http://www.bolsterweb.com/category/random-musings/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bolsterweb.com</link>
	<description>Programming, drawing, random, life.</description>
	<lastBuildDate>Mon, 03 Oct 2011 17:30:56 +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>Looking at the animations on Google&#8217;s Jim Henson doodle</title>
		<link>http://www.bolsterweb.com/2011/09/looking-at-the-animations-on-googles-jim-henson-doodle/</link>
		<comments>http://www.bolsterweb.com/2011/09/looking-at-the-animations-on-googles-jim-henson-doodle/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 10:56:27 +0000</pubDate>
		<dc:creator>Jonathon Bolster</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Random Musings]]></category>
		<category><![CDATA[googledoodle]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jsfiddle]]></category>
		<category><![CDATA[sprite]]></category>

		<guid isPermaLink="false">http://www.bolsterweb.com/?p=297</guid>
		<description><![CDATA[On opening Google today, I&#8217;m shown a couple of muppets I can control (well, I can open their mouths and spin their heads around). This is to celebrate Jim Henson&#8217;s 75th birthday, but I&#8217;m interested in what makes it tick since there are a few little animations in there and I want to see what [...]]]></description>
			<content:encoded><![CDATA[<p>On opening Google today, I&#8217;m shown a couple of muppets I can control (well, I can open their mouths and spin their heads around). This is to celebrate Jim Henson&#8217;s 75th birthday, but I&#8217;m interested in what makes it tick since there are a few little animations in there and I want to see what Google does.</p>
<p><img src="http://www.bolsterweb.com/wp-content/uploads/2011/09/google-doodle-24-sep-2011.jpg" alt="Google Doodle for Jim Henson&#039;s 75th Birthday" title="Google Doodle for Jim Henson&#039;s 75th Birthday" width="371" height="183" class="size-full wp-image-307 aligncenter" /></p>
<p>Looking at the images that are loaded, they seem to be PNG sprite images. So then I went on a little (short lived) mission on how to recreate the animations myself. Honestly, there are muppet animations you can play with soon.</p>
<p>There is a handy little jQuery plugin called <a href="http://spritely.net/" title="Spritely" onclick="pageTracker._trackPageview('/outgoing/spritely.net/?referer=');">Spritely</a>. This will take a jQuery selector object and manipulate the background image position to generate the animation. Nicely, all you have to do is supply the number of frames and it will do the rest for you.</p>
<p>So I open up a new <a href="http://jsfiddle.net/jonathon/5GSah/" title="jsFiddle" onclick="pageTracker._trackPageview('/outgoing/jsfiddle.net/jonathon/5GSah/?referer=');">jsFiddle</a>, fill in my HTML and CSS with the containers and background images I want and then put in this little beauty:</p>
<pre class="brush: jscript; title: ; notranslate">
$('div').click(function() {
    var $this = $(this);
    $this.sprite({
        fps: 9,
        no_of_frames: $this.data(&quot;num&quot;),
        on_last_frame: function(obj) {
            obj.destroy();
        }
    });
});
</pre>
<p>Now, what I&#8217;ve done here is make it so that every div object will generate a sprite animation on click. This probably isn&#8217;t the prettiest way to do it, but I have *only* just discovered Spritely so I&#8217;ll look at the docs and improve. If you want to let me know in the comments, that&#8217;d be appreciated.</p>
<p>(Also, for the eagle eyed of you, I&#8217;m using a data attribute to store the number of frames in the animation. This was painstakingly done by opening the PNG files and counting the muppet heads. I bet I will find Spritely would do it for me after reviewing the documentation).</p>
<p>You&#8217;ve waited long enough. Go to the jsFiddle to play with the <a href="http://jsfiddle.net/jonathon/5GSah/" title="Muppet animations for Google Doodle on jsFiddle" onclick="pageTracker._trackPageview('/outgoing/jsfiddle.net/jonathon/5GSah/?referer=');">Muppet animations</a>.</p>
<p>Alternatively, here are links to the sprite images I&#8217;ve seen. Haven&#8217;t found anything for the blue guy on the left though! If you have, let me know and I&#8217;ll add it.</p>
<ul>
<li><a href="http://www.google.co.uk/logos/2011/henson11-hp-2oa.png" onclick="pageTracker._trackPageview('/outgoing/www.google.co.uk/logos/2011/henson11-hp-2oa.png?referer=');">http://www.google.co.uk/logos/2011/henson11-hp-2oa.png</a></li>
<li><a href="http://www.google.co.uk/logos/2011/henson11-hp-3oa.png" onclick="pageTracker._trackPageview('/outgoing/www.google.co.uk/logos/2011/henson11-hp-3oa.png?referer=');">http://www.google.co.uk/logos/2011/henson11-hp-3oa.png</a></li>
<li><a href="http://www.google.co.uk/logos/2011/henson11-hp-4ga.png" onclick="pageTracker._trackPageview('/outgoing/www.google.co.uk/logos/2011/henson11-hp-4ga.png?referer=');">http://www.google.co.uk/logos/2011/henson11-hp-4ga.png</a></li>
<li><a href="http://www.google.co.uk/logos/2011/henson11-hp-6ea-lr.png" onclick="pageTracker._trackPageview('/outgoing/www.google.co.uk/logos/2011/henson11-hp-6ea-lr.png?referer=');">http://www.google.co.uk/logos/2011/henson11-hp-6ea-lr.png</a></li>
<li><a href="http://www.google.co.uk/logos/2011/henson11-hp-6ea-er.png" onclick="pageTracker._trackPageview('/outgoing/www.google.co.uk/logos/2011/henson11-hp-6ea-er.png?referer=');">http://www.google.co.uk/logos/2011/henson11-hp-6ea-er.png</a></li>
<li><a href="http://www.google.co.uk/logos/2011/henson11-hp-6ea.png" onclick="pageTracker._trackPageview('/outgoing/www.google.co.uk/logos/2011/henson11-hp-6ea.png?referer=');">http://www.google.co.uk/logos/2011/henson11-hp-6ea.png</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bolsterweb.com/2011/09/looking-at-the-animations-on-googles-jim-henson-doodle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Little Red Riding Hood &#8211; In C#</title>
		<link>http://www.bolsterweb.com/2010/05/little-red-riding-hood-in-csharp/</link>
		<comments>http://www.bolsterweb.com/2010/05/little-red-riding-hood-in-csharp/#comments</comments>
		<pubDate>Sat, 29 May 2010 22:31:21 +0000</pubDate>
		<dc:creator>Jonathon Bolster</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Random Musings]]></category>
		<category><![CDATA[bedtime]]></category>
		<category><![CDATA[bored]]></category>
		<category><![CDATA[stories]]></category>

		<guid isPermaLink="false">http://www.bolsterweb.com/?p=136</guid>
		<description><![CDATA[Tonight, I was bored. Seriously, it was either this or watching the Eurovision song contest. Sadly, with BBC iPlayer, I was able to do both. I&#8217;ve decided that when I have kids, they&#8217;re going to know how to use computers and learn how to program (I can wish). So, I&#8217;ve rewritten the story of Little [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight, I was bored. Seriously, it was either this or watching the Eurovision song contest. Sadly, with BBC iPlayer, I was able to do both.</p>
<p>I&#8217;ve decided that when I have kids, they&#8217;re going to know how to use computers and learn how to program (I can wish).</p>
<p>So, I&#8217;ve rewritten the story of Little Red Riding Hood. This time it&#8217;s in C#. I have no idea why I decided I would do this &#8211; by the time I&#8217;d realised, it was too late</p>
<p>So if you want to tell your kids a bedtime story whilst edging them into becoming programmers, read on.</p>
<p><span id="more-136"></span></p>
<pre class="brush: csharp; title: ; notranslate">
// The story of Little Red Riding Hood - as told in C#
var story = new Story()
{
	Name = &quot;Little Red Riding Hood&quot;,
	Description = &quot;The story of a girl who meets a wicked wolf on her way to her grandmother's house&quot;
};

// Once upon a time, there was one little girl who was loved by everyone. Her
// grandmother especially loved her and gave her a Red Riding Hood, which suited
// her so well that she would never wear anything else. So she was called 'Little
// Red Riding Hood'
var littleRedRidingHood = population.Where(x =&gt;
								x.Sex == Sex.Female &amp;&amp;
								x.Characteristics.HasFlag(Characteristics.Lovely) &amp;&amp;
								x.AgeGroup == AgeGroup.Child &amp;&amp;
								x.Clothes.Any(y =&gt;
									y.Name == &quot;Riding Hood&quot; &amp;&amp;
									y.Colour == Color.Red
									)
								)
								.OrderBy(x =&gt; x.Popularity)
								.First();

// One day, her mother gave her some cake and wine to take to her grandmother as
// she was ill. Little Red Riding Hood put them into her basket, and set off for
// grandmother's house.
var foodForGrandmother = cupboard.Where(x =&gt; x is Cake || x is Wine).ToList();

foreach (var foodItem in foodForGrandmother)
{
	cupboard.Remove(foodItem);
}

littleRedRidingHood.Basket.AddRange(foodForGrandmother);

// Her grandmother lived out in the wood and, just as Little Red Riding Hood entered
// the wood, she met a wolf. She was not afraid of him, since she did not know how
// wicked he was.
wood.Occupants.Add(littleRedRidingHood);

var wolf = new Character()
{
	Clothes = Enumerable.Empty&lt;Clothes&gt;(),
	CurrentLocation = wood,
	Home = wood,
	Popularity = 0,
	Characteristics = Characteristics.Wicked,
	Sex = Sex.Male
};

littleRedRidingHood.CurrentLocation = wolf.CurrentLocation;
littleRedRidingHood.Mood ^= Mood.Fear;

// The wolf asked where Little Red Riding Hood was going. She explained that she
// was bringing her grandmother some food, as she was poorly. The wolf asked
// where her grandmother lived.
wolf.Knowledge.Add(grandmother.Home);

// The wolf thought Little Red Riding Hood looked tasty and would be much better
// to eat than the old woman. He knew he must be crafty, to catch both.
wolf.Appetite.Add(grandmother);
wolf.Appetite.Add(littleRedRidingHood);
wolf.Mood |= Mood.Hungry;

// The wolf convinced Little Red Riding Hood to stray from the path and pick flowers
// for her grandmother. Then he ran off to her grandmother's house whilst Little Red
// Riding Hood picked flowers; until she could carry no more.
wolf.CurrentLocation = grandmother.Home;

littleRedRidingHood.Basket.AddRange(
	wood.Items.Where(x =&gt; x is Flower).Take(littleRedRidingHood.Basket.MaxSize - littleRedRidingHood.Basket.Count)
	);

// The wolf reached grandmother's house and knocked on the door. 'Who is it?', she asked.
// 'Little Red Riding Hood', replied the wolf. 'She is bringing wine and cake'.
// 'Lift the latch', grandmother said, 'I am too weak to open it'. The wolf opened the
// door and, without saying a word, immediately jumped in and gobbled up grandmother.
wolf.Belly.Add(grandmother);
wood.Occupants.Remove(grandmother);

// The wolf heard Little Red Riding Hood come close, and quickly put on the grandmother's
// clothes and jump into her bed.
wolf.Clothes = grandmother.Clothes;

// Little Red Riding Hood reached her grandmother's house and, seeing the door open, felt
// very uneasy - but entered anyway.
littleRedRidingHood.CurrentLocation = grandmother.Home;
littleRedRidingHood.Mood |= Mood.Nervous;

// 'Oh grandma, what big ears you have', said Little Red Riding Hood
// 'All the better to hear you with, my child', replied the wolf
if (!wolf.Features.Ears.Equals(grandmother.Features.Ears))
{
	littleRedRidingHood.Mood |= Mood.Nervous;
}

// 'But, grandmother, what big eyes you have', she said.
// 'All the better to see you with, my dear'
if (!wolf.Features.Eyes.Equals(grandmother.Features.Eyes))
{
	littleRedRidingHood.Mood |= Mood.Nervous;
}

// 'But, grandmother, what large hands you have!'
// 'All the better to hug you with'
if (!wolf.Features.Hands.Equals(grandmother.Features.Hands))
{
	littleRedRidingHood.Mood |= Mood.Nervous;
}

// 'Oh! grandma, what a terribly big mouth you have'
// 'All the better to eat you with!'
if (!wolf.Features.Mouth.Equals(grandmother.Features.Mouth))
{
	littleRedRidingHood.Mood |= Mood.Fear;
}

// And with that, the wolf jumped out of bed and gobbled up Little
// Red Riding Hood!
wolf.Belly.Add(littleRedRidingHood);
wolf.Appetite.Clear();

// After appeasing his appetite, the wolf lay on the bed, fell
// asleep and began snoring very loudly.
wolf.Mood = Mood.Tired;

// Just then, a huntsman was passing and thought to himself 'How
// the old woman is snoring! I must see if she wants anything.'
var huntsman = new Character()
{
	Characteristics = Characteristics.Strong,
	AgeGroup = AgeGroup.Adult,
	Sex = Sex.Male,
};

huntsman.CurrentLocation = grandmother.Home;

// The huntsman entered the house and saw the wolf sleeping.
// 'You!', exclaimed the huntsman, 'How long I have looked for you
// wicked thing' and raised his gun to shoot the wolf
huntsman.Mood = Mood.Anger;

// The huntsman realised the wolf may have eaten the old woman, and
// put his gun down. Instead, he used some scissors to open the wolf's
// belly. Out sprang Little Red Riding Hood. 'How frightened I have
// been', she told him.
wolf.Belly.Remove(littleRedRidingHood);
littleRedRidingHood.Mood ^= Mood.Fear;
littleRedRidingHood.Mood |= Mood.Happy;

// Out followed her grandmother, but scarcely able to breath.
wolf.Belly.Remove(grandmother);
grandmother.Mood = Mood.Happy | Mood.Tired | Mood.Hungry;

// Little Red Riding Hood ran out into the wood and picked up stones
// to fill the wolf's belly with
var stones = wood.Items.Where(x =&gt; x is Stone).Take(wolf.Belly.MaxSize);
wolf.Belly.AddRange(stones);

// When the wolf awoke, he tried to run away but the stones were so heavy
// that he fell at once, and fell dead
wolf.Mood ^= Mood.Tired;
wolf.Mood |= Mood.Shocked;
wood.Occupants.Remove(wolf);
wolf = null;

// The wolf had died, and the three were happy. The grandmother ate the cake
// and drank the wine, and was revived.
huntsman.Mood = Mood.Happy;
littleRedRidingHood.Mood = Mood.Happy;

grandmother.Belly.AddRange(littleRedRidingHood.Basket.Where(x=&gt; x is Cake || x is Wine));
grandmother.Mood = Mood.Happy;

// The huntsman took the skin off the wolf and took it home, and Little Red
// Riding Hood learnt that she should never stray off the path, especially
// when wolves tempt her.
//Assert.IsTrue(wolf.Characteristics.HasFlag(Characteristics.Wicked));

// The End
story.Ending = Ending.Happy;
</pre>
<p>This actually compiles and runs to a happy ending (with the source of the other classes, of course). If you&#8217;re going to read it as a bed time story to your children, it may as well compile.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolsterweb.com/2010/05/little-red-riding-hood-in-csharp/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Howdy 2010</title>
		<link>http://www.bolsterweb.com/2010/05/howdy-2010/</link>
		<comments>http://www.bolsterweb.com/2010/05/howdy-2010/#comments</comments>
		<pubDate>Tue, 11 May 2010 22:33:44 +0000</pubDate>
		<dc:creator>Jonathon Bolster</dc:creator>
				<category><![CDATA[Random Musings]]></category>

		<guid isPermaLink="false">http://www.bolsterweb.com/?p=87</guid>
		<description><![CDATA[It&#8217;s been nearly a year since I posted anything and, since then, I&#8217;ve grown sick of my current Word Press theme so I&#8217;ve installed this nice little theme for the mean time. I might design my own (a nice one) but for the moment this one will do. Since last time: I graduated I got [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been nearly a year since I posted anything and, since then, I&#8217;ve grown sick of my current Word Press theme so I&#8217;ve installed this nice little theme for the mean time. I might design my own (a nice one) but for the moment this one will do.</p>
<p>Since last time:</p>
<ul>
<li>I graduated</li>
<li>I got a job here in York</li>
<li>I&#8217;m still here</li>
</ul>
<p>So yup &#8211; that&#8217;s my exciting life. I&#8217;ve been playing with .NET 3.5 (and poking my nose into .NET 4 recently) so I&#8217;ll probably have a thing or two to say about that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolsterweb.com/2010/05/howdy-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New design &#8211; hurrah!</title>
		<link>http://www.bolsterweb.com/2009/06/new-design-hurrah/</link>
		<comments>http://www.bolsterweb.com/2009/06/new-design-hurrah/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 00:12:27 +0000</pubDate>
		<dc:creator>Jonathon Bolster</dc:creator>
				<category><![CDATA[Random Musings]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.bolsterweb.com/?p=35</guid>
		<description><![CDATA[Hurrah! I&#8217;ve been reading a bit about HTML5 and creating a wordpress template, so here&#8217;s a new design. I&#8217;ve moved from Blogger to using WordPress on my own server. Gives me a little bit more flexibility, but I think it might sacrifice a little on the Google search. Ahh well. One annoying thing in the [...]]]></description>
			<content:encoded><![CDATA[<p>Hurrah! I&#8217;ve been reading a bit about HTML5 and creating a wordpress template, so here&#8217;s a new design.</p>
<p>I&#8217;ve moved from <a href="http://www.blogger.com" onclick="pageTracker._trackPageview('/outgoing/www.blogger.com?referer=');">Blogger</a> to using WordPress on my own server. Gives me a little bit more flexibility, but I think it might sacrifice a little on the Google search. Ahh well. One annoying thing in the import/export is that it imported the tags as categories. I&#8217;ll sort that out &#8211; I was probably just using it wrong.</p>
<p>Hopefully the design works alright &#8211; though it might be broken in one or two parts. If anything seems horribly broken, then please let me know. I also plan on playing with a CSS style to make it work nicely on the iPhone too.</p>
<p>[Update: In WordPress, there's a Categories to Tags tool. Woo!]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolsterweb.com/2009/06/new-design-hurrah/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ireland as a teddy</title>
		<link>http://www.bolsterweb.com/2009/01/ireland-as-a-teddy/</link>
		<comments>http://www.bolsterweb.com/2009/01/ireland-as-a-teddy/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 21:32:00 +0000</pubDate>
		<dc:creator>Jonathon Bolster</dc:creator>
				<category><![CDATA[Random Musings]]></category>

		<guid isPermaLink="false">http://jobolster.wordpress.com/2009/01/19/ireland-as-a-teddy/</guid>
		<description><![CDATA[I&#8217;ve taken to the habit of saying that Ireland looks a bit like a teddy. I always had an image of a teddy bear but it&#8217;s hard to describe to people. So here it is. After a short bit of drawing in Skitch, this is how I see Ireland]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.bolsterweb.com/irish_ted.jpg"><img class="aligncenter" title="Ireland as a teddy" src="http://www.bolsterweb.com/irish_ted.jpg" alt="" width="353" height="410" /></a></p>
<p>I&#8217;ve taken to the habit of saying that Ireland looks a bit like a teddy. I always had an image of a teddy bear but it&#8217;s hard to describe to people.</p>
<p>So here it is. After a short bit of drawing in Skitch, this is how I see Ireland <img src='http://www.bolsterweb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolsterweb.com/2009/01/ireland-as-a-teddy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I cooked steak!</title>
		<link>http://www.bolsterweb.com/2009/01/i-cooked-steak/</link>
		<comments>http://www.bolsterweb.com/2009/01/i-cooked-steak/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 19:42:00 +0000</pubDate>
		<dc:creator>Jonathon Bolster</dc:creator>
				<category><![CDATA[Random Musings]]></category>
		<category><![CDATA[food]]></category>

		<guid isPermaLink="false">http://jobolster.wordpress.com/2009/01/07/i-cooked-steak/</guid>
		<description><![CDATA[Was doing an online shop last night and decided to buy a steak. So in order to cook it properly, I made a nice big meal Chopped up all the veg (yes, there&#8217;s a lot of potato) Yummy stuffing Carrot and parsnip (and a bit of potato) And the roasties! Quick frying the steak Mmmmm&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>Was doing an online shop last night and decided to buy a steak. So in order to cook it properly, I made a nice big meal <img src='http://www.bolsterweb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<span id="more-16"></span><br />
<a href="http://farm4.static.flickr.com/3378/3177174897_0bc501d3c8.jpg?v=0" onclick="pageTracker._trackPageview('/outgoing/farm4.static.flickr.com/3378/3177174897_0bc501d3c8.jpg?v=0&amp;referer=');"><img style="border: 0pt none; margin: 0pt auto 10px; display: block; text-align: center; cursor: pointer; width: 500px; height: 375px;" src="http://farm4.static.flickr.com/3378/3177174897_0bc501d3c8.jpg?v=0" alt="" /></a><br />
Chopped up all the veg (yes, there&#8217;s a lot of potato)</p>
<p><a href="http://farm4.static.flickr.com/3492/3178016094_429b7f32ec.jpg?v=0" onclick="pageTracker._trackPageview('/outgoing/farm4.static.flickr.com/3492/3178016094_429b7f32ec.jpg?v=0&amp;referer=');"><img style="border: 0pt none; margin: 0pt auto 10px; display: block; text-align: center; cursor: pointer; width: 500px; height: 375px;" src="http://farm4.static.flickr.com/3492/3178016094_429b7f32ec.jpg?v=0" alt="" /></a>Yummy stuffing</p>
<p><a href="http://farm4.static.flickr.com/3482/3177183751_9b774c57d5.jpg?v=0" onclick="pageTracker._trackPageview('/outgoing/farm4.static.flickr.com/3482/3177183751_9b774c57d5.jpg?v=0&amp;referer=');"><img style="border: 0pt none; margin: 0pt auto 10px; display: block; text-align: center; cursor: pointer; width: 500px; height: 375px;" src="http://farm4.static.flickr.com/3482/3177183751_9b774c57d5.jpg?v=0" alt="" /></a>Carrot and parsnip (and a bit of potato)</p>
<p><a href="http://farm4.static.flickr.com/3112/3177185373_209214709c.jpg?v=0" onclick="pageTracker._trackPageview('/outgoing/farm4.static.flickr.com/3112/3177185373_209214709c.jpg?v=0&amp;referer=');"><img style="border: 0pt none; margin: 0pt auto 10px; display: block; text-align: center; cursor: pointer; width: 500px; height: 375px;" src="http://farm4.static.flickr.com/3112/3177185373_209214709c.jpg?v=0" alt="" /></a>And the roasties!</p>
<p><a href="http://farm4.static.flickr.com/3321/3178029050_23158303fa.jpg?v=0" onclick="pageTracker._trackPageview('/outgoing/farm4.static.flickr.com/3321/3178029050_23158303fa.jpg?v=0&amp;referer=');"><img style="border: 0pt none; margin: 0pt auto 10px; display: block; text-align: center; cursor: pointer; width: 500px; height: 375px;" src="http://farm4.static.flickr.com/3321/3178029050_23158303fa.jpg?v=0" alt="" /></a>Quick frying the steak</p>
<p><a href="http://farm4.static.flickr.com/3458/3178023082_df612a8b33.jpg?v=0" onclick="pageTracker._trackPageview('/outgoing/farm4.static.flickr.com/3458/3178023082_df612a8b33.jpg?v=0&amp;referer=');"><img style="border: 0pt none; margin: 0pt auto 10px; display: block; text-align: center; cursor: pointer; width: 500px; height: 375px;" src="http://farm4.static.flickr.com/3458/3178023082_df612a8b33.jpg?v=0" alt="" /></a>Mmmmm&#8230;</p>
<p><a href="http://farm4.static.flickr.com/3256/3178024790_4e9c65beb7.jpg?v=0" onclick="pageTracker._trackPageview('/outgoing/farm4.static.flickr.com/3256/3178024790_4e9c65beb7.jpg?v=0&amp;referer=');"><img style="border: 0pt none; margin: 0pt auto 10px; display: block; text-align: center; cursor: pointer; width: 500px; height: 375px;" src="http://farm4.static.flickr.com/3256/3178024790_4e9c65beb7.jpg?v=0" alt="" /></a>Everything plated up (4 different type of potatoes&#8230; like any meal should have)</p>
<p><a href="http://farm4.static.flickr.com/3105/3177206739_93cc6fbfb5.jpg?v=0" onclick="pageTracker._trackPageview('/outgoing/farm4.static.flickr.com/3105/3177206739_93cc6fbfb5.jpg?v=0&amp;referer=');"><img style="border: 0pt none; margin: 0pt auto 10px; display: block; text-align: center; cursor: pointer; width: 500px; height: 375px;" src="http://farm4.static.flickr.com/3105/3177206739_93cc6fbfb5.jpg?v=0" alt="" /></a>Just a little bit of washing up&#8230;</p>
<p><a href="http://farm4.static.flickr.com/3100/3177190787_4101d24cd6.jpg?v=0" onclick="pageTracker._trackPageview('/outgoing/farm4.static.flickr.com/3100/3177190787_4101d24cd6.jpg?v=0&amp;referer=');"><img style="border: 0pt none; margin: 0pt auto 10px; display: block; text-align: center; cursor: pointer; width: 500px; height: 375px;" src="http://farm4.static.flickr.com/3100/3177190787_4101d24cd6.jpg?v=0" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bolsterweb.com/2009/01/i-cooked-steak/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

