<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>randys.org &#187; Home</title>
	<atom:link href="http://www.randys.org/category/home/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.randys.org</link>
	<description>Wasting your precious bandwidth since 1999</description>
	<lastBuildDate>Thu, 03 Jun 2010 02:43:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Prototype: It&#8217;s Not Just a JavaScript Library</title>
		<link>http://www.randys.org/2009/05/14/prototype-its-not-just-a-javascript-library/</link>
		<comments>http://www.randys.org/2009/05/14/prototype-its-not-just-a-javascript-library/#comments</comments>
		<pubDate>Fri, 15 May 2009 05:08:25 +0000</pubDate>
		<dc:creator>randy</dc:creator>
				<category><![CDATA[Code Chunks]]></category>
		<category><![CDATA[General Nerdery]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://www.randys.org/2009/05/14/prototype-its-not-just-a-javascript-library/</guid>
		<description><![CDATA[Used to be that writing front-end code (HTML, CSS, JavaScript) wasn&#8217;t terribly complex. The syntax of HTML and CSS isn&#8217;t all that difficult to get the hang of and JavaScript (back in the day) was just a tool to validate form fields and play funny tricks on poor unsuspecting visitors. These days, JavaScript has become [...]]]></description>
			<content:encoded><![CDATA[<p>Used to be that writing front-end code (HTML, CSS, JavaScript) wasn&#8217;t terribly complex. The syntax of HTML and CSS isn&#8217;t all that difficult to get the hang of and JavaScript (back in the day) was just a tool to validate form fields and play funny tricks on poor unsuspecting visitors. These days, JavaScript has become <em>the</em> language for front-end development and it&#8217;s not just for printing the &#8216;lastModifiedDate&#8217; of a document.</p>

<script src="http://static.randys.org/js/prototype-date.js" type="text/javascript"></script>

<p>Anyone who has kept up with the advancements of JavaScript knows the <a href="http://www.prototypejs.org/">Prototype</a> library. For those who don&#8217;t know, it&#8217;s a JavaScript library that wraps a whole bunch of functionality into easy to use (and remember) &#8220;shortcuts&#8221; for doing things like getting elements on a page, manipulating said elements, and dealing with data. It&#8217;s all written in <a href="http://www.json.org/">JSON</a> notation and allows you do things like:</p>

<pre><code>$('element-id').addClassName('active').show();
</code></pre>

<p>Instead of</p>

<pre><code>var element = document.getElementById('element-id');
    element.className = 'active';
    element.style.display = 'block';
</code></pre>

<p>Anyway, things like Prototype, <a href="http://jquery.com/">jQuery</a>, <a href="http://www.dojotoolkit.org/">Dojo</a>, and <a href="http://developer.yahoo.com/yui/">YUI</a> all provide some convenience to writing custom JavaScript applications. I haven&#8217;t dug super deep into any of the frameworks&#8217; source (mostly because the code has been somewhat obfuscated and &#8220;compressed&#8221; to save space), but I imagine that they all have one thing in common; they make use of the <a href="http://phrogz.net/JS/Classes/ExtendingJavaScriptObjectsAndClasses.html#prototype">prototype</a> property to extend both existing and custom built objects/classes in JavaScript.</p>

<h3>The prototype Property</h3>

<p>Even if you don&#8217;t make heavy use of one of the afforementioned framework/toolkits, using the <em>prototype</em> property to extend existing JavaScript objects and/or classes can be quite useful. Say you want an easy way to print out a date. Rather than createing a separate function, just extend the <code>Date</code> object itself.</p>

<pre><code>Date.prototype.months = new Array(
    {name: "January",   abbrev: "Jan", number: "01"},
    {name: "February",  abbrev: "Feb", number: "02"},
    {name: "March",     abbrev: "Mar", number: "03"},
    {name: "April",     abbrev: "Apr", number: "04"},
    {name: "May",       abbrev: "May", number: "05"},
    {name: "June",      abbrev: "Jun", number: "06"},
    {name: "July",      abbrev: "Jul", number: "07"},
    {name: "August",    abbrev: "Aug", number: "08"},
    {name: "September", abbrev: "Sep", number: "09"},
    {name: "October",   abbrev: "Oct", number: "10"},
    {name: "November",  abbrev: "Nov", number: "11"},
    {name: "December",  abbrev: "Dec", number: "12"}
);
Date.prototype.dow = new Array(
    {name: 'Sunday',    abbrev: 'Sun', number: "01"},
    {name: 'Monday',    abbrev: 'Mon', number: "02"},
    {name: 'Tuesday',   abbrev: 'Tue', number: "03"},
    {name: 'Wednesday', abbrev: 'Wed', number: "04"},
    {name: 'Thursday',  abbrev: 'Thu', number: "05"},
    {name: 'Friday',    abbrev: 'Fri', number: "06"},
    {name: 'Saturday',  abbrev: 'Sat', number: "07"}
);
Date.prototype.getShortDate = function() {
    return this.months[this.getMonth()].abbrev + ' ' + this.getDate() + ' ' + this.getFullYear();
};
Date.prototype.getLongDate = function() {
    return this.dow[this.getDay()].name + ', ' + this.months[this.getMonth()].name + ' ' + this.getDate() + ', ' + this.getFullYear();
};
Date.prototype.getValueDate = function() {
    var d = (this.getDate() &lt; 10) ? '0'+this.getDate():this.getDate();
    return this.getFullYear() + '/' + this.months[this.getMonth()].number + '/' + d;
};

var now = new Date();
document.write(now.getLongDate());
</code></pre>

<p>And you get something like this <script type="text/javascript">var now = new Date();document.write(now.getLongDate());</script>. Handy.</p>

<p>Now, there&#8217;s a couple of issues with the above script. One, the names aren&#8217;t localized and two, there&#8217;s probalby a more efficient way to formatting a date (much like the example on <a href="http://phrogz.net/JS/Classes/ExtendingJavaScriptObjectsAndClasses.html#example2">this page</a>). But, it works in all the browsers I tested (Chrome, Firefox, IE7, Safari [Mac]).</p>

<p>You can prototype most of the default objects in JavaScript. Say you have an application the has to validate a bunch of text fields. Prototype the <code>String</code> objects to add built in parsing methods for various fields.</p>

<pre><code>String.prototype.isValidEmail = function() { ... }
String.prototype.isValidPhone = function() { ... }
</code></pre>

<p>You get the idea.</p>

<p>The <code>prototype</code> property is a handy little tool. There maybe some limitations between browsers, but overall, it should help simplify your code and prevent repetitive and reduntant methods.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.randys.org/2009/05/14/prototype-its-not-just-a-javascript-library/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FocusingScreen.com focus screen review (Canon XTi/400D)</title>
		<link>http://www.randys.org/2009/04/14/focusingscreencom-focus-screen-review-canon-xti400d/</link>
		<comments>http://www.randys.org/2009/04/14/focusingscreencom-focus-screen-review-canon-xti400d/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 07:24:16 +0000</pubDate>
		<dc:creator>randy</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[canon]]></category>
		<category><![CDATA[focus screen]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[xti]]></category>

		<guid isPermaLink="false">http://www.randys.org/?p=332</guid>
		<description><![CDATA[Preface If you haven&#8217;t seen my previous posts on the subject, I&#8217;ve had a little bit of an obsession on film cameras. It started innocently with a couple rangefinders and a TLR, then started growing. An old Rolleiflex SLR, another rangefinder, another SLR, a 90s point &#38; shoot; I&#8217;ve become obsessed with the value of [...]]]></description>
			<content:encoded><![CDATA[<h2>Preface</h2>

<p>If you haven&#8217;t seen my <a href="/2008/11/02/new-obsession-film-cameras-and-ebay/">previous</a> <a href="/2008/11/13/camera-obsession-rolleiflex-sl35-with-carl-zeiss-glass/">posts</a> on the subject, I&#8217;ve had a little bit of an obsession on film cameras. It started innocently with a couple rangefinders and a <a href="http://camerapedia.org/wiki/TLR">TLR</a>, then started growing. An old Rolleiflex SLR, another rangefinder, another SLR, a 90s point &amp; shoot; I&#8217;ve become obsessed with the value of older optics and their potential for image quality.</p>

<p>I had heard of people using old manual focus lenses on their modern SLRs but never really gave it much thought. Mostly because I was on a film binge. The film bingeing has subsided (for now) so I bought a couple of cheap lenses (Asahi Super-Takumar 55mm ƒ2 and a Fuji EBC Fujinon 55mm ƒ1.8) and an adapter to mount them on my Canon XTi (400D for you folks across the pond, Kiss Digital X the Asian crowd). All toll, I think I might have been out $45 for the three items (all from ebay&#8230; of course). Not bad considering even the cheap-o <a href="http://www.amazon.com/gp/product/B00007E7JU?ie=UTF8&amp;tag=randysorg-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00007E7JU">Canon EF 50mm f/1.8 II</a> will run you between $90 &#8211; $100 shipped and I&#8217;d argue the Super-Tak is just as sharp with better <a href="http://en.wikipedia.org/wiki/Bokeh">bokeh</a>.<img src="http://www.assoc-amazon.com/e/ir?t=randysorg-20&#038;l=as2&#038;o=1&#038;a=B00007E7JU" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>

<h2>The Issue</h2>

<p>The best manual lens you could get for your digital SLR is only good if you can focus properly. And, when you have a manual lens on your camera, your auto-focus system doesn&#8217;t work and most entry level DSLR have pretty crappy viewfinders (dim and small). Yes, they make adapters with focus confirmation which will trick your camera into thinking it has an AF lens on there so that your AF system will tell you when it &#8220;thinks&#8221; your shot is in focus. I haven&#8217;t used one personally, so I can&#8217;t really confirm (look, a pun) nor deny their usefulness and/or accuracy.</p>

<p>Personally, I prefer the old school method of a split-image / micro-prism matte focusing screen.</p>

<h2>Choices</h2>

<p>There are, as far as I know, three choices to choose from. The ever popular <a href="http://www.katzeyeoptics.com/">Katz Eye</a> focusing screens, the slightly more affordable <a href="http://haodascreen.com/sifs.aspx">Haoda</a> focusing screens, and <a href="http://focusingscreen.com/">focusingscreen.com</a>. The Katz Eye and Haoda screens both have good reviews all over the web and I probably would have given one of them a chance if I were not in a penny-pinching mode. The Katz Eye starts at $105 and the Haoda at $72 plus shipping. It&#8217;s not a bad price for the quality of product, but the focusingscreen.com basic model is $45 and change plus shipping (and tax if your fortunate enough to live in a state with such a thing).</p>

<p>Well, there&#8217;s actually a fourth option which I have tried, but didn&#8217;t quite workout. It involves dismantling some older camera with a focusing screen, sanding it down to size and installing it. On the XTi I can say that the focus screen that comes in an old Canon T-50 will not work without some serious engineering. You can give it a shot, but, it will be much easier on your constitution to just buy one of the aforementioned products.</p>

<div id="attachment_347" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.randys.org/wp-content/uploads/2009/04/20090326-19-44-52-001230.jpg" rel="lightbox[332]"><img src="http://www.randys.org/wp-content/uploads/2009/04/20090326-19-44-52-001230-300x200.jpg" alt="The Canon T-50 focus screen is much larger than that of the XTi" title="XTi focus screen vs. Canon T-50 focus screen" width="300" height="200" class="size-medium wp-image-347" /></a><p class="wp-caption-text">The Canon T-50 focus screen is much larger than that of the XTi</p></div>

<div id="attachment_348" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.randys.org/wp-content/uploads/2009/04/20090327-09-32-10-001238.jpg" rel="lightbox[332]"><img src="http://www.randys.org/wp-content/uploads/2009/04/20090327-09-32-10-001238-300x200.jpg" alt="Sanded down to size, the T-50 focus fits, but is too thick and needs re-engineering." title="The T-50 focus screen resized    " width="300" height="200" class="size-medium wp-image-348" /></a><p class="wp-caption-text">Sanded down to size, the T-50 focus fits, but is too thick and needs re-engineering.</p></div>

<h2>The focusingscreen.com Screen</h2>

<p>Installing the screen isn&#8217;t really that difficult. It just takes a steady hand and some patience (neither of which I possess). I&#8217;d recommend having a professional do it purely for the fact that the focus screen is a precision part of your camera&#8217;s operation. Screw it up, and you&#8217;ll end up paying to get it fixed anyway. I&#8217;m currently half way there. The focus screen is installed, but since I live with a bunch of animals, there&#8217;s a nice hair in there that I can&#8217;t get out. Not detrimental to it&#8217;s operation, but annoying nonetheless.</p>

<p>Now, on to the good bits. The focusingscreen.com screen is nice. It has everything you need in a basic focus system: split-image focusing for lining up straight edges in your composition, a micro-prism circle for everything else. Once you get it dialed in and focus is accurate, the split-image / micro-prism is an enormous improvement when it comes to focusing. The focus screen I purchased also has some laser cut dots where the AF points are (with the exception of the center point since it&#8217;s occupied by the split-image) so when using an AF lens (like, say, the <a href="http://www.amazon.com/gp/product/B00006I53R?ie=UTF8&amp;tag=randysorg-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00006I53R">Canon EF 24mm f2.8</a>), they light up just like normal. They don&#8217;t particularly line up for me, but you can certainly see which points are flashing at you. Handy! That&#8217;s an extra $45 alone on the Katz Eye.<img src="http://www.assoc-amazon.com/e/ir?t=randysorg-20&#038;l=as2&#038;o=1&#038;a=B00006I53R" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>

<p>It came very well packaged and with all the necessary tools to install it yourself. It even came with two finger condoms. How thoughtful. I ordered the focus screen on April 6th and it arrived on April 14th. Pretty fast service coming from Taiwan.</p>

<div id="attachment_346" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.randys.org/wp-content/uploads/2009/04/20090414-12-27-11-001271.jpg" rel="lightbox"><img src="http://www.randys.org/wp-content/uploads/2009/04/20090414-12-27-11-001271-300x200.jpg" alt="The focusing screen kit came well packaged complete with two finger condoms." title="focusingscreen.com packaging" width="300" height="200" class="size-medium wp-image-346" /></a><p class="wp-caption-text">The focusing screen kit came well packaged complete with two finger condoms.</p></div>

<p>There is a downside to focus screens. The split-image gets dark around f5.6 or f8 and becomes close to impossible to focus. This plagues pretty much all focus screens no matter what brand, type, or age of camera/lens. Cameras that use lenses with &#8216;Auto&#8217; mode (meaning they automatically &#8216;stop-down&#8217; the aperture blades when the shutter is pressed) don&#8217;t see this because the aperture is always wide open. Unfortunately, on a DSLR with an adapter, that mechanism doesn&#8217;t likely exist so you have to manually stop-down the lens when taking the picture <em>after focusing</em>. Not really the fault of the focus screen, but more of an issue with old manual lenses on a digital body.</p>

<p>Another issue (and this might not be an issue at all for some) is the fact that the company is based in Taiwan and their English is less than perfect. Support might be challenging. But, for $45 plus shipping, it&#8217;s easy to overlook this. If you&#8217;re concerned about support, both Katz Eye and Haoda are noted to have excellent service and support (or, so I&#8217;ve read).</p>

<h2>A Test Shots</h2>

<p>I haven&#8217;t done any precise measurements in terms of how accurate the installed screen is, but from the below picture, what was intended to be in focus, is actually in focus.</p>

<div id="attachment_340" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.randys.org/wp-content/uploads/2009/04/sample-image-01.jpg" rel="lightbox"><img src="http://www.randys.org/wp-content/uploads/2009/04/sample-image-01-300x199.jpg" alt="Canon XTi + FocusingScreen.com focus screen + Vivitar Series 1 70-210mm f3.5" title="Focusing Screen Sample Image" width="300" height="199" class="size-medium wp-image-340 center" /></a><p class="wp-caption-text">Canon XTi + FocusingScreen.com focus screen + Vivitar Series 1 70-210mm f3.5</p></div>

<div id="attachment_358" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.randys.org/wp-content/uploads/2009/04/20090414-13-39-59-001322.jpg" rel="lightbox[332]"><img src="http://www.randys.org/wp-content/uploads/2009/04/20090414-13-39-59-001322-300x199.jpg" alt="Canon XTi + focusingscreen.com focus screen + Vivitar Series 1 70-200mm f3.5 Macro" title="A Rose" width="300" height="199" class="size-medium wp-image-358" /></a><p class="wp-caption-text">Canon XTi + focusingscreen.com focus screen + Vivitar Series 1 70-200mm f3.5 Macro</p></div>

<h3>Update</h3>

<p>More test shots. This time with a ruler. Not pretty, but shows the accuracy of the focus screen. I did three tests with three different lenses and two different mounts.</p>

<ol>
<li>Asahi Super-Takumar 55mm ƒ2 </li>
<li>Fuji Fujinon 55mm ƒ1.8</li>
<li>Olympus Zuiko OM-System 50mm ƒ1.8</li>
</ol>

<p>All three shots were taken wide open and focused as best I could. I tried to focus on the 90 of the ruler using the micro-prism. Exported from Aperture (from RAW) with Auto-Levels applied in Photoshop for contrast. Given the small size of the lettering and shallow depth of field, it was more difficult that I thought. While they appear to be a tad off, I&#8217;d still say the focus screen is accurate. I may redo the test in better lighting at some point. But, here&#8217;s the shots.
<div id="attachment_361" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.randys.org/wp-content/uploads/2009/04/01-super-tak-55f2.jpg" rel="lightbox[332]"><img src="http://www.randys.org/wp-content/uploads/2009/04/01-super-tak-55f2-300x199.jpg" alt="1. Super Takumar 55mm ƒ2" title="Focus Test Super-Takumar" width="300" height="199" class="size-medium wp-image-361" /></a><p class="wp-caption-text">1. Super Takumar 55mm ƒ2</p></div>
<div id="attachment_362" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.randys.org/wp-content/uploads/2009/04/02-fujinon-55f18.jpg" rel="lightbox[332]"><img src="http://www.randys.org/wp-content/uploads/2009/04/02-fujinon-55f18-300x199.jpg" alt="2. Fuji Fujinon 55mm ƒ1.8" title="Focus Test Fujinon" width="300" height="199" class="size-medium wp-image-362" /></a><p class="wp-caption-text">2. Fuji Fujinon 55mm ƒ1.8</p></div>
<div id="attachment_360" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.randys.org/wp-content/uploads/2009/04/03-zuiko-50f18.jpg" rel="lightbox[332]"><img src="http://www.randys.org/wp-content/uploads/2009/04/03-zuiko-50f18-300x199.jpg" alt="3. Olympus Zuiko 50mm ƒ1.8" title="Focus Tests Zuiko" width="300" height="199" class="size-medium wp-image-360" /></a><p class="wp-caption-text">3. Olympus Zuiko 50mm ƒ1.8</p></div></p>

<h2>Conclusion</h2>

<p>The focusingscreen.com focus screen is a very useful tool. Even if you never plan on using a manual focus lens, it can provide valuable feedback. Feedback your AF points will never give you. You will know what is exactly in focus. If you&#8217;ve used an old 35mm film SLR, you&#8217;ll feel right at home and most likely enjoy the familiarity. If you&#8217;ve never used one before, it&#8217;s an easy concept to grasp. I highly recommend them.</p>

<p>Is the focusingscreen.com screen superior to the katz Eye or Haoda version? I don&#8217;t know. Is it worth the roughly $60? Absolutely.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.randys.org/2009/04/14/focusingscreencom-focus-screen-review-canon-xti400d/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Holiday Beer Report: White Christmas, Old Jubilation, Jolly Pumpkin &amp; More</title>
		<link>http://www.randys.org/2009/01/01/holiday-beer-report-white-christmas-old-jubilation-jolly-pumpkin-more/</link>
		<comments>http://www.randys.org/2009/01/01/holiday-beer-report-white-christmas-old-jubilation-jolly-pumpkin-more/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 07:32:45 +0000</pubDate>
		<dc:creator>randy</dc:creator>
				<category><![CDATA[HBR]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[beer]]></category>

		<guid isPermaLink="false">http://www.randys.org/?p=319</guid>
		<description><![CDATA[So, I&#8217;ve gotten a little behind in my posts. So behind that I&#8217;m having trouble remembering what I&#8217;ve tried. Below is a list of seven I can remember at the moment. In no particular order&#8230; here you go. White Christmas Spiced Winter Lager Moylan&#8217;s Brewery ABV 6% IBU N/A Nothing special here. I&#8217;m not a [...]]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;ve gotten a little behind in my posts. So behind that I&#8217;m having trouble remembering what I&#8217;ve tried. Below is a list of seven I can remember at the moment. In no particular order&#8230; here you go.</p>

<h2><a href="http://beeradvocate.com/beer/profile/870/45851">White Christmas Spiced Winter Lager</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://www.moylans.com/">Moylan&#8217;s Brewery</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 6%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> N/A</td>
</tr>
</table>

<p>Nothing special here. I&#8217;m not a large lager fan to begin with (unless it&#8217;s <a href="http://www.pabstblueribbon.com/Default.aspx">PBR</a>) and adding spices to it didn&#8217;t help. I have to admit, I had this one after a glass of <a href="http://www.deschutesbrewery.com/">Deschutes&#8217;</a> <a href="http://www.deschutesbrewery.com/brews/reserve-series/the-dissident/default.aspx">The Dissident</a> which is a <em>very</em> difficult beer to follow.</p>

<h2><a href="http://www.averybrewing.com/BigBeers/seasonal/OldJubilation">Old Jubilation</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://averybrewing.com/">Avery Brewing Co</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 8%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> 30</td>
</tr>
</table>

<p>Avery is awesome. This is a good beer. Has a good malty flavor with hints of hazelnuts and slight chocolate finish. I recommend this one.</p>

<p>I&#8217;ll also recommend their <a href="http://www.averybrewing.com/BigBeers/seasonal/AnniversaryAleFifteen">Fifteen Anniversary Ale</a></p>

<h2><a href="http://blog.stonebrew.com/?p=249">Special Holiday Ale</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://averybrewing.com/">Stone Brewing Co</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 9%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> N/A</td>
</tr>
</table>

<p>Another interesting brew from Stone, <a href="http://www.jollypumpkin.com/">Jolly Pumpkin</a> and <a href="http://www.nogne-o.com/">Nøgne Ø</a>. This thing is brewed with Chestnuts, Juniper Berry, White Sage and Caraway Seed. Pretty good.</p>

<h2><a href="http://www.widmer.com/beer_brrr.aspx">Brrr</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://www.widmer.com/Default.aspx">Widmer Brothers Brewing Co</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 7.2%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> N/A</td>
</tr>
</table>

<p>I&#8217;m not a huge fan of Hefeweizen style beers and since Widmer is pretty much known for their Hefe,  I generally shy away from the brewery. But I have to say, their Brrr is a really good seasonal beer. I was pleasantly surprised by the flavor of this brew. Very recommended.</p>

<h2><a href="http://www.lagunitas.com/beers/index.html">Brown Shugga</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://www.lagunitas.com/">Lagunitas Brewing Company</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 9.9%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> 51.1</td>
</tr>
</table>

<p>Lagunitas is another brewery that rarely disappoints. This &#8220;sweet release&#8221; brown ale is probably <em>the</em> best brown ale I&#8217;ve tasted. I know, <a href="http://www.randys.org/2008/11/08/holiday-beer-report-lost-coast-brewerys-winterbraun/">I&#8217;ve said that before</a>, but I really think this one is better. Enjoy!</p>

<h2><a href="http://www.skyscraperbrewing.com/beer.html">Winter Warmer</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://www.skyscraperbrewing.com/">Skyscraper Brewing</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 5.4%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> N/A</td>
</tr>
</table>

<p>Skyscraper is a new brewery that sprung up in 2007 down here in Souther California (El Monte of all places). I tried their Winter Warmer last year at <a href="http://www.yelp.com/biz/hollingsheads-delicatessen-orange">Hollingshead</a> and liked it enough to buy a bottle this year.</p>

<h2><a href="http://beeradvocate.com/beer/profile/35/20564">Holiday Porter</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://samueladams.com/">Samuel Adams</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 5.9%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> N/A</td>
</tr>
</table>

<p>Another decent beer from Sam Adams. I picked up a sampler pack of Samuel Adams holiday beers so I have a couple more to write about a little later. But this Holiday Porter is good. Worth a try. So far, I&#8217;m not disappointed of the purchase.</p>

<p>Wow. OK, so with the previous 18 beers and these seven, I am now at 25 holiday beers. I think I can squeeze in five more before the weekend is over to bring me to 30. Stay tuned. Since everyone likes a good list, I&#8217;ll have a top 10 list to round up the best of the best of 2008/2009 holiday season.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.randys.org/2009/01/01/holiday-beer-report-white-christmas-old-jubilation-jolly-pumpkin-more/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Holiday Beer Report: Affligem Noel</title>
		<link>http://www.randys.org/2008/12/15/holiday-beer-report-affligem-noel/</link>
		<comments>http://www.randys.org/2008/12/15/holiday-beer-report-affligem-noel/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 07:48:15 +0000</pubDate>
		<dc:creator>randy</dc:creator>
				<category><![CDATA[HBR]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Affligem]]></category>
		<category><![CDATA[beer]]></category>

		<guid isPermaLink="false">http://www.randys.org/?p=313</guid>
		<description><![CDATA[Noël Brouwerij Affligem ABV 9% IBU N/A The Belgium&#8217;s are truly maters at brewing and, in general, most of the Belgium beers I&#8217;ve tried have been really good. Affligem&#8217;s Noël, while a true Belgium in flavor, is nothing to write home about. It&#8217;s certainly no St. Bernardus Christmas Ale, but good overall. Smells of good [...]]]></description>
			<content:encoded><![CDATA[<h2><a href="http://beeradvocate.com/beer/profile/196/2311/">Noël</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://www.shipyard.com/">Brouwerij Affligem</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 9%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> N/A</td>
</tr>
</table>

<p><img src="http://www.randys.org/wp-content/uploads/2008/12/affligem_noel.jpg" alt="Affligem Noel" title="Affligem Noel" width="190" height="395" class="size-full wp-image-315" align="left" style="border:0px none;" />The Belgium&#8217;s are truly maters at brewing and, in general, most of the Belgium beers I&#8217;ve tried have been really good. Affligem&#8217;s Noël, while a true Belgium in flavor, is nothing to write home about. It&#8217;s certainly no <a href="http://www.randys.org/2008/11/13/holiday-beer-report-st-bernardus-christmas-ale/">St. Bernardus Christmas Ale</a>, but good overall. Smells of good Belgium with hints of spices and caramel and medium brown in color. Careful pouring this, I ended up with a good three inches of cream colored head in one glass (and it takes forever to dissipate). While the taste is that of a decent Belgium strong ale, it didn&#8217;t stand out for me.</p>

<p>Worth a try, but don&#8217;t go out of your way to hunt this one down.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.randys.org/2008/12/15/holiday-beer-report-affligem-noel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Holiday Beer Report: Alesmith Yulesmith Holiday Ale</title>
		<link>http://www.randys.org/2008/12/15/holiday-beer-report-alesmith-yulesmith-holiday-ale/</link>
		<comments>http://www.randys.org/2008/12/15/holiday-beer-report-alesmith-yulesmith-holiday-ale/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 07:14:09 +0000</pubDate>
		<dc:creator>randy</dc:creator>
				<category><![CDATA[HBR]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[AleSmith Brewing Co]]></category>
		<category><![CDATA[beer]]></category>

		<guid isPermaLink="false">http://www.randys.org/?p=303</guid>
		<description><![CDATA[Yulesmith Holiday Ale AleSmith Brewing Co. ABV 9.5% IBU N/A Hop heads rejoice! This YuleSmith Holiday Ale is chock full of hops. It&#8217;s very different from your traditional holiday selection but a welcome change from norm. It has that murky golden color and a wonderful citrus hop smell. It also has an awesome hop kick [...]]]></description>
			<content:encoded><![CDATA[<h2><a href="http://www.alesmith.com/yulesmithholidayale.html">Yulesmith Holiday Ale</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://www.alesmith.com/">AleSmith Brewing Co.</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 9.5%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> N/A</td>
</tr>
</table>

<p><img src="http://www.randys.org/wp-content/uploads/2008/12/alesmith-yulesmith-holiday-ale.jpg" alt="AleSmith YuleSmith Holiday Ale" title="AleSmith YuleSmith Holiday Ale" width="85" height="300" class="size-full wp-image-304" align="left" style="border:0px none; margin:0px 10px 2px 0px;" />Hop heads rejoice! This YuleSmith Holiday Ale is chock full of hops. It&#8217;s very different from your traditional holiday selection but a welcome change from norm. It has that murky golden color and a wonderful citrus hop smell. It also has an awesome hop kick that lingers in the back of your mouth. If your a true hop head, this is <em>the</em> holiday ale for you. Just pay attention when picking up a bottle; YuleSmith comes in a summer version as well. The summer version comes in a patriotic, 4th of July bottle. It&#8217;s hard to miss, but I made the mistake last year and was forced to drink both (such a shame, I know).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.randys.org/2008/12/15/holiday-beer-report-alesmith-yulesmith-holiday-ale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holiday Beer Report: Shipyard Prelude</title>
		<link>http://www.randys.org/2008/12/15/holiday-beer-report-shipyard-prelude/</link>
		<comments>http://www.randys.org/2008/12/15/holiday-beer-report-shipyard-prelude/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 06:58:46 +0000</pubDate>
		<dc:creator>randy</dc:creator>
				<category><![CDATA[HBR]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[Shipyard]]></category>

		<guid isPermaLink="false">http://www.randys.org/?p=300</guid>
		<description><![CDATA[Prelude Shipyard Brewery ABV 6.8% IBU N/A Here&#8217;s yet another beer from a brewery in which I am less familiar with. I was pleasantly surprised with this fantastic winter warmer! It has a nice dark, reddish-brown color and lovely smell. You can definitely smell the hops amongst the various hints of nutty ale goodness. I [...]]]></description>
			<content:encoded><![CDATA[<h2><a href="http://www.shipyard.com/taste/">Prelude</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://www.shipyard.com/">Shipyard Brewery</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 6.8%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> N/A</td>
</tr>
</table>

<p><img src="http://www.randys.org/wp-content/uploads/2008/12/shipyard_prelude.jpg" alt="Shipyard Prelude" title="Shipyard Prelude" width="115" height="400" class="size-full wp-image-301" align="left" style="border:0px none; margin:0px 10px 2px 0px;" />Here&#8217;s yet another beer from a brewery in which I am less familiar with. I was pleasantly surprised with this fantastic <a href="http://beeradvocate.com/beer/style/47">winter warmer</a>! It has a nice dark, reddish-brown color and lovely smell. You can definitely smell the hops amongst the various hints of nutty ale goodness. I starts off with a traditional English ale flavor and finished with a nice hop bitter. Another sleeper in my book.</p>

<p>Highly recommended! I will have to try some of their other offerings for sure. In particular, the Chamberlain Pale Ale and the other winter beer, Longfellow, named after poet Henry Wadsworth Longfellow. Hopefully, I can find some before the end of the holiday season.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.randys.org/2008/12/15/holiday-beer-report-shipyard-prelude/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holiday Beer Report: Anderson Valley Winter Solstice</title>
		<link>http://www.randys.org/2008/12/15/holiday-beer-report-anderson-valley-winter-solstice/</link>
		<comments>http://www.randys.org/2008/12/15/holiday-beer-report-anderson-valley-winter-solstice/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 06:25:08 +0000</pubDate>
		<dc:creator>randy</dc:creator>
				<category><![CDATA[HBR]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Anderson Valley]]></category>
		<category><![CDATA[beer]]></category>

		<guid isPermaLink="false">http://www.randys.org/?p=296</guid>
		<description><![CDATA[Winter Solstice Seasonal Ale Anderson Valley ABV 6.9% IBU N/A Anderson Valley makes some really good beers. Even better is the fact that you can usually get some at Trader Joe&#8217;s at a reasonable price. Winter Solstice is a really decent ale. It&#8217;s smooth, full bodied and flavorful. Last year I seem to remember it [...]]]></description>
			<content:encoded><![CDATA[<h2><a href="http://www.avbc.com/beers/solstice.html">Winter Solstice Seasonal Ale</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://www. avbc.com/">Anderson Valley</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 6.9%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> N/A</td>
</tr>
</table>

<p><img src="http://www.randys.org/wp-content/uploads/2008/12/wintersolsticebig.jpg" alt="Anderson Valley Winter Solstice" title="Anderson Valley Winter Solstice" width="234" height="304" class="size-full wp-image-297" align="left" style="margin:0px 10px 2px 0px;border:0px none;" />Anderson Valley makes some really good beers. Even better is the fact that you can usually get some at Trader Joe&#8217;s at a reasonable price. Winter Solstice is a really decent ale. It&#8217;s smooth, full bodied and flavorful. Last year I seem to remember it having a distinct vanilla finish which I didn&#8217;t taste so much in this year&#8217;s batch (which, to me, is a good thing).  It&#8217;s relatively low in ABV so don&#8217;t be afraid to have a couple on a crisp, winter night.</p>

<p>While we&#8217;re talking about Anderson Valley, I must mention their Hop Ottin&#8217; IPA. It&#8217;s a really good India Pale Ale with a balanced flavor to hop ratio and great floral scent. Hit up Trader Joe&#8217;s tonight and pick some up. Good stuff!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.randys.org/2008/12/15/holiday-beer-report-anderson-valley-winter-solstice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holiday Beer Report: Trader Joe&#8217;s 2008 Vintage Ale</title>
		<link>http://www.randys.org/2008/12/08/holiday-beer-report-trader-joes-2008-vintage-ale/</link>
		<comments>http://www.randys.org/2008/12/08/holiday-beer-report-trader-joes-2008-vintage-ale/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 04:09:42 +0000</pubDate>
		<dc:creator>randy</dc:creator>
				<category><![CDATA[HBR]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[Trader Joe's]]></category>
		<category><![CDATA[Unibroue]]></category>

		<guid isPermaLink="false">http://www.randys.org/?p=294</guid>
		<description><![CDATA[2008 Vintage Ale Unibroue (for Trader Joe&#8217;s) ABV 9% IBU N/A Oh what a lovely Belgium ale this Trader Joe&#8217;s 2008 Vintage Ale. With its dark and murky medium brown color and that wonderful Belgium scent with hints of fruits and flowers, this wonderful holiday beer is sure to please. It has a nice off [...]]]></description>
			<content:encoded><![CDATA[<h2><a href="http://beeradvocate.com/beer/profile/10707/46229/">2008 Vintage Ale</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://www.unibroue.com/index_eng.html">Unibroue (for Trader Joe&#8217;s)</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 9%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> N/A</td>
</tr>
</table>

<p>Oh what a lovely Belgium ale this Trader Joe&#8217;s 2008 Vintage Ale. With its dark and murky medium brown color and that wonderful Belgium scent with hints of fruits and flowers, this wonderful holiday beer is sure to please. It has a nice off white head that slowly decreases over the course of several minutes and is relatively effervescent, almost champaign like. It has that unmistakable Belgium <a href="http://beeradvocate.com/beer/style/57">dubbel</a> flavor mixed with sweet holiday goodness and coffee and an almost toffee like after-taste. I have to say, for the price ($4.99 for a 750ml, corked and caged bottle), this is an excellent beer. I don&#8217;t think you can find a beer at this price that is as good as this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.randys.org/2008/12/08/holiday-beer-report-trader-joes-2008-vintage-ale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Special Beer Report: Goose Island Bourbon County Stout</title>
		<link>http://www.randys.org/2008/12/07/special-beer-report-goose-island-bourbon-county-stout/</link>
		<comments>http://www.randys.org/2008/12/07/special-beer-report-goose-island-bourbon-county-stout/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 00:36:37 +0000</pubDate>
		<dc:creator>randy</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[Goose Island]]></category>
		<category><![CDATA[SBR]]></category>

		<guid isPermaLink="false">http://www.randys.org/?p=289</guid>
		<description><![CDATA[Bourbon County Stout Goose Island Brewing ABV 13%* IBU 60 WOW! I don&#8217;t even know where to begin with this one! Technically, this is not a holiday beer but it&#8217;s generally available starting in December. Goose Island does have a Christmas Ale, though, which is why I&#8217;m not counting this as a holiday brew (though [...]]]></description>
			<content:encoded><![CDATA[<h2><a href="http://www.gooseisland.com/beers/pop-ups/14_bourbon.html">Bourbon County Stout</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://www.gooseisland.com/">Goose Island Brewing</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> <span style="font-weight:700;color:red">13%</span><sup>*</sup></td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> 60</td>
</tr>
</table>

<p><img src="http://www.randys.org/wp-content/uploads/2008/12/bourbon_county_stout.jpg" alt="Goose Island Bourbon County Stout" title="Goose Island Bourbon County Stout" width="174" height="419" class="size-full wp-image-290" align="left" style="border:none; padding:0px 10px 2px 0px" />WOW! I don&#8217;t even know where to begin with this one! Technically, this is not a holiday beer but it&#8217;s generally available starting in December. Goose Island does have a <a href="http://www.gooseisland.com/beers/pop-ups/9_christmas.html">Christmas Ale</a>, though, which is why I&#8217;m not counting this as a holiday brew (though it should count for <em>two</em> since it has a ridiculously high ABV). This beer is almost not a beer at all. It&#8217;s a very dark and very complex brew and as you can guess from the name, is aged in bourbon barrels. I pours black as a winter night and has the aroma of a fine bourbon mixed with an awesome stout. The taste is absolutely amazing. It has very distinct oak, roasted malt, bitter chocolate and charcoal smoke flavors with a strong bourbon kick at the end. It finishes a little on the dry side, but is a very intense beer.</p>

<p>If you don&#8217;t have <strong>any</strong> plans for the next couple hours, pick up a <strong>12oz.</strong> bottle and enjoy the hell out it. Just remember, this is a <strong>13%</strong> ABV beer. One will make you feel good; two, euphoric; three will kick your ass.</p>

<p><span style="font-size:.8em"><sup>*</sup> For some reason, the bottle says 13% and Goose Island&#8217;s website says 11%. I&#8217;m going with what is on the bottle, plus it definitely feels like 13%.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.randys.org/2008/12/07/special-beer-report-goose-island-bourbon-county-stout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holiday Beer Report: Full Sail Wassail</title>
		<link>http://www.randys.org/2008/12/07/holiday-beer-report-full-sail-wassail/</link>
		<comments>http://www.randys.org/2008/12/07/holiday-beer-report-full-sail-wassail/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 00:04:55 +0000</pubDate>
		<dc:creator>randy</dc:creator>
				<category><![CDATA[HBR]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[Full Sail Brewing]]></category>

		<guid isPermaLink="false">http://www.randys.org/?p=286</guid>
		<description><![CDATA[Wassail Full Sail Brewing ABV 7% IBU N/A Full Sail Brewing is yet another brewery that brews many a beer that rarely disappoints and I generally like anything they have to offer. Wassail is perfect example of Winter Warmer ale with a good aroma and excellent hop flavor. Most winter warmers that I have had [...]]]></description>
			<content:encoded><![CDATA[<h2><a href="http://www.fullsailbrewing.com/wassail.cfm">Wassail</a></h2>

<table class="hbr-infotable">
<tr>
 <td width="70%"><a href="http://www.fullsailbrewing.com/default.cfm">Full Sail Brewing</a></td>
 <td width="15%"><strong><label class="label-info" title="Alcohol By Volume">ABV</label></strong> 7%</td>
 <td width="15%"><strong><label class="label-info" title="International Bittering Unit">IBU</label></strong> N/A</td>
</tr>
</table>

<p><img src="http://www.randys.org/wp-content/uploads/2008/12/full_sail_inline.jpg" alt="Full Sail Wassail" title="Full Sail Wassail" width="190" height="395" class="size-full wp-image-287" align="left" style="border:none; padding:0px 10px 2px 0px;" />Full Sail Brewing is yet another brewery that brews many a beer that rarely disappoints and I generally like anything they have to offer. Wassail is perfect example of Winter Warmer ale with a good aroma and excellent hop flavor. Most winter warmers that I have had tend to lose their hop taste but Wassail nails it. It pours a lovely dark brown with nice subtle head. It&#8217;s crisp, hop flavor and holiday spice tones is a warm welcome on a cold winter night.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.randys.org/2008/12/07/holiday-beer-report-full-sail-wassail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
