<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace Site Server v5.11.81 (http://www.squarespace.com/) on Fri, 24 Feb 2012 12:34:37 GMT--><feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"><title>The Floccinaucinihilipilification Blog</title><subtitle>The Floccinaucinihilipilification Blog</subtitle><id>http://www.floccinaucinihilipilification.net/blog/</id><link rel="alternate" type="application/xhtml+xml" href="http://www.floccinaucinihilipilification.net/blog/"/><link rel="self" type="application/atom+xml" href="http://www.floccinaucinihilipilification.net/blog/atom.xml"/><updated>2011-10-03T02:40:14Z</updated><generator uri="http://www.squarespace.com/" version="Squarespace Site Server v5.11.81 (http://www.squarespace.com/)">Squarespace</generator><entry><title>Updating the BIOS of a Thinkpad X220 using Linux</title><id>http://www.floccinaucinihilipilification.net/blog/2011/10/2/updating-the-bios-of-a-thinkpad-x220-using-linux.html</id><link rel="alternate" type="text/html" href="http://www.floccinaucinihilipilification.net/blog/2011/10/2/updating-the-bios-of-a-thinkpad-x220-using-linux.html"/><author><name>Darin</name></author><published>2011-10-03T02:18:47Z</published><updated>2011-10-03T02:18:47Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>After spending a day trying to figure out various grub, syslinux and memdisk options, I retreated to googling and quickly found <a href="http://forums.lenovo.com/t5/Linux-Discussion/SUPPORT-REQUEST-X220-BIOS-UPDATE-INSTRUCTIONS-USB/td-p/532077">this</a> page on the lenovo support forum.&nbsp; I am going to copy the contents here to make sure I don't lose them in the future.&nbsp; All props go to the original author:</p>
<p>1. Get the bios update iso (8duj10uc.iso here﻿)&nbsp;from the lenovo support site.</p>
<p>2. Get 'geteltorito' and extract the boot image from the iso (isobar.c probably works too)</p>
<p style="padding-left: 30px;">$ wget '﻿﻿<a rel="nofollow" href="http://www.uni-koblenz.de/%7Ekrienke/ftp/noarch/geteltorito/geteltorito.pl" target="_blank">http://www.uni-koblenz.de/~krienke/ftp/noarch/geteltorito/geteltorito.pl</a>﻿'</p>
<p style="padding-left: 30px;">$ perl geteltorito.pl&nbsp;﻿﻿8duj10uc.iso &gt; biosupdate.img</p>
<p>3. Copy the image to the usb thumdrive</p>
<p style="padding-left: 30px;">$ sudo dd if=biosupdate.img of=/dev/usbthumdrive bs=512K</p>
<p>Here is a copy of the geteltorito.pl script for posterity:</p>
<p>&nbsp;</p>

<pre>
#!/usr/bin/perl

use Getopt::Std;

#
# geteltorito.pl: a bootimage extractor
# Script that will extract the first El Torito bootimage from a
# bootable CD image
# R. Krienke 08/2001
# krienke@uni-koblenz.de
# License: GPL
#
# Get latest version from:
# http://userpages.uni-koblenz.de/~krienke/ftp/noarch/geteltorito
#
$utilVersion="0.5";
#
# Version 0.5
#    2009/06/22
#    A patch for harddisk emulation images from <colimit@gmail.com>.
#    For BootMediaType=4 (harddisk emulation) SectorCount is always 1, and geteltorito.pl
#    returns just MBR. This patch guesses the correct bootimage size
#    from MBR (offset+size of the first partitition).
# Version 0.4
#    2007/02/01
#    A patch from Santiago Garcia <manty@debian.org> to use a virtual sector
#    size (vSecSize) of 512 bytes, as defined on "El Torito" specs and change
#    unpack of the sector count from n to v to get the correct sector count.
# Version 0.3
#    2006/02/21
#    A patch from  Ben Collins <bcollins@ubuntu.com> to make the
#    utility work on PPC machines (change from 'L'-encoding in pack to 'V')
# Version 0.2
#    Several patches included from Nathan Stratton Treadway(nathant@ontko.com)
#    to adjust the platform output as well as fixes for other minor bugs
# Version 0.1
#    Initial release
#
# For information on El Torito see
# http://en.wikipedia.org/wiki/El_torito

$vSecSize=512;
$secSize=2048;
$ret=undef;$version=undef;$opt_h=undef;$loadSegment=undef;$systemType=undef;

#
# Read a particular sector from a file
# sector counting starts at 0, not 1
#
sub getSector{
   my ($secNum, $secCount, $file)=@_;
   my ($sec, $count);

   open(FILE, $file) || die "Cannot open \"$file\" \n";

   seek(FILE, $secNum*$secSize, 0);
   $count=read(FILE, $sec, $vSecSize*$secCount, 0) ;
   if( $count != $vSecSize*$secCount ){
       warn "Error reading from file \"$file\"\n";
   }
   close(FILE);

   return($sec);
}


#
# Write eltorito data into a file
#
sub writeOutputFile{
   my($name)=shift;
   my($value)=shift;

   open(OUT, ">".$name)|| die "$0: Cannot open outputfile \"$name\" for writing. Stop.";
   print OUT $value;
   close(OUT);
}

#
# Usage
#
sub usage{
        warn "\n$0 [-hv] [-o outputfilename] cd-image \n",
            "Script will try to extract an El Torito image from a \n",
            "bootable CD (or cd-image) given by <cd-image> and write \n",
            "the data extracted to STDOUT or to a file.\n",
            "   -h:        This help. \n",
            "   -v:        Print version of script and exit.\n",
            "   -o <file>: Write extracted data to file <file> instead of STDOUT.\n",
            "\n\n";
        exit 0;
}


# ---------------------------------------------------------------------
$ret=getopts('hvo:');

if( defined($opt_v) ){
        warn "Version: $utilVersion \n";
        exit 0;
}

if( defined($opt_h) || $#ARGV <0 ){
         usage(0);
}

if( defined($opt_o) ){
   $outputFilename="$opt_o";
}

$imageFile=$ARGV[0];

if( ! -r $imageFile ){
        die "Cannot read image/device \"$imageFile\". Aborting\n";
}

#
# Read Sector 17 from CD which should contain a Boot Record Volume
# descriptor. This descriptor contains at its start the text ($isoIdent)
# CD001     and ($toritoSpec)
# EL TORITO SPECIFICATION
# see http://www.cdpage.com/Compact_Disc_Variations/eltoritoi.html
# for details
#

$sector=getSector(17, 1, $imageFile );
($boot, $isoIdent, $version, $toritoSpec,
        $unUsed, $bootP)= unpack( "Ca5CA32A32V", $sector );

if( $isoIdent ne "CD001" || $toritoSpec ne "EL TORITO SPECIFICATION" ){
        die "This data image does not seem to be a bootable CD-image\n";
}

#
# Now fetch the sector of the booting catalog
#
$sector=getSector($bootP, 1, $imageFile );

print STDERR "Booting catalog starts at sector: $bootP \n";

# The first 32 bytes of this sector contains the validation entry for a
# boot. The first byte has to be 01, the next byte determines the
# architecture the image is designed for, where 00 is i86, 01 is PowerPC
# and 02 is Mac. More data give info about manufacturer, etc.  The
# final two bytes must contain 0x55 and 0xAA respectively (as
# defined by the El Torito standard).

$validateEntry=substr($sector, 0, 32);

($header, $platform, $unUsed, $manufact, $unUsed, $five, $aa)=
               unpack( "CCvA24vCC", $validateEntry);

if( $header != 1 || $five != 0x55 || $aa != 0xaa ){
        die "Invalid Validation Entry on image \n";
}

print STDERR "Manufacturer of CD: $manufact\n";
print STDERR "Image architecture: ";
print STDERR "x86" if( $platform == 0 );
print STDERR "PowerPC" if( $platform == 1 );
print STDERR "Mac" if( $platform == 2 );
print STDERR "unknown ($platform)" if( $platform > 2 );
print STDERR "\n";

#
# Now we examine the initial/defaultentry which follows the validate
# entry and has a size of 32 bytes.

$initialEntry=substr($sector, 32, 32);

($boot, $media, $loadSegment, $systemType, $unUsed,
       $sCount, $imgStart, $unUsed)=unpack( "CCvCCvVC", $initialEntry);

if( $boot != 0x88 ){
        die "Boot indicator in Initial/Default-Entry is not 0x88. CD is not bootable. \n";
}

print STDERR "Boot media type is: ";
if( $media == 0 ){
        print STDERR "no emulation";
        $count=0;
}
if( $media == 1 ){
        print STDERR "1.2meg floppy";
        $count=1200*1024/$vSecSize;
}
if( $media == 2 ){
        print STDERR "1.44meg floppy";
        $count=1440*1024/$vSecSize;
}
if( $media == 3 ){
        print STDERR "2.88meg floppy";
        $count=2880*1024/$vSecSize;
}
if( $media == 4 ){
        print STDERR "harddisk";
        $MBR=getSector($imgStart, 1, $imageFile );
        $partition1=substr($MBR, 446, 16);
        ($unUsed, $firstSector, $partitionSize) = unpack( "A8VV", $partition1);
        $count=$firstSector + $partitionSize;
}
print STDERR "\n";

# Only use the internal sector counter if the real size is unknown
# ($count==0)
$cnt=$count==0?$sCount:$count;

print STDERR "El Torito image starts at sector $imgStart and has $cnt sector(s) of $vSecSize Bytes\n";

# We are there:
# Now read the bootimage to stdout
$image=getSector($imgStart, $cnt, $imageFile);

if( length($outputFilename) ){
   writeOutputFile($outputFilename, $image);
   print STDERR "\nImage has been written to file \"$outputFilename\".\n";
}else{
   print "$image";
   print STDERR "Image has been written to stdout ....\n";
}
</pre>]]></content></entry><entry><title>A Review of Grand River Rocks</title><category term="Bouldering"/><category term="Climbing"/><category term="Grand River Rocks"/><id>http://www.floccinaucinihilipilification.net/blog/2011/8/19/a-review-of-grand-river-rocks.html</id><link rel="alternate" type="text/html" href="http://www.floccinaucinihilipilification.net/blog/2011/8/19/a-review-of-grand-river-rocks.html"/><author><name>Darin</name></author><published>2011-08-20T01:43:52Z</published><updated>2011-08-20T01:43:52Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p><span>I just got back from my first time climbing at <a href="http://www.grandriverrocks.com/Pages/Home.aspx">Grand River Rocks</a>, the new climbing gym in Kitchener-Waterloo.&nbsp; This is going to be a short review from my first session, I'll post something longer once I get a better sense of the gym over the long term.&nbsp; Tonight was also their first day open, so I'm not going to judge them entirely on my first experience.&nbsp; Also, you should know that my regular gym is <a href="http://www.climbersrock.com/"><span>Climber's</span> Rock</a> in Burlington, however I've also climbed </span><span> a little </span><span>at the <a href="http://www.guelphgrotto.com/">Guelph Grotto</a>.</span></p>
<p><span>Grand River Rocks [<span>GGR</span>] seems good.&nbsp; It is smaller than <span>Climber's</span> Rock, but the same or maybe bigger than Guelph Grotto (I'm not great at estimating the sizes.&nbsp; Plus, as I am mostly a <span>boulderer</span>, I paid much more attention to the <span>bouldering</span> that the routes).&nbsp; The <span>bouldering</span> is much better than at the Grotto.&nbsp; The boulder walls, which fill the center of the gym, has a lot of angles and interesting shapes.&nbsp; However as the walls are in the center of the gym, it feels a bit more cramped than <span>Climber's</span> Rock.&nbsp;&nbsp; I found this especially true on the back side of the <span>bouldering</span> at the inside of the right angle of the L shaped feature.&nbsp; How significant this is will totally depend on how crowded the gym gets.&nbsp; It is all top-out bouldering which is nice.</span>&nbsp; The holds are currently very new and very rough, so expect to lose more skin that usual, I'm sure that will only take a few months to resolve.</p>
<p><span>Another difference between <span>Climber's</span> Rock and <span>GRR</span> is the the <span>bouldering</span> generally starts at a higher level.&nbsp; Not that it is all hard, but <span>Climber's</span> Rock sets some easy intro problems for beginners.&nbsp; We found that the lowest grade problem on the <span>bouldering</span> wall was definitely harder that the lowest grade at <span>Climber's</span> Rock.</span></p>
<p><span>The problems were generally interesting.&nbsp; They seem to like low, sit down starts, which was ok for me, but caused some issues for some of my <span>climbling</span> companions.&nbsp; I've been told that <span>Climber's</span> Rock sets some what easier that other gyms, however I was occasionally surprised at the choice of holds for some of the easier problems at <span>GGR</span>.&nbsp; For example there was a "yellow" problem, which is their second easiest grade that was almost all two finger pockets.&nbsp; That seemed a bit harsh for a relatively easy grade.</span></p>
<p>The route walls looked interesting, although I did not do any routes, so I'll save my opinion until later.&nbsp; There was space for more routes, and it appears as though they did not have too many problems set that were sub 5.10, (which is what some of my friends are climbing).</p>
<p><span>I have a few constructive criticism for the <span>GGR</span> crew.&nbsp; The tape colours for the <span>bouldering</span> problems are occasionally hard to differentiate.&nbsp; Especially the orange/red and green/brown/black.&nbsp; I would suggest getting brighter coloured tape as that would really help make them more distinguishable.&nbsp; I also think this might make it easier to use ink on the tape to distinguish the holds for problems different problems of the same colour.&nbsp; The floor had extra padding around the <span>bouldering</span> wall, however there were only two gym pads and one crash pad.&nbsp; I really think they should have more pads.&nbsp; Hopefully they are on order and simply have not arrived yet (the official grand opening is not until Sept 10).&nbsp; The other thing that I would really like to know is if they are going to have a regular schedule for resetting the problems and routes.&nbsp; At <span>Climber's</span> Rock they try to reset on section of the <span>bouldering</span> wall and a number of the routes each week.&nbsp; This way you know when new problems will set.&nbsp; I find this a really nice, and I hope <span>GGR</span> comes up with similar schedule (and posts it).&nbsp; Regularly setting new problems is probably the biggest <span>factor</span> in deciding if I will buy a membership (note: I probably will).</span></p>
<p>In summary GGR seems to have most of the right pieces for it be a good local gym, the big question is how good their problems are going to be and how regularly they set new ones.&nbsp; This is especially important as they don't have tons of bouldering, so it may not take too long to do all the problems at your level, and then be stuck with nothing to do.</p>]]></content></entry><entry><title>Summer Food 2: BBQ Post mortem</title><id>http://www.floccinaucinihilipilification.net/blog/2011/8/14/summer-food-2-bbq-post-mortem.html</id><link rel="alternate" type="text/html" href="http://www.floccinaucinihilipilification.net/blog/2011/8/14/summer-food-2-bbq-post-mortem.html"/><author><name>Darin</name></author><published>2011-08-14T14:56:13Z</published><updated>2011-08-14T14:56:13Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>Well, its the morning after.&nbsp; If you saw my twitter stream, you'll know that things did not go as planned.&nbsp; Instead of taking 4-6 hours to reach 190 degrees, it took about 10 hours to get to 180.&nbsp; Ultimately the pulled pork tastes quite good, so that, at least was successful.&nbsp; I also had problems getting the smoke generated properly.&nbsp; I checked the smoke box after the cooking was over and I got less that half the wood smoldering. So my plan is to try and deduce what went wrong.&nbsp; Of course I only have the one data point, so most of this is based on other experiences.</p>
<p>First, the smoke.&nbsp; I think the smoke box did not start smoldering because I should have put it on earlier, when I was heating the barbecue, not once I had stabilied the temperature.&nbsp; The fire was not high enough at that point to start the wood smoking.&nbsp; If it was already smoking, I think it would have maintained generating the smoke, but it was too cold to start the fire.</p>
<p>Second.&nbsp; The time.&nbsp; The meat was still cold when it when on the bbq.&nbsp; If you check the initial temperature when I put the meat on the bbq, it was still basically at fridge temperature in the center.&nbsp; It took almost a full hour on the heat before the internal temperature was up to room temp.&nbsp; Given that it only took an hour to get the internal temp to room temp, I'm not sure if that fully explains why it took basically twice the expected time to get to final temp.&nbsp; Of course heat transfer is a complex process, so who knows.</p>
<p>Anyway, the recipe for the rub made more that I used for this experiment so I figure I should do another in a few weeks.</p>
<p>Another important note, running the bbq for 10 hours at lowest heat used about 1/4 of a tank of propane.</p>
<p>Here are photos of the meat, almost every hour (I missed a few).</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2492.JPG?__SQUARESPACE_CACHEVERSION=1313336315289" alt="" /></span></span></p>
<p>Just starting 12 pm</p>
<p>&nbsp;<span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2493.JPG?__SQUARESPACE_CACHEVERSION=1313336369411" alt="" /></span></span></p>
<p>1 pm.</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2494.JPG?__SQUARESPACE_CACHEVERSION=1313336388434" alt="" /></span></span></p>
<p>2 pm.</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2495.JPG?__SQUARESPACE_CACHEVERSION=1313336415302" alt="" /></span></span></p>
<p>3 pm.</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2497.JPG?__SQUARESPACE_CACHEVERSION=1313336442359" alt="" /></span></span></p>
<p>4pm</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2498.JPG?__SQUARESPACE_CACHEVERSION=1313336465031" alt="" /></span></span></p>
<p>6pm</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2499.JPG?__SQUARESPACE_CACHEVERSION=1313336485985" alt="" /></span></span></p>
<p>7pm</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2500.JPG?__SQUARESPACE_CACHEVERSION=1313336511390" alt="" /></span></span></p>
<p>8pm</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2501.JPG?__SQUARESPACE_CACHEVERSION=1313336533599" alt="" /></span></span></p>
<p>9pm</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2501.JPG?__SQUARESPACE_CACHEVERSION=1313336556140" alt="" /></span></span></p>
<p>10pm</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2502.JPG?__SQUARESPACE_CACHEVERSION=1313336574592" alt="" /></span></span></p>
<p>12pm.&nbsp; Post pulling.</p>]]></content></entry><entry><title>Summer Food 2: Adventures in BBQ</title><id>http://www.floccinaucinihilipilification.net/blog/2011/8/13/summer-food-2-adventures-in-bbq.html</id><link rel="alternate" type="text/html" href="http://www.floccinaucinihilipilification.net/blog/2011/8/13/summer-food-2-adventures-in-bbq.html"/><author><name>Darin</name></author><published>2011-08-13T18:24:48Z</published><updated>2011-08-13T18:24:48Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>As I write this I am a hour and thirty minutes into my first "proper" slow cooked bbq.&nbsp; You can read the up to the minute goings on via my twitter feed.&nbsp; However this longer post is going to be describing the tools I am using.</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2487.JPG?__SQUARESPACE_CACHEVERSION=1313260122830" alt="" /></span></span></p>
<p>Meat, rub, mustard.&nbsp; I am cooking a 4 lb pork butt roast.&nbsp; A cut of shoulder meat.&nbsp; Following the recipe <a href="http://www.the-greatest-barbecue-recipes.com/pulled-pork-recipe.html">here</a>, I made a rub and then applied it by first applying a layer of mustard and then the rub.&nbsp; This was yesterday at around 5pm.</p>
<p>Here is a run down of the tools I'm using.</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2488.JPG?__SQUARESPACE_CACHEVERSION=1313260419877" alt="" /></span></span>My gymboss interval timer.&nbsp; Usually this is used for, you know, exercise.&nbsp; However the timer can go as high as 99 minutes, so I have has set it for 6 intervals of 60 minutes.&nbsp; I've has also used this timer for grilling, 5 intervals of 2 minutes for cooking steak, and pork chops etc.</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2490.JPG?__SQUARESPACE_CACHEVERSION=1313260614790" alt="" /></span></span>A grill thermometer.&nbsp; I am using this to measure the temperature on the grill, as opposed to the temperature read by the thermometer integrated into the barbecue lid.&nbsp; More accurate temperature monitoring means more accurate cooking.</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2489.JPG?__SQUARESPACE_CACHEVERSION=1313260733483" alt="" /></span></span>This is my little smoke box.&nbsp; You fill it full of wood chips.&nbsp; The box is then placed in the bbq and heated until the wood starts to smolder.&nbsp; This creates smoke that helps to flavour the meat.&nbsp; Unfortunately, I messed this part up and did not heat the box high enough to get the wood smoldering.&nbsp; So no smoke this time.&nbsp; :(</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2491.JPG?__SQUARESPACE_CACHEVERSION=1313260904278" alt="" /></span></span>The machine.&nbsp; This is my Weber Genesis.&nbsp; The cooking machine for today's little experiment.&nbsp; 1 burner on at lowest flame seems to maintain the internal temp at 225.</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2492.JPG?__SQUARESPACE_CACHEVERSION=1313261054990" alt="" /></span></span></p>
<p>The meat as it just goes on, around 1pm.</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/IMG_2493.JPG?__SQUARESPACE_CACHEVERSION=1313260340276" alt="" /></span></span></p>
<p>The meat after the first hour.</p>]]></content></entry><entry><title>Summer Food 1: Iced Tea</title><category term="Food"/><category term="iced tea"/><id>http://www.floccinaucinihilipilification.net/blog/2011/8/6/summer-food-1-iced-tea.html</id><link rel="alternate" type="text/html" href="http://www.floccinaucinihilipilification.net/blog/2011/8/6/summer-food-1-iced-tea.html"/><author><name>Darin</name></author><published>2011-08-07T00:15:11Z</published><updated>2011-08-07T00:15:11Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>This summer I have been working on perfecting a recipe for iced tea.&nbsp; It seems like it would be a pretty simple task, but there were a few things that need to be experimented with to balance the various flavours.&nbsp; First, obviously is the tea.&nbsp; How much?&nbsp; Then the sweetener.&nbsp; Sugar?&nbsp; Honey?&nbsp; How much?&nbsp; Also this recipe is to make a cold tea, so steeping the tea in cold, not hot water.</p>
<p>Well, what I have learned in the first 5 or 6 attempts is the following: tea bags are inconsistent.&nbsp; So the strength will vary quite a bit.&nbsp; However my current mix is 4 tea bags to make around 2 litres of iced tea.&nbsp; To help manage the variation in strength, I steep the four tea bags in 4 cups ( 1 litre ) of water in the fridge for 12 or more hours, once it has finished steeping I can add water to dilute to the appropriate strength.&nbsp; There have been a few other issues with steeping tea bags this way.&nbsp; Some tea bags float, even after soaking for hours.&nbsp; This can keep them from steeping to full strength.&nbsp; I have been trying to find a good way to weigh down the bags.</p>
<p>To sweeten I dissolve 1/4 cup of sugar in 1 cup of water and add that to the tea.&nbsp; The easiest way to disolve the sugar is to mix the sugar and the water and then microwave for a minute.&nbsp; This will make the sugar dissolve easily.&nbsp; You can also do this with honey, although I prefer the cleaner taste of sugar.</p>
<p>As for teas, I've tried a couple types, a black and a couple of jasmine.&nbsp; I'm mostly trying to use various teas that we had lying around, instead of buying teas specifically for making iced tea.</p>
<p>What I would like to do is start using loose leaf tea instead of tea bags.&nbsp; That way I can measure the tea by weight, and hopefully get a more consistent strength.</p>
<p>So in summary:</p>
<ol>
<li>4 tea bags steep overnight in 4 cups of water (in the fridge).&nbsp; Try to make sure the bag sink.</li>
<li>dissolve 1/4 cup of sugar in 1 cup of water and then add to the 4 cups of tea</li>
<li>mix well and taste.&nbsp; Add additional water as necessary.</li>
<li>serve over ice.</li>
</ol>
<p>I really want to start on some more interesting mixtures, but I need to nail down a consistent base recipe first.</p>]]></content></entry><entry><title>Thinkpad X220 and Ubuntu 11.04</title><id>http://www.floccinaucinihilipilification.net/blog/2011/5/25/thinkpad-x220-and-ubuntu-1104.html</id><link rel="alternate" type="text/html" href="http://www.floccinaucinihilipilification.net/blog/2011/5/25/thinkpad-x220-and-ubuntu-1104.html"/><author><name>Darin</name></author><published>2011-05-26T00:32:23Z</published><updated>2011-05-26T00:32:23Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I just got a new Thinkpad X220.&nbsp; It is a nice piece of hardware.&nbsp; I installed ubuntu 11.04 and am playing around with various setting to optimize its performance.</p>
<p>First, install gpointing-device-settings.&nbsp; This will allow you to tame the touchpad.&nbsp; Second, install laptop-mode-tools.&nbsp; This enables all sorts of battery saving tricks when you are on battery power.&nbsp; With the stock 6 cell battery, I am getting battery life estimate of 8-10 hours, although I have not verified this by leaving the laptop running.&nbsp; Although I should also say that most of the time, I am programming, which may actually be a fairly low power operation.&nbsp; I do have wifi enabled and firefox open as well.</p>
<p>So far I really like it.&nbsp; The keyboard is great.&nbsp; The layout is vi friendly and most of the buttons feel like they are where they should be.</p>
<p>I am getting used to the touchpad, it does feel like I am getting better with it, (and using gpointing-device-settings definitely helps).&nbsp; However I would not say the touchpad is great.&nbsp; Due to the thinkpads having the trackpoint, the physical buttons are above the touchpad, which is not what I was used.</p>
<p>The X220 seems to work fairly well out of the box with Ubuntu 11.04, I did not have any showstopping driver issues.&nbsp; That said there are currently a few shortcomings with the linux support for the HD 3000 graphics, those may not be resolved until 11.10, so that kind of sucks, but accelerated 3D is not a big reason for me getting this laptop.&nbsp; Compiz runs fine, so that's really all I need.</p>
<p>Anyway, I am very happy with this little laptop.&nbsp; The design is simple, but most things seem to be just right.</p>]]></content></entry><entry><title>New Plants, Old Plants</title><id>http://www.floccinaucinihilipilification.net/blog/2011/5/19/new-plants-old-plants.html</id><link rel="alternate" type="text/html" href="http://www.floccinaucinihilipilification.net/blog/2011/5/19/new-plants-old-plants.html"/><author><name>Darin</name></author><published>2011-05-20T00:48:44Z</published><updated>2011-05-20T00:48:44Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I just did a little planting.&nbsp; I dug up a bunch of Lily of the Valley.&nbsp; It will be back.&nbsp; My hope is that by aggressively digging it up, eventually it will stop coming back.&nbsp; However I have my doubts.&nbsp; Lily of the Valley may be pretty but it is almost impossible to get rid of once it has taken hold.</p>
<p>I plants a line of Wild Geraniums along the fence in front of the house.&nbsp; Behind that a line of Wild Columbine, and behind that some Barren Strawberry.&nbsp; Hopefully, in a few years the Geraniums and Columbines will have filled out to be small bushes, (like the 3 year olds that I have in other places) and the Barren Strawberry will have spread out as a ground cover.</p>
<p>In the back I planted some more Broad Leafed Waterleaf, I like the way the look and they filled in really nicely in just one year.&nbsp; I also picked up a few Maidenhair ferns for the fern area, to go with the sensitive and (what I think are) Cinnamon ferns.</p>
<p>All the bushes from last year are starting to show new growth now.&nbsp; The Spicebush did its flowering, and the red elderberry has its flowers opening now too.&nbsp; The others are getting the leaves, although the Maple Leaved Viburnum is growing new shoots from near the ground, not much from last years branches.&nbsp; Although all the shrubs were planted last year, so they are still getting started.&nbsp; It looks like most of the stuff that I planted last year survived.&nbsp; Although there are still a few plants that I don't expect to be up yet.</p>
<p>Of the older plants, many are coming back with a vengeance this year.&nbsp; Our May Apples are at least 45 cm tall, most of them are two leaves and thus should flower.&nbsp; The Bloodroots are starting to form nice clumps, and the Wild Ginger are also spreading nicely.&nbsp; The front yard Canada Anemones are coming up strong and probably cover about 50% of the 2m x 2m areas they are planted in.&nbsp; The Wild Strawberry has covered 100% of that area, although it seems happy to live between the other plants.&nbsp; There are also Heart Leaved Asters growing in there and they are certainly spreading out.&nbsp; As all these plants are sharing a contained area, I am interested to see how they will eventually stabilize.&nbsp; There are a couple other plants thrown in the mix too, although nothing that is spreading as aggressively as those first three.</p>]]></content></entry><entry><title>Garden Status: End of April</title><id>http://www.floccinaucinihilipilification.net/blog/2011/4/30/garden-status-end-of-april.html</id><link rel="alternate" type="text/html" href="http://www.floccinaucinihilipilification.net/blog/2011/4/30/garden-status-end-of-april.html"/><author><name>Darin</name></author><published>2011-04-30T19:26:00Z</published><updated>2011-04-30T19:26:00Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>At the end of April, the garden is starting to bloom.&nbsp; It has been a  cold spring, so many flowers seem to be coming up later than usual.&nbsp; The  backyard Bloodroots are up, flowered and starting to go to seed.&nbsp;  Virginia Blue Bells are up, and starting to flower.&nbsp; The little Trout  Lily leaves are poking their heads up, along with our Trilliums.&nbsp; The  Wild Ginger is starting to open and the various False Solomon Seals are  starting to sprout as well.&nbsp; A few others of note, I am seeing some Twin  Leaves, Wild Gernanium, Canada Anenome coming up as well.&nbsp;</p>
<p>The shrubs generally appear to be getting started.&nbsp; The Spicebush  looks like it is getting ready to flower, the Pagoda dogwoods are  opening, the Ninebark and Mapleleaved Viburnum both appear to be getting  ready to start, although not too much activity yet.&nbsp; The Red Elderberry  is getting going with small leaves, and buds, but the Black Elderberry  hasn't done much yet.</p>
<p>Our trees are starting to bud, but no real leaves to speak of yet.</p>
<p>Check the gallery for photos!</p>
<p>﻿</p>]]></content></entry><entry><title>My New Home Theater Device</title><id>http://www.floccinaucinihilipilification.net/blog/2011/4/29/my-new-home-theater-device.html</id><link rel="alternate" type="text/html" href="http://www.floccinaucinihilipilification.net/blog/2011/4/29/my-new-home-theater-device.html"/><author><name>Darin</name></author><published>2011-04-29T22:14:19Z</published><updated>2011-04-29T22:14:19Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>Here is a picture of my brand new home theater device:<span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/post-images/IMG_2073.JPG?__SQUARESPACE_CACHEVERSION=1304115403701" alt="" /></span></span></p>
<p>I guess that does not look all that fancy.&nbsp; What about from the back:</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/post-images/IMG_2074.JPG?__SQUARESPACE_CACHEVERSION=1304115424739" alt="" /></span></span></p>
<p>That probably gives away the joke to most of you.&nbsp; How about a peek inside:</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/post-images/IMG_2075.JPG?__SQUARESPACE_CACHEVERSION=1304115485528" alt="" /></span></span></p>
<p>I put a new Home Theater PC inside an old VCR case!&nbsp; Heh, I think that's kinda funny.&nbsp; It is an MSI E350, whcih is a dual core AMD Fusion CPU which has an integrated graphics processor that is actually reasonably powerful (powerful enough for this application).&nbsp; It is running Ubuntu 10.10 with XBMC as the media software.&nbsp; Due to some software issues it is not using the graphics accelerator for video playback, but I hope to fix that soon.</p>
<p>XBMC is pretty nice, although I am still looking for a skin that I like.&nbsp; There are some strange usability issues when trying to control it via a remote control.&nbsp; (There is an IR reciever hiding behing the VCR's face plate).&nbsp; On the upside, I really like its ability to fetch content off the internet.&nbsp; In particular getting various videos from places like TWiT and Revision3.</p>
<p>This HTPC also has a 2 TB hard drive, so I have dumped all of my music on it.&nbsp; I am also thinking of ripping our heavily watched dvds (Arrested Development, Burn Notice) on there too.&nbsp; That way we can watch them without messing around with disks, as well, we can copy them onto ipod/ipad/other devices without having to resort to physical media.</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.floccinaucinihilipilification.net/storage/post-images/IMG_2077.JPG?__SQUARESPACE_CACHEVERSION=1304116416911" alt="" /></span></span></p>
<p>Anyway, I am still playing with everything, but so far I am enjoying it.</p>]]></content></entry><entry><title>Tour de Bloc 2011 National Bouldering Finals</title><id>http://www.floccinaucinihilipilification.net/blog/2011/4/17/tour-de-bloc-2011-national-bouldering-finals.html</id><link rel="alternate" type="text/html" href="http://www.floccinaucinihilipilification.net/blog/2011/4/17/tour-de-bloc-2011-national-bouldering-finals.html"/><author><name>Darin</name></author><published>2011-04-18T00:41:22Z</published><updated>2011-04-18T00:41:22Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>Today I went to the Tour de Bloc 2011 National Bouldering Finals.&nbsp; It was pretty amazing.&nbsp; The competition was really good, and the problems seemed appropreately difficult to separate the top climbers.&nbsp; This was the first bouldering comp that I have attended.&nbsp; It was a lot of fun and I definitely want to go to more in the future.&nbsp; I took my Canon S95, but I made a rookie mistake.&nbsp; I trusted the battery meter.&nbsp; I checked the battery before I left home, it was "three bars", aka full.&nbsp; When the comp. started I turned the camera on and took a few snaps and suddenly the battery display was red, warning low battery.&nbsp; Sigh.&nbsp; I should have charged the battery regardless.&nbsp; Of course it sure would be nice if the battery meter was actually accurate, instead of terrible.</p>
<p>I managed to get about 40 images before the battery competely died, which is ok, but I had to keep the camera off unless I was ready to take a picture, which meant that I probably missed a few shots.&nbsp; Oh well.&nbsp; I'll try to never do that again.&nbsp; You can see the pictures in my <a href="http://www.floccinaucinihilipilification.net/photography/bouldering/">bouldering gallery</a>.</p>
<p><span class="full-image-block ssNonEditable"><span><img style="width: 800px;" src="http://www.floccinaucinihilipilification.net/picture/m2w2m3.jpg?pictureId=9388757&amp;asGalleryImage=true&amp;__SQUARESPACE_CACHEVERSION=1303087821401" alt="" /></span></span></p>]]></content></entry></feed>
