<?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"
	>

<channel>
	<title>Steven@greenius's personal blog</title>
	<atom:link href="http://www.greenius.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.greenius.org/blog</link>
	<description>Stuff about software development and brewing beer (not at the same time).</description>
	<pubDate>Mon, 15 Sep 2008 21:29:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Hop Harvesting, European Beer Festival</title>
		<link>http://www.greenius.org/blog/2008/09/15/hop-harvesting-european-beer-festival/</link>
		<comments>http://www.greenius.org/blog/2008/09/15/hop-harvesting-european-beer-festival/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 21:25:24 +0000</pubDate>
		<dc:creator>greenius</dc:creator>
		
		<category><![CDATA[Craft Brewing]]></category>

		<category><![CDATA[hops]]></category>

		<category><![CDATA[pubs]]></category>

		<category><![CDATA[beer]]></category>

		<category><![CDATA[camra]]></category>

		<category><![CDATA[gardening]]></category>

		<guid isPermaLink="false">http://www.greenius.org/blog/?p=25</guid>
		<description><![CDATA[I have just made a blog post on the Oxford Brewer&#8217;s Group blog about hop harvesting 
Also, at the weekend I was in Copenhagen visiting the European Beer Festival.  This was an amazing event with lots of interesting things.  Expect some blog entries from me about this over the next few days.
And thirdly&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>I have just made a blog post on the <a href="http://www.oxfordbrewers.com/blog/">Oxford Brewer&#8217;s Group blog</a> about <a href="http://www.oxfordbrewers.com/blog/?p=39">hop harvesting</a> </p>
<p>Also, at the weekend I was in Copenhagen visiting the <a href="http://www.beerfestival.dk/?id=3800">European Beer Festival</a>.  This was an amazing event with lots of interesting things.  Expect some blog entries from me about this over the next few days.</p>
<p>And thirdly&#8230; last week we released the Camra Good Beer Guide 2009 mobile edition to coincide with the launch of the book.  You can find more information about this on the <a href="http://www.camra.org.uk/page.aspx?o=285185">Camra web site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenius.org/blog/2008/09/15/hop-harvesting-european-beer-festival/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wifi with Gentoo Linux on Acer TravelMate 7510</title>
		<link>http://www.greenius.org/blog/2008/05/11/wifi-with-gentoo-linux-on-acer-travelmate-7510/</link>
		<comments>http://www.greenius.org/blog/2008/05/11/wifi-with-gentoo-linux-on-acer-travelmate-7510/#comments</comments>
		<pubDate>Sun, 11 May 2008 00:53:05 +0000</pubDate>
		<dc:creator>greenius</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://www.greenius.org/blog/2008/05/11/wifi-with-gentoo-linux-on-acer-travelmate-7510/</guid>
		<description><![CDATA[I just spent ages fixing a problem when I upgraded the kernel to version 2.6.24
To get wifi working on this laptop I use the following packages:

acer_acpi : Provides access to the special keys, one of which turns wifi on or off.
madwifi-ng : The kernel driver for the wifi network hardware.

With the previous version of kernel [...]]]></description>
			<content:encoded><![CDATA[<p>I just spent ages fixing a problem when I upgraded the kernel to version 2.6.24</p>
<p>To get wifi working on this laptop I use the following packages:</p>
<ul>
<li>acer_acpi : Provides access to the special keys, one of which turns wifi on or off.</li>
<li>madwifi-ng : The kernel driver for the wifi network hardware.</li>
</ul>
<p>With the previous version of kernel 2.6.23 this was working fine, apart from the wifi light switched off during the boot, but if I pressed it at the right time, it would all work fine.</p>
<p>With 2.6.24 several problems occured:</p>
<p><span id="more-23"></span>Firstly, the gentoo stable madwifi-ng and acer_acpi packages no longer compiled.   After some false starts, I found the easiest way to get around this was to use the unstable versions.   This is not so drastic as it sounds.  One of the problems with gentoo is that less used packages take a long time for new versions to get into gentoo as masked or unstable and even longer to move from unstable to stable.  As a result stable versions are often very old, and even the unstable can be several versions behind the author&#8217;s stable version.   In this case, I found that acer_acpi has gone through a lot of versions.  The latest stable in gentoo was 0.5, but the latest unstable is 0.10.   The actual latest stable version at <a href="http://code.google.com/p/aceracpi/">code.google.com/p/aceracpi/</a> is 0.11.2.   However I didn&#8217;t feel in the mood to make my own portage overlay ebuild or build from source and lose the advantage of gentoos package management, so stuck with 0.10</p>
<p>Secondly, The madwifi-ng module (ath_pci) started giving errors during startup something like:</p>
<blockquote><p>wifi%d: unable to attach hardware: &#8216;Hardware revision not supported&#8217; (HAL status 13)</p>
</blockquote>
<p>After a lot of googling and documentation reading, I found it does this if ath_pci is loaded whilst the wifi is disabled.   It is enabled by pressing the wifi button, or can be done automatically with:</p>
<blockquote><p>echo 1 &gt; /sys/devices/platform/acer_acpi/wireless</p>
</blockquote>
<p>However the new version of the kernel was automatically loading both acer_acpi and ath_pci automatically (from udev?) with no opportunity for me to run any scripts in between.     So all the examples and tips I had read about the above echo command were useless.  I wasted a lot of time trying to do things like &#8216;rmmod ath_pci; modprobe ath_pci&#8217; in various config files and scripts, but it was all messy and didn&#8217;t work.</p>
<p>Finally I found a very simple solution&#8230; acer_acpi takes parameters during a modprobe such that</p>
<blockquote><p>modprobe acer_acpi wireless=1</p>
</blockquote>
<p>will automatically turn the wifi on while the module is loaded.</p>
<p>Unfortunately  this was not the complete answer as udev was loading the modules before anything else, even the modules in /etc/modules.autoload/kernel-2.6 were being read afterwards.</p>
<p>Reading more about modprobe, I found the solution to all my problems was simply to create a file  /etc/modprobe.d/acer_acpi containing:</p>
<blockquote>
<pre>options acer_acpi wireless=1</pre>
</blockquote>
<p>Then run:</p>
<blockquote>
<pre>update-modules</pre>
</blockquote>
<p>Now my machine boots up perfectly starting up the wifi without any intervention from me.</p>
<p>By the way, here is another tip, for if you want it to use ethernet when a cable is connected (because it is faster), and wifi when available is to emerge ethtool and add the following into /etc/conf.d/net</p>
<blockquote><p> preup() {<br />
# Test for link on the interface prior to bringing it up.  This<br />
# only works on some network adapters and requires the ethtool<br />
# package to be installed.<br />
if ethtool &#8220;${IFACE}&#8221; | grep -q &#8216;Link detected: no&#8217;; then<br />
ewarn &#8220;No link on ${IFACE}, aborting configuration&#8221;<br />
return 1<br />
fi</p>
<p># Remember to return 0 on success<br />
return 0<br />
}</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.greenius.org/blog/2008/05/11/wifi-with-gentoo-linux-on-acer-travelmate-7510/feed/</wfw:commentRss>
		</item>
		<item>
		<title>This blog</title>
		<link>http://www.greenius.org/blog/2008/04/29/this-blog/</link>
		<comments>http://www.greenius.org/blog/2008/04/29/this-blog/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 07:45:19 +0000</pubDate>
		<dc:creator>greenius</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.greenius.org/blog/2008/04/29/this-blog/</guid>
		<description><![CDATA[This blog is not really working as I had planned&#8230; I had expected to post mostly technical stuff about software development, but it has actually turned out to be mostly about brewing and pubs.   Now that this is also syndicated on my company&#8217;s web site I plan to split the blog into two. [...]]]></description>
			<content:encoded><![CDATA[<p>This blog is not really working as I had planned&#8230; I had expected to post mostly technical stuff about software development, but it has actually turned out to be mostly about brewing and pubs.   Now that this is also syndicated on my <a href="http://www.greenius.ltd.uk/blogs">company&#8217;s web site </a>I plan to split the blog into two.  One for personal hobbies such as craft brewing, and another for more technical stuff.    I&#8217;ll post a small item with URLs for each blog on here when I&#8217;ve sorted it out</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenius.org/blog/2008/04/29/this-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pubs closing down&#8230; do they want customers???</title>
		<link>http://www.greenius.org/blog/2008/01/04/pubs-closing-down-do-they-want-customers/</link>
		<comments>http://www.greenius.org/blog/2008/01/04/pubs-closing-down-do-they-want-customers/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 12:14:46 +0000</pubDate>
		<dc:creator>greenius</dc:creator>
		
		<category><![CDATA[Alcohol]]></category>

		<category><![CDATA[pubs]]></category>

		<guid isPermaLink="false">http://www.greenius.org/blog/2008/01/04/pubs-closing-down-do-they-want-customers/</guid>
		<description><![CDATA[The Oxford mail had a report the other day about how pubs are losing business because of the smoking ban.  In particular the landlord of the Plough in Abingdon says he is closing down because he has lost over 50% of his trade since the ban.  However some other pubs are reporting an [...]]]></description>
			<content:encoded><![CDATA[<p>The Oxford mail had a report the other day about how pubs are losing business because of the smoking ban.  In particular the landlord of the Plough in Abingdon says he is closing down because he has lost over 50% of his trade since the ban.  However some other pubs are reporting an increase in trade.   I admit I rarely go the Plough because there is no good reason for me to do so.  It serves only one real ale (Greene King IPA) and does nothing to differentiate itself from other pubs.  It still has the look and feel of a local boozer.</p>
<p>I like pubs where I can take my children and hang out for a few hours in the afternoon drinking real ale in a friendly environment and possibly enjoy some snacks or food.</p>
<p>So it comes as a bit of a surprise to read today on the <a href="http://news.bbc.co.uk/1/hi/uk/7170939.stm">BBC news website</a> that Wetherspoons are discouraging children from their pubs by only allowing people to have two drinks in a pub if accompanied by children.  Also see <a href="http://stonch.blogspot.com/2008/01/family-time-is-over-kids.html">Stonch&#8217;s beer blog</a> for more on this and <a href="http://newsforums.bbc.co.uk/nol/thread.jspa?messageID=3989647&amp;edition=1&amp;ttl=20080104151849&amp;start=180&amp;#3989647">my comment on BBC Have Your Say</a>.   I will be avoiding Wetherspoons pubs from now on even though they are generally good for real ales.</p>
<p>Another thing that annoys me is how difficult it is to get any food in town centre pubs at certain times of day, especially in the evenings.</p>
<p>The pub should be a social place where the whole family is welcome during the daytime.  That is the only way you will get more middle class non-smokers to spend more time there and spend more money.   If pubs continue to behave like they did before the smoking ban, discourage children and not have any real ale (preferably from local breweries) and not serve affordable bar food throughout the day, then of course they will lose customers.</p>
<p>Another thing I don&#8217;t understand is why pubs don&#8217;t have a more varied selection of bottled beers.  It is fair enough that the cellars can only handle a limited number of draft beers, but bottles can be easily purchased and put in the cabinets behind the bar.  Instead the only beers you normally see in pubs are just bottled versions of the same mass produced lagers that you get everywhere.   Even when you see some Belgium beers they are normally the same readily available ones such as Leffe and Duvel, and you hardly ever see anything unusual such as a seasonal porter or selection of beers from local breweries.</p>
<p>If pubs do not go out of their way to encourage new customers, make them welcome and provide something you can&#8217;t get at home, then you can not expect new customers to magically appear.   When you can buy a better selection of bottled beers in the supermarket  and sit at home with friends then why go out to a pub that makes you feel unwelcome, only serves one beer, plays annoying music, fills every wall with TV screens showing football and makes you feel like a nuisance if you try to order food.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenius.org/blog/2008/01/04/pubs-closing-down-do-they-want-customers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Good Customer Service : Punch Bowl and Brewery Tap, Abingdon</title>
		<link>http://www.greenius.org/blog/2007/12/24/good-customer-service-punch-bowl-and-brewery-tap-abingdon/</link>
		<comments>http://www.greenius.org/blog/2007/12/24/good-customer-service-punch-bowl-and-brewery-tap-abingdon/#comments</comments>
		<pubDate>Mon, 24 Dec 2007 12:32:12 +0000</pubDate>
		<dc:creator>greenius</dc:creator>
		
		<category><![CDATA[Alcohol]]></category>

		<category><![CDATA[pubs]]></category>

		<guid isPermaLink="false">http://www.greenius.org/blog/2007/12/24/good-customer-service-punch-bowl-and-brewery-tap-abingdon/</guid>
		<description><![CDATA[As a contrast to a previous posting which has since been removed about the poor service we received in an Abingdon pub, I thought I&#8217;d balance it with praise for some good customer service we received in various Abingdon pubs on the same day.
The Punch Bowl staff and landlady were friendly and welcoming as usual. [...]]]></description>
			<content:encoded><![CDATA[<p>As a contrast to a previous posting which has since been removed about the poor service we received in an Abingdon pub, I thought I&#8217;d balance it with praise for some good customer service we received in various Abingdon pubs on the same day.</p>
<p>The Punch Bowl staff and landlady were friendly and welcoming as usual.    In addition they offered free turkey and cranberry rolls, and warm mince pies to all the customers.  The Morland Original I drank was in good condition and well served.</p>
<p>The Anchor was next&#8230; we were greeted in a friendly manner.   Even though this is also a Green King pub, they try to have a good selection of the guest beers that Green King supply.   We chose the Abbot Reserve, which being rather strong we only drank halves.  I remembered this beer from the Anchor Beer Festival a couple of months ago and was eager to try it again and I was not disappointed.</p>
<p>The Brewery Tap near the entrance to where the old Morland brewery used to be before it was converted into flats is also a Green King pub.  But similar to the Anchor they always have a good selection of GK guest beers.   We ordered the Hardy and Hansons bitter which I have enjoyed there many times before.   For some reason after the first sip, we did not enjoy the taste and thought it was a bit sour and must have gone off (bottom of the barrel?).  We mentioned this to the barman, who called over the manager.   The manager tried some himself and assured us that nothing was wrong with it.   As we took some more mouthfuls, it started to taste better.   I think that what happened was that our palettes were conditioned from the Abbot Reserve we had recently drank making the H&amp;H fruity hops taste more pronounced.  This is excellent customer service because even though we were wrong about the beer being off, we were treated with respect and offered replacements (which we declined as we realised that the H&amp;H was actually all right).  Generally the Brewery Tap always have their beers in excellent condition and served at the right temperature.</p>
<p>Finally we went to the Stocks Bar at the Crown and Thistle.   Normally they have four real ales available including Wychwood and Brakspear beers, but unfortunately they only had one beer on that day.  The bar maid gave a good explanation as to why this was.   The one beer that was available was Old Peculiar, which we enjoyed a couple of pints of.  The only problem is that the beer is served a bit too cold (though I have heard rumours that the cellars are being modified to remedy this soon).  This is not a big problem.. just let it warm up a bit in your glass before drinking it.   We were served our beer in handled glasses.  Even though they were quite difficult for the bar maid to reach, she was cheerful and friendly.  It is details like this that make good customer service.</p>
<p>So top marks to all of these four pubs.  My Danish companions were very happy and impressed with the English pubs and beer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenius.org/blog/2007/12/24/good-customer-service-punch-bowl-and-brewery-tap-abingdon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Host names and Beer&#8230;</title>
		<link>http://www.greenius.org/blog/2007/10/20/host-names-and-beer/</link>
		<comments>http://www.greenius.org/blog/2007/10/20/host-names-and-beer/#comments</comments>
		<pubDate>Sat, 20 Oct 2007 08:46:36 +0000</pubDate>
		<dc:creator>greenius</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.greenius.org/blog/2007/10/20/host-names-and-beer/</guid>
		<description><![CDATA[We have now put our mobile Good Pub Guide into beta testing.  If you want to try it then text the word GOODPUB to 87080 which will take you to the download site where you can obtain the java application for your phone.  During beta testing it is free to use apart from [...]]]></description>
			<content:encoded><![CDATA[<p>We have now put our <a href="http://www.nearme.eu/" title="Mobile Good Pub Guide">mobile Good Pub Guide</a> into beta testing.  If you want to try it then text the word GOODPUB to 87080 which will take you to the download site where you can obtain the java application for your phone.  During beta testing it is free to use apart from your data transfer costs through your operator which should be fairly small compared to using web sites.  This works on all major UK operators and on most handsets from the last few years (requires MIDP2 java ).  By texting in you are agreeing that we can use your network operator to locate where you are so that we can search for pubs near you.  The application shows details from the<a href="http://www.goodguides.co.uk/" title="Good Pub Guide 2008"> Good Pub Guide 2008</a> as well as maps.</p>
<p><span id="more-16"></span>Anyway&#8230; on to the point of this post.  While scanning the logs I noticed that someone at O2 likes their beer&#8230; the server names of their mobile phone network seem to be named after breweries.   Although it is the major multi-national breweries so whoever named them is probably not a real ale drinker.</p>
<p>Here are the names of some of the O2 hosts from 193.113.200.0/255</p>
<p>heineken.london.02.net.<br />
guinness-eri0-2.london.02.net.<br />
murphys-eri0-2.london.02.net.<br />
beamish-eri0-2.london.02.net.<br />
caffreys-eri0-2.london.02.net.<br />
radius-vip.london.02.net.<br />
alaskan-eri0-2.london.02.net.<br />
ushers-eri0-2.london.02.net.<br />
emu-eri0-2.london.02.net.<br />
skunk-eri0-2.london.02.net.<br />
heineken-bge0-1.london.02.net.<br />
gmi-mis-db1.london.02.net.<br />
gmi-mis-p2.london.02.net.<br />
heineken-bge0-2.london.02.net.<br />
tetley.london.02.net.<br />
tetley-ce0-1.london.02.net.<br />
tetley-ce0-2.london.02.net.<br />
heineken-bge0-3.london.02.net.<br />
carlsberg.london.02.net.<br />
alaskan.london.02.net.<br />
ushers.london.02.net.<br />
carlsberg-bge0-1.london.02.net.<br />
tunji.london.02.net.<br />
carlsberg-bge0-2.london.02.net.<br />
carlsberg-bge0-3.london.02.net.<br />
ralph.london.02.net.<br />
dave.london.02.net.<br />
guinness.london.02.net.<br />
kronenbourg.london.02.net.<br />
murphys.london.02.net.<br />
spitfire.london.02.net.<br />
spitfire-ce0-1.london.02.net.<br />
spitfire-ce0-2.london.02.net.<br />
bengal-fmagcgi310.london.02.net.<br />
guinness-eri0-1.london.02.net.<br />
murphys-eri0-1.london.02.net.<br />
beamish-eri0-1.london.02.net.<br />
gmi-mis-db2-0.london.02.net.<br />
caffreys-eri0-1.london.02.net.<br />
register.genie.co.uk.<br />
murphys-eri0-3.london.02.net.<br />
beamish-eri0-3.london.02.net.<br />
caffreys-eri0-3.london.02.net.<br />
alaskan-eri0-1.london.02.net.<br />
ushers-eri0-1.london.02.net.<br />
uma-bkp.london.02.net.<br />
watergate.genie.co.uk.<br />
kronenbourg-bge0-1.london.02.net.<br />
dns0.02.net.<br />
dns1.02.net.<br />
beamish.london.02.net.<br />
caffreys.london.02.net.<br />
emu-eri0-1.london.02.net.<br />
arsenic-2.london.02.net.<br />
kilkenny.london.02.net.<br />
alaskan-eri0-3.london.02.net.<br />
ushers-eri0-3.london.02.net.<br />
skunk-eri0-3.london.02.net.<br />
emu-eri0-3.london.02.net.<br />
emu.london.02.net.<br />
skunk.london.02.net.<br />
skunk-eri0-1.london.02.net.<br />
bass.london.02.net.<br />
bass-ce0-1.london.02.net.<br />
bass-ce0-2.london.02.net.<br />
kronenbourg-bge0-2.london.02.net.<br />
kronenbourg-bge0-3.london.02.net.<br />
stella.london.02.net.<br />
courage.london.02.net.<br />
courage-ce0-1.london.02.net.<br />
courage-ce0-2.london.02.net.<br />
stella-bge0-1.london.02.net.<br />
stella-bge0-2.london.02.net.<br />
stella-bge0-3.london.02.net.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenius.org/blog/2007/10/20/host-names-and-beer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cider Making - Strange gravity</title>
		<link>http://www.greenius.org/blog/2007/10/07/cider-making-strange-gravity/</link>
		<comments>http://www.greenius.org/blog/2007/10/07/cider-making-strange-gravity/#comments</comments>
		<pubDate>Sun, 07 Oct 2007 21:41:54 +0000</pubDate>
		<dc:creator>greenius</dc:creator>
		
		<category><![CDATA[Alcohol]]></category>

		<category><![CDATA[Craft Brewing]]></category>

		<category><![CDATA[beer recipe]]></category>

		<category><![CDATA[brew log]]></category>

		<guid isPermaLink="false">http://www.greenius.org/blog/2007/10/07/cider-making-strange-gravity/</guid>
		<description><![CDATA[I am making some cider at the moment.   I have approximately 10 gallons (50 litres) brewing away.  The juice was part of a bulk order from the nearby Millets farm which was split amongst members of our Oxford Brewing Group.
There is no recipe to speak of&#8230; basically I made some dried wine [...]]]></description>
			<content:encoded><![CDATA[<p>I am making some cider at the moment.   I have approximately 10 gallons (50 litres) brewing away.  The juice was part of a bulk order from the nearby <a href="http://www.milletsfarmcentre.com/" title="Millets Farm">Millets farm</a> which was split amongst members of our <a href="http://www.oxfordbrewers.com/" title="Oxford Brewing Group">Oxford Brewing Group</a>.</p>
<p>There is no recipe to speak of&#8230; basically I made some dried wine yeast (10 teaspoons) into a starter with a little brown sugar boiled in water and cooled.   Pitched it into the apple juice in the containers I collected the juice in (food grade 5 gallon plastic).   The next day it was fermenting out of the top and all over the floor&#8230; so I took it outside for a few days until it had calmed down.</p>
<p><span id="more-15"></span>Today (about three weeks after it started), I transferred one of the containers into a Hambleton Bard plastic pressure barrel.   While I was at it, I measured the brix reading.   According to my calculations this gave it a final gravity of 0.996, which is less than 1.   I thought that was impossible.  Water has a reading of 1.0000.   So I also measured it with my hydrometer and came up with the same answer.   I then tested my hydrometer in water and that measured 1 as expected.</p>
<p>If this is correct then this would mean all the sugar has been fermented out, and it would have an alcohol by volume of  9%.   Tasting it, it still has a lot of sweetness, and it has not finished fermenting (gas was still being produced in the fermenter).</p>
<p>How can it possibly have a gravity of less than one, and still taste sweet and be fermenting?</p>
<p>It tastes quite nice.. a bit of sweetness, but also that real cider bite to it.  It doesn&#8217;t have a lot of that sulphor smell and taste that cider often has when it is young.  Last year it took several months to become drinkable.</p>
<p>Maybe someone else wants to check my calculations:</p>
<p>Original Brix was 16.2%, which equates to about 1067 gravity.  Other members of the brew group got similar readings.</p>
<p>Brix today is 5.7%, and a hydrometer reading is 0.996.</p>
<p>This gives me an abw of 7.3% and abv of 9.1%.</p>
<p>There must be some other explanation for both the refractometer and hydrometer readings to come back with such a silly value.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenius.org/blog/2007/10/07/cider-making-strange-gravity/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Selling my car and scammers.</title>
		<link>http://www.greenius.org/blog/2007/09/11/selling-my-car-and-scammers/</link>
		<comments>http://www.greenius.org/blog/2007/09/11/selling-my-car-and-scammers/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 14:48:25 +0000</pubDate>
		<dc:creator>greenius</dc:creator>
		
		<category><![CDATA[scams]]></category>

		<guid isPermaLink="false">http://www.greenius.org/blog/2007/09/11/selling-my-car-and-scammers/</guid>
		<description><![CDATA[I recently got a new (used) car (Vauxhall Zafira) and now am trying to sell my old one (Nissan Primera, 2.0 SLX).   The new car is much bigger than the old one and more suitable for transporting the children around with a lot of luggage space and the potential for up to 7 [...]]]></description>
			<content:encoded><![CDATA[<p>I recently got a new (used) car (Vauxhall Zafira) and now am trying to sell my old one (Nissan Primera, 2.0 SLX).   The new car is much bigger than the old one and more suitable for transporting the children around with a lot of luggage space and the potential for up to 7 people in the vehicle.</p>
<p><span id="more-14"></span>There is an advert on <a href="http://atsearch.autotrader.co.uk/www/CARS_popup.jsp?&amp;id=200737294495228">autotrader</a> but so far have not had any sensible replies.</p>
<p>Within a few hours of the advert going online, I received an email that read:</p>
<blockquote><p>Hello ,</p>
<p>I saw the advert of your listed Car on theAutoTrader webpage when looking across for a good Car for my kid and i felt i should ask if you still have it for sale cos i pick interest in it..If you do have it,pls do let me know the present working condition of the Car,also the lask amount you would want for the Car</p>
<p>Do note that i want this to be a very quick sale as i have to move from UK to a new base now,but would like to complete the Deal on or before then..</p>
<p>So get back to me ASAP and let us get on..</p>
<p>Thanks</p></blockquote>
<p>This looked a bit suspicious because</p>
<ul>
<li>Very poor English spelling and grammar.</li>
<li>Nothing specific in the email relating to the particular car I am selling.</li>
<li>Reason for a quick sale seemed suspicious.</li>
</ul>
<p>I looked at the email headers and noted:</p>
<p><code>Received: from [41.204.224.5] by web27513.mail.ukl.yahoo.com via HTTP; Mon, 10 Sep 2007 20:21:34 BS</code></p>
<p>whois 41.204.224.5 showed it to be an IP address in Nigeria.   Needless to say, I did not follow this up.</p>
<p>A few hours later, another email&#8230;</p>
<blockquote><p>Hello seller,<br />
I saw your advert while surfing via the internet and<br />
am willing and interested to buy your NISSAN car.<br />
Get back to me via my email if the NISSAN  car is still<br />
available for sale.<br />
Are you the owner???<br />
State its condition. send its recent pictures if available.<br />
What is your last offer????<br />
You can also ring me on my mobile: +447024076129<br />
I look forward to read from you about the NISSAN car<br />
soonest.</p>
<p>Best Regards</p></blockquote>
<p>All the same signs as the previous one&#8230; poor English, no specific information apart from the insertion of NISSAN into what is presumably a template.   A real buyer would be wanting to know when they could come and see it and take it for a test drive and be asking more specific questions about the car.  A whois of the originating IP address was an American ISP.. also not promising for someone buying a car in England!   So I have ignored this also and assume it is also a scam.</p>
<p>A search around google found several sites of car buying scams.  I think the basic mechanism is that they will say that they need the car quickly and then send you some money, but will send too much and want some of it back.  After they receive the money back it will be found that the original transaction was illegal and the bank will take all the money back.  I am not sure if they also have a way to get the car as well leaving you out of pocket and without a car (but probably not if the scammers are in places like Nigeria).</p>
<p>I&#8217;ll add more scammer examples as I receive them.  Luckily I have used a specific email address for this advert so I can set it up to automatically junk things once the car is sold.</p>
<p>Yet another one&#8230;</p>
<blockquote><p><font face="Comic Sans MS" size="3">Hello,<br />
Am  Thomas from ireland who came acoss your advert ,and who will really like to know if your Car is for sale and the condition of the Car if is in a good condition..And also i will like you to get back to me with the last offer of the the items&#8230;&#8230;&#8230;&#8230;&#8230;<br />
Best Regards&#8230;&#8230;&#8230;<br />
Thomas&#8230;&#8230;&#8230;&#8230;&#8230;.</font></p></blockquote>
<p>Why would someone in Ireland be interested in a car in Oxfordshire?  Again, lacking any specific information about the car and featuring poor use of the English language.  The whois showed the IP address as belonging to Eurosat, so it is feasible that the sender is in Ireland.</p>
<p>And yet another&#8230; this is from somewhere in Africa:</p>
<blockquote><p><strong><font color="#0000ff" face="comic sans ms">Good Day,</font></strong></p>
<p><strong><font color="#0000ff" face="comic sans ms">How are you and your family today, Meanwhile, I saw your advert on the web for sale. and i will like you to get back to me with the following enquries.</font></strong></p>
<p><strong><font color="#0000ff" face="comic sans ms">&#8212;- The last asking price ?</font></strong></p>
<p><strong><font color="#0000ff" face="comic sans ms">&#8212;- The present condition,including the last asking price ?</font></strong></p>
<p><strong><font color="#0000ff" face="comic sans ms">&#8212;- If any picture is available mail it to me soonest.<br />
</font></strong></p>
<p><strong><font color="#0000ff" face="comic sans ms">Let me know if the car have any problem I will be looking forward to hear from you soonest</font></strong></p>
<p><strong><font color="#0000ff" face="comic sans ms">Regards<br />
</font></strong></p>
<p><strong><font color="#0000ff" face="comic sans ms">lucas mcnamara</font></strong></p></blockquote>
<p>Incidently, all of the emails have come from yahoo.com addresses and sent by webmail.</p>
<p>I&#8217;m still waiting to get a single genuine enquiry&#8230;</p>
<p>And another&#8230;</p>
<blockquote><p>GOODDAY TO YOU, I AM MAILING TO SHOW MY INTEREST IN YOUR:</p>
<p>YOU HAVE FOR SALE, SO LET ME HAVE SOME PICTURES OFIT BECAUSE I WILL NOT BE ABLE TO COME AND TAKE A LOOK AT IT AS AM A BUSY MAN BUT BE HONEST WITH THE PRESENT CONDITION OFIT WHEN GIVING ME DESCRIPTION. I WILL BE PAYING YOUWITH A CHEQUE AND I WILL WAIT TILL THE CHEQUE CLEARSPRIOR COLLECTION. SO GET BACK TO ME WITH THE DETAILS AS BELOW:</p>
<p>1. NAME THAT WILL BE ON CHEQUE :<br />
2. FULL ADDRESS THAT THE CHEQUE WILL BE SEND TO :<br />
3. YOUR CONTACT PHONE NUMBERS :<br />
4. ASKING PRICE:</p>
<p>CONCERNING THE SHIPMENT, I HAVE A DELIVERY FIRM THAT<br />
WILL COME FOR THE PROPER PICK UP FROM YOUR LOCATION<br />
AFTER YOU HAVE RECEIVED THE PAYMENT. SO LET ME HEAR<br />
FROM YOU WITH THE DETAILS FOR PAYMENT REQUESTED ABOVE.<br />
WAITING TO  READ FROM YOU AS SOON AS POSSIBLE, HERE IS<br />
MY CONTACT PHONE NUMBER  07024015372 IF YOU WILL LIKE<br />
TO DISCUSS ANYTHING WITH ME ON PHONE.</p>
<p>MANY THANKS<br />
TOM NICOLAS</p></blockquote>
<p>I think you&#8217;d have to be an idiot not to see this one as a scam.  Tell-tale features: all in upper case, information about cheques and money transfers, asking for pictures (pictures are in the autotrade advert already).   Why would anyone pay to ship what is a standard car?  Maybe you could understand if it was a classic vintage car, but not a standard mass produced hatchback!</p>
<p>Final Note:  After two weeks of advertising on Autotrader I did  not get a single genuine contact.  But got 37 scam emails all of similar style to the ones above, almost all through yahoo mail.   I also put an advert on EBay-Motors which did get some genuine enquiries, but I ended up selling privately to someone local.</p>
<p>Conclusion: Autotrader online adverts are currently a waste of money unless they can do something to reduce the scammers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenius.org/blog/2007/09/11/selling-my-car-and-scammers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Experimental Double Batch Brew</title>
		<link>http://www.greenius.org/blog/2007/06/01/experimental-double-batch-brew/</link>
		<comments>http://www.greenius.org/blog/2007/06/01/experimental-double-batch-brew/#comments</comments>
		<pubDate>Fri, 01 Jun 2007 14:48:58 +0000</pubDate>
		<dc:creator>greenius</dc:creator>
		
		<category><![CDATA[Craft Brewing]]></category>

		<category><![CDATA[beer recipe]]></category>

		<category><![CDATA[brew log]]></category>

		<guid isPermaLink="false">http://www.greenius.org/blog/2007/06/01/experimental-double-batch-brew/</guid>
		<description><![CDATA[After reading an article in the Craft Brewing Association&#8217;s magazine Brewer&#8217;s Contact which indicated that beer that is sparged too much may have some off tastes, I decided to try a bit of an experiment.
The plan was to collect two seperate runnings from the sparge, dilute the first runnings to match the second, and then [...]]]></description>
			<content:encoded><![CDATA[<p>After reading an article in the <a href="http://www.craftbrewing.org.uk/" target="_blank">Craft Brewing Association</a>&#8217;s magazine Brewer&#8217;s Contact which indicated that beer that is sparged too much may have some off tastes, I decided to try a bit of an experiment.</p>
<p>The plan was to collect two seperate runnings from the sparge, dilute the first runnings to match the second, and then treat both runnings the same in terms of hops, boiling, etc.  Then to compare the tastes.<span id="more-13"></span></p>
<h2>Recipe</h2>
<p>The recipe is almost the same as the previous batch (Wild Hop Beer), which actually gives us 3 things to compare.</p>
<table>
<tr>
<th>Grain</th>
<th>quantity</th>
<th>est. og</th>
</tr>
<tr>
<td>Pale Malt</td>
<td>5Kg</td>
<td>40.45</td>
</tr>
<tr>
<td>Crystal Malt</td>
<td>750g</td>
<td>5.5</td>
</tr>
<tr>
<td>Chocolate Malt</td>
<td>30g</td>
<td>0.22</td>
</tr>
<tr>
<td>Torrified Wheat</td>
<td>250g</td>
<td>1.87</td>
</tr>
</table>
<p>Giving total expected og=1048 and fg=1011</p>
<p>I expected to make two batches each of about half the normal amount of 25L, however things didn&#8217;t work quite to plan.</p>
<p>Mashing was more or less the same as before&#8230; 2.5Gallons of boiled water dropped to mash tun and cooled to 170F.  Grains stirred in and temperature adjusted to 150F and left for 90 minutes.</p>
<p>This is when I realised my first major mistake&#8230; I had forgotten to put the manifold inside the mash tun!   Not a problem I emptied out the mash into stockpot, replaced the manifold and put the grain back in and left to settle for a few minutes.  The first runnings were very cloudy, so I recirculated the initial runnings for quite a while until they became clearer (note recirculating means collecting some wort in a jug from the run off tap and pouring it carefully back into the top of the mash tun).</p>
<p>My second mistake was not calculating what I was planning to collect.  Partly this was because I had no idea on how the sugar level changes as sparging proceeds, and secondly because I hadn&#8217;t really thought about it, so had to quickly do some adhoc arithmetic.</p>
<p>I started sparging and collecting first runnings.  Whilst sparging I regularly measured the brix against the amount of wort collected as I thought it could be useful in the future.  The measurements I made were:</p>
<table>
<tr>
<th>Liters collected</th>
<th>brix</th>
<th>Collected Brix</th>
</tr>
<tr>
<td>0</td>
<td>22.8%</td>
</tr>
<tr>
<td>1</td>
<td>22.7%</td>
</tr>
<tr>
<td>5</td>
<td>22.5%</td>
</tr>
<tr>
<td>8</td>
<td>17.4%</td>
</tr>
<tr>
<td>10</td>
<td>15.0%</td>
<td>20.7%</td>
</tr>
<tr>
<td>13</td>
<td>12.2%</td>
<td>19%</td>
</tr>
<tr>
<td>14</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>18</td>
<td>10.8%</td>
</tr>
<tr>
<td>20</td>
<td>10.6%</td>
</tr>
<tr>
<td>26</td>
<td>5%</td>
</tr>
</table>
<p>This needs to be put into a graph to make any sense of it.</p>
<p>Note I stopped collecting when brix was still 5% (aprox 1020 sg), because otherwise my second runnings would have become too dilute.</p>
<p>I ended up with two batches:</p>
<p>First Runnings: 14 Liters, brix=19.0%, og=1076<br />
Second Runnings: 15 Liters, brix=8.2%, og=1033</p>
<p><strong>First Runnings</strong></p>
<p>Topped up with 15 Liters more water.  After the boil was left with 15 Liters @ 15.4% brix to which another 8 liters of water were added to dilute it.</p>
<p>Hops at start of boil were:</p>
<table>
<tr>
<th>Type</th>
<th>alpha</th>
<th>quantity</th>
<th>ebu</th>
</tr>
<tr>
<td>Goldings</td>
<td>5%</td>
<td>20g</td>
<td>6.7</td>
</tr>
<tr>
<td>Wild</td>
<td>4%</td>
<td>20g</td>
<td>5.3</td>
</tr>
<tr>
<td>Target</td>
<td>10%</td>
<td>10g</td>
<td>6.7</td>
</tr>
</table>
<p>Total ebu=18.7</p>
<p>15 minutes before end of boil, I added 10g Goldings and 10g Wild hops and teaspoon of Irishmoss.<br />
5 minutes before end of boil I added 10g Goldings and 10g Wild hops.</p>
<p>Yeast was Brupacks top fermenting yeast made with a starter of 30g DME.  This yeast was shared between the two batches.</p>
<p><strong>Second Runnings</strong></p>
<p>I didn&#8217;t dilute this as it was already fairly weak (15 Liters, og=1033).</p>
<p>Hops at start of boil were:</p>
<table>
<tr>
<th>Type</th>
<th>alpha</th>
<th>quantity</th>
<th>ebu</th>
</tr>
<tr>
<td>Goldings</td>
<td>5%</td>
<td>12g</td>
<td>6.7</td>
</tr>
<tr>
<td>Wild</td>
<td>4%</td>
<td>12g</td>
<td>5.3</td>
</tr>
<tr>
<td>Target</td>
<td>10%</td>
<td>6g</td>
<td>6.7</td>
</tr>
</table>
<p>Total ebu=18.7</p>
<p>This is the same proportion as for batch 1 but reduced to account for lower volume.</p>
<p>15 minutes before end of boil, I added 6g Goldings and 6g Wild hops and teaspoon of Irishmoss.<br />
5 minutes before end of boil I added 6g Goldings and 6g Wild hops.</p>
<p>After boil, brix=9.4%</p>
<p>Cooling was not a problem this time because Colin from the Oxford Brewing Group had provided me with extra tubing and fittings to connect the tap to the immersion chiller.</p>
<p><strong>Fermentation</strong></p>
<p>Both batches were fermented for 4 days and then racked to secondary fermenter where they stayed until May 22nd (5 weeks) and then bottled.    Half the first runnings were put into a 10L polypin.  Primed with 75g DME shared between both batches in proportion to volume.<br />
First Runnings are in green-topped bottles.  Second Runnings in Red-topped.</p>
<p><strong>Results</strong></p>
<p>Initial tasting while bottling is favourable&#8230; even without conditioning they both taste good, but the first runnings taste smoother.</p>
<p>I will be taking samples of both batches to the Taste and Swap tomorrow where I hope to get more feedback on the taste differences between them&#8230; although they have not had much time to condition.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenius.org/blog/2007/06/01/experimental-double-batch-brew/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wild Hop Beer</title>
		<link>http://www.greenius.org/blog/2007/06/01/wild-hop-beer/</link>
		<comments>http://www.greenius.org/blog/2007/06/01/wild-hop-beer/#comments</comments>
		<pubDate>Fri, 01 Jun 2007 14:09:59 +0000</pubDate>
		<dc:creator>greenius</dc:creator>
		
		<category><![CDATA[Craft Brewing]]></category>

		<category><![CDATA[beer recipe]]></category>

		<category><![CDATA[brew log]]></category>

		<guid isPermaLink="false">http://www.greenius.org/blog/2007/06/01/wild-hop-beer/</guid>
		<description><![CDATA[In January 2007 I brewed a beer using the wild hops I had harvested in the autumn.  it was intended to be a basic bitter/ESB so that I could evaluate the character of the wild hops.   To complicate things, this was the first brew I did since we had our kitchen redone, [...]]]></description>
			<content:encoded><![CDATA[<p>In January 2007 I brewed a beer using the wild hops I had harvested in the autumn.  it was intended to be a basic bitter/ESB so that I could evaluate the character of the wild hops.   To complicate things, this was the first brew I did since we had our kitchen redone, and there were many other changes to my usual procedure.<br />
<span id="more-12"></span></p>
<h2>Grain Bill</h2>
<table>
<tr>
<th>Grain</th>
<th><strong>Weight</strong></th>
<th><strong>est. og</strong></th>
<th><strong>est. fg</strong></th>
</tr>
<tr>
<td>Pale Malt</td>
<td>3.6Kg</td>
<td>35</td>
<td>8.3</td>
</tr>
<tr>
<td>Crystal Malt</td>
<td>0.6Kg</td>
<td>5.3</td>
<td>1.25</td>
</tr>
<tr>
<td>Chocolate Malt</td>
<td>15g</td>
<td>0.13</td>
<td>.08</td>
</tr>
<tr>
<td>Torrified Wheat</td>
<td>250g</td>
<td>2.24</td>
<td>0.53</td>
</tr>
<tr>
<td><strong>TOTAL</strong></td>
<td><strong><br />
</strong></td>
<td><strong>42.6</strong></td>
<td><strong>10.16</strong></td>
</tr>
</table>
<p>Expected og of 1042 and fg of 1010 giving abv of 4.4%</p>
<p>This was based on 25 liters with 82% efficiency.</p>
<p>Also added one teaspoon of Brupacks DLS.</p>
<h2>Hops</h2>
<p>Planned for around 25 ebu, using the wild hops mainly for aroma/flavour.  As the wild hops were unknown, I estimated that they were Fuggles variety and had 4% alpha acid content.</p>
<p><strong>Copper Hops:</strong></p>
<table>
<tr>
<th>Type</th>
<th>quantity</th>
<th>alpha</th>
<th>ebu</th>
</tr>
<tr>
<td>Target</td>
<td>10%</td>
<td>15g</td>
<td>12</td>
</tr>
<tr>
<td>Wild</td>
<td>4%</td>
<td>50g</td>
<td>16ebu</td>
</tr>
</table>
<p><strong>Aroma hops:</strong></p>
<p>Wild: 25g, 10 minutes before end of boil along with teaspoon of Irish Moss</p>
<p>Wild 25g 1 minute before end of boil.</p>
<h2>Yeast</h2>
<p>Packet of Brupacks top fermenting ale yeast.   Used a starter of 25g DME in 1/2 pint of water, boiled for a few minutes and cooled.  Also added teaspoon of yeast nutrient.</p>
<h2>Process</h2>
<p>This was in a new kitchen so my process was different than usual.  In addition I had recently obtained a 60L stock pot and planned to boil on the gas hob instead of using the electric boiler.  I expected that this would allow me to collect more run off from the sparge and allow for evaporation, whereas with the electric boiler I did not have room to allow for evaporation and had to top up the wort back to 25L.</p>
<p>25L of water was boiled in the electric boiler.</p>
<p>About 10 liters was dropped into my mash tun (picnic cooler) and left to cool to the strike temperature of 170F (Note I am using Farenheit here because that is what my thermometer measures in).</p>
<p>Grain was mixed into the water, and got desired mash temperature of 150F.</p>
<p>Left to mash for 90 minutes.</p>
<p>Whilst waiting for the mash I topped up electric boiler with water and reboiled.  Then transferred into my sparge tank (a plastic bucket with a tap on it).</p>
<p>I sparged (using Phil sparging arm) and collected 25 Liters of wort with a brix reading of 9.8% (1040 og&#8230; slightly lower than expected).</p>
<p>The wort was put into the 60L stock pot and some extra water added (5.4L) to allow for some evaporation.</p>
<p>Wort was boiled on the gas cooker&#8230;  the new cooker has a central ring that is much bigger than the others, but unfortunately this did not provide enough power to bring it to a vigorous boil, so had to also use one of the other rings as well.</p>
<p>I boiled for 90 minutes adding the hops and Irish moss at the appropriate times.</p>
<p>The next problem I encountered was that the cooker was now a long way from the sink (they used to be close to each other).  I did not have enough tubing to get from the tap to the immersion chiller.   Instead I simply placed the lid on the stock pot and left it overnight to cool.</p>
<p>The next morning, the wort was siphened (I don&#8217;t have a tap fitted to the stock pot yet) into fermenting bucket.  To avoid infecting the wort with my mouth bacteria when starting the siphon I followed a tip that someone at the Oxford Brewing group suggested of putting a section of larger tube over the end to suck on and then removing it when the siphon started.</p>
<p>I only managed to collect 19L of wort (did not account enough for evaporation and trub loss).  The brix reading of this was 10.2%.</p>
<p>Pitched the yeast and left it for 6 days to ferment.  Transferred to secondary fermenter under airlock and left for 2 weeks before bottling (primed with 80g DME) on 11th February 2007.</p>
<p>fg = 1008, final brix = 5.4%, making an abv of 4.1%</p>
<p><strong>Taste</strong></p>
<p>Very nice, malty and hoppy.  Certainly wouldn&#8217;t be disapointed if served this in a pub.  The wild hopshave quite a strong after-taste, but this may mellow out after being left longer to condition.</p>
<p>I plan to take a few bottles to the Oxford Brewing Group&#8217;s Taste and Swap event tomorrow (2nd June 2007) to get some other people&#8217;s opinion.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenius.org/blog/2007/06/01/wild-hop-beer/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
