<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>ruby_gem&#039;s Blog</title>
	<atom:link href="http://rubygem.me/feed/" rel="self" type="application/rss+xml" />
	<link>http://rubygem.me</link>
	<description>The blog of Gemma R Cameron</description>
	<lastBuildDate>Sat, 21 Jan 2012 19:40:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rubygem.me' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>ruby_gem&#039;s Blog</title>
		<link>http://rubygem.me</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rubygem.me/osd.xml" title="ruby_gem&#039;s Blog" />
	<atom:link rel='hub' href='http://rubygem.me/?pushpress=hub'/>
		<item>
		<title>Installing Rails on Windows</title>
		<link>http://rubygem.me/2012/01/21/installing-rails-on-windows/</link>
		<comments>http://rubygem.me/2012/01/21/installing-rails-on-windows/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 19:40:08 +0000</pubDate>
		<dc:creator>@ruby_gem</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rubygem.me/?p=510</guid>
		<description><![CDATA[It&#8217;s a frikkin nightmare. Here&#8217;s how I did it: c:\&#62; gem install rails this failed with an error message which said &#8220;&#8216;make &#8216; is not recognized as an internal or external command&#8221; whilst trying to build the native extensions. The &#8230; <a href="http://rubygem.me/2012/01/21/installing-rails-on-windows/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=510&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a frikkin nightmare. Here&#8217;s how I did it:</p>
<p><code>c:\&gt; gem install rails</code></p>
<p>this failed with an error message which said &#8220;&#8216;make &#8216; is not recognized as an internal or external command&#8221; whilst trying to build the native extensions.</p>
<p>The native extensions are things that Ruby needs to compile on your native system. It does this using make, the original tool on which rake, nant, powershell and other build tools are based on.</p>
<p>So I went off and <a href="http://gnuwin32.sourceforge.net/packages/make.htm">downloaded make</a></p>
<p>(don&#8217;t forget to add the make bin directory to your path)</p>
<p>Next issue, make had an error &#8220;libintl3.dll could not be found&#8221;. Balls. Turns out make has some <a href="http://gnuwin32.sourceforge.net/packages/make.htm">dependencies </a>you also need to download&#8230; It&#8217;s a little further down the list after binaries and source.</p>
<p>Next error:</p>
<p><code>"make: *** No rule to make target `/C/Ruby192/include/ruby-1.9.1/ruby.h'"</code></p>
<p>Balls. Balls. Balls.</p>
<p>Fix for this is to <a href="http://rubyinstaller.org/add-ons/devkit/">download the Ruby DevKit</a>. Extract is and run the devkitvars.bat in the root of devkit, this adds loads of really useful stuff to your %PATH%.</p>
<p>Now try it again for the final time:</p>
<p><code>C:\RubyDevKit&gt;gem install rails<br />
Building native extensions. This could take a while...<br />
Fetching: rdoc-3.12.gem (100%)<br />
Depending on your version of ruby, you may need to install ruby rdoc/ri data:</p>
<p>&lt;= 1.8.6 : unsupported<br />
= 1.8.7 : gem install rdoc-data; rdoc-data --install<br />
= 1.9.1 : gem install rdoc-data; rdoc-data --install<br />
&gt;= 1.9.2 : nothing to do! Yay!<br />
Fetching: railties-3.2.0.gem (100%)<br />
Fetching: rails-3.2.0.gem (100%)<br />
Successfully installed json-1.6.5<br />
Successfully installed rdoc-3.12<br />
Successfully installed railties-3.2.0<br />
Successfully installed rails-3.2.0<br />
4 gems installed<br />
Installing ri documentation for json-1.6.5...<br />
Installing ri documentation for rdoc-3.12...<br />
Installing ri documentation for railties-3.2.0...<br />
Installing ri documentation for rails-3.2.0...<br />
Installing RDoc documentation for json-1.6.5...<br />
Installing RDoc documentation for rdoc-3.12...<br />
Installing RDoc documentation for railties-3.2.0...<br />
Installing RDoc documentation for rails-3.2.0...<br />
</code><br />
and there was much rejoicing. YAAAY!</p>
<p>Now try to build a rails app:<br />
<code>c:\&gt; rails new project_bob</code></p>
<p>BALLS!!!!</p>
<p><code>C:/Ruby192/lib/ruby/gems/1.9.1/gems/bundler-1.0.5/lib/bundler/ui.rb:56:in `': uninitialized constant Gem::SilentUI (NameError)</code></p>
<p>JUST FRIKKIN WORK DAMN YOU</p>
<p>after a bit of googling, turns out my bundler was out of date. So&#8230;.</p>
<p><code>C:\&gt;gem update bundler</code></p>
<p>Let&#8217;s try making that new Rails app again. Fingers, toes, knees, eyes&#8230; all crossed.</p>
<p>IT WORKED!</p>
<p>Now cd into the app you just created and try<br />
<code>c:\project_bob&gt; rails c<br />
Loading development environment (Rails 3.2.0)<br />
irb(main):001:0&gt;</code></p>
<p>GET IN. All done. Now time to do some work. Hope this helps some other unfortunate soul.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancsrubygem.wordpress.com/510/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancsrubygem.wordpress.com/510/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancsrubygem.wordpress.com/510/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancsrubygem.wordpress.com/510/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancsrubygem.wordpress.com/510/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancsrubygem.wordpress.com/510/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancsrubygem.wordpress.com/510/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancsrubygem.wordpress.com/510/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancsrubygem.wordpress.com/510/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancsrubygem.wordpress.com/510/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancsrubygem.wordpress.com/510/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancsrubygem.wordpress.com/510/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancsrubygem.wordpress.com/510/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancsrubygem.wordpress.com/510/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=510&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubygem.me/2012/01/21/installing-rails-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c7d31ed59aa49d8dd4c9fe8337ea5b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">@ruby_gem</media:title>
		</media:content>
	</item>
		<item>
		<title>Preston Codejo 2</title>
		<link>http://rubygem.me/2012/01/10/preston-codejo-2/</link>
		<comments>http://rubygem.me/2012/01/10/preston-codejo-2/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 08:40:31 +0000</pubDate>
		<dc:creator>@ruby_gem</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rubygem.me/?p=498</guid>
		<description><![CDATA[Last night was the second Coding Dojo in Preston at the Magma Digital offices, run by myself and @phpcodemonkey. This month the focus was TDD using Ruby. We performed the Checkout Kata (I&#8217;ll blog this later) with a Randori format &#8230; <a href="http://rubygem.me/2012/01/10/preston-codejo-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=498&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>Last night was the second Coding Dojo in Preston at the <a href="http://magmadigital.co.uk/">Magma Digital</a> offices, run by myself and <a href="http://twitter.com/phpcodemonkey">@phpcodemonkey</a>.</div>
<div></div>
<div>This month the focus was TDD using Ruby. We performed the Checkout Kata (I&#8217;ll blog this later) with a Randori format for the first half (rotating a pair at the front with code projected at the front and audience participation) then split off into pairs to start the kata again from scratch.</div>
<div></div>
<div>We had a good turnout, around 20 people, and I would say it was a definite success! Especially the pairing in the second half. Everyone was so engrossed in solving the problem that they were reluctant to head to the pub for the retro!</div>
<div></div>
<div>Speaking of which, here are some of the things that came out of the retro</div>
<div></div>
<h2>Retro actions</h2>
<ul>
<li>Have a source control and CI environment (Jeremy to setup) to see benefit of having a test suite &#8211; possibly need a bigger code base)</li>
<li>Randori for first half and pairing for second half worked well</li>
<li>Show and tell at the end</li>
<li>No one is wrong (except Tim)</li>
<li>Use RSPEC next time</li>
<li>Disussions on techniques and styles are fine to happen, but driver (one at the keyboard) has final say</li>
<li>Introductions as you stand up at the radori</li>
<li>Carry on with Ruby</li>
<li>Repeat the checkout kata</li>
</ul>
<h2>Future focuses</h2>
<ul>
<li>TDD from hell</li>
<li>BDD</li>
<li>TDD as if you meant it</li>
<li>Refactoring</li>
<li>Refucktorting</li>
<li>Start with a skeleton and build up tests as you go</li>
</ul>
<h2>Homework</h2>
<p><a href="http://mislav.uniqpath.com/poignant-guide/">_why&#8217;s poignant guide to Ruby</a><br />
<a href="http://rubykoans.com/">Ruby Koans &#8211; Geeky Crossword</a><br />
<a href="http://hackety.com">Hackety hack</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancsrubygem.wordpress.com/498/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancsrubygem.wordpress.com/498/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancsrubygem.wordpress.com/498/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancsrubygem.wordpress.com/498/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancsrubygem.wordpress.com/498/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancsrubygem.wordpress.com/498/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancsrubygem.wordpress.com/498/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancsrubygem.wordpress.com/498/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancsrubygem.wordpress.com/498/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancsrubygem.wordpress.com/498/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancsrubygem.wordpress.com/498/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancsrubygem.wordpress.com/498/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancsrubygem.wordpress.com/498/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancsrubygem.wordpress.com/498/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=498&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubygem.me/2012/01/10/preston-codejo-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c7d31ed59aa49d8dd4c9fe8337ea5b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">@ruby_gem</media:title>
		</media:content>
	</item>
		<item>
		<title>Come and work at Late Rooms</title>
		<link>http://rubygem.me/2012/01/09/come-and-work-at-late-rooms/</link>
		<comments>http://rubygem.me/2012/01/09/come-and-work-at-late-rooms/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 12:20:02 +0000</pubDate>
		<dc:creator>@ruby_gem</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rubygem.me/?p=496</guid>
		<description><![CDATA[I&#8217;ve been at Laterooms for a couple of months now and it&#8217;s certainly a challenge, and one I&#8217;m really enjoying. It&#8217;s a bigger team than any of my last jobs, which means I&#8217;m getting the opportunity to work in loads &#8230; <a href="http://rubygem.me/2012/01/09/come-and-work-at-late-rooms/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=496&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been at Laterooms for a couple of months now and it&#8217;s certainly a challenge, and one I&#8217;m really enjoying. It&#8217;s a bigger team than any of my last jobs, which means I&#8217;m getting the opportunity to work in loads of different areas with a bunch of different people. My voice is heard, I&#8217;m involved in loads of&nbsp;initiatives&nbsp;(you&#8217;ll see one below) and the people here are awesome, both technically and socially.</p>
<p>We&#8217;re currently recruiting at http://LateRooms.com, and put together this pretty cool video to show you what we do:</p>
<span style="text-align:center; display: block;"><a href="http://rubygem.me/2012/01/09/come-and-work-at-late-rooms/"><img src="http://img.youtube.com/vi/gQ--zET_ltQ/2.jpg" alt="" /></a></span>
<p>For me the other selling points are:</p>
<ul>
<li>We have Kevin Rutherford in once a week, delivering coaching and training</li>
<li>We do loads of in house training in the form of workshops and katas at least once a week</li>
<li>I work with great people. They&#8217;re talented, passionate, driven and heavily involved in the local tech community.</li>
<li>Pub outings in the evening</li>
<li>Curry friday</li>
<li>Working closely with everyone involved in a feature. From idea to done.</li>
<li>Panoramic views of Manchester</li>
<li>Supportive, friendly atmosphere with proper northern banter</li>
<li>TDD, C#, Ruby, BDD and all that fun agile jazz!</li>
</ul>
<p>So if you do fancy joining us, email me:</p>
<p>gemma dot cameron at laterooms dot com</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancsrubygem.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancsrubygem.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancsrubygem.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancsrubygem.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancsrubygem.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancsrubygem.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancsrubygem.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancsrubygem.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancsrubygem.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancsrubygem.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancsrubygem.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancsrubygem.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancsrubygem.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancsrubygem.wordpress.com/496/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=496&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubygem.me/2012/01/09/come-and-work-at-late-rooms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c7d31ed59aa49d8dd4c9fe8337ea5b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">@ruby_gem</media:title>
		</media:content>
	</item>
		<item>
		<title>BEHOLD!</title>
		<link>http://rubygem.me/2011/12/10/behold/</link>
		<comments>http://rubygem.me/2011/12/10/behold/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 22:04:35 +0000</pubDate>
		<dc:creator>@ruby_gem</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rubygem.me/?p=492</guid>
		<description><![CDATA[Here I am at the work Cirque de Noel, being spun right round. Laterooms Christmas Party &#8211; @ruby_gem from hashpointfive on Vimeo.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=492&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here I am at the work Cirque de Noel, being spun right round.</p>
<p><div class='embed-vimeo' style='text-align:center;'><iframe src='http://player.vimeo.com/video/33450632' width='400' height='300' frameborder='0'></iframe></div>
<p><a href="http://vimeo.com/33450632">Laterooms Christmas Party &#8211; @ruby_gem</a> from <a href="http://vimeo.com/hashpointfive">hashpointfive</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancsrubygem.wordpress.com/492/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancsrubygem.wordpress.com/492/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancsrubygem.wordpress.com/492/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancsrubygem.wordpress.com/492/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancsrubygem.wordpress.com/492/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancsrubygem.wordpress.com/492/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancsrubygem.wordpress.com/492/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancsrubygem.wordpress.com/492/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancsrubygem.wordpress.com/492/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancsrubygem.wordpress.com/492/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancsrubygem.wordpress.com/492/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancsrubygem.wordpress.com/492/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancsrubygem.wordpress.com/492/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancsrubygem.wordpress.com/492/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=492&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubygem.me/2011/12/10/behold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c7d31ed59aa49d8dd4c9fe8337ea5b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">@ruby_gem</media:title>
		</media:content>
	</item>
		<item>
		<title>The first Preston Codejo</title>
		<link>http://rubygem.me/2011/12/05/the-first-preston-codejo/</link>
		<comments>http://rubygem.me/2011/12/05/the-first-preston-codejo/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 08:55:56 +0000</pubDate>
		<dc:creator>@ruby_gem</dc:creator>
				<category><![CDATA[events]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://rubygem.me/?p=479</guid>
		<description><![CDATA[The first Codejo was a huge success! We had around 20 attendees, who all spent 5 minutes on the keyboard during the Randori. There was a big range of skills from people who were completely new to both TDD and &#8230; <a href="http://rubygem.me/2011/12/05/the-first-preston-codejo/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=479&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The first Codejo was a huge success! We had around 20 attendees, who all spent 5 minutes on the keyboard during the Randori.</p>
<p>There was a big range of skills from people who were completely new to both TDD and Ruby, to those who apply TDD in Ruby for their day job.</p>
<p>There was rigorous debate in the retro at Forum bar afterwards, with ideas on format for the next session.</p>
<p>So the next Codejo will be at the same venue (Magma Digital offices) on 9th January (the second Monday of the month). There&#8217;ll be a link up soon. The format for this will be one hour Randori, one hour paired up. So start brushing up on your Ruby!</p>
<p>Here&#8217;s what people are saying about the Codejo:</p>
<ul>
<li><a href="http://michaelheap.com/post/preston-codejo/">http://michaelheap.com/post/preston-codejo/</a></li>
<li><a href="http://codeandeffect.co.uk/blog/2011/programming/inaugural-preston-codejo-november-28th-2011/">http://codeandeffect.co.uk/blog/2011/programming/inaugural-preston-codejo-november-28th-2011/</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancsrubygem.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancsrubygem.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancsrubygem.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancsrubygem.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancsrubygem.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancsrubygem.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancsrubygem.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancsrubygem.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancsrubygem.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancsrubygem.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancsrubygem.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancsrubygem.wordpress.com/479/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancsrubygem.wordpress.com/479/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancsrubygem.wordpress.com/479/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=479&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubygem.me/2011/12/05/the-first-preston-codejo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c7d31ed59aa49d8dd4c9fe8337ea5b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">@ruby_gem</media:title>
		</media:content>
	</item>
		<item>
		<title>Global Code Retreat &#8211; Manchester Episode</title>
		<link>http://rubygem.me/2011/11/17/global-code-retreatt-in-manchester/</link>
		<comments>http://rubygem.me/2011/11/17/global-code-retreatt-in-manchester/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 08:30:38 +0000</pubDate>
		<dc:creator>@ruby_gem</dc:creator>
				<category><![CDATA[events]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://rubygem.me/?p=481</guid>
		<description><![CDATA[&#160; What is it? &#160; 3rd December is the Global Day of Coderetreat, with events happening all over the world in almost every timezone! &#160; The point of a coderetreat is to escape the confines of work and to hone the &#8230; <a href="http://rubygem.me/2011/11/17/global-code-retreatt-in-manchester/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=481&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<h2>What is it?</h2>
<p>&nbsp;</p>
<p><strong>3rd December is the Global Day of Coderetreat, with events happening all over the world in almost every timezone!</strong></p>
<p>&nbsp;</p>
<p>The point of a coderetreat is to escape the confines of work and to hone the craft of software developers and engineers by trying to solve a problem together. Learning from each other and ourselves. The format is to solve Conway&#8217;s Game Of Life by rotating pairs, doing TDD, practicing good techniques but most importantly learning from each other (<a href="http://coderetreat.ning.com/profiles/blogs/how-to-run-a-coderetreat" target="_blank">http://coderetreat.ning.com/profiles/blogs/how-to-run-a-coderetreat</a>).</p>
<p>&nbsp;</p>
<h2>When is it?</h2>
<p>&nbsp;</p>
<p>December 3rd, 2011. Doors open at 08:30 (yes, in the morning!). The coding begins at 9:00am and will run until abot 5:30pm.</p>
<p>&nbsp;</p>
<h2>What to expect</h2>
<p>&nbsp;</p>
<p>FUN! At 9am we pair up and begin coding Conway&#8217;s Game of Life. Every 90 mins or so we swap pairs and  throw it away and start over. You will get an opportunity to pair with all these cool people!</p>
<p>&nbsp;</p>
<p>Lunch will be provided. <strong>(Please get in touch if you would like to sponsor lunch or the bar!)</strong></p>
<p>&nbsp;</p>
<p>Do stay after 5:30 when the retreat ends for some drinking and socialising with your new friends.</p>
<p>&nbsp;</p>
<h2>What should I bring?</h2>
<p>&nbsp;</p>
<p>Please bring a laptop (the more the merrier!) ready to roll with your favourite development environment. Please also make sure you have git installed, so that you can make use of our starter projects on github.</p>
<p>&nbsp;</p>
<p>Lunch will be provided, and there&#8217;s a bar where you can buy drinks all day.</p>
<p>&nbsp;</p>
<h2>Do I need to be a good programmer?</h2>
<p>&nbsp;</p>
<p>No. You&#8217;ll be able to find someone to pair with you in pretty much any programming language you choose. And we have ready-to-roll startup projects available in a huge variety of languages; see <a href="https://github.com/coreyhaines/coderetreat/tree/master/starting_points">https://github.com/coreyhaines/coderetreat/tree/master/starting_points</a> for details.</p>
<p>&nbsp;</p>
<h2>How can I find out more?</h2>
<p>&nbsp;</p>
<ul>
<li>The home of Coderetrreat is <a href="http://coderetreat.com/" target="_blank">http://coderetreat.com/</a></li>
<li>InfoQ has an <a href="http://www.infoq.com/news/2011/11/global_day_of_code_retreat">article about the Global Day of Coderetreat</a></li>
<li>The Ning group has a list of <a href="http://coderetreat.ning.com/events/event/listByDate?date=2011-12-03">all of the events happening on December 3rd worldwide</a></li>
<li>Keep up with Global Day new via the <strong>#gdcr11</strong> hashtag on twitter</li>
<li>Join the <a href="https://groups.google.com/forum/#!forum/xp-manchester">XP-Manchester mailing list</a></li>
<li>Keep up with XP-Manchester news via the <strong>#xpman</strong> hashtag on twitter</li>
</ul>
<p><span style="color:#000000;"><strong><br />
</strong></span></p>
<h2>Cost?</h2>
<p>FREE</p>
<h2>Sign Up:</h2>
<p><a href="http://coderetreatmanchester.eventbrite.co.uk/">http://coderetreatmanchester.eventbrite.co.uk/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancsrubygem.wordpress.com/481/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancsrubygem.wordpress.com/481/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancsrubygem.wordpress.com/481/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancsrubygem.wordpress.com/481/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancsrubygem.wordpress.com/481/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancsrubygem.wordpress.com/481/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancsrubygem.wordpress.com/481/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancsrubygem.wordpress.com/481/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancsrubygem.wordpress.com/481/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancsrubygem.wordpress.com/481/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancsrubygem.wordpress.com/481/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancsrubygem.wordpress.com/481/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancsrubygem.wordpress.com/481/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancsrubygem.wordpress.com/481/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=481&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubygem.me/2011/11/17/global-code-retreatt-in-manchester/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c7d31ed59aa49d8dd4c9fe8337ea5b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">@ruby_gem</media:title>
		</media:content>
	</item>
		<item>
		<title>Preston Codejo</title>
		<link>http://rubygem.me/2011/11/15/preston-codejo/</link>
		<comments>http://rubygem.me/2011/11/15/preston-codejo/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 12:15:03 +0000</pubDate>
		<dc:creator>@ruby_gem</dc:creator>
				<category><![CDATA[events]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://rubygem.me/?p=474</guid>
		<description><![CDATA[On the 28th November we&#8217;ll be holding the very first Preston Codejo! We plan this to be a monthly meetup where the Magma Digital office on Winckley Square in Preston tranforms into a Coding Dojo. Developers will meet to hone &#8230; <a href="http://rubygem.me/2011/11/15/preston-codejo/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=474&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On the 28th November we&#8217;ll be holding the very first <a href="http://www.eventbrite.co.uk/event/2474621660">Preston Codejo</a>! We plan this to be a monthly meetup where the Magma Digital office on Winckley Square in Preston tranforms into a Coding Dojo. Developers will meet to hone their skills by performing coding katas.</p>
<p>Katas are taken from the Japanese martial art practice of detailed choreographed patterns of movements practised either solo or in pairs. These katas are exercised at Dojos (training places) with the idea that the skills learned in the katas become second nature during a fight situation.</p>
<p>In a similar way we plan to use these katas to enhance our programming skills in the real world.</p>
<p>For the first session we&#8217;ll focus our kata on TDD by using a Randori (not the previously mentioned Rotisserie) format, solving a simple problem with Ruby.</p>
<p>What all this means is that we&#8217;re going to solve a simple problem by practising your TDD skills. Everyone will get to spend 5 minutes on the keyboard so we can all work together and hone our TDD skills as a group.</p>
<p>We&#8217;ll do this for a couple of hours then head over to Forum for a retrospective on the kata. Remember, it&#8217;s about us all learning from each other and getting better at our craft.</p>
<p><strong>No previous knowledge of Ruby required </strong>(surprisingly, I have practically none!), you&#8217;ll pick it up easily enough and we have a great bunch of good Rubyists along to help us out.</p>
<p>Get your tickets <a href="http://www.eventbrite.co.uk/event/2474621660">here</a></p>
<p><a href="http://www.eventbrite.co.uk/event/2474621660?ref=ebtn" target="_blank"><img src="http://www.eventbrite.co.uk/registerbutton?eid=2474621660" alt="Register for Inaugural Preston Codejo in Preston, Lancashire  on Eventbrite" border="0" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancsrubygem.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancsrubygem.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancsrubygem.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancsrubygem.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancsrubygem.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancsrubygem.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancsrubygem.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancsrubygem.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancsrubygem.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancsrubygem.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancsrubygem.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancsrubygem.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancsrubygem.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancsrubygem.wordpress.com/474/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=474&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubygem.me/2011/11/15/preston-codejo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c7d31ed59aa49d8dd4c9fe8337ea5b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">@ruby_gem</media:title>
		</media:content>

		<media:content url="http://www.eventbrite.co.uk/registerbutton?eid=2474621660" medium="image">
			<media:title type="html">Register for Inaugural Preston Codejo in Preston, Lancashire  on Eventbrite</media:title>
		</media:content>
	</item>
		<item>
		<title>So, you want to keep ferrets?</title>
		<link>http://rubygem.me/2011/11/14/so-you-want-to-keep-ferrets/</link>
		<comments>http://rubygem.me/2011/11/14/so-you-want-to-keep-ferrets/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 22:12:27 +0000</pubDate>
		<dc:creator>@ruby_gem</dc:creator>
				<category><![CDATA[ferrets]]></category>

		<guid isPermaLink="false">http://rubygem.me/?p=331</guid>
		<description><![CDATA[I realise that I&#8217;m turning into a stereotype here by my last post on Lancashire Cheese and now ferrets, however, recently I&#8217;ve had a few people approach me as they&#8217;re thinking about keeping ferrets and want to know how to &#8230; <a href="http://rubygem.me/2011/11/14/so-you-want-to-keep-ferrets/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=331&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I realise that I&#8217;m turning into a stereotype here by my last post on Lancashire Cheese and now ferrets, however, recently I&#8217;ve had a few people approach me as they&#8217;re thinking about keeping ferrets and want to know how to get started. I thought I could turn this into a nice blog post.</p>
<h2>Why Ferrets?</h2>
<p>They&#8217;re cute. They are absolutely hilarious. They take up very little room as they&#8217;re so small. They sleep up to 20 hours a day (when you&#8217;re at work and when you sleep) so they can be left for prolonged periods of time. They&#8217;re highly intelligent and love company. Because they sleep so much they are extremely energetic and playful when they are awake. Think a cross between kittens and puppies who never grow up. Older ferrets are still as energetic, they just sleep more. They can also be taken for &#8220;walks&#8221;, which can be a problem if you don&#8217;t like attention or want exercise. It&#8217;s more like herding cats than walking a dog. In addition ferrets are also hypo-allergenic. So if you want a furry pet but thought you were allergic, go for it!</p>
<h2>Why not to get Ferrets?</h2>
<p><a href="http://lancsrubygem.files.wordpress.com/2011/11/070.jpg"><img class="alignright size-medium wp-image-466" title="070" src="http://lancsrubygem.files.wordpress.com/2011/11/070.jpg?w=224&#038;h=300" alt="" width="224" height="300" /></a>They smell and they bite. This is the common mosconception of ferrets. And yes, both are true. Any animal that lives outside will smell more. Keep them inside and they will smell less. Muck them out, clean their bedding and bath them regularly and you can keep on top of it. In my opinion they smell less than dogs and it&#8217;s a more pleasant smell; honey musk. With the biting, yes they do nip. But again the more they&#8217;re used to being handled the less they will bite. Ferrets do have personalities and you&#8217;ll get to know their biting tendencies (it&#8217;s more about communication). For example Perl will nip faces and the inside arm. Ruby likes to bite toes, especially those she finds under blankets!</p>
<div>
<p><span class="Apple-style-span" style="color:#000000;font-size:22px;line-height:32px;">Finding Ferrets</span></p>
<p>Knowing where to go to get ferrets is a mystery wrapped in an enigma. Personally I went to my local butcher to ask where he got his. Turns out there is an animal dealer in Walmer Bridge called Len. Armed with a name I used the power of google and found him! Two ferret kits for a fiver each. Done! These were from working ferret stock, rather than pets. However this really doesn&#8217;t matter. I&#8217;d recommend looking online for your nearest ferret rescue. There are loads of them littered about the UK and they&#8217;ll always have lovely fuzzbutts needing a new home.</p>
<h2>Kits or Grown Ups</h2>
<p>I went for two kits, mainly because I didn&#8217;t know any better and also because tiny baby ferrets are incredibly cute. But, be warned. With baby ferrets comes much training. Luckily I was able to work from home when I got Ruby and Perl. I have invested a *lot* of time in training them. This involves both toilet training AND how they interact with humans. I have had huge success in the former, and mixed in the latter. I&#8217;ll go into training later. Getting an adult ferret, especially from a rescue, you&#8217;ll find is already trained and happy to be handled by humans. So unless you do have hours and hours every day to spend with your ferret, get an adult.</p>
<h2>How many ferrets?</h2>
<p>Never, ever, ever get just one ferret is my advice. They&#8217;re very sociable animals, even curling up to sleep together into one big, never ending ferrety pile. They love to play. I find that if one of mine decides they want to play with me and I&#8217;m busy (this usually involves a quick nip or a ball of fur launching itself at you) I can generally point them at the other ferret and a fight ensues. It&#8217;s also the best form of entertainment known to man. Nothing else is sure to brighten your day than watching the intricate battles between ferrets. There&#8217;s wrestling, ambushes, hiding, leaping, weasel wardancing, dooking, falling off beds and sofas mid-battle&#8230; They love it as much as the spectators. So basically with ferrets, the more the merrier, but beware! They&#8217;re not guaranteed to get on and ferrets can be very territorial. So make sure you get a pair (or more) who do get on before you bring them into your home. I&#8217;ve found Perl is very laid back and is quite happy for any ferret to come to his home, as long as he can sniff and possibly play. Ruby on the other hand gets very viscous, attacking the new ferret and actually drawing blood!</p>
<h2>Housing</h2>
<p><a href="http://lancsrubygem.files.wordpress.com/2011/11/mobile-uploads-333.jpg"><img class="alignleft size-medium wp-image-470" title="mobile uploads 333" src="http://lancsrubygem.files.wordpress.com/2011/11/mobile-uploads-333.jpg?w=225&#038;h=300" alt="" width="225" height="300" /></a>You need to ask yourself whether you&#8217;re going to keep your ferrets indoors or out. Living in a small flat in the city centre I didn&#8217;t have much choice there. If you&#8217;re going for outdoors I&#8217;d recommend a very large rabbit hutch inside a shed (or outbuilding) which you can provide heating in the very cold winter and cooling in the summer (ferrets are very susceptible to heat) . If you go for indoors I&#8217;d start off with a cage. A large cage suitable for rats or ferrets is good. If you do plan to leave the ferrets on their own for more than a day then make sure you give them plenty of room to play! Once litter trained it&#8217;s perfectly feasible to leave your fuzzbutts roaming free around the house like cats. I even know of a lady who has a few acres of land and allows her ferrets to roam free outside. They always come back to their warm beds, water and food. However I wouldn&#8217;t recommend this. In my experience ferrets have the homing instincts of a newt.</p>
<h2>Ferret proofing</h2>
<p>I&#8217;ve written a blog post on this before, but it&#8217;s the single most important part of ferret ownership. Before bringing a ferret into your home look around for any nooks, crannies, holes or escape routes your little Houdini could find. Get down on your hands and knees if you have to. Open cupboard doors, push and pull at kickboards&#8230; Seriously, these tiny monsters are clever. They will figure out a way to get to something they want; they climb, they leap, they&#8217;re pretty fearless and have a great sense of  adventure. Plants will be executed. The soil will be seen as a lovely dig box especially for fuzzles and your plants will become casualties. Cut flowers will be eaten. Glasses of liquid (water, wine, beer juice, they aren&#8217;t fussy) will be investigated, knocked over and drunk. Ornaments will be knocked not only over, but then pushed off windowsills. On the upside ferrets do not chew! SO all your wires are safe. ( : Remember they love small, dark and warm hidey holes. They will go to sleep there and you will not be able to rouse them.</p>
<p>I think that&#8217;ll do for the basics and preliminaries of anticipated ferret ownership. I&#8217;ll follow this up with tips and tricks for ferret training. Please leave comments here of any other subjects you&#8217;d like me to cover.</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancsrubygem.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancsrubygem.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancsrubygem.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancsrubygem.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancsrubygem.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancsrubygem.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancsrubygem.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancsrubygem.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancsrubygem.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancsrubygem.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancsrubygem.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancsrubygem.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancsrubygem.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancsrubygem.wordpress.com/331/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=331&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubygem.me/2011/11/14/so-you-want-to-keep-ferrets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c7d31ed59aa49d8dd4c9fe8337ea5b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">@ruby_gem</media:title>
		</media:content>

		<media:content url="http://lancsrubygem.files.wordpress.com/2011/11/070.jpg?w=224" medium="image">
			<media:title type="html">070</media:title>
		</media:content>

		<media:content url="http://lancsrubygem.files.wordpress.com/2011/11/mobile-uploads-333.jpg?w=225" medium="image">
			<media:title type="html">mobile uploads 333</media:title>
		</media:content>
	</item>
		<item>
		<title>Lancashire Cheese Scone Recipe</title>
		<link>http://rubygem.me/2011/11/05/lancashire-cheese-scone-recipe/</link>
		<comments>http://rubygem.me/2011/11/05/lancashire-cheese-scone-recipe/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 17:00:07 +0000</pubDate>
		<dc:creator>@ruby_gem</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rubygem.me/?p=436</guid>
		<description><![CDATA[Ingredients: 6oz Self Raising Flour large pinch of freshly ground sea salt and black pepper 1/2 teaspoon mustard powder 1oz margarine (room temperature) 3oz Crumbly Lancashire Cheese (crumbled) 1 medium egg 2 tablespoons milk Method: Heat oven to 180-200C Grease &#8230; <a href="http://rubygem.me/2011/11/05/lancashire-cheese-scone-recipe/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=436&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Ingredients:</strong><br />
6oz Self Raising Flour<br />
large pinch of freshly ground sea salt and black pepper<br />
1/2 teaspoon mustard powder<br />
1oz margarine (room temperature)<br />
3oz Crumbly Lancashire Cheese (crumbled)<br />
1 medium egg<br />
2 tablespoons milk</p>
<p><strong>Method:</strong><br />
Heat oven to 180-200C<br />
Grease baking tray or silicone sheet<br />
Mix flour and seasoning<br />
Rub margarine into flour (cold, dry finger tips to created fine breadcumbs)<br />
Stir in cheese<br />
Slowly add the egg and milk, mixing to a soft, but dry dough. Reserve some for glazing.<br />
Divide into 6 balls onto greased trays, flatten slightly with hands<br />
Glaze with egg and milk<br />
Bake for 10-15 mins until golden brown.</p>
<p>Serve warm, cut in half and spread with butter. NOM</p>
<p><img class="alignnone" title="Lancashire Cheese Scones" src="http://p.twimg.com/Adf1Y9cCEAAN1W5.jpg" alt="" width="600" height="448" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancsrubygem.wordpress.com/436/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancsrubygem.wordpress.com/436/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancsrubygem.wordpress.com/436/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancsrubygem.wordpress.com/436/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancsrubygem.wordpress.com/436/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancsrubygem.wordpress.com/436/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancsrubygem.wordpress.com/436/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancsrubygem.wordpress.com/436/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancsrubygem.wordpress.com/436/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancsrubygem.wordpress.com/436/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancsrubygem.wordpress.com/436/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancsrubygem.wordpress.com/436/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancsrubygem.wordpress.com/436/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancsrubygem.wordpress.com/436/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=436&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubygem.me/2011/11/05/lancashire-cheese-scone-recipe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c7d31ed59aa49d8dd4c9fe8337ea5b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">@ruby_gem</media:title>
		</media:content>

		<media:content url="http://p.twimg.com/Adf1Y9cCEAAN1W5.jpg" medium="image">
			<media:title type="html">Lancashire Cheese Scones</media:title>
		</media:content>
	</item>
		<item>
		<title>Barcamp Blackpool</title>
		<link>http://rubygem.me/2011/10/25/barcamp-blackpool-2/</link>
		<comments>http://rubygem.me/2011/10/25/barcamp-blackpool-2/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 18:43:02 +0000</pubDate>
		<dc:creator>@ruby_gem</dc:creator>
				<category><![CDATA[events]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://rubygem.me/?p=434</guid>
		<description><![CDATA[On 15th October we held the third barcamp in Blackpool at the Pleasure Beach. It. Was. Epic!!!! I say we this year, as for the first time I had help! @biglesp was the man behind the scenes this year. He &#8230; <a href="http://rubygem.me/2011/10/25/barcamp-blackpool-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=434&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On 15th October we held the third barcamp in Blackpool at the Pleasure Beach. It. Was. Epic!!!!</p>
<p>I say we this year, as for the first time I had help! @biglesp was the man behind the scenes this year. He basically sorted the whole thing out. Sponsors, swag, equipment, promotion&#8230; Everything. This year I was just the loud voice on t&#8217;internet and at the venue. So massive thanks Les, you made it possible, even whilst I was on holiday/relocating/starting a new job all the two weeks before the event!!!</p>
<p>We had a fab turnout, around 140 attendees! The content was eclectic, with everything from &#8220;The History of Error Messages&#8221;, to &#8220;8 Bit Hama Bead Nintendo characters&#8221; to IT in education.</p>
<p>I love Barcamp Blackpool for many reasons:</p>
<p>The venue is gorgeous. The staff are friendly, helpful and can&#8217;t do enough to help. They make great food, the dividers turn a huge space into three soundproof rooms, the booths at the back make a great chillout spot. The theme in the Paradise Room is pink with pretty blue lights and it transforms in the evening into something quite special (integrated bar AND stage).</p>
<p>The people are very special to me. #bcblackpool has a very firm following. It&#8217;s Lancashire&#8217;s only barcamp, and us Lancastrians are very proud of it. People make a barcamp. The talks, the conversation, the afterparty, the connections, the ideas and knowledge share&#8230; So thank you for loving #bcblackpool as much as I do and for coming back year on year with more and more of your friends. Word of mouth is the best way for this event to continue to grow and become even more awesome.</p>
<p>The location is quite unique. There is no where quite like Blackpool. Being able to stay in a B&amp;B for pocket money (£15 pppn inc. breakfast in some places!), go out on the friday night for cheap drinks in mind blowing pubs and clubs, saturday of barcamp at the world famous Pleasure Beach (you can see the Big One out of the window!) and Sunday to spend in Blackpool however you feel. Some people go on the rides (with a hangover!), others go for a photo walk or bike ride along the Golden Mile (Blackpool have spent a lot of money doing up the promenade and it really shows!) or just wander around the fabulously quirky, tacky and sometimes even god-awful shops and attractions along the pier.</p>
<p>I can enjoy myself! As the organiser you&#8217;d expect me to be running around like a headless chicken, those who know me know how much of a flapper I can be! But at Blackpool I can relax. I know the venue staff will make everything perfect, all the attendees are regulars and eager to help in any way they can, so all I have to do is enjoy myself! Everyone pulls together from creating the boards, to setting up the projectors, to repositioning the rooms and sorting out the evening entertainment. So I get to go along to talks that interest me, enjoy the evening party, socialise, catch up with old friends and enjoy the day as much as everyone else.</p>
<p>So thank you once again to the sponsors:</p>
<ul>
<li><a href="http://testled.com/">Testled </a>for your continued support in both the way of money, the world famous barcamp blackpool rock, being there and fabulous!</li>
<li><a href="http://www.h-online.com/">The H</a> for being another main sponsor and sending the lovely Chris along. People, you need to use this place for reading the latest Open Source and Hacker news!</li>
<li><a href="http://www.indigoclothing.com/t-shirt-printing/">Indigo</a> for the gorgeous t-shirts</li>
<li><a href="http://www.microsoft.com/en-us/openness/default.aspx">Microsoft Openeness</a> for being awesome.</li>
<li><a href="http://www.magmadigital.co.uk/">Magma Digital</a> for their continued support. Every year they help us out with projectors, the website and hosting, and this year we were given not only money for lunch, but also the awesome swag (the screen/spectacle cleaners were inspired!</li>
<li><a href="http://www.ftpconcepts.com/">FTP Concepts</a>, <a href="http://sugru.com/">Sugru</a>, <a href="http://magicmissile.co.uk/">Magic Missile</a>, <a href="http://www.jmc-website-design.co.uk">JMC Website Design</a>, <a href="http://tweetdig.com/">Tweetdig</a>, <a href="http://neterix.com/">Neterix</a>, <a href="http://mediaburst.co.uk/">MediaBurst</a>, <a href="http://ourlearning.co.uk/">Our Learning</a>, <a href="http://www.fycreatives.com/">FYCreatives </a>and the <a href="http://www.enterprisefreelancefair.co.uk/">Brooklyn Enterprise Fair</a>.
</li>
<li><a href="http://clicknmix.co.uk/">Click &#8216;n&#8217; Mix</a> for their last minute monies behind the bar!!!! Go buy sweeties now.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancsrubygem.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancsrubygem.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancsrubygem.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancsrubygem.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancsrubygem.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancsrubygem.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancsrubygem.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancsrubygem.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancsrubygem.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancsrubygem.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancsrubygem.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancsrubygem.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancsrubygem.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancsrubygem.wordpress.com/434/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubygem.me&amp;blog=12300110&amp;post=434&amp;subd=lancsrubygem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubygem.me/2011/10/25/barcamp-blackpool-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c7d31ed59aa49d8dd4c9fe8337ea5b6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">@ruby_gem</media:title>
		</media:content>
	</item>
	</channel>
</rss>
