<?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>n00tz.net</title>
	<atom:link href="http://n00tz.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://n00tz.net</link>
	<description>so you think you&#039;re savvy? reviews.ramblings.references</description>
	<lastBuildDate>Fri, 23 Jul 2010 20:50:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Building a TFTPD Server</title>
		<link>http://n00tz.net/2010/07/tftpd/</link>
		<comments>http://n00tz.net/2010/07/tftpd/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 20:50:32 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[atftp]]></category>
		<category><![CDATA[atftpd]]></category>
		<category><![CDATA[DRAC-III]]></category>
		<category><![CDATA[Firmware]]></category>
		<category><![CDATA[Lucid Lynx]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Step-By-Step]]></category>
		<category><![CDATA[TFTP]]></category>
		<category><![CDATA[tftpd]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VMWare ESXi]]></category>

		<guid isPermaLink="false">http://n00tz.net/?p=6528</guid>
		<description><![CDATA[TFTP, or Trivial File Transfer Protocol is a relatively lightweight protocol used for transferring single files at a timewithout the bulk of the massive capabilities of FTP. TFTP is used most often with embedded devices for firmware updates, or VoIP phones to get the latest configuration. Today, I ran into the desire to upgrade some [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol" target="_blank">TFTP, or Trivial File Transfer Protocol</a> is a relatively lightweight protocol used for transferring single files at a time<a href="http://n00tz.net/files/atftp.png"><img class="alignright size-full wp-image-6665" title="atftp" src="http://n00tz.net/files/atftp.png" alt="" width="247" height="187" /></a>without the bulk of the massive capabilities of FTP. TFTP is used most often with embedded devices for firmware updates, or VoIP phones to get the latest configuration. Today, I ran into the desire to upgrade some firmware on the DRAC-III device in my Dell PowerEdge 1650 that I just bought on EBay. After gaining access to the embedded web server&#8217;s firmware update page I found that it required a tftpd server to pull firmware images from. So, I began to deploy one here at the house for firmware updates I&#8217;ll undoubtedly need in the coming months as my home infrastructure grows.</p>
<p>After some searching across the web I found that there wasn&#8217;t a very good write up on the step by step procedure to enable a TFTP daemon on Ubuntu (my choice for linux servers). <span id="more-6528"></span>I had actually messed around with the tftpd package, but in the little bit I was able to find I determined I wanted to use the <a href="http://packages.ubuntu.com/search?keywords=atftp&amp;searchon=names&amp;suite=all&amp;section=all" target="_blank">&#8216;atftp&#8217; and &#8216;atftpd&#8217; packages</a> available in <a href="http://packages.ubuntu.com/" target="_blank">Ubuntu&#8217;s universe repositories</a> due to more adoption in instructions that were available. In what I&#8217;ve been able to determine, both the server daemon (atftpd) and the client program (atftp) are necessary on the server (computer). The reasoning, as best as I&#8217;ve been able to determine, is that the server (daemon) only makes the files available. The client (program) does all of the &#8220;work&#8221; in negotiating connections between each other, so a client (program) is necessary on both the server (computer) and the client (computer). I hope that made sense.</p>
<p>So that you have a baseline of expectations, I&#8217;ll be open with the specs and configuration of the server I&#8217;m using:</p>
<ul>
<li>Ubuntu Server 10.4 Lucid Lynx x86 (32 bit)</li>
<li>Dual 1.4Ghz Pentium3 CPUs</li>
<li>512MB RAM</li>
<li>Running as Guest OS on VMWare ESXi 3.5 Update5</li>
</ul>
<p>Now, let&#8217;s get atftpd installed.</p>
<ol>
<li>Get Root.
<ol>
<blockquote>
<li>sudo -i</li>
</blockquote>
</ol>
</li>
<li>Install atftpd.
<ol>
<blockquote>
<li>apt-get install atftpd</li>
</blockquote>
</ol>
</li>
<li>Edit atftpd&#8217;s configuration.
<ol>
<blockquote>
<li>pico -w /etc/default/atftpd</li>
<li>change &#8220;USE_INETD=true&#8221; to &#8220;USE_INETD=false&#8221;</li>
<li>ctrl+x, enter, y</li>
</blockquote>
</ol>
</li>
<li>Start atftpd.
<ol>
<blockquote>
<li>invoke-rc.d atftpd start</li>
</blockquote>
</ol>
</li>
<li>Add the tftp directory.
<ol>
<blockquote>
<li>cd /srv</li>
<li>mkdir tftp</li>
<li>chmod 777 tftp</li>
<li>chown nobody:nogroup tftp</li>
</blockquote>
</ol>
</li>
<li>Restart atftpd.
<ol>
<blockquote>
<li>/etc/init.d/atftpd restart</li>
</blockquote>
</ol>
</li>
<li>Install the client (program).
<ol>
<blockquote>
<li>apt-get install atftp</li>
</blockquote>
</ol>
</li>
<li>Done!</li>
</ol>
<p>At this point, use your favorite SCP client (program) to upload any firmware files to the /srv/tftp folder. Once it is uploaded, point the tftp location in your firmware update process to your newly deployed tftpd server. Easy enough!</p>
<p>Thanks for visiting, if you have any questions feel free to comment below and I&#8217;ll do my best to reply and help you out.</p>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2010/07/tftpd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick Post: Mani Admin Plugin for Source Dedicated Server</title>
		<link>http://n00tz.net/2010/07/quick-post-mani-admin-plugin-for-source-dedicated-server/</link>
		<comments>http://n00tz.net/2010/07/quick-post-mani-admin-plugin-for-source-dedicated-server/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 18:17:48 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Counter-Strike]]></category>
		<category><![CDATA[Day of Defeat]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[Mani Admin Plugin]]></category>
		<category><![CDATA[MetaMod]]></category>
		<category><![CDATA[MetaMod:Source]]></category>
		<category><![CDATA[Source]]></category>
		<category><![CDATA[Source Dedicated Server]]></category>
		<category><![CDATA[Team Fortress 2]]></category>

		<guid isPermaLink="false">http://n00tz.net/?p=5793</guid>
		<description><![CDATA[In setting up a dedicated source engine game server for Internet/LAN use, I was having problems getting the server to work with MetaMod:Source and the Mani Admin Plugin. It would hard-fault and close as soon as a round would begin. If you run into this same issue with a memory error and the following error in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://n00tz.net/files/source_engine2.png"><img class="alignleft size-medium wp-image-5830" title="source_engine" src="http://n00tz.net/files/source_engine2-300x91.png" alt="Source Engine" width="120" height="46" /></a>In setting up a dedicated source engine game server for Internet/LAN use, I was having problems getting the server to work with <a href="http://www.sourcemm.net/" target="_blank">MetaMod:Source</a> and the <a href="http://www.sourcemm.net/plugins" target="_blank">Mani Admin Plugin</a>. It would hard-fault and close as soon as a round would begin.</p>
<p>If you run into this same issue with a memory error and the following error in the server console window:</p>
<blockquote><p>workthreadpool.cpp (296) : Assertion Failed:CWorkThreadPool::StopWorkThreads: Some threads required forcible termination.</p></blockquote>
<p>The fix is to update your cfg/mani_admin_plugin/gametypes.txt with the <a href="http://www.mani-admin-plugin.com/joomla/index.php?option=com_content&amp;view=article&amp;id=90&amp;Itemid=73" target="_blank">one generated here</a> at the <a href="http://www.mani-admin-plugin.com/joomla/index.php" target="_blank">Mani Admin Plugin&#8217;s site</a>.</p>
<p>It took me a bit to find this fix, so hopefully the search engines were nice to you and directed you here.</p>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2010/07/quick-post-mani-admin-plugin-for-source-dedicated-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing VMWare Tools (ESXi vSphere 4) on Ubuntu Server Edition</title>
		<link>http://n00tz.net/2010/06/installing-vmware-tools-esxi-vsphere-4-on-ubuntu-server-edition/</link>
		<comments>http://n00tz.net/2010/06/installing-vmware-tools-esxi-vsphere-4-on-ubuntu-server-edition/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 23:30:32 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[binutils]]></category>
		<category><![CDATA[build-essential]]></category>
		<category><![CDATA[guest operating system]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Lucid Lynx]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VMWare ESXi]]></category>
		<category><![CDATA[VMWare Tools]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://n00tz.net/?p=313</guid>
		<description><![CDATA[This post is for preservation, because just about the time I forget the steps is the time I need to reinstall VMWare Tools on an Ubuntu Guest on an ESXi Host. sudo -i apt-get update apt-get upgrade apt-get install build-essential binutils linux-headers-$(uname -r) mount /dev/scd0 /cdrom cp -a /cdrom/VMwareTools* /tmp/ cd /tmp/ tar -vxzf VMwareTools*.gz [...]]]></description>
			<content:encoded><![CDATA[<p>This post is for preservation, because just about the time I forget the steps is the time I need to reinstall VMWare Tools on an Ubuntu Guest on an ESXi Host.</p>
<ol>
<li>sudo -i</li>
<li>apt-get update</li>
<li>apt-get upgrade</li>
<li>apt-get install build-essential binutils linux-headers-$(uname -r)</li>
<li>mount /dev/scd0 /cdrom</li>
<li>cp -a /cdrom/VMwareTools* /tmp/</li>
<li>cd /tmp/</li>
<li>tar -vxzf VMwareTools*.gz</li>
<li>cd vmware-tools-distrib/</li>
<li>./vmware-install.pl</li>
</ol>
<p>CD-ROM mount point may vary. Accept all defaults for vmware-install perl script.</p>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2010/06/installing-vmware-tools-esxi-vsphere-4-on-ubuntu-server-edition/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Synergy on Windows 7</title>
		<link>http://n00tz.net/2010/01/quick-tip-synergy-on-windows-7/</link>
		<comments>http://n00tz.net/2010/01/quick-tip-synergy-on-windows-7/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 20:48:24 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Display Fusion]]></category>
		<category><![CDATA[dual monitor]]></category>
		<category><![CDATA[multi-monitor]]></category>
		<category><![CDATA[Synergy]]></category>
		<category><![CDATA[Synergy2]]></category>
		<category><![CDATA[UAC]]></category>
		<category><![CDATA[User Account Control]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://n00tz.net/2010/01/quick-tip-synergy-on-windows-7/</guid>
		<description><![CDATA[For those of you that aren’t familiar with Synergy, it is a very essential server/client tool for anyone using multiple computers at their desk. It eliminates the need to have multiple keyboards and mice on your desk, while virtually extending your desktop across Windows, Mac, and Linux environments. You still connect your monitors to the [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you that aren’t familiar with Synergy, it is a very essential server/client tool for anyone using multiple computers at their desk. It eliminates the need to have multiple keyboards and mice on your desk, while virtually extending your desktop across Windows, Mac, and Linux environments. You still connect your monitors to the varying computers. I’ve seen seamless <a href="http://www.flickr.com/photos/phragmunkee/2213200478/" target="_blank">Quad-monitor (Three different OSes: WinXP, WinVista with dual monitors, OSX)</a> setups using this program. </p>
<p>This post won’t outline how to use Synergy, but rather just how to take care of the little things that will keep it from being a good experience on Windows Vista/7. I’m writing the rest of this post for those that are already familiar with Synergy, and instructions are targeted at Windows 7 Professional users.</p>
<p>Anyways, I was running into problems with my Synergy client on my home-office setup. I have a laptop docked with a second monitor for my office computer (operating as the Synergy client), and then a single monitor rig in portrait-orientation for my home computer (operating as the Synergy server). I use <a href="http://www.binaryfortress.com/displayfusion/" target="_blank">Display Fusion</a>, which runs as an administrator-level service on my desktop, and I use the multi-monitor taskbar available on the paid version of the software. I was unable to use the Synerg-ized mouse to select a window on that Display Fusion taskbar, and considering that was my 24” monitor where a lot of my work takes place it would be a huge problem if the laptop didn’t have a keyboard. On top of that, every time the client computer would prompt for UAC approval for various things, I would lose the ability to use my G5 mouse and G15 keyboard on my office laptop. </p>
<p> <span id="more-310"></span>
<p>I knew you could auto-elevate privileges, but just hadn’t taken the time to do it. Let’s get that out of the way, as that’s the first thing I noticed in the problems I was having.</p>
<h5>Step 1. Open secpol.msc </h5>
<p><a href="http://n00tz.net/files/UAC1.png"><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" title="UAC1" border="0" alt="UAC1" src="http://n00tz.net/files/UAC1_thumb.png" width="371" height="429" /></a></p>
<h5>Step 2. Set UAC Behavior for Administrators to ‘Elevate without prompting’</h5>
<p><a href="http://n00tz.net/files/UAC2.png"><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" title="UAC2" border="0" alt="UAC2" src="http://n00tz.net/files/UAC2_thumb.png" width="375" height="194" /></a> </p>
</p>
<p>Next up is configuring Synergy to run as Administrator. I want to note that this was my initial guess as to why it wasn’t allowing me to Auto-start on computer start, however even after forcing it to run as Administrator and installing the Auto-start service, it still wasn’t working. I found out this is due to the way the System user interacts (or rather doesn’t) with the user’s desktop.</p>
<h5>Step 3. Run Synergy as Administrator.</h5>
<p><a href="http://n00tz.net/files/UACSynergyAdmin.png"><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" title="UACSynergyAdmin" border="0" alt="UACSynergyAdmin" src="http://n00tz.net/files/UACSynergyAdmin_thumb.png" width="376" height="330" /></a> </p>
<p>Right click on the shortcut for Synergy, and click the Advanced… button. Check the “Run as administrator” box.</p>
<h5>Step 4. Auto-start Synergy on Log-in</h5>
<p><a href="http://n00tz.net/files/UACSynergyAdmin1.png"><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" title="UACSynergyAdmin" border="0" alt="UACSynergyAdmin" src="http://n00tz.net/files/UACSynergyAdmin_thumb1.png" width="380" height="264" /></a> </p>
<h5>Step 5. Start Synergy!</h5>
<p>Follow these steps on both the server and client if they’re both Windows 7 machines, it’s just that simple.</p>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2010/01/quick-tip-synergy-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Being Prepared: Car Kit + Winter Adds.</title>
		<link>http://n00tz.net/2009/12/being-prepared-car-kit-winter-adds/</link>
		<comments>http://n00tz.net/2009/12/being-prepared-car-kit-winter-adds/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 17:01:01 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[References]]></category>
		<category><![CDATA[Be Prepared]]></category>
		<category><![CDATA[Car Care]]></category>
		<category><![CDATA[comfort]]></category>
		<category><![CDATA[driving tips]]></category>
		<category><![CDATA[Eagle Scout]]></category>
		<category><![CDATA[First Aid]]></category>
		<category><![CDATA[MagLite]]></category>
		<category><![CDATA[Safety]]></category>
		<category><![CDATA[survival]]></category>
		<category><![CDATA[Winter]]></category>

		<guid isPermaLink="false">http://n00tz.net/?p=285</guid>
		<description><![CDATA[It&#8217;s getting deeper into the time of year where we start to drive long distances through potentially hazardous winter weather. It is more important during these times to be prepared, as help may not come as quick as when the roads are clear. So following that good old Boy Scout motto &#8220;Be Prepared&#8221; I&#8217;m going [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s getting deeper into the time of year where we start to drive long distances through potentially hazardous winter weather. It is more important during these times to be prepared, as help may not come as quick as when the roads are clear. So following that good old Boy Scout motto &#8220;Be Prepared&#8221; I&#8217;m going to place my thoughts on what you should have in your Winter Car Kit. I&#8217;d like to mention that my car kit consists of these items contained within a small Rubbermaid &#8220;Action Packer&#8221; which can be picked up <a href="http://www.amazon.com/gp/product/B00002N9F9/ref=noref?ie=UTF8&amp;s=hi" target="_blank">for around $25</a>. To modify the old saying, an ounce of preparation is worth a pound of well-being (or something to that effect).</p>
<h4>So, for starters, lets take a look at what your <strong>normal car kit</strong> should have:</h4>
<ol>
<li><a href="http://www.campmor.com/outdoor/gear/Product___89052">Basic First Aid Kit</a> (for minor cuts, scrapes, burns)
<ul>
<li>Ideally, this is just for the little stuff you will inflict upon yourself from being clumsy working under the hood.</li>
<li>You might also want to add some kind of hand-sanitizer or cleaner.</li>
<li>Put this in a gallon sized ziploc bag.</li>
</ul>
</li>
<li>Flashlight (extra batteries are always a good idea)
<ul>
<li>I&#8217;d have to say the <a href="http://www.campmor.com/outdoor/gear/Product___98892" target="_blank">2x AA MagLites </a>are perfect for this kit, though, if you want something smaller there&#8217;s a <a href="http://www.campmor.com/outdoor/gear/Product___80534" target="_blank">MagLite &#8220;Solitare&#8221;</a> that uses 1x AAA battery.</li>
<li>I carry a <a href="http://www.campmor.com/outdoor/gear/Product___80500" target="_blank">2x D-cell MagLite</a> in my vehicle at all times, with an extra pair of batteries in the glove compartment. It&#8217;s size and weight has made it useful as a makeshift hammer to be used on my starter solenoid when the vehicle wouldn&#8217;t crank, such that I got it working so I could roll into the mechanic.</li>
<li>Add the small flashlight to your glove compartment. If you keep a larger flashlight I&#8217;d recommend keeping it up beside you, or under you at the driver&#8217;s seat.</li>
</ul>
</li>
<li>Jumper Cables
<ul>
<li>You always need them when you don&#8217;t have them, and someone else usually needs them when you have them. You might as well keep them so at a minimum you can do your good turn of the day.</li>
<li>Put these inside the Action Packer.</li>
</ul>
</li>
<li><span id="more-285"></span>Duct Tape
<ul>
<li>Do I really need to explain the usefulness of even a partial roll of this stuff? If so, go watch some MacGuyver.</li>
<li>Put it inside your Action Packer.</li>
</ul>
</li>
<li>Simple Hand Tools
<ul>
<li>At the very minimum you should carry a pair of Screwdrivers (Phillips and Flat) and some Channel-Lock Adjustable Pliers. The utility in these alone coupled with a pocketknife and duct tape can get you a few extra miles down the road. If you know what problems your vehicle is more likely to have, and you&#8217;ll need other tools be sure to add them.</li>
<li>Put these inside a toolbox (if you carry many tools), or the Action Packer.</li>
</ul>
</li>
<li><a href="http://www.campmor.com/outdoor/gear/Product___81104" target="_blank">Pocketknife</a>
<ul>
<li>It&#8217;s the Eagle Scout in me, but see my notes for Duct Tape.</li>
<li>Put this in your glove compartment.</li>
</ul>
</li>
<li>Water
<ul>
<li>Water serves a dual purpose when kept in a vehicle: To keep yourself hydrated, or to keep the vehicle cool (in case of low fluids). I highly recommend keeping at least 2 liters of water with you (3-4 water bottles).</li>
<li>Put this in your Action Packer.</li>
</ul>
</li>
<li>Misc. Automotive Fluids
<ul>
<li>I usually carry Oil, premix anti-freeze, and a funnel.</li>
<li>It&#8217;s a good idea to toss a couple automotive paper towels, or a scrap piece of an old shirt for spills.</li>
<li>If you can fit these in a ziploc inside the action packer, I highly recommend it in case of a leak or spill.</li>
</ul>
</li>
</ol>
<p>The above items tend to get you through most of what you&#8217;ll need if your car breaks down. In most cases you&#8217;ll be able to get help relatively easy, or it should be close by. But when the winter weather hits, you may not be able to get help for a good number of hours, and it is most important that you can stay warm.</p>
<h4>Here are my tips for what to add to the trunk for winter weather:</h4>
<ol>
<li>Blanket
<ul>
<li>Indispensable when needed to stay warm, and nice to have for long car rides for any passengers that wish to rest.</li>
</ul>
</li>
<li>Light Snack
<ul>
<li>Make sure it&#8217;s something that won&#8217;t melt if it gets too hot, but that will provide some calories. It is important that your body is able to generate enough heat to keep you warm underneath the blanket. Don&#8217;t gorge yourself on super-sweets, you don&#8217;t want to get sick. Trail Mix is typically a good bet.</li>
</ul>
</li>
<li>Hand Warmers
<ul>
<li>Only necessary when you&#8217;re stuck for longer periods of time, but very helpful to restore body heat when the blanket just isn&#8217;t cutting it.</li>
</ul>
</li>
<li>Ice Scraper
<ul>
<li>If you have adequate insulation, the energy you put into scraping ice off of your car will keep you warm. It also allows you to keep an eye out for any assistance that may come your way. Try not to get wet though, it&#8217;s counter-productive in staying warm.</li>
</ul>
</li>
<li>Large bag of Cat Litter
<ul>
<li>Another dual-purpose item. This is most important for those of you with lightweight two-wheel drive vehicles. It adds weight for traction, and if you open the bag you can put it on the ground underneath your tires for added traction when the weight alone isn&#8217;t enough. Just keep in mind that &#8220;gunning&#8221; the gas isn&#8217;t going to help you: stay in a low gear and apply steady pressure to the accelerator pedal.</li>
</ul>
</li>
</ol>
<p>I can&#8217;t stress enough how important it is to know how and when to use these items. Knowing how your vehicle works and what your body needs to stay warm will save you a lot of stress if you ever encounter a situation where you need these tools. If you have any questions or comments, feel free to leave them in the comments section below. I&#8217;ll be happy to address them.</p>
<h6>A note on the links I supply on my blog: I am not paid by CampMor or Amazon or any other site, I simply link to those sites because I trust their products and personally use them. Though, if they wished to sponsor some Ad Space on my site, I would certainly accept an offer <img src='http://n00tz.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </h6>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2009/12/being-prepared-car-kit-winter-adds/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Stubborn Man Winter Warmer</title>
		<link>http://n00tz.net/2009/11/a-stubborn-man-winter-warmer/</link>
		<comments>http://n00tz.net/2009/11/a-stubborn-man-winter-warmer/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 23:21:28 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Beer]]></category>
		<category><![CDATA[homebrewing]]></category>
		<category><![CDATA[Stubborn Man]]></category>

		<guid isPermaLink="false">http://n00tz.net/?p=280</guid>
		<description><![CDATA[This time around he&#8217;s made a Winter Warmer style. Winter Warmer&#8217;s tend to have a bit higher ABV (this one is around 7%) where it gets its name is from the warming effect the alcohol provides. From beeradvocate.com: These malty sweet offerings tend to be a favorite winter seasonal. Big malt presence, both in flavor [...]]]></description>
			<content:encoded><![CDATA[<p>This time around he&#8217;s made a Winter Warmer style. Winter Warmer&#8217;s tend to have a bit higher ABV (this one is around 7%) where it gets its name is from the warming effect the alcohol provides. From beeradvocate.com:</p>
<blockquote><p><em>These malty sweet offerings tend to be a favorite winter  seasonal. Big malt presence, both in flavor and body. The color ranges from  brownish reds to nearly pitch black. Hop bitterness is generally low, leveled  and balanced, but hop character can be pronounced. Alcohol warmth is not  uncommon.</em></p>
<p><em>Many English versions contain no spices, though some  brewers of spiced winter seasonal ales will slap &#8220;Winter Warmer&#8221; on the label.  Those that are spiced, tend to follow the &#8220;wassail&#8221; tradition of blending robust  ales with mixed spices, before hops became the chief &#8220;spice&#8221; in beer. American  varieties many have a larger presences of hops both in bitterness and  flavor.</em></p>
<p><em>Average alcohol by volume (abv) range: 5.5-8.0%</em></p></blockquote>
<p>When I started exploring and enjoying beer, one of the first big &#8220;hits&#8221; with me was a winter warmer style ale. The <a href="http://beeradvocate.com/beer/profile/178/1733/?ba=n00tz">Moonraker Ale, by J.W. Lees &amp; Co.</a>, introduced me to malts like I had never tasted before, and a smooth mouthfeel like I hadn&#8217;t ever experienced before. Though I&#8217;d have to go back and give it another go almost two years later, I&#8217;ve always been a huge fan of Porters, Stouts, and Winter Warmers.</p>
<p>So, lets see how Rob did this time!<span id="more-280"></span></p>
<h3>Drinking Notes</h3>
<p>Appearance: Mocha brown body topped by a caramel head that dissipates fairly quickly.</p>
<p>Smell: Very malty chocolates, toasted notes, and alcohol are detected.</p>
<p>Taste: I initially pulled out some peppery spices, with some lightly chocolated biscuity malts, and very mild hop character, with that alcohol warming. I felt like the chocolates and sweet cream was skimped on the taste because it was all in the scent. Room for improvement, but definitely on the right track.</p>
<p>Mouthfeel: Light body. clean finish. Slight coffee noted on a burp. Unfortunately I was hoping for a silky creamy thickness on the palate of this brew. This ends up being the only real disappointing character of the beer.</p>
<p>Drinkability: It seems to carry the warming effect of the style very well, and though it comes slightly shy on some of the flavor and palate, it is a very drinkable brew. Cheers!</p>
<h3>The Marks</h3>
<p>Appearance: 4.0 (20%)</p>
<p>Smell: 4.0 (20%)</p>
<p>Taste: 3.5 (40%)</p>
<p>Mouthfeel: 2.5 (10%)</p>
<p>Drinkability: 4.5 (10%)</p>
<p>OVERALL = 3.7 (Solid B)</p>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2009/11/a-stubborn-man-winter-warmer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Made With Windows Live Writer</title>
		<link>http://n00tz.net/2009/10/made-with-windows-live-writer/</link>
		<comments>http://n00tz.net/2009/10/made-with-windows-live-writer/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 01:46:18 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://n00tz.net/2009/10/made-with-windows-live-writer/</guid>
		<description><![CDATA[Just testing the Windows Live Writer, part of the Windows Live Tools on Microsoft Windows 7.]]></description>
			<content:encoded><![CDATA[<p>CQ CQ CQ this is KJ4IKD. Calling all Windows 7 Users!</p>
<div style="padding-bottom: 0px;margin: 0px;padding-left: 0px;padding-right: 0px;float: none;padding-top: 0px" id="scid:66721397-FF69-4ca6-AEC4-17E6B3208830:8c768065-7b74-45ba-8484-814f66c4c3e5" class="wlWriterEditableSmartContent"><a href="http://cid-bf0d1bdfce40bd9b.skydrive.live.com/redir.aspx?page=browse&amp;resid=BF0D1BDFCE40BD9B!129&amp;ct=photos"><img style="border:0px" alt="View Sunset Rock" src="http://n00tz.net/files/InlineRepresentation46378b771f7d48d08d9d47848610c8bf.jpg" /></a>
<div style="width:400px;text-align:right"><a href="http://cid-bf0d1bdfce40bd9b.skydrive.live.com/redir.aspx?page=browse&amp;resid=BF0D1BDFCE40BD9B!129&amp;ct=photos">View Full Album</a></div>
</div>
<p>Just testing the Windows Live Writer, part of the Windows Live Tools on Microsoft Windows 7.</p>
<p>And…. I’ll make an edit and add this:</p>
<div style="padding-bottom: 0px;margin: 0px;padding-left: 0px;padding-right: 0px;float: none;padding-top: 0px" id="scid:84E294D0-71C9-4bd0-A0FE-95764E0368D9:639ae230-4103-46e8-a588-357edaba520c" class="wlWriterEditableSmartContent"><a href="http://www.bing.com/maps/default.aspx?v=2&amp;cp=34.84446~-85.03333&amp;lvl=12&amp;style=r&amp;mkt=en-us&amp;FORM=LLWR" id="map-8bfd3b7f-5e85-4c20-9bd8-1343483083f8" title="View map"><img src="http://n00tz.net/files/mapd93903677842.jpg" width="320" height="240" alt="Map picture"></a></div>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2009/10/made-with-windows-live-writer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things I&#8217;m Already Enjoying in Windows 7</title>
		<link>http://n00tz.net/2009/10/things-im-already-enjoying-in-windows-7/</link>
		<comments>http://n00tz.net/2009/10/things-im-already-enjoying-in-windows-7/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 15:42:50 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[64-bit]]></category>
		<category><![CDATA[Aero Shake]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Live Taksbar]]></category>
		<category><![CDATA[Live Taskbar]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Snap]]></category>
		<category><![CDATA[Upgrading from Windows XP]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://n00tz.net/2009/10/things-im-already-enjoying-in-windows-7/</guid>
		<description><![CDATA[Having purchased the Windows 7 Professional through the student upgrade program, and with a Windows 7 Launch Party tomorrow, I was anxious to get it installed last night. Even though I ran into a couple of snags with the 64-bit download unpacking to a 32-bit XP system (see &#8220;Unloading the Box&#8221; error), and will make [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-267" src="http://n00tz.net/files/win7-150x150.png" alt="win7" width="150" height="150" />Having purchased the Windows 7 Professional through the student upgrade program, and with a Windows 7 Launch Party tomorrow, I was anxious to get it installed last night. Even though I ran into a couple of snags with the 64-bit download unpacking to a 32-bit XP system (see &#8220;Unloading the Box&#8221; error), and will make a post for how to get around that issue later this evening or tomorrow afternoon, I am overall happy with my $30 purchase. I wanted to go over a couple of things that I really enjoy having in a Windows Operating System. Having come from Windows XP (with very little experience in Vista) some of these things are bigger value-adds for me.<span id="more-265"></span></p>
<ol>
<li>
<h2>64-bit Operating System, DirectX 10/11</h2>
<p>Yeah, it was available in Windows XP &#8211; and it SUCKED. Yeah, it was also available in Vista &#8211; but it was the first of its kind and carried the burden of being Vista. There is a very smooth implementation of 64-bit in Windows 7, my programs seem to be a bit more responsive from the get-go and I&#8217;m able to switch tasks a lot quicker even when my taskbar is LOADED with running programs. Also the move to an operating system that now supports the DirectX 10 cards I&#8217;ve had for a couple years (and DirectX 11 cards I can upgrade to) is an instant value-add.</li>
<li>
<h2>Live Taskbar Previews</h2>
<p>They kinda had this working in the Vista Business version I have running on one of my computers at the house, but it seemed like it was more of a freeze-frame shot of what was happening in the window. With Windows 7, so far, everything is LIVE. I like being able to mouse-over the windows explorer taskbar item and see how my data copy/restore is coming along while using StumbleUpon in Firefox, and listening to Pandora Radio in an IE8 window.</li>
<li>
<h2>&#8220;Snap&#8221; Windows, and Aero Shake (or the Magic Eraser)</h2>
<p>A feature that I&#8217;ve used A LOT while restoring backups from various locations to other various locations. Drag a windows explorer window to the side of the screen and it &#8220;snaps&#8221; to take up half of the desktop. Open a second window and &#8220;snap&#8221; it to the other side of the desktop. Then I just drag folders across to the other. I don&#8217;t have to open both windows and right click one of them and &#8220;arrange vertically&#8221; anymore. Nor do I have to hope that I didn&#8217;t have another window hiding behind one of them. You can also &#8220;snap&#8221; a window to maximize it, but I don&#8217;t find it anymore useful than clicking the maximize button. There&#8217;s also a feature that you can use a window to &#8220;steal the show&#8221; as I&#8217;ll call it. If you shake the window (while it isn&#8217;t maximized) like a magic eraser, it will minimize all windows behind it leaving it alone on top of the desktop. To return everything the way it was before the magic eraser, just repeat the motion.</li>
<li>
<h2>&#8220;Libraries&#8221;</h2>
<p>This is going to get a lot of use out of me. I noticed this feature when I started copying &#8220;My Pictures&#8221; to the documents folder. Windows 7 knew what that folder was traditionally used for and it decided to drop it into one of the default Picture library folders. Had I not wanted Windows 7 to do this, I could have copied the folder to my big partition and added the directory to the Pictures Library. This feature works exactly like the iTunes &#8220;watch folders&#8221; for you iTunes users. Another way to look at this for any System Admins out there is that this is like adding more aliases to a virtual directory. For me, it allows my file structure disorganization to be in a central location. By default Windows has a Documents, Pictures, Music, and Videos Library set up. I haven&#8217;t gotten to the point of seeing if I can create my own Libraries yet, but I&#8217;m loving the possibilities this leaves for me.</li>
<li>
<h2>Gadgets</h2>
<p>I know you&#8217;ve seen these in Vista too.. but they were on that annoying, dreadful Sidebar. They&#8217;ve removed the idea of the sidebar as a dock for gadgets, and instead let them float free on the desktop. I only wish they copied MacOSX&#8217;s &#8220;widgets&#8221; a little closer, I don&#8217;t like that the gadgets are always on or always off &#8211; I like the &#8220;on demand&#8221; way Apple puts them in their OS. Currently, I&#8217;m running a Calendar, Weather, Oil Price, and various system stats widgets.</li>
<li>
<h2>Search</h2>
<p>Call it a Spotlight ripoff, or a Quicksilver knock-off, but it&#8217;s something we have in Windows too now. This is something Vista has (and is notably my favorite feature of Vista), and it would have been stupid for Microsoft to not bring it to Windows 7. They&#8217;ve improved it in Windows 7 to include the ability to search libraries, external hard drives, and even Networked PCs. I use it as my &#8220;Run&#8230;&#8221; box more often than anything.</li>
<li>
<h2>Taskbar</h2>
<p>I mentioned Live Preview earlier, but Pin and Jump Lists take the taskbar a bit further. The &#8220;Pin&#8221; feature makes the traditional Windows Taskbar operate a lot more like the MacOSX &#8220;Dock&#8221;, something people have been faking with external applications for awhile now (search for ObjectDock by Stardock for an example of one such program). You can pin a running item by right clicking it on the Taskbar and selecting the &#8220;Pin To&#8221; option, or if it isn&#8217;t running by right-clicking the link in the Start Menu and doing the same. On top of the &#8220;Pin&#8221; feature, the pinned item also has &#8220;Jump Lists&#8221; or a menu that works very similar to the Recent Documents of Windows XP with a mix of the old Alt+Tab functionality.  Jump Lists are also available via the Start Menu in any programs that show up there.</li>
</ol>
<h2>Other Things I&#8217;m Looking Forward To</h2>
<ul>
<li>I&#8217;m looking forward to playing with a network priority feature I came across yesterday (and it was apparently available in Vista). Simply put, I have set my Wireless card to allow my wired connection priority. It&#8217;s probably a lot more useful for a Laptop or Netbook user.</li>
<li>I&#8217;m really looking forward to trying out the new concept of a &#8220;HomeGroup&#8221;. It seems to take on the idea that  network sharing should be simple &#8211; as it should be for the typical user. Microsoft seems to be getting back in touch with the average user.</li>
<li>There is another feature that I might take advantage of on newer computer hardware (more and faster RAM, Faster Processor, better GPUs) and that&#8217;s the built-in Windows XP virtualization. I think that it makes the move almost a no-brainer for those tied to some programs that won&#8217;t run in Vista/Win7.</li>
</ul>
<p>I&#8217;m sure I&#8217;ll have more to speak on what I&#8217;ve loved about Windows 7 in my article explaining the workarounds for the upgrade bug, but to those of you out there already on Windows 7 with me what are your thoughts so far?</p>
<h6>Disclaimer: I do not claim any ownership of Microsoft or Apple products, graphics, icons, or publications mentioned in this article. All such productions are credited to their respective owners.</h6>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2009/10/things-im-already-enjoying-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cloudland Canyon Trip Pics and Quick Response</title>
		<link>http://n00tz.net/2009/10/cloudland-canyon-trip-pics-and-quick-response/</link>
		<comments>http://n00tz.net/2009/10/cloudland-canyon-trip-pics-and-quick-response/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 14:24:13 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Camping]]></category>
		<category><![CDATA[backpacking]]></category>
		<category><![CDATA[cloudland canyon state park]]></category>
		<category><![CDATA[hiking]]></category>
		<category><![CDATA[outdoors]]></category>

		<guid isPermaLink="false">http://n00tz.net/?p=251</guid>
		<description><![CDATA[After a great weekend in the wet weather, my friends have had a chance to upload the pictures they took (at least a good handful of them) to their flickr accounts. Molly and I decided to leave our DSLR&#8217;s at the house being that there was another DSLR and a Point&#38;Shoot already packed with the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-257" src="http://n00tz.net/files/4002962292_7d0697dc77-150x150.jpg" alt="P1010105" width="150" height="150" />After a great weekend in the wet weather, my friends have had a chance to upload the pictures they took (at least a good handful of them) to their flickr accounts. Molly and I decided to leave our DSLR&#8217;s at the house being that there was another DSLR and a Point&amp;Shoot already packed with the other guys&#8217; stuff.</p>
<p>For the most part we followed the itinerary I outlined in the &#8220;<a href="http://n00tz.net/2009/08/planning-for-a-backpacking-trip/" target="_blank">Planning for a Backpacking Trip</a>&#8221; post. Though, because we purposely didn&#8217;t take watches or cell phones we didn&#8217;t exactly stick to a schedule which meant we had to cut a couple of the bigger hikes out of the day(s). Part of it may have also been due to the literal downpour we received on Friday evening and Saturday morning. We&#8217;ll go back later one or two weekends to finish up the <a href="http://www.gastateparks.org/net/go/parks.aspx?LocationID=38&amp;s=0.0.1.5" target="_blank">Cloudland Canyon</a> trails.</p>
<p>With the successful trip, I&#8217;m going to be planning a &#8220;car camping&#8221; trip for sometime in Mid-December or Early/Mid-January so more of my friends can come along, and enjoy some better camp-cuisine. I&#8217;ll have a couple of posts related to that coming up soon enough.</p>
<p>View the full post for the pics from this weekend. <span id="more-251"></span></p>
<h3>Mark&#8217;s Flickr Set</h3>
<div class="flickr_slideshow" style="height:255px;width:340px;margin:0 auto;padding:10px;border:1px solid #cccccc;background:#eeeeee;">
	<object type="application/x-shockwave-flash" data="http://www.flickr.com/apps/slideshow/show.swf?v=69832" width="340" height="255">
	<param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=69832" />
	<param name="FlashVars" value="&amp;offsite=true&amp;lang=en-us&amp;page_show_url=%2Fphotos%2Fmhoblit%2Fsets%2F72157622442679801%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2Fmhoblit%2Fsets%2F72157622442679801%2F&amp;set_id=72157622442679801&amp;jump_to=" />
	<param name="width" value="340" />
	<param name="height" value="255" />
	</object>
	</div>
<h3>Nathan&#8217;s Flickr Set</h3>
<div class="flickr_slideshow" style="height:255px;width:340px;margin:0 auto;padding:10px;border:1px solid #cccccc;background:#eeeeee;">
	<object type="application/x-shockwave-flash" data="http://www.flickr.com/apps/slideshow/show.swf?v=69832" width="340" height="255">
	<param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=69832" />
	<param name="FlashVars" value="&amp;offsite=true&amp;lang=en-us&amp;page_show_url=%2Fphotos%2Fnathanielfoster%2Fsets%2F72157622564849536%2Fshow%2F&amp;page_show_back_url=%2Fphotos%2Fnathanielfoster%2Fsets%2F72157622564849536%2F&amp;set_id=72157622564849536&amp;jump_to=" />
	<param name="width" value="340" />
	<param name="height" value="255" />
	</object>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2009/10/cloudland-canyon-trip-pics-and-quick-response/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review of Stubborn Man&#8217;s English Bitter</title>
		<link>http://n00tz.net/2009/10/review-of-stubborn-mans-english-bitter/</link>
		<comments>http://n00tz.net/2009/10/review-of-stubborn-mans-english-bitter/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 22:40:04 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Beer]]></category>
		<category><![CDATA[English Bitter]]></category>
		<category><![CDATA[homebrewing]]></category>
		<category><![CDATA[Stubborn Man]]></category>

		<guid isPermaLink="false">http://n00tz.net/?p=236</guid>
		<description><![CDATA[After his last brew, and actually on the tail end of while it was still being enjoyed, Rob (a.k.a. StubbornMan) mentioned that he was brewing a bitter. Having rushed to get clean bottles back to him so he could bottle everything on time, I was anxious to taste another example of a bitter. I gave [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mountainhomebrew.com/ProductImages/homebrewingsupplies/701.jpg"><img class="alignleft" src="http://mountainhomebrew.com/ProductImages/homebrewingsupplies/701.jpg" alt="" width="149" height="149" /></a>After <a href="http://n00tz.net/2009/09/review-of-stubborn-mans-fall-2009-stout/" target="_blank">his last brew</a>, and actually on the tail end of while it was still being enjoyed, <a href="http://harristn.com/" target="_blank">Rob (a.k.a. StubbornMan)</a> mentioned that he was brewing a bitter. Having rushed to get clean bottles back to him so he could bottle everything on time, I was anxious to taste another example of a bitter. I gave him plenty of 22 oz. &#8220;bombers&#8221; this round of filling so he wouldn&#8217;t have to collect as many (and I figured that would mean more home brewed beer for me, HA!). With every chance I have to try one of his brews, I get closer and closer to buying my own set of home brewing equipment to give it a try myself.</p>
<p><a href="http://beeradvocate.com/beer/style/98" target="_blank">From BeerAdvocate</a>: &#8220;The Bitter style came from brewers who wanted to differentiate these ales from other mild brews, enter pale malts and more hops. Most are gold to copper in colour and are light bodied. Low carbonation. Alcohol should be low and not perceived. Hop bitterness is moderate to assertive. Most have a fruitiness in the aroma and flavor, diacetyl can also be present. These are traditionally served cask conditioned, but many breweries have bottled versions.&#8221;</p>
<p>I don&#8217;t think he has a name for it yet, but that doesn&#8217;t matter&#8230; Lets just cut to the chase, shall we?<span id="more-236"></span></p>
<h3>The Review (Drinking Notes)</h3>
<p>Appearance (20%) &#8211; A steady rush of carb bubbles allowing a consistent 1-finger off-white head to top a cloudy copper body. If this were filtered it would probably receive the best marks for appearance I&#8217;ve given in awhile.</p>
<p>Smell (20%) &#8211; Noticable sweet fruity hops on the pour smells like a pear or a mild apple, the pale malts and some roasted notes are picked up on a closer sniff.</p>
<p>Taste (40%) &#8211; A quick striking citrusy character hides quickly behind the toasty buttery mid. A delicious wooded fruity flavor finishes it out.</p>
<p>Mouthfeel (10%) &#8211; The buttery toasted flavors tend to stick to the palate, rather than the pale malts or bitter hops. It burps as a light wood. Reminds me of Autumn when the leaves are changing and you can taste the sweet dryness in the air, before it gets too cold.</p>
<p>Drinkability (10%) &#8211; Very enjoyable, and probably the best brew yet to come out of StubbornMan&#8217;s home brewery. It had a lot of character, nice flavor  variation over the range of 40-50 degrees in temperature. If he had to repeat it, I&#8217;d probably recommend adding a bit more of the citrusy hops to it so that taste lingers a bit longer than the first swish around the mouth.</p>
<h3>The Scores</h3>
<p>All categories are given a rating on a scale of 0 to 5; where 5 is Excellent, 4 is Good, 3 is Average, 2 is Poor, and 1 is Terrible. Beer is rated based on the style and particular tastes of the reviewer.</p>
<p>Appearance &#8211; 4.5/5.0</p>
<p>Smell &#8211; 3.5/5.0</p>
<p>Taste &#8211; 3.75/5.0</p>
<p>Mouthfeel &#8211; 3.5/5.0</p>
<p>Drinkability &#8211; 4.5/5</p>
<p>TOTAL = 3.90 (B+)</p>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2009/10/review-of-stubborn-mans-english-bitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
