<?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>vonnieda.org</title>
	<atom:link href="http://www.vonnieda.org/feed" rel="self" type="application/rss+xml" />
	<link>http://www.vonnieda.org</link>
	<description>The Story So Far...</description>
	<lastBuildDate>Sat, 21 Jan 2012 01:33:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>ScreenUi</title>
		<link>http://www.vonnieda.org/archives/1711</link>
		<comments>http://www.vonnieda.org/archives/1711#comments</comments>
		<pubDate>Fri, 20 Jan 2012 05:26:23 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vonnieda.org/?p=1711</guid>
		<description><![CDATA[ScreenUi is a user interface library designed for small character based LCDs like those that are commonly used with Arduinos. The purpose of the library is to make it easy to quickly build logical screen interfaces with common widgets. It&#8217;s written in C++ and installs as an Arduino library or can be used external to [...]]]></description>
			<content:encoded><![CDATA[<p>ScreenUi is a user interface library designed for small character based LCDs like those that are commonly used with Arduinos. The purpose of the library is to make it easy to quickly build logical screen interfaces with common widgets. It&#8217;s written in C++ and installs as an Arduino library or can be used external to Arduino. All hardware access is done through a very short implementable interface. You just need to define a few methods for LCD output and a few methods for button or encoder input and the library does the rest.</p>
<p>Here is a short video showing the widgets that are currently written:<br />
<iframe width="420" height="315" src="http://www.youtube.com/embed/fMjPy8N6kG0" frameborder="0" allowfullscreen></iframe></p>
<p>And here is the code for that demo:</p>
<pre>
<code>
void loop() {
  Screen screen(20, 4);

  Label titleLabel("RGB Settings");

  Label addressLabel("Address:");
  char *address2 = "moof moof";
  char *address = "0xffee";
  Input addressInput(address);

  Label colorLabel("Color:");
  List colorList(7);
  colorList.addItem("Red");
  colorList.addItem("Orange");
  colorList.addItem("Yellow");
  colorList.addItem("Green");
  colorList.addItem("Blue");
  colorList.addItem("Indigo");
  colorList.addItem("Violet");

  Label rgbEnabledLabel("RGB Enabled:");
  Checkbox rgbEnabledCheckbox;

  Label refroLabel("Refrobulate:");
  Checkbox refroCheckbox;

  Label discoLabel("Discombobulate:");
  Checkbox discoCheckbox;

  ScrollContainer scrollContainer(&#038;screen, screen.width(), 2);
  scrollContainer.add(&#038;addressLabel, 0, 0);
  scrollContainer.add(&#038;addressInput, 8, 0);
  scrollContainer.add(&#038;colorLabel, 0, 1);
  scrollContainer.add(&#038;colorList, 6, 1);
  scrollContainer.add(&#038;rgbEnabledLabel, 0, 2);
  scrollContainer.add(&#038;rgbEnabledCheckbox, 12, 2);
  scrollContainer.add(&#038;refroLabel, 0, 3);
  scrollContainer.add(&#038;refroCheckbox, 12, 3);
  scrollContainer.add(&#038;discoLabel, 0, 4);
  scrollContainer.add(&#038;discoCheckbox, 15, 4);

  Button cancelButton("Cancel");

  Button okButton("Ok");

  screen.add(&#038;titleLabel, 0, 0);
  screen.add(&#038;scrollContainer, 0, 1);
  screen.add(&#038;cancelButton, 0, 3);
  screen.add(&#038;okButton, 16, 3);

  screen.setFocusHolder(&#038;okButton);
  while (1) {
    screen.update();
    if (okButton.pressed()) {
      addressInput.setText(address2);
      Serial.println(rgbEnabledCheckbox.checked(), DEC);
      Serial.println(colorList.selectedItem());
    }
    else if (cancelButton.pressed()) {
      addressInput.setText(address);
    }
  }
}
</code>
</pre>
<p>You can see the bulk of the code is for setting up and laying out the screen. Processing of the screen all happens within the while (1) loop and is very simple. Buttons get their pressed() property set when they have been clicked, lists get their selectedItem() property updated, editable fields update their string in place, etc.</p>
<p>ScreenUi is Open Source and is available at <a href="http://code.google.com/p/screenui/" title="http://code.google.com/p/screenui/" target="_blank">http://code.google.com/p/screenui/</a>. It&#8217;s not completely finished, but it&#8217;s already very usable. I&#8217;ll be adding some more widgets to it in the coming days.</p>
<p>Thanks for reading!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vonnieda.org/archives/1711/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Brewery is the 99%</title>
		<link>http://www.vonnieda.org/archives/1697</link>
		<comments>http://www.vonnieda.org/archives/1697#comments</comments>
		<pubDate>Wed, 30 Nov 2011 08:09:00 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Brewery Build]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vonnieda.org/?p=1697</guid>
		<description><![CDATA[99% done that is! My brewery has been about 99% done for a few months now. I&#8217;ve been brewing on it and until I have time to redo some fairly major things this is how it&#8217;s going to stay, so I thought it was finally time I took some pictures of it and showed it [...]]]></description>
			<content:encoded><![CDATA[<p>99% done that is!</p>
<p>My brewery has been about 99% done for a few months now. I&#8217;ve been brewing on it and until I have time to redo some fairly major things this is how it&#8217;s going to stay, so I thought it was finally time I took some pictures of it and showed it off a little.</p>
<p>The brewery has been a work in progress for about 2 years now. I set out to build a fairly simple &#8220;Brutus 10&#8243; system and just kept adding and adding and adding. Along the way I learned a lot of new skills and worked my ass off, but it really turned out to be all worth it.</p>
<p>Before I can really show off the system, it will make a lot more sense if you know how beer is made. So, in short, this is how beer is made:</p>
<ol>
<li>Malted barley is mixed with hot water to create the Mash in the Mash Lauter Tun.</li>
<li>The Mash is allowed to steep for about an hour. This causes the starch in the barley to turn into sugar.</li>
<li>The liquid from the Mash, which we now call Mash Liquor, is drained through a filter from the Mash Liquor Tun into the Boil Kettle. This process is called Lautering.</li>
<li>Hot water from the Hot Liquor Tank is rinsed over the remaining barley in the Mash Lauter Tun to capture any remaining sugar. This process is called Sparging. This water is also collected into the Boil Kettle.</li>
<li>The sweet liquid in the Boil Kettle is brought to a boil and hops are added. We now call the boiling liquid Wort. The process of boiling extracts bitterness from the hops to temper the sweetness of the Wort.</li>
<li>The boiled Wort is cooled down, moved into a Fermenter tank and Yeast is added.</li>
<li>The Yeast work their biological miracle and turn the sugar in the Wort into alcohol and CO2. The CO2 goes out the top and the alcohol stays in. We now have Beer!</li>
<li>The Beer is enjoyed.</li>
</ol>
<p>The system is an E-HERMS with a ton of automation. E-HERMS stands for Electric Heat Exchanger Recirculating Mash System. What that means is that liquids are heated with electricity (instead of gas, which is more common), and the Mash Liquor recirculates through a heat exchanger to change it&#8217;s temperature. More on that in a bit.</p>
<p>The automation comes in the way of temperature sensors, a BrewTroller brewing control computer, motorized ball valves and solenoid valves, a very large control panel and lots of wires. There&#8217;s also two brewing pumps to move all the liquids around. </p>
<p>The point of all this is that I can brew without ever having to deal with lifting heavy buckets of hot liquids or disconnecting and reconnecting a bunch of hoses as I go. And, of course, to be super geeky while making beer <img src='http://www.vonnieda.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So, now for the tour. First is the brewery from afar&#8230;</p>
<div id="flickr_brewery99_brewery_766" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img  src="http://farm8.staticflickr.com/7017/6429565035_abc7e54f69.jpg" alt="" title="The Whole Brewery" /></li><li><img  src="http://farm8.staticflickr.com/7012/6429562141_619371e693.jpg" alt="" title="Left to Right: Boil Kettle, Mash Lauter Tun, Hot Liquor Tank" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_brewery99_brewery_766").data("delay","5");jQuery("#flickr_brewery99_brewery_766").data("autoplay","off");jQuery("#flickr_brewery99_brewery_766").data("captions","on");jQuery("#flickr_brewery99_brewery_766").data("descriptions","");</script>
<p>From right to left is the Hot Liquor Tank (HLT), the Mash Lauter Tun (MLT) and the Boil Kettle (BK). The HLT is basically a glorified water heater with a twist. It&#8217;s goal in life is to keep a bunch of water at a set temperature. Usually around 180 °F.</p>
<p>The twist is that inside the kettle is a coil of stainless steel tubing. This tubing is the heat exchanger. I pump Mash Liquor from the MLT through the heat exchanger and back into the MLT to heat it up. This allows me to control the temperature of the Mash without directly heating it, which can be bad for the grain.</p>
<p>The next set of pictures shows the three kettles from the inside.</p>
<div id="flickr_brewery99_kettles_800" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img  src="http://farm8.staticflickr.com/7019/6429564475_5516f0a986.jpg" alt="" title="Mash Lauter Tun" /></li><li><img  src="http://farm7.staticflickr.com/6115/6429564193_ffae21c53f.jpg" alt="" title="Hot Liquor Tank" /></li><li><img  src="http://farm7.staticflickr.com/6118/6429563899_5475ab2521.jpg" alt="" title="Boil Kettle" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_brewery99_kettles_800").data("delay","5");jQuery("#flickr_brewery99_kettles_800").data("autoplay","off");jQuery("#flickr_brewery99_kettles_800").data("captions","on");jQuery("#flickr_brewery99_kettles_800").data("descriptions","");</script>
<p>The Boil Kettle contains a heating element which is used to heat up and boil the Wort. The Mash Lauter Tun contains a filter called a False Bottom which is used to drain the Mash Liquor without getting grains. The False Bottom has a series of slots cut into that are too small for the grain to pass through. And finally, the Hot Liquor Tank contains a heating element for heating water and the heat exchanger coil for passing Mash Liquor through.</p>
<p>Next we have some pictures showing the pumps and plumbing of the brewery.</p>
<div id="flickr_brewery99_plumbing_363" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img  src="http://farm8.staticflickr.com/7019/6429563661_44cfa7873f.jpg" alt="" title="Plumbing: From The Side" /></li><li><img  src="http://farm7.staticflickr.com/6042/6429563371_54a000a777.jpg" alt="" title="Plumbing: Right Side" /></li><li><img  src="http://farm8.staticflickr.com/7141/6429563043_9bb3d8b6f6.jpg" alt="" title="Plumbing: Left Side" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_brewery99_plumbing_363").data("delay","5");jQuery("#flickr_brewery99_plumbing_363").data("autoplay","off");jQuery("#flickr_brewery99_plumbing_363").data("captions","on");jQuery("#flickr_brewery99_plumbing_363").data("descriptions","");</script>
<p>The brewery is plumbed using all 1/2&#8243; OD stainless steel tubing. I custom bent every piece to get it just how I wanted it. There are two March magnetic drive pumps for moving liquids around, 11 motorized ball valves for controlling liquid flow and direction and 2 solenoid valves for controlling fresh water input to the system.</p>
<p>The plumbing system is designed so that I can move liquid from any tank to any other tank by opening the right configuration of valves and turning on the right pumps.</p>
<p>There is also a plate chiller (the thing that looks like a set of stacked metal plates) which is used for quickly cooling the Wort down from boiling to 68 °F, which what the yeast like. The chiller has channels that allow the Wort to pass in one direction and cold water in the other direction. The metal of the channels transmits heat effectively between the hot Wort and cold water without letting the two mix.</p>
<p>Next up are the electrical systems. </p>
<div id="flickr_brewery99_electrical_373" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img  src="http://farm7.staticflickr.com/6113/6429564725_40227abff5.jpg" alt="" title="Temperature Sensor Breakout" /></li><li><img  src="http://farm8.staticflickr.com/7002/6429562723_39091a08b7.jpg" alt="" title="Control Panel" /></li><li><img  src="http://farm7.staticflickr.com/6217/6429562399_3629691d5d.jpg" alt="" title="Control Panel" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_brewery99_electrical_373").data("delay","5");jQuery("#flickr_brewery99_electrical_373").data("autoplay","off");jQuery("#flickr_brewery99_electrical_373").data("captions","on");jQuery("#flickr_brewery99_electrical_373").data("descriptions","");</script>
<p>The control panel is responsible for controlling the motorized ball valves, solenoids, heating elements, pumps and temperature sensors. It shows me the temperature of each tank, along with some auxiliary temperatures and lets me control the other components either manually or automatically. The knob in the middle is an iPod style control that lets me scroll through menus on the LCD and select options.</p>
<p>You can also see a breakout box I made which allows me to hook the 5 temperature sensors together to connect to the control panel.</p>
<p>That pretty much covers the brewery itself, but there is more to the process. Next we have fermentation equipment.</p>
<div id="flickr_brewery99_fermenters_98" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img  src="http://farm8.staticflickr.com/7143/6429565807_11ddd6aa88.jpg" alt="" title="An Active Fermentation" /></li><li><img height="90%" src="http://farm8.staticflickr.com/7005/6429565589_2b22f526a9.jpg" alt="" title="2 BrewHemoth Fermenters" /></li><li><img  src="http://farm8.staticflickr.com/7169/6429565293_2d4440f3ed.jpg" alt="" title="Fermentation Department" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_brewery99_fermenters_98").data("delay","5");jQuery("#flickr_brewery99_fermenters_98").data("autoplay","off");jQuery("#flickr_brewery99_fermenters_98").data("captions","on");jQuery("#flickr_brewery99_fermenters_98").data("descriptions","");</script>
<p>Here we have 2 BrewHemoth 22 gallon Fermenters and their associated bits. Each Fermenter is wrapped with heating tape which allows me to raise the temperature of the Fermenter and each has an integrated chiller inside it which allows me to cool it. Managing the temperature of fermenting beer is very important in determining how it turns out. The Fermenters also each have a temperature sensor which is locked into the top at an angle. This is used to monitor the temperature of the fermenting beer.</p>
<div id="flickr_brewery99_fermtroller_742" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img  src="http://farm8.staticflickr.com/7013/6429566233_8e42c0dcee.jpg" alt="" title="Glycol Pump and Freezer Outputs" /></li><li><img  src="http://farm7.staticflickr.com/6235/6429566041_67e365b4f5.jpg" alt="" title="FermTroller System" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_brewery99_fermtroller_742").data("delay","5");jQuery("#flickr_brewery99_fermtroller_742").data("autoplay","off");jQuery("#flickr_brewery99_fermtroller_742").data("captions","on");jQuery("#flickr_brewery99_fermtroller_742").data("descriptions","");</script>
<p>To manage all that stuff, we have a FermTroller. This is a miniature version of the system in the brewery. All this one does is monitor temperatures and either turn on heating or cooling. It is responsible for turning on and off the heating tape and turning on and off the chiller pumps and valves.</p>
<div id="flickr_brewery99_freezer_633" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img height="90%" src="http://farm8.staticflickr.com/7174/6429567167_ca6734d30c.jpg" alt="" title="Freezer with Glycol Tank" /></li><li><img  src="http://farm8.staticflickr.com/7035/6429566941_0ae2e19bf4.jpg" alt="" title="Freezer with Glycol Tank" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_brewery99_freezer_633").data("delay","5");jQuery("#flickr_brewery99_freezer_633").data("autoplay","off");jQuery("#flickr_brewery99_freezer_633").data("captions","on");jQuery("#flickr_brewery99_freezer_633").data("descriptions","");</script>
<p>The chilling system is not yet complete. I had intended to use this freezer to recirculate cold glycol solution through the chillers but it turned out that the glycol needed to be much colder than I wanted the freezer to be. I want to also be able to use the freezer to store beer, and beer needs to be around 45 °F. Unfortunately, the glycol needs to be around -20 °F. So, the chiller system is still being worked on.</p>
<div id="flickr_brewery99_kegs_879" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img height="90%" src="http://farm8.staticflickr.com/7002/6429566683_5447bcc929.jpg" alt="" title="Corney Kegs" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_brewery99_kegs_879").data("delay","5");jQuery("#flickr_brewery99_kegs_879").data("autoplay","off");jQuery("#flickr_brewery99_kegs_879").data("captions","on");jQuery("#flickr_brewery99_kegs_879").data("descriptions","");</script>
<p>And finally, we have some kegs. These kegs are how I store and serve the beer I make. Each one holds 5 gallons and they go into the kegerator in my kitchen. All the kegs with open lids are currently dirty and need to be cleaned. The one that is closed and is hooked up to the CO2 tank contains fresh beer that is carbonating. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.vonnieda.org/archives/1697/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Brewery: Finally, a brew!</title>
		<link>http://www.vonnieda.org/archives/1691</link>
		<comments>http://www.vonnieda.org/archives/1691#comments</comments>
		<pubDate>Mon, 22 Aug 2011 06:53:06 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Brewery Build]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vonnieda.org/?p=1691</guid>
		<description><![CDATA[I finally managed to crank out a brew this weekend. I started on Saturday and ended up aborting due to process problems. Got it all figured out Saturday evening and got back to it Sunday. Ended up being a very, very long day but beer was made! First, some pictures, and then my notes from [...]]]></description>
			<content:encoded><![CDATA[<p>I finally managed to crank out a brew this weekend. I started on Saturday and ended up aborting due to process problems. Got it all figured out Saturday evening and got back to it Sunday. Ended up being a very, very long day but beer was made!</p>
<p>First, some pictures, and then my notes from the session&#8230;</p>
<div id="flickr__5" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img  src="http://farm7.staticflickr.com/6183/6068726268_e9e899684d.jpg" alt="" title="IMG_2259" /></li><li><img  src="http://farm7.staticflickr.com/6192/6068726018_84e41e419e.jpg" alt="" title="IMG_2258" /></li><li><img  src="http://farm7.staticflickr.com/6190/6068725802_cabc56c22b.jpg" alt="" title="IMG_2257" /></li><li><img  src="http://farm7.staticflickr.com/6181/6068725578_09134bfd05.jpg" alt="" title="IMG_2256" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr__5").data("delay","5");jQuery("#flickr__5").data("autoplay","on");jQuery("#flickr__5").data("captions","on");jQuery("#flickr__5").data("descriptions","");</script>
<p>And now the notes. Beware, madness lie ahead:</p>
<p>Recipe: Basic Pale<br />
Style: 10A-American Ale-American Pale Ale</p>
<p>Recipe Overview</p>
<p>Wort Volume Before Boil: 12.00 US gals<br />
Wort Volume After Boil: 11.00 US gals<br />
Volume Transferred: 11.00 US gals<br />
Water Added: 0.00 US gals<br />
Volume At Pitching: 11.00 US gals<br />
Final Batch Volume: 11.00 US gals<br />
Expected Pre-Boil Gravity: 1.051 SG<br />
Expected OG: 1.056 SG<br />
Expected FG: 1.013 SG<br />
Expected ABV: 5.6 %<br />
Expected ABW: 4.4 %<br />
Expected IBU (using Tinseth): 31.4<br />
Expected Color: 7.1 SRM<br />
Apparent Attenuation: 75.0 %<br />
Mash Efficiency: 75.0 %<br />
Boil Duration: 60.0 mins<br />
Fermentation Temperature: 64 degF</p>
<p>Fermentables<br />
US 2-Row Malt 20.00 lb (89.9 %) In Mash/Steeped<br />
US Caramel 20L Malt 2.00 lb (9.0 %) In Mash/Steeped<br />
US Caramel 120L Malt 0.25 lb (1.1 %) In Mash/Steeped</p>
<p>Hops<br />
US Columbus(Tomahawk) (15.5 % alpha) 1.00 oz Bagged Pellet Hops used 60 Min From End<br />
US Cascade (4.5 % alpha) 2.00 oz Bagged Pellet Hops used 15 Min From End<br />
US Cascade (4.5 % alpha) 1.00 oz Bagged Pellet Hops used 1 Min From End</p>
<p>Other Ingredients</p>
<p>Yeast: DCL US-05 (formerly US-56) SafAle</p>
<p>Mash Schedule<br />
Mash Type: Full Mash<br />
Schedule Name:Single Step Infusion (69C-156F)<br />
Step: Rest at 156 degF for 60 mins</p>
<p>Recipe Notes</p>
<p>2:19pm<br />
Started filling BK to do a PBW flush on the chiller<br />
10 gallons to cover temp sensor</p>
<p>2:45pm<br />
BrewTroller problems</p>
<p>5:35pm<br />
Gave the fuck up</p>
<p>The next day&#8230;</p>
<p>12:06pm<br />
Filled BK to 10.25 gallons and started heating and recirc</p>
<p>12:11pm<br />
Started to pour some PBW into the water but it made the whole thing sound like a jet engine. Heating element doesn’t like it? Holding off itll the water is up to temp.</p>
<p>12:20pm<br />
Started recirculating PBW through the chiller a few minutes ago<br />
Running the element at 5% @ 4 second cycle to keep the solution around 120F</p>
<p>12:30pm<br />
It has pulled some hop bits and gunk out of the chiller. Temp is holding very well with no additional heat input.</p>
<p>12:40pm<br />
Filled HLT to 16 gallons and started heating to 180F. Should have done this from the start so it would be ready to flush the chiller.</p>
<p>1:10pm<br />
Finished draining PBW, gotta flush with clean water now</p>
<p>1:17pm<br />
Ran clean water through chiller and drain and into BK<br />
PBW was left between 2 and G I guess, pumped back into BK a bit.<br />
Could probably drain that using the prime dump next time</p>
<p>Probably should remove kettle manual valves. Serve no purpose and can store baddies.</p>
<p>1:28pm<br />
Continued heating HLT, had to stop while moving water<br />
Had to cycle clean water through BK 2X before it felt not slippery</p>
<p>1:35pm<br />
Started moving HLT water to BK for chiller sterilization</p>
<p>1:39pm<br />
Moved 10 gallons 130F water to BK, will continue heating and sanitize chiller with it<br />
This represents the start of a normal brew day. Previous work was all stuff that will normally be done at the end of the brew day.</p>
<p>1:51pm<br />
Last minute configuration stuff<br />
Starting the brew!</p>
<p>1:58pm<br />
BT says to fill mash to 7.8, HLT to 10.8. Already have 14 in HLT so keeping it.<br />
7.8 is too low for temp sensor in MLT. Hmm. This wouldn’t matter as much if I had the HEX return sensor.<br />
Going to add 2 gallons and then dump it before mashing in.</p>
<p>2:05pm<br />
Just realized that if I continue the program right now I won’t have a chance to run the chiller sanitize, so going back to that for now.</p>
<p>Seem to be having some BTPD problems. Or possibly power supply. Getting a lot of flicker from LCD in certain modes. Lots of BTPD resets. Did I ever adjust the brownout on my units? Might be time to dump the BTPD v1 units.</p>
<p>2:22pm<br />
Started recirc on chiller at 185F<br />
Also heating HLT to 170 to get ahead of that<br />
Manually adjusting BK heat to keep the temp around 185F</p>
<p>2:38pm<br />
Finished sanitizing chiller, draining BK to sink<br />
HLT at 130F</p>
<p>Chill water out does not have an adjustable valve on it, so it’s gonna be full bore. Maybe replace E with proportional eventually.</p>
<p>2:50pm<br />
Uploaded new code w/out BTPD support. They keep resetting like crazy. Don’t know if they are the problem or not but that’s the first step in finding out. Unplugged BTPDs completely.<br />
2:52pm<br />
Really for real starting the brew<br />
Really need to replace that alarm. It’s terrifying.<br />
LCD still flickering a lot, don’t think the problem is the BTPDs. Maybe power supply. Need to stick a big ass cap on the 12v lines.<br />
HLT 135F, MLT 85F</p>
<p>3:05pm<br />
Just noticed I never turned the HLT heater on. Sweet! Water will heat faster with it on.<br />
HLT 118F, MLT 111F</p>
<p>3:17pm<br />
Crushed one campden tab and added half to MLT and half to HLT<br />
Cleaned scrubby and put it under diptube in BK</p>
<p>MLT is trailing the HLT by almost exactly 10 degrees. Not sure if that is relevant right now.</p>
<p>3:30pm<br />
HLT 149F, MLT 139F</p>
<p>3:53pm<br />
Screwing around with serial logging a bit to get some data out. Almost up to temp on kettles.</p>
<p>4:05pm<br />
Done screwing around, resuming brew<br />
169F, 160F</p>
<p>4:08pm<br />
172F, 163F</p>
<p>4:15pm<br />
MLT now coming up to temp very slowly. Might be seeing the HEX inefficiency here.<br />
171, 166</p>
<p>4:24pm<br />
Fucking BT locked up and I didn’t notice. Everything kept running.<br />
182, 173</p>
<p>4:33pm<br />
Took off lids and stirred to lower temp, 179/170<br />
Doughing in<br />
Strike 156F after dough in and stirring, probably due to the grain being warmer than I programmed @ 69F<br />
4:47pm<br />
Mash running well<br />
Heating seems to overshoot by as much as 5F. Gotta get the PID going on that.<br />
Wort is now beautiful and clear running through the sight glass</p>
<p>5:30pm<br />
Mash almost finished<br />
Overshoot is about 6 degrees. Goes from 154 to 160 and then slowly drops back down.</p>
<p>5:40pm<br />
Started sparge<br />
Need a way to judge flow better</p>
<p>5:54pm<br />
Bug in sparge in valve profile! Wasn’t actually pumping any water in <img src='http://www.vonnieda.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Need to pay more attention to volume of sparge water. Going to end up with 4 gallons of liquid in mash that should not be there.</p>
<p>6:08pm<br />
Turned on BK element to start heating up the wort<br />
9 gallons collected so far</p>
<p>6:27<br />
Finished sparge<br />
Got about 12.5G in kettle. Will determine why when grains are scooped out<br />
Starting boil<br />
Lost a taste by leaving dump valve open. Woops.<br />
Original Gravity was 1.038 @ 150F by hydrometer<br />
12.2P<br />
Expected original gravity was 1.051, and we’re looking at 1.048</p>
<p>6:53pm<br />
Wort boil hit</p>
<p>6:58pm<br />
Started boil timer<br />
Dropped first hops<br />
70% @ 4S is giving a nice hard boil</p>
<p>There was a lot of wort trapped in the HEX, probably the missing wort. Flush it next time.</p>
<p>Boil temp is 209F<br />
Refilled HLT to 10G and started heating to 180F</p>
<p>7:54pm<br />
Added Irish Moss, should have done @15 instead of @5<br />
Cleaning water up to temp</p>
<p>8:00pm<br />
Added the last minute hops directly to wort at 7:59pm<br />
Remove hop bags<br />
Started recirc for whirlpool</p>
<p>8:06pm<br />
Stopped whirlpool, starting settle, will allow to settle for 10 mins<br />
Wort is 194F<br />
Kettle lid should go on at 176F<br />
Wort has a really nice spicy note, kinda like cinnamon or nutmeg</p>
<p>8:14pm<br />
Decided to stir the BK a little to check for temp hotspots. I’m retarded. There goes my nice hop pile.</p>
<p>8:17pm<br />
Started chilling<br />
Removed whirlpool return, need to be able to see if beer is flowing<br />
Really need sightglass and flow meter</p>
<p>9:00pm<br />
Sanitized the fermenter by putting 5 gallons of sanitizer in and spraying the heck out of the top part. Hope that does the trick.</p>
<p>9:11pm<br />
Last few degrees taking forever. Wasting a lot of water. Need to rethink this quite a bit. Ice in the MLT might be good.</p>
<p>9:36pm<br />
Transferring to fermenter via bucket <img src='http://www.vonnieda.org/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
Think I ended up with about 10.5G, failed to look before moving some<br />
Maybe more like 10.0G<br />
Evaporation rate was too low, I think, and we lost some in the HEX.</p>
<p>9:57pm<br />
SG 13*P 1.054 by hydrometer @ 68F</p>
<p>11:00pm<br />
Finally done, finished cleaning up<br />
Beer is in the fermenter with a hose to a bucket of sanitizer for blow off<br />
Pitched two packets of Safale US-05, direct to fermenter. They stuck on the foam at the top so I shook it up a bit to mix them in.<br />
Oxygenated full open for 60 seconds from bottom</p>
<p>Final notes:<br />
The whole hops I threw in at the last clogged things up a bit. The scrubby actually worked really well, but it definitely slowed down the flow. I pulled the scrubby out during clean up and the whole hops instantly clogged the drain. Those things will probably get fully stuck in ½” tubing, I bet.</p>
<p>The scrubby was FULL of gunk when I rinsed it out. I think it caught every last drop of break.</p>
<p>I think pellet would have flowed fine, but then they would have been stuck in the chiller. Gotta think about filtering more.</p>
<p>Cleanup went pretty smooth. I kept the HLT full of 180F and used it at the very end to flush the chiller. Used fresh water to flush everything else. On reflection, should have used the 180F to flush at least the HEX too.</p>
<p>Shop Vac is the business for cleaning up the hop mess in the BK and the last bits of grain in the MLT. Gotta get one specifically for brewing. A bucket one would be good. Easier to dump.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vonnieda.org/archives/1691/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brewery: Getting Close</title>
		<link>http://www.vonnieda.org/archives/1681</link>
		<comments>http://www.vonnieda.org/archives/1681#comments</comments>
		<pubDate>Wed, 03 Aug 2011 05:43:32 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Brewery Build]]></category>

		<guid isPermaLink="false">http://www.vonnieda.org/?p=1681</guid>
		<description><![CDATA[Well, I think I am starting to see the finish line on the brewery. It&#8217;s getting very close to done. I&#8217;ve been out in the garage bending tube and plumbing every spare hour I have. This past weekend I finally finished the final version of the manifold pieces and I mounted them on the stand. [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I think I am starting to see the finish line on the brewery. It&#8217;s getting very close to done. I&#8217;ve been out in the garage bending tube and plumbing every spare hour I have. This past weekend I finally finished the final version of the manifold pieces and I mounted them on the stand. I ended up using some split ring conduit hangers from Lowes. They are galvanized, and I would prefer stainless, but the only source for stainless ones I can find are 10 times the price. I can live with galvanized for now.</p>
<p>Last night I finished the lines that go from the pumps to the manifold and tonight I finished the HLT return, HEX input and MLT return. These three we going to be the most difficult and I had only planned to finish one of them tonight but it actually went pretty quick thanks to some Swagelok 90 degree elbows I bought a few weeks back so I just pushed through and did all three. I&#8217;m really happy with how it turned out.</p>
<p>Only things left to do are the BK return and the plumbing for the chiller. I am still short a few parts for the chiller, so that will have to wait till Thursday probably, but I hope to do the BK return tomorrow night. With any luck all the major work will be done by this weekend and I can spend the weekend doing wet testing and tuning. Doubt I will be able to fit a brew in, but you never know. Here&#8217;s hoping!</p>
<div id="flickr_brewery20110802_421" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img  src="http://farm7.staticflickr.com/6143/6004575296_ef50fc0906.jpg" alt="" title="IMG_0456" /></li><li><img  src="http://farm7.staticflickr.com/6002/6004575144_c6dbf66053.jpg" alt="" title="IMG_0454" /></li><li><img  src="http://farm7.staticflickr.com/6013/6004574976_1e166531d8.jpg" alt="" title="IMG_0451" /></li><li><img  src="http://farm7.staticflickr.com/6014/6004028899_818023293a.jpg" alt="" title="IMG_0449" /></li><li><img  src="http://farm7.staticflickr.com/6138/6004028749_6871a07067.jpg" alt="" title="IMG_0447" /></li><li><img  src="http://farm7.staticflickr.com/6138/6004028605_755faeed9f.jpg" alt="" title="IMG_0445" /></li><li><img  src="http://farm7.staticflickr.com/6022/6004574378_e5f0175b4b.jpg" alt="" title="IMG_0443" /></li><li><img  src="http://farm7.staticflickr.com/6150/6004028285_c8e7d1ef9c.jpg" alt="" title="24kto" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_brewery20110802_421").data("delay","5");jQuery("#flickr_brewery20110802_421").data("autoplay","on");jQuery("#flickr_brewery20110802_421").data("captions","on");jQuery("#flickr_brewery20110802_421").data("descriptions","");</script>
]]></content:encoded>
			<wfw:commentRss>http://www.vonnieda.org/archives/1681/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brewery: Finally Some Progress!</title>
		<link>http://www.vonnieda.org/archives/1676</link>
		<comments>http://www.vonnieda.org/archives/1676#comments</comments>
		<pubDate>Mon, 18 Jul 2011 05:09:40 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Brewery Build]]></category>

		<guid isPermaLink="false">http://www.vonnieda.org/?p=1676</guid>
		<description><![CDATA[Well, it&#8217;s been months and months since I have made any progress on the brewery, but this weekend I finally got out of my funk and got some shit done! I&#8217;ve really been struggling with the next step of the build, which has been to convert all the plumbing to hard, stainless steel tubing. I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it&#8217;s been months and months since I have made any progress on the brewery, but this weekend I finally got out of my funk and got some shit done! I&#8217;ve really been struggling with the next step of the build, which has been to convert all the plumbing to hard, stainless steel tubing. I&#8217;ve been trying to figure out how to make it all perfect and I finally realized that I just won&#8217;t be able to, so I started bending. </p>
<p>So far things are coming along okay. I will probably need to add some Swagelok elbows to get things really set right and I might end up using some short pieces of reinforced nylon tubing as jumpers, but it&#8217;s coming along.</p>
<p>This weekend I got the HLT fully plumbed and the MLT half plumbed. I also got the HEX plumbed and pump 1 bolted down. I fully expect that I will end up redoing parts of this, but it feels good to actually make some progress.</p>
<div id="flickr_brewery20110717_538" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img height="90%" src="http://farm7.staticflickr.com/6129/5948958583_dbd0786c0e.jpg" alt="" title="IMG_2225" /></li><li><img  src="http://farm7.staticflickr.com/6134/5949513726_3691868513.jpg" alt="" title="IMG_2224" /></li><li><img  src="http://farm7.staticflickr.com/6021/5948958115_30e0f38e88.jpg" alt="" title="IMG_2223" /></li><li><img  src="http://farm7.staticflickr.com/6139/5948957909_6b6040c522.jpg" alt="" title="IMG_2222" /></li><li><img  src="http://farm7.staticflickr.com/6129/5948957701_d117955996.jpg" alt="" title="IMG_2221" /></li><li><img height="90%" src="http://farm7.staticflickr.com/6146/5949512870_0e91d07f9e.jpg" alt="" title="IMG_2220" /></li><li><img height="90%" src="http://farm7.staticflickr.com/6008/5948933761_6a57e9afc7.jpg" alt="" title="Plumbing First Steps" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_brewery20110717_538").data("delay","5");jQuery("#flickr_brewery20110717_538").data("autoplay","on");jQuery("#flickr_brewery20110717_538").data("captions","on");jQuery("#flickr_brewery20110717_538").data("descriptions","");</script>
]]></content:encoded>
			<wfw:commentRss>http://www.vonnieda.org/archives/1676/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brewery: Mistakes</title>
		<link>http://www.vonnieda.org/archives/1625</link>
		<comments>http://www.vonnieda.org/archives/1625#comments</comments>
		<pubDate>Sun, 30 Jan 2011 00:28:19 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Brewery Build]]></category>

		<guid isPermaLink="false">http://www.vonnieda.org/?p=1625</guid>
		<description><![CDATA[Here is a list of things I would do differently if I was starting over on my brewery project. I think this list will be very useful when I inevitably start over on my brewery project Separate control boxes for low voltage and high voltage. I would build a small box that houses all the high voltage switches, [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a list of things I would do differently if I was starting over on my brewery project. I think this list will be very useful when I inevitably start over on my brewery project <img src='http://www.vonnieda.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li>Separate control boxes for low voltage and high voltage. I would build a small box that houses all the high voltage switches, relays, SSRs and plugs and run low voltage, opto-coupled signals to it. Having all the high voltage stuff in the main control panel makes it harder and more dangerous to work on, and makes it much bulkier than it needs to be. I would put the high voltage box down in the rig somewhere. This would have the added benefit of probably not needing expensive twist lock plugs. I think I spent almost $200 just in plugs for high voltage stuff.</li>
<li>Have a box on the rig for all the valves, temp controllers and pressure sensors and come up with a way to gang them all into a single cable going to the control panel. Ideally I would like the high voltage box and the sensor/valve box to just be networked to the control panel with RS-485 or something.</li>
<li>Kettles with bottom outlets. One of the most annoying things I&#8217;ve found so far with my brewery is that there&#8217;s no good way to clean the kettles completely. It&#8217;s a battle of diminishing returns. The siphon outlet of the keg leaves about .22 gallons along with all the crap that has collected in that liquid. So washing bits of grain, hops, etc. becomes a matter of pumping in water, draining it, pumping in more water, draining it. I&#8217;ve taken to using towels to soak up the last .22 gallons and then cleaning it all by hand. If they were bottom dump I could just rinse all the crap right down the drain.</li>
<li>Drill holes at 45* angles around the kettles instead of 90* angles. At 90* angles everything wants to bump into the stuff in the kettle next to it.</li>
<li>Skip the Blichmann gear. It&#8217;s pretty but it&#8217;s expensive and once you start drilling and cutting it&#8217;s kind of a waste. There&#8217;s better options for a DIY system like this.</li>
<li>Skip the solenoids. I&#8217;ve mentioned this before, but solenoid valves are useless in a brewery. I spent over $400 in solenoids just to find this out. Use motorized ball valves.</li>
<li>Use tri-clamp fittings on manifolds. This is expensive, but it will save a huge amount of frustration. Trying to line up dozens of threaded fittings is a massive pain in the ass. I don&#8217;t know how pipe fitters keep their sanity.</li>
<li>Spend way more time thinking about how things will get cleaned. Cleaning is still a pain in the ass. I still don&#8217;t know how to completely drain my system including all the hoses, valves and manifolds. All these spots are wonderful little havens for nasties to build up.</li>
<li>Remember how useful pipe clamps are for everything. They kick ass. Use them to mount almost anything to almost anything.</li>
</ul>
<p>To be continued&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vonnieda.org/archives/1625/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Macs Are Better</title>
		<link>http://www.vonnieda.org/archives/1621</link>
		<comments>http://www.vonnieda.org/archives/1621#comments</comments>
		<pubDate>Mon, 13 Dec 2010 07:43:49 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vonnieda.org/?p=1621</guid>
		<description><![CDATA[When Windows people give me shit about using a Mac I just take it cause there&#8217;s no point in arguing, but inside I am giggling. Giggling like a little girl. Here&#8217;s why: I just used a free program called Carbon Copy Cloner to back my main laptop up to an external USB hard drive. It [...]]]></description>
			<content:encoded><![CDATA[<p>When Windows people give me shit about using a Mac I just take it cause there&#8217;s no point in arguing, but inside I am giggling. Giggling like a little girl.</p>
<p>Here&#8217;s why: I just used a free program called Carbon Copy Cloner to back my main laptop up to an external USB hard drive. It backs up everything, quickly, and makes the drive bootable. Then I unplugged it, plugged it into my 5 year old other Mac laptop and held down Option when it started. I chose the external USB hard drive as my boot drive and I am now instantly up and running with my exact operating system, all my data, preferences, everything. The only thing I had to change was the background image of my laptop monitor since I hadn&#8217;t previously assigned one to that monitor. My two laptops are pretty different: Different CPUs, RAM, drives, video, chipsets &#8211; just totally different. When I booted Mac OS X didn&#8217;t even utter a peep. No driver dialogs, no incompatible drivers, nothing. Just starts up and runs.</p>
<p>If you tried doing this with a Windows machine it would be a world of hurt and it probably just plain wouldn&#8217;t ever work unless the machines were nearly identical. You would spend hours clicking through drive installations and driver conflicts. Eventually you would just give up and reinstall Windows. And then all your preferences would be gone because you don&#8217;t know the black magic required to get your registry copied over. Oh, and don&#8217;t forget to &#8220;Activate&#8221; it.</p>
<p>You might think it&#8217;s Carbon Copy Cloner doing all the work and nothing to do with Mac. That&#8217;s about 10% right. CCC does a great job making sure all files are copied over and that the drive is bootable but the real magic is that Mac OS X has an intelligent driver system that Just Works.</p>
<p>Macs are way better.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vonnieda.org/archives/1621/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PCH Day Eight and Nine</title>
		<link>http://www.vonnieda.org/archives/1619</link>
		<comments>http://www.vonnieda.org/archives/1619#comments</comments>
		<pubDate>Wed, 01 Dec 2010 23:17:16 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vonnieda.org/?p=1619</guid>
		<description><![CDATA[I haven&#8217;t gotten around to writing about our trip back home, but till I do, here&#8217;s some pictures!]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t gotten around to writing about our trip back home, but till I do, here&#8217;s some pictures!</p>
<div id="flickr_pch2010day8_360" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img height="90%" src="http://farm6.staticflickr.com/5046/5224506146_dc825b8d5d.jpg" alt="" title="IMG_0179" /></li><li><img height="90%" src="http://farm6.staticflickr.com/5082/5224505908_8156f00646.jpg" alt="" title="IMG_0177" /></li><li><img height="90%" src="http://farm5.staticflickr.com/4127/5224505716_855d257e43.jpg" alt="" title="IMG_0174" /></li><li><img height="90%" src="http://farm5.staticflickr.com/4111/5224505568_c19e4c76c3.jpg" alt="" title="IMG_0173" /></li><li><img height="90%" src="http://farm5.staticflickr.com/4106/5224504994_7ce3a72849.jpg" alt="" title="IMG_0170" /></li><li><img height="90%" src="http://farm5.staticflickr.com/4108/5224504702_f992e421c3.jpg" alt="" title="IMG_0168" /></li><li><img height="90%" src="http://farm6.staticflickr.com/5086/5224504306_698a4be316.jpg" alt="" title="IMG_0166" /></li><li><img height="90%" src="http://farm5.staticflickr.com/4107/5224504054_cb7d75922b.jpg" alt="" title="IMG_0164" /></li><li><img height="90%" src="http://farm5.staticflickr.com/4148/5224503804_83c893ea65.jpg" alt="" title="IMG_0163" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_pch2010day8_360").data("delay","5");jQuery("#flickr_pch2010day8_360").data("autoplay","on");jQuery("#flickr_pch2010day8_360").data("captions","on");jQuery("#flickr_pch2010day8_360").data("descriptions","");</script>
<div id="flickr_pch2010day9_397" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img  src="http://farm6.staticflickr.com/5009/5224506682_873c8659b7.jpg" alt="" title="IMG_0186" /></li><li><img  src="http://farm5.staticflickr.com/4107/5224506526_1304c1812a.jpg" alt="" title="IMG_0184" /></li><li><img  src="http://farm6.staticflickr.com/5204/5224506434_7c847f1828.jpg" alt="" title="IMG_0182" /></li><li><img  src="http://farm6.staticflickr.com/5290/5223908207_b13446c089.jpg" alt="" title="IMG_0180" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_pch2010day9_397").data("delay","5");jQuery("#flickr_pch2010day9_397").data("autoplay","on");jQuery("#flickr_pch2010day9_397").data("captions","on");jQuery("#flickr_pch2010day9_397").data("descriptions","");</script>
]]></content:encoded>
			<wfw:commentRss>http://www.vonnieda.org/archives/1619/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PCH Day Seven</title>
		<link>http://www.vonnieda.org/archives/1615</link>
		<comments>http://www.vonnieda.org/archives/1615#comments</comments>
		<pubDate>Sat, 27 Nov 2010 06:13:32 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vonnieda.org/?p=1615</guid>
		<description><![CDATA[I&#8217;m totally beat, so not gonna post much. Been a busy day and 7 days on the road is taking it&#8217;s toll. Today we found a Yoshinoya on our way out of LA, went to Huntington Beach, San Juan Capistrano, Carlsbad and Pizza Port, Carlsbad beach for sunset, Stone Brewing Company madhouse where I got [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m totally beat, so not gonna post much. Been a busy day and 7 days on the road is taking it&#8217;s toll.</p>
<p>Today we found a Yoshinoya on our way out of LA, went to Huntington Beach, San Juan Capistrano, Carlsbad and Pizza Port, Carlsbad beach for sunset, Stone Brewing Company madhouse where I got two growlers and a new beanie, Lost Abbey which we bypassed cause it looked shady, checked in at the Marriott in San Diego, got some decent Thai at Royal Thai and now I&#8217;m gonna sleep, sleep, sleep!</p>
<p>Tomorrow we start back to Seattle on I-5. 1238 miles on the same highway, here we come!</p>
<div id="flickr_pch2010day7_950" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img  src="http://farm6.staticflickr.com/5008/5224502866_0013e61d7a.jpg" alt="" title="IMG_0160" /></li><li><img  src="http://farm6.staticflickr.com/5285/5223904731_7e1e281a53.jpg" alt="" title="IMG_0158" /></li><li><img  src="http://farm6.staticflickr.com/5285/5223904611_162885f787.jpg" alt="" title="IMG_0157" /></li><li><img  src="http://farm6.staticflickr.com/5248/5224502420_2b61949507.jpg" alt="" title="IMG_0155" /></li><li><img  src="http://farm6.staticflickr.com/5048/5223904169_a546889015.jpg" alt="" title="IMG_0153" /></li><li><img height="90%" src="http://farm5.staticflickr.com/4091/5223903995_3da8b795a9.jpg" alt="" title="IMG_0151" /></li><li><img  src="http://farm6.staticflickr.com/5161/5224501792_1c730770e5.jpg" alt="" title="IMG_0149" /></li><li><img  src="http://farm6.staticflickr.com/5124/5224501556_0e4bef521b.jpg" alt="" title="IMG_0147" /></li><li><img  src="http://farm6.staticflickr.com/5045/5224501314_9425accc27.jpg" alt="" title="IMG_0144" /></li><li><img  src="http://farm5.staticflickr.com/4130/5223903081_2c5488fa7b.jpg" alt="" title="IMG_0142" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_pch2010day7_950").data("delay","5");jQuery("#flickr_pch2010day7_950").data("autoplay","on");jQuery("#flickr_pch2010day7_950").data("captions","on");jQuery("#flickr_pch2010day7_950").data("descriptions","");</script>
]]></content:encoded>
			<wfw:commentRss>http://www.vonnieda.org/archives/1615/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PCH Day Six</title>
		<link>http://www.vonnieda.org/archives/1613</link>
		<comments>http://www.vonnieda.org/archives/1613#comments</comments>
		<pubDate>Fri, 26 Nov 2010 04:41:55 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vonnieda.org/?p=1613</guid>
		<description><![CDATA[Happy Thanksgiving ya&#8217;ll! Today we got up fairly early, packed up and left Santa Barbara for the glitz and glamour of Los Angeles. After a strange trip down the 101 and 1 including a weird 2 mile stretch of beach that was nothing but giant RVs we eventually made it through Malibu and into Santa [...]]]></description>
			<content:encoded><![CDATA[<p>Happy Thanksgiving ya&#8217;ll!</p>
<p>Today we got up fairly early, packed up and left Santa Barbara for the glitz and glamour of Los Angeles. After a strange trip down the 101 and 1 including a weird 2 mile stretch of beach that was nothing but giant RVs we eventually made it through Malibu and into Santa Monica. We took a quick trip down the pier but it was mainly a freakshow and we kept on. Eventually we ended up at Venice Beach. I wanted Courtney to see that particular brand of freak show; specifically muscle beach. Unfortunately all the body builders took the day off so we spent a few minutes checking out the skate park and then just walked the boardwalk for a while.</p>
<p>One thing that stuck out was the absurd &#8220;Medical Marijuana&#8221; booths all along the boardwalk. They all claim to have a &#8220;doctor&#8221; who is &#8220;in&#8221; and can take &#8220;walk in appointments&#8221;. Ignore that the doctors all look like bombed out stoners. I&#8217;m guessing all it takes to get a &#8220;prescription&#8221; there is for you to say &#8220;Oh, my aching one hundred dollar bill.&#8221;</p>
<p>Might as well just legalize it.</p>
<p>Anyway, Courtney hated Venice saying &#8220;I feel like I am going to get syphilis&#8221; so we retired to a nice drive down Sunset Boulevard and eventually landed in Hollywood. We saw the sights, groaned at the retarded ass superheros and called it quits. Hollywood is sad and depressing.</p>
<p>Next was a trip to a certain corner which was supposed to have good views of &#8220;The Sign&#8221;, which it did. And then we took a drive up Mulholland Drive. That was pretty great. We pulled off at the Hollywood Bowl lookout and got great views of downtown, the bowl, the sign and the valley.</p>
<p>Finally, we had had enough so we pulled over, woke up the Priceline app and landed a nice 4 star suite in West Hollywood for $99. Pretty awesome. We&#8217;re snug and cozy at the Le Montrose Suite Hotel and we just finished turkey dinner at the restaurant downstairs. It was delicious.</p>
<p>Tomorrow is our last day heading south. We&#8217;re planning on driving to San Diego, seeing the sights and sleeping there. Then we&#8217;ll turn around and start heading back home. The return trip is going to be a quick one, straight up I-5 with few stops.</p>
<div id="flickr_pch2010day6_926" class="slickr-flickr-galleria landscape medium"><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p><ul><li class="active"><img  src="http://farm5.staticflickr.com/4154/5223905579_5a2e1b6866.jpg" alt="" title="IMG_2123" /></li><li><img  src="http://farm6.staticflickr.com/5083/5223905399_23caa7e5ac.jpg" alt="" title="IMG_2122" /></li><li><img  src="http://farm6.staticflickr.com/5285/5223905185_f35a8c231a.jpg" alt="" title="IMG_2121" /></li><li><img  src="http://farm5.staticflickr.com/4126/5208422194_215d896b98.jpg" alt="" title="LA from from Mulholland Drive" /></li><li><img  src="http://farm5.staticflickr.com/4103/5207824511_bae9ee1588.jpg" alt="" title="IMG_2122" /></li><li><img  src="http://farm5.staticflickr.com/4090/5207823897_233ea578c6.jpg" alt="" title="The Sign from Mulholland Drive" /></li><li><img height="90%" src="http://farm6.staticflickr.com/5165/5208420470_f5d5785746.jpg" alt="" title="We`re missing some Courtney" /></li><li><img  src="http://farm5.staticflickr.com/4085/5208420072_10bc90eff2.jpg" alt="" title="You know you love it." /></li><li><img height="90%" src="http://farm5.staticflickr.com/4128/5207822369_f863643f13.jpg" alt="" title="Santa Monica Pier" /></li><li><img height="90%" src="http://farm5.staticflickr.com/4111/5208419144_c4f9063688.jpg" alt="" title="Santa Monica Beach" /></li></ul><div style="clear:both"></div><p class="nav medium"><a href="#" class="prevSlide">&laquo; previous</a> | <a href="#" class="startSlide">start</a> | <a href="#" class="stopSlide">stop</a> | <a href="#" class="nextSlide">next &raquo;</a></p></div><script type="text/javascript">jQuery("#flickr_pch2010day6_926").data("delay","5");jQuery("#flickr_pch2010day6_926").data("autoplay","on");jQuery("#flickr_pch2010day6_926").data("captions","on");jQuery("#flickr_pch2010day6_926").data("descriptions","");</script>
]]></content:encoded>
			<wfw:commentRss>http://www.vonnieda.org/archives/1613/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

