<?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>nHurD.orG</title>
	<atom:link href="http://nhurd.org/log/feed/" rel="self" type="application/rss+xml" />
	<link>http://nhurd.org/log</link>
	<description>Cycling, Recipes, and Life in General</description>
	<lastBuildDate>Tue, 06 Oct 2009 13:54:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Minimal OpenSolaris 2009.06</title>
		<link>http://nhurd.org/log/2009/10/06/minimal-opensolaris-2009-06/</link>
		<comments>http://nhurd.org/log/2009/10/06/minimal-opensolaris-2009-06/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 13:47:26 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[I'm a big boy now!]]></category>
		<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://nhurd.org/log/?p=174</guid>
		<description><![CDATA[After toying around with OpenSolaris for a couple of months, I started wondering what it would take to slim down the default installation to something more appropriate for a server &#8212; You know, no X, GNOME, or any of the other good stuff. Some searching on Google lead me to some instructions for a minimal [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-190" title="os_fan_button_white_lrg_rnd" src="http://nhurd.org/log/wp-content/uploads/2009/10/os_fan_button_white_lrg_rnd.jpg" alt="os_fan_button_white_lrg_rnd" />After toying around with OpenSolaris for a couple of months, I started wondering what it would take to slim down the default installation to something more appropriate for a server &#8212; You know, no X, GNOME, or any of the other good stuff. Some searching on Google lead me to some instructions for a <a href="http://alexeremin.blogspot.com/2008/12/minimum-opensolaris-200811-install.html">minimal install of OpenSolaris 2008.11</a>. Instead of starting out with a Live CD, I did a normal installation, booted in to that, and then followed these steps below (<strong>note:</strong> make sure to perform these tasks as either root or super-user).</p>
<p><strong>Create new zfs volume and mount it in /a:</strong></p>
<p>This will be the new root volume once we&#8217;re done installing our packages.</p>
<pre>zfs create rpool/ROOT/opensolaris-minimal
zfs set mountpoint=legacy rpool/ROOT/opensolaris-minimal
zfs set canmount=noauto rpool/ROOT/opensolaris-minimal

mkdir /a
mount -F zfs rpool/ROOT/opensolaris-minimal</pre>
<p><strong>Create the install image:</strong></p>
<pre>export PKG_IMAGE=/a
pkg image-create -F -a opensolaris.org=http://pkg.opensolaris.org $PKG_IMAGE
pkg refresh</pre>
<p><strong>Once that&#8217;s setup, I use the same methodology from the guy mentioned in the above link:</strong></p>
<p>Contents of pkg.txt:</p>
<pre>SUNWcsd
SUNWcs
SUNWzone
SUNWcsl
SUNWlibsasl
SUNWlibms
SUNWpr
SUNWlxml
SUNWzlib
SUNWtls
SUNWopenssl
SUNWpool
SUNWzfs
SUNWsmapi
SUNWtecla
SUNWckr
SUNWpicl
SUNWmd
SUNWinstall-libs
SUNWwbsup
SUNWgccruntime
SUNWcar
SUNWcakr
SUNWusbs
SUNWusb
SUNWaudd
SUNWkvm
SUNWos86r
SUNWrmodr
SUNWpsdcr
SUNWpsdir
SUNWcnetr
SUNWesu
SUNWkey
SUNWnfsckr
SUNWnfsc
SUNWgss
SUNWgssc
SUNWbip
SUNWbash
SUNWloc
SUNWsshcu
SUNWsshd
SUNWssh
SUNWtoo
SUNWzfskr
SUNWipf
SUNWrtls
SUNWipkg
SUNWpython-pyopenssl
SUNWpython-cherrypy
SUNWadmr
SUNWadmap
SUNWadmlib-sysid
SUNWPython
SUNWbzip
SUNWxwrtl
SUNWTk
SUNWTcl
SUNWlexpt
SUNWperl584core
SUNWinstall-libs
SUNWbeadm
SUNWvim
SUNWscreen</pre>
<p>Package installation:</p>
<pre>for pkg in `cat pkg.txt`; do pkg install $pkg; done</pre>
<p><strong>And now for some initial configurations:</strong></p>
<pre># seed the initial smf repository
cp $PKG_IMAGE/lib/svc/seed/global.db $PKG_IMAGE/etc/svc/repository.db
chmod 0600 $PKG_IMAGE/etc/svc/repository.db
chown root:sys $PKG_IMAGE/etc/svc/repository.db

# setup smf profiles
ln -s ns_files.xml $PKG_IMAGE/var/svc/profile/name_service.xml
ln -s generic_limited_net.xml $PKG_IMAGE/var/svc/profile/generic.xml
ln -s inetd_generic.xml $PKG_IMAGE/var/svc/profile/inetd_services.xml
ln -s platform_none.xml $PKG_IMAGE/var/svc/profile/platform.xml

# mark the new system image as uninstalled
sysidconfig -b $PKG_IMAGE -a /lib/svc/method/sshd
touch $PKG_IMAGE/etc/.UNCONFIGURED

# copy over the vfstab
cp -p /etc/vfstab $PKG_IMAGE/etc/vfstab

# copy over the current passwd, group, shadow, and user_attr to the new image
cp -p /etc/passwd $PKG_IMAGE/etc/passwd
cp -p /etc/shadow $PKG_IMAGE/etc/shadow
cp -p /etc/user_attr $PKG_IMAGE/etc/user_attr
cp -p /etc/group $PKG_IMAGE/etc/group

# copy of my existing host sshd keys
cp -p /etc/ssh/*key* $PKG_IMAGE/etc/ssh

# configure /dev in the new image
devfsadm -r $PKG_IMAGE
ln -s ../devices/pseudo/sysmsg@0:msglog $PKG_IMAGE/dev/msglog

# copy the grub files
rsync -avr --progress /boot/grub $PKG_IMAGE/boot/

# update the boot archive in the new image
bootadm update-archive -R $PKG_IMAGE

# update to the latest version of grub (this command generated
# some errors which i ignored).
$PKG_IMAGE/boot/solaris/bin/update_grub -R $PKG_IMAGE

# change our active boot environment
beadm activate opensolaris-minimal</pre>
<p>Once that&#8217;s completed, I&#8217;ll also modify grub&#8217;s menu.lst file to disable the graphical boot sequences, here&#8217;s what the finished file will look like (/rpool/boot/grub/menu.lst):</p>
<pre>#splashimage /boot/grub/splash.xpm.gz
#background 215ECA
timeout 30
default 0
#---------- ADDED BY BOOTADM - DO NOT EDIT ----------
#splashimage /boot/solaris.xpm
#foreground d25f00
#background 115d93
#---------------------END BOOTADM--------------------
title opensolaris-minimal
bootfs rpool/ROOT/opensolaris-minimal
kernel$ /platform/i86pc/kernel/$ISADIR/unix -B $ZFS-BOOTFS
module$ /platform/i86pc/$ISADIR/boot_archive
#============ End of LIBBE entry =============</pre>
<p>After that, I&#8217;ll umount the volume (/a) and reboot the system. Once as soon as I know that everything installed properly, I&#8217;ll use the beadm command to destroy the old boot environment, leaving me with a minimal(ish) install of OpenSolaris!</p>
]]></content:encoded>
			<wfw:commentRss>http://nhurd.org/log/2009/10/06/minimal-opensolaris-2009-06/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Last Minute Tortilla Soup</title>
		<link>http://nhurd.org/log/2009/08/31/last-minute-tortilla-soup/</link>
		<comments>http://nhurd.org/log/2009/08/31/last-minute-tortilla-soup/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 23:10:23 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Recipes]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[comfort food]]></category>
		<category><![CDATA[new recipes]]></category>
		<category><![CDATA[soup]]></category>

		<guid isPermaLink="false">http://nhurd.org/log/?p=171</guid>
		<description><![CDATA[Last night I had grilled some steak on the grill. Needless to say, I had some leftovers and wanted to do something with it. After searching around my pantry for a couple of staples, here&#8217;s what I came up with for a last minute tortilla soup.
Here&#8217;s what you&#8217;ll need:

1 can whole tomatoes (28 oz)
1 can [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I had grilled some steak on the grill. Needless to say, I had some leftovers and wanted to do something with it. After searching around my pantry for a couple of staples, here&#8217;s what I came up with for a last minute tortilla soup.</p>
<p>Here&#8217;s what you&#8217;ll need:</p>
<ul>
<li>1 can whole tomatoes (28 oz)</li>
<li>1 can whole corn kernels, drained (16 oz)</li>
<li>1 can black beans, drained (16 oz)</li>
<li>1 bottle beer. Be sure to pick something not too bitter as that will increase with cooking (I use a good Hefeveizen)</li>
<li>2 dried Chipotle peppers</li>
<li>2 dried chili peppers</li>
<li>1/4 C brown sugar</li>
<li>1 Tbsp cumin</li>
<li>1 Tbsp cinnamon</li>
<li>1 Tbsp chili powder</li>
<li>3 cloves garlic</li>
<li>1/2 onion chopped</li>
<li>1 green pepper chopped</li>
<li>1/4 C corn starch</li>
<li>1 steak, any cut, cooked in any fashion, diced</li>
</ul>
<p>In a large sauce pan, add the tomatoes and their juices and blend together (I have an imersion blender). Combine all of the ingredients, except for the corn) and place over medium heat and let simmer for about 45 minutes or until the peppers and onions are soft. Add the corn and cook for another 5 minutes. Serve with some crushed tortilla chips and enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://nhurd.org/log/2009/08/31/last-minute-tortilla-soup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holiday Barley Wine</title>
		<link>http://nhurd.org/log/2009/08/23/holiday-barley-wine/</link>
		<comments>http://nhurd.org/log/2009/08/23/holiday-barley-wine/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 12:47:08 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Homebrew]]></category>
		<category><![CDATA[Life in General]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Barley Wine]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[Ready for Christmas]]></category>

		<guid isPermaLink="false">http://nhurd.org/log/?p=163</guid>
		<description><![CDATA[So I&#8217;ve had a bit of a hiatus due to an interesting and tumultous past couple of months. At any rate, I&#8217;ve finally got around to posting on here and brewing again.
A couple of months ago, we found some of my earlier beers, namely my holiday Beligan Double that I brewed for Christmas 4 years [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve had a bit of a hiatus due to an interesting and tumultous past couple of months. At any rate, I&#8217;ve finally got around to posting on here and brewing again.</p>
<p>A couple of months ago, we found some of my earlier beers, namely my holiday Beligan Double that I brewed for Christmas 4 years ago. We opened it and I was amazed at the flavor of the now mature ale. Needless to say, I decided try to recreate the spice notes, but not in a Belgian Alte. So listed below is my attempt at brewing a barley wine.</p>
<h4><span id="more-163"></span><strong>Holiday Barley Wine</strong></h4>
<ul>
<li>Grain Bill (mill ahead of time)
<ul>
<li>1/4 lb Chocolate Malt</li>
<li>1/4 lb Caramunich Malt</li>
<li>1/2 lb Biscuit Malt</li>
</ul>
</li>
<li>Spices
<ul>
<li>4 Cinnamon sticks</li>
<li>1 tsp Cardamom seed</li>
<li>2 tsp Nutmeg</li>
<li>6 Cloves</li>
<li>2 tsp Coriander</li>
</ul>
</li>
<li>Hops
<ul>
<li>1 oz Nugget at 60 minutes</li>
<li>1 oz Kent Goldings at 2 minutes</li>
</ul>
</li>
<li>Extract / Yeast
<ul>
<li>9.9 lbs Amber extract</li>
<li>English Ale Yeast</li>
</ul>
</li>
</ul>
<p><strong>Method:</strong></p>
<p>Bring 5 gallons of water up to 150 degrees Fahrenheit. While the water is heating, place equal amounts of the grain into two large grain bags. Once the water is at temperature, add the grain and steep for 60 minutes. While the grain is steeping, clean and sanitize a 6.5 gallon carboy, cap the lid so no particles get inside and set aside. Once 60 minutes has passed, remove grain bags (be sure to either gently squeeze each bag or run hot water over them until the water runs clear) set aside and bring to a boil.</p>
<p>While the water is coming up to a boil, fill a sink with hot water, and let the cans of extract rest in the bath until the water comes to a boil. Once the wort is at a boil, slowly mix each can of extract into the wort (<strong>note:</strong> be sure to not add too much at once, or else this will sitck to the bottom and burn). Once the extract has been mixed into the wort, bring it back up to a boil and place the first ounce of hops (the Nugget) into the wort.  Once a half an hour has passed, add the first set of spices: 2 cinnamon sticks; 1/2 tsp cardamom seed; 1 tsp nutmeg; 3 cloves; and 1 tsp coriander.When another 28 minutes has passed, add the second addition of spices to the wort along with the last hop addition using the same procedure as mentioned above and continue to boil for another 2 minutes.</p>
<p>When the boiling is over, remove the hops and spices from the wort, and let settle for about 20 minutes. Siphon the hot wort into the carboy (be sure to use a strainer or filter to ensure that none of the bits of grain come along for the ride). When the carboy reaches the 5 gallon mark, place an airlock on it and let cool overnight.</p>
<p>Once the wort cools to about 75 degrees Fahrenheit, take the yeast out of the refridgerator and let it warm up to about room temperature. Finally, add the yeast to the carboy and set in a cool, dark place for about a week. After a week, clean and sanitize another, smaller carboy and siphon the beer from the 6.5 gallon carboy into the 5 gallon carboy and let sit until you&#8217;re ready to bottle. This should be about 6 months to a year.</p>
]]></content:encoded>
			<wfw:commentRss>http://nhurd.org/log/2009/08/23/holiday-barley-wine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blueberry Muffins</title>
		<link>http://nhurd.org/log/2009/06/01/blueberry-muffins/</link>
		<comments>http://nhurd.org/log/2009/06/01/blueberry-muffins/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 23:13:52 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Recipes]]></category>
		<category><![CDATA[breakfast]]></category>
		<category><![CDATA[comfort food]]></category>

		<guid isPermaLink="false">http://nhurd.org/log/?p=159</guid>
		<description><![CDATA[After a bit of a hiatus, I&#8217;m back with yet another muffin recipe: The ever so popular blueberry muffin. I tweaked the recipe that can be found here: To Die For Blueberry Muffins.
Here&#8217;s what you&#8217;ll need:

1 1/2 Cup all purpose flour
3/4 Cup sugar
1/2 tsp salt
2 tsp baking powder
1/3 Cup vanilla yoghurt
1/3 Cup soy milk (you [...]]]></description>
			<content:encoded><![CDATA[<p>After a bit of a hiatus, I&#8217;m back with yet another muffin recipe: The ever so popular blueberry muffin. I tweaked the recipe that can be found here:<a href="http://allrecipes.com/Recipe/To-Die-For-Blueberry-Muffins/Detail.aspx" target="_blank"> To Die For Blueberry Muffins</a>.</p>
<p>Here&#8217;s what you&#8217;ll need:</p>
<ul>
<li>1 1/2 Cup all purpose flour</li>
<li>3/4 Cup sugar</li>
<li>1/2 tsp salt</li>
<li>2 tsp baking powder</li>
<li>1/3 Cup vanilla yoghurt</li>
<li>1/3 Cup soy milk (you may need more or less depending on the yoghurt)</li>
<li>1 egg</li>
<li>About 1 Cup of blueberries (more or less depending on your preference)</li>
</ul>
<p>Preheat the oven to 400 degrees F. As the oven is preheating, combine the sugar, flour, salt, and baking powder into a large bowl and set aside. In a medium bowl, combine the yoghurt, milk, and egg; mix into the dry ingredients. Finally, fold in the blueberries and place into a lined muffin pan.</p>
<p>Bake for 20-25 minutes or until it passes the toothpick test.</p>
]]></content:encoded>
			<wfw:commentRss>http://nhurd.org/log/2009/06/01/blueberry-muffins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Busy, busy busy</title>
		<link>http://nhurd.org/log/2009/04/29/busy-busy-busy/</link>
		<comments>http://nhurd.org/log/2009/04/29/busy-busy-busy/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 12:55:43 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Cycling]]></category>
		<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[vacation]]></category>
		<category><![CDATA[yardwork]]></category>

		<guid isPermaLink="false">http://nhurd.org/log/?p=157</guid>
		<description><![CDATA[This past month has been pretty busy for me with the onset of warmer weather: I&#8217;ve been spending as much time as possible enjoying the great outdoors. Most of that time is spent riding some form of bicycle, and if not that, doing the ever-so daunting task of yard work. I have 4 flower beds [...]]]></description>
			<content:encoded><![CDATA[<p>This past month has been pretty busy for me with the onset of warmer weather: I&#8217;ve been spending as much time as possible enjoying the great outdoors. Most of that time is spent riding some form of bicycle, and if not that, doing the ever-so daunting task of yard work. I have 4 flower beds and a koi pond that usually needs some tending to from time to time. Raegan and I had ordered about 100 or so perennials from this on-line catalog a couple of weeks back, and I&#8217;m sure that that box will be waiting for us once we return from our vacation in Mexico; Raegan&#8217;s sister is getting married down there next week.</p>
<p>With that being said, I need to somehow find time to till up a portion of my yard for a vegetable garden, get a load of manure from Raegan&#8217;s horse farm, and get a load of mulch within the next month. I really need to get around to installing a hitch on the jeep and finding a utility trailer that it can tow.</p>
]]></content:encoded>
			<wfw:commentRss>http://nhurd.org/log/2009/04/29/busy-busy-busy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s a Jeep Thing</title>
		<link>http://nhurd.org/log/2009/04/01/its-a-jeep-thing/</link>
		<comments>http://nhurd.org/log/2009/04/01/its-a-jeep-thing/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 14:13:54 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Life in General]]></category>
		<category><![CDATA[Mountain Biking]]></category>
		<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[Jeep]]></category>
		<category><![CDATA[slow-day-at-work]]></category>

		<guid isPermaLink="false">http://nhurd.org/log/?p=155</guid>
		<description><![CDATA[I never thought in my wildest dreams that yesterday would be the last day that I&#8217;d be driving my GTI. Raegan and I went over to the Jeep dealership down the road from my house and took a 2009 Wrangler out for a test drive. By the end of the day, I was driving home [...]]]></description>
			<content:encoded><![CDATA[<p>I never thought in my wildest dreams that yesterday would be the last day that I&#8217;d be driving my GTI. Raegan and I went over to the Jeep dealership down the road from my house and took a 2009 Wrangler out for a test drive. By the end of the day, I was driving home in a brand new blue Wrangler! The financing is in the same ballpark as my GTI and has an unlimited warranty! So now I&#8217;ve got to buy a new roof rack for the jeep, and get my head deck and subwoofer installed in the bad boy! Pictures will be posted soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://nhurd.org/log/2009/04/01/its-a-jeep-thing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Over did it</title>
		<link>http://nhurd.org/log/2009/03/23/over-did-it/</link>
		<comments>http://nhurd.org/log/2009/03/23/over-did-it/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 15:18:53 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Cycling]]></category>
		<category><![CDATA[Mountain Biking]]></category>
		<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[Core Creek]]></category>
		<category><![CDATA[Neshaminy]]></category>
		<category><![CDATA[yardwork]]></category>

		<guid isPermaLink="false">http://nhurd.org/log/?p=153</guid>
		<description><![CDATA[I think I took a little too much advantage of the nice weather we experienced this past weekend in Lower Bucks County: Friday I went rock climbing with my girlfriend at the Doylestown Rock Gym; Saturday I went mountain biking in the morning and afternoon (a total of about 4 hours), did yard work, then [...]]]></description>
			<content:encoded><![CDATA[<p>I think I took a little too much advantage of the nice weather we experienced this past weekend in Lower Bucks County: Friday I went rock climbing with my girlfriend at the Doylestown Rock Gym; Saturday I went mountain biking in the morning and afternoon (a total of about 4 hours), did yard work, then went out to Dave &amp; Busters later that night; Sunday I went on Bike King&#8217;s Sunday morning ride. With all of that activity, I can honestly say that pretty much every part of my body is sore, especially my arms. It sure beats sitting inside!</p>
]]></content:encoded>
			<wfw:commentRss>http://nhurd.org/log/2009/03/23/over-did-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Becoming my own mechanic</title>
		<link>http://nhurd.org/log/2009/02/27/becoming-my-own-mechanic/</link>
		<comments>http://nhurd.org/log/2009/02/27/becoming-my-own-mechanic/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 15:01:46 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Mountain Biking]]></category>
		<category><![CDATA[Core Creek]]></category>
		<category><![CDATA[I'm a big boy now!]]></category>

		<guid isPermaLink="false">http://nhurd.org/log/?p=149</guid>
		<description><![CDATA[While mountain biking this past weekend, I managed to bend my rear derailer to the point where it needed to be replaced. Instead of taking it to my local bike shop (Bike King) to have it fixed, I decided to finally take the plunge and install it myself. I ordered the new derailer (a SRAM [...]]]></description>
			<content:encoded><![CDATA[<p>While mountain biking this past weekend, I managed to bend my rear derailer to the point where it needed to be replaced. Instead of taking it to my local bike shop (Bike King) to have it fixed, I decided to finally take the plunge and install it myself. I ordered the new derailer (a SRAM X-7, although I should have gotten that X-0!) and a new shift cable.</p>
<p>Once the parts arrived, I threw the bike up on my stand, took the old derailer off, ran the new cable, made all of the adjustments, and I was all set! All in all it took me about a half an hour to get everything done! I think with a little more practice, I might eventually have the confidence to start tweaking my road bike&#8230;.the only reason I don&#8217;t is because those components are much more expensive, and if I screw that up, I can&#8217;t walk the bike back to a car&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://nhurd.org/log/2009/02/27/becoming-my-own-mechanic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally Brewed</title>
		<link>http://nhurd.org/log/2009/02/22/finally-brewed/</link>
		<comments>http://nhurd.org/log/2009/02/22/finally-brewed/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 14:43:15 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Homebrew]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[cheese]]></category>
		<category><![CDATA[good food]]></category>

		<guid isPermaLink="false">http://nhurd.org/log/?p=139</guid>
		<description><![CDATA[It&#8217;s been nearly a year since I&#8217;ve last brewed; I made a lavender stout last March at my old apartment. Steve and I decided to make a mixed berry Saison rather than a Wee Heavy as it would be more appropriate with spring coming around the corner. While we brewed, we enjoyed some tasty Chimay, [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been nearly a year since I&#8217;ve last brewed; I made a lavender stout last March at my old apartment. Steve and I decided to make a mixed berry Saison rather than a Wee Heavy as it would be more appropriate with spring coming around the corner. While we brewed, we enjoyed some tasty Chimay, Swiss, and Cheddar cheeses along with a big bottle of O&#8217;Hara&#8217;s Celebration Stout, Dogfish Head Red &amp; White, and a smaller bottle of Brooklyn Brewery&#8217;s Dark Chocolate Stout.</p>
<p>One day soon, we hope to pool our money and efforts together to finally do an all grain batch&#8230;.one day&#8230;<br />
<span id="more-139"></span></p>
<h4>Mixed Berry Saison</h4>
<ul>
<li><strong>Grain Bill (milled ahead of time):</strong>
<ul>
<li>1/2 pound Belgian Caramunich</li>
<li>1/2 pound Belgian Aromatic</li>
<li>1 pound Biscuit Malt</li>
</ul>
</li>
<li><strong>Other Ingredients:</strong>
<ul>
<li>6 pounds frozen mixed berries
<ul>
<li>3 lbs for primary</li>
<li>3 lbs for secondary</li>
</ul>
</li>
<li>6.6 lbs light malt extract</li>
<li>1 ounce Saaz leaf hops
<ul>
<li>.5 oz at 60 minutes</li>
<li>.5 at 15 minutes</li>
</ul>
</li>
<li>Belgian Saison yeast (WLP565)</li>
</ul>
</li>
</ul>
<p><strong>Method:</strong></p>
<p>Bring 5 gallons of water up to 150 degrees Fahrenheit. While the water is heating, place equal amounts of the grain into two large grain bags. Once the water is at temperature, add the grain and steep for 45 minutes. While the grain is steeping, clean and sanitize a 6.5 gallon carboy, cap the lid so no particles get inside and set aside. Also, empty one of the bags of frozen fruit into a large mixing bowl and let rest. Once 45 minutes has passed, remove grain bags (be sure to either gently squeeze each bag ro run hot water over them until the water runs clear) set aside and bring to a boil.</p>
<p>While the water is coming up to a boil, fill a sink with hot water, and let the cans of extract rest in the bath until the water comes to a boil. Once the wort is at a boil, slowly mix each can of extract into the wort (<strong>note:</strong> be sure to not add too much at once, or else this will sitck to the bottom and burn). Once the extract has been mixed into the wort, bring it back up to a boil and place a half an ounce of the hops into another grain bag.As soon as the wort is boiling, add the grain bag containing the hops and let boil for 45 minutes. As the wort is boiling, mash the mixed berries using a potato masher to ensure that it will fit inside of the carboy. When 45 minutes has passed, add the second half ounce of hops, and boil for another 15 minutes.</p>
<p>When the boiling is over, remove the hops from the wort, and let settle for about 20 minutes. While the wort is resting, add the mashed berries to the carboy using a funnel and a spoon. Siphon the hot wort into the carboy (be sure to use a strainer or filter to ensure that none of the bits of grain come along for the ride). When the carboy reaches the 5 gallon mark, place an airlock on it and let cool overnight.</p>
<p>Once the wort cools to about 75 degrees Fahrenheit, take the yeast out of the refridgerator and let it warm up to about room temperature. Finally, add the yeast to the carboy and set in a cool, dark place for about a week. After about week, take the second bag of berries out of the freezer, place in a large sauce pan and heat to 185 degrees Fahrenheit to kill any bacteria. Again, mash the berries, and add to a 5 gallon carboy. Ciphon the beer out of the 6.5 gallon carboy into the 5 gallon carboy (again, be sure to use some kind of filter). Place an airlock on the carboy and let rest for another week.</p>
]]></content:encoded>
			<wfw:commentRss>http://nhurd.org/log/2009/02/22/finally-brewed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting a Fire from the Top Down</title>
		<link>http://nhurd.org/log/2009/02/05/starting-a-fire-from-the-top-down/</link>
		<comments>http://nhurd.org/log/2009/02/05/starting-a-fire-from-the-top-down/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 21:16:48 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Life in General]]></category>
		<category><![CDATA[Outdoors]]></category>
		<category><![CDATA[boredom]]></category>
		<category><![CDATA[interesting tidbits]]></category>

		<guid isPermaLink="false">http://nhurd.org/log/?p=135</guid>
		<description><![CDATA[I was doing some research regarding my wood stove and ways to have it burn more efficiently, when I came across another method for starting fires: From the top down. Basically, it&#8217;s a pyramid: The small stuff is on top while the bigger stuff is on the bottom. At any rate, it&#8217;s apparently an old(er) [...]]]></description>
			<content:encoded><![CDATA[<p>I was doing some research regarding my wood stove and ways to have it burn more efficiently, when I came across another method for starting fires:<a href="http://www.woodheat.org/tips/topdown.htm"> From the top down</a>. Basically, it&#8217;s a pyramid: The small stuff is on top while the bigger stuff is on the bottom. At any rate, it&#8217;s apparently an old(er) method of starting fires that dates back to the 1800s. Curiosity has gotten the better of me, and I&#8217;m having a go at it right now with my wood burning stove. Boy, if this works, I think I too will be a convert!</p>
]]></content:encoded>
			<wfw:commentRss>http://nhurd.org/log/2009/02/05/starting-a-fire-from-the-top-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
