<?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 &#187; References</title>
	<atom:link href="http://n00tz.net/category/references/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</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>6</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>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>DIY &#8211; Pressurized Alcohol Stove</title>
		<link>http://n00tz.net/2009/10/diy-pressurized-alcohol-stove/</link>
		<comments>http://n00tz.net/2009/10/diy-pressurized-alcohol-stove/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 01:31:44 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Camping]]></category>
		<category><![CDATA[Cooking]]></category>
		<category><![CDATA[Alcohol Stove]]></category>
		<category><![CDATA[backpacking]]></category>
		<category><![CDATA[Build Your Own]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[GSI Pinnacle]]></category>
		<category><![CDATA[outdoors]]></category>
		<category><![CDATA[Penny Stove]]></category>
		<category><![CDATA[Stove]]></category>

		<guid isPermaLink="false">http://n00tz.net/?p=224</guid>
		<description><![CDATA[Thanks to StumbleUpon, I have managed to come across multiple plans for DIY Lightweight Alcohol Burning stove. I finally decided to combine the knowledge I gathered from each of the articles and put one together myself. After getting my first one together I modified the plans a bit and made a second one with the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-225" src="http://n00tz.net/files/2009Oct04_0117-150x150.jpg" alt="2009Oct04_0117" width="150" height="150" />Thanks to StumbleUpon, I have managed to come across multiple plans for DIY Lightweight Alcohol Burning stove. I finally decided to combine the knowledge I gathered from each of the articles and put one together myself.</p>
<p>After getting my first one together I modified the plans a bit and made a second one with the goal to have it hold a bit more fuel (for the longer cooking time). Version 2, as I&#8217;ll call it, was able to produce a 7-minute boil time, and a 20-minute run time before dropping down to a simmer. I used a windscreen and Heet as my fuel source.</p>
<p>Instructions after the jump!<span id="more-224"></span></p>
<h3>What you&#8217;ll need:</h3>
<ul>
<li>2x Aluminum Cans (soda or beer)</li>
<li>1x Piece of 200-grit sandpaper or sanding sponge</li>
<li>1x Utility knife and extra blade(s)</li>
<li>1x Drill and a 1/16&#8243; bit</li>
<li>1x Penny</li>
<li>1x Pinch of Fiberglass Insulation (from your attic) or Perlite (from your Home + Garden store)</li>
<li>1x <span style="text-decoration: underline">Yellow</span> Bottle of HEET from Automotive section of your local Walmart (I&#8217;ve heard bad things happen when you use the red bottle) or Denatured Alcohol from a paint supply store.</li>
</ul>
<h3>Assembly Instructions:</h3>
<ol>
<li>Sand the bottom 2-3 inches of the aluminum cans clean from any paints, dyes, sealants, etc.</li>
<li>Cut the bottom of the cans off, an inch for the first one, 3/4 of an inch for the second one.</li>
<li>Clean the cans and sand the rough edges so they&#8217;re less likely to cut you.</li>
<li>Put your pinch of insulation or perlite in the base (this is the &#8220;taller&#8221; cut-off can).</li>
<li>Drill a grouping of 5 holes in the center of the burner (the &#8220;shorter&#8221; cut-off can), this will be your filling holes. (Figure 1)
<p><div id="attachment_227" class="wp-caption aligncenter" style="width: 310px"><a href="http://n00tz.net/files/holeinstructions.jpg"><img class="size-medium wp-image-227" src="http://n00tz.net/files/holeinstructions-300x189.jpg" alt="holeinstructions" width="300" height="189" /></a><p class="wp-caption-text">Figure 1</p></div></li>
<li>Drill 12-16 evenly spaced holes around the outside edge of the burner. (Figure 1)</li>
<li>Make 4-6 evenly spaced cuts towards the burner holes (only go up to the curve in the can) so the sharp edges of the burner can be bent ever so slightly inwards to fit snugly into the base.</li>
<li>Put the two pieces together, they should snug up with a little bit of pressure but be careful as you&#8217;re working with sharp edges of aluminum.</li>
</ol>
<h3>Lighting Instructions</h3>
<ol>
<li>Open your bottle of HEET (or Denatured Alcohol) and pour such that your stove is 1/2 to 3/4 filled. Overfilling will only cause the stove to take longer to light, and could lead to spills which can be very dangerous.</li>
<li>Put the penny over the filling hole.</li>
<li>Fill the lighting cup (that&#8217;s what it becomes when you put the penny over the filling holes) with your fuel.</li>
<li>Light the fuel in the lighting cup.</li>
<li>Hopefully, there was enough fuel in the lighting cup burning long enough to heat the alcohol in the base such that the burner lit from the alcohol fumes. Repeat steps 3-4 as necessary.</li>
</ol>
<h3>Success!</h3>
<p><img class="aligncenter size-medium wp-image-229" src="http://n00tz.net/files/boilingpot-300x199.jpg" alt="boilingpot" width="300" height="199" />Using my <a href="http://www.rei.com/product/768510">GSI Pinnacle</a> cook kit, a quart of water, a coat hanger (that I fabricated into a pot rest), the windscreen, and the stove; I was able to make a bowl of rice in about 17 minutes. The coat hanger wasn&#8217;t as sturdy as I would have liked, but I could have taken a little more time and designed a better one that would support more weight.</p>
<p>One of the foreseeable problems I have with this stove is the same problem my MSR WhisperLite had: if it was cold, it took awhile for the stove to heat up to the point that the fuel would evaporate to produce a good cooking flame. Another is regards to the fact that it doesn&#8217;t have a long burn-time. Other than that, it&#8217;d be great for trail-side lunches that require heated water.</p>
<p><img class="aligncenter size-medium wp-image-228" src="http://n00tz.net/files/success-300x199.jpg" alt="success" width="300" height="199" />Now you can build an ultra-lightweight stove, boil water in 7 minutes, and still have enough heat to cook a boil in the bag rice. Not bad at all for less than $2 in materials!</p>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2009/10/diy-pressurized-alcohol-stove/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backpacking &#8211; Gear Checklist</title>
		<link>http://n00tz.net/2009/10/backpacking-gear-checklist/</link>
		<comments>http://n00tz.net/2009/10/backpacking-gear-checklist/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 17:55:47 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Camping]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[backpacking]]></category>
		<category><![CDATA[hiking]]></category>
		<category><![CDATA[list]]></category>

		<guid isPermaLink="false">http://n00tz.net/?p=218</guid>
		<description><![CDATA[Here&#8217;s a quickly thrown together checklist of gear, with notes, that anyone should be mindful of when going backpacking. I tried to be as complete as possible, though I&#8217;m sure I&#8217;m missing something&#8230; Packs &#38; Sleeping Tent, poles, stakes, groundcloth Sleeping bag Sleeping pad Backpack Day pack (small school backpack) Rain cover for backpack (trashbags [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quickly thrown together checklist of gear, with notes, that anyone should be mindful of when going backpacking. I tried to be as complete as possible, though I&#8217;m sure I&#8217;m missing something&#8230;</p>
<h3>Packs &amp; Sleeping</h3>
<p>Tent, poles, stakes, groundcloth<br />
Sleeping bag<br />
Sleeping pad<br />
Backpack<br />
Day pack (small school backpack)<br />
Rain cover for backpack (trashbags work well)</p>
<h3>Essentials</h3>
<p>Water Bottle (32oz or more)<br />
First Aid Kit<br />
Sun Protection<br />
Bear Bag<br />
Rope<br />
Knife<br />
Flashlight<br />
Rain gear (poncho or light wind-breaking rain jacket)</p>
<h3>Clothing</h3>
<p>Ziplock freezer bags (to pack clothes in to stay dry)<br />
Boots or trail shoes (ankle support)<br />
Camp shoes<br />
Socks (pack an extra pair)<br />
Underwear<br />
Light Pants<br />
Light Shorts<br />
Light Shirt(s)<br />
Light Jacket or Long Sleeve Shirt(for warmth)<br />
Cap or hat</p>
<h3>Cooking &amp; Food</h3>
<p>Pot (1 per group of 4-6)<br />
Cooking Utencils<br />
Camp Suds (environmentally safe soap)<br />
Dish Cloth<br />
Cup<br />
Stove<br />
Fuel<br />
Lighter<br />
Water Container (for cooking, etc)<br />
Breakfasts (Oatmeal, fried potatoes, cereal, protein bars)<br />
Lunches<br />
Dinners<br />
Snacks (peanuts, raisins, oysters, crackers, jerky)<br />
Spices (Salt, Pepper, Garlic, Cayenne)<br />
Drink Mix (Gatorade, CapriSun, Tang, Hot Chocolate)</p>
<h3>Optional Items</h3>
<p>Camping pillow (a ball of clean clothes works well too)<br />
Insect Repellant<br />
GPS<br />
Camera<br />
Extra Batteries<br />
Binoculars<br />
Camp Chair<br />
Fishing gear<br />
Cards + games<br />
Hiking Stave or Poles</p>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2009/10/backpacking-gear-checklist/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Antenna Geekery with AI4ZV and KJ4KET</title>
		<link>http://n00tz.net/2009/09/antenna-geekery-with-ai4zv-and-kj4ket/</link>
		<comments>http://n00tz.net/2009/09/antenna-geekery-with-ai4zv-and-kj4ket/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 04:34:59 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Ham Radio]]></category>
		<category><![CDATA[References]]></category>
		<category><![CDATA[10 Meter]]></category>
		<category><![CDATA[20 Meter]]></category>
		<category><![CDATA[4 band]]></category>
		<category><![CDATA[Amateur Radio]]></category>
		<category><![CDATA[analyzer]]></category>
		<category><![CDATA[Antenna]]></category>
		<category><![CDATA[cabling]]></category>
		<category><![CDATA[feedline]]></category>
		<category><![CDATA[Grid Dip Meter]]></category>
		<category><![CDATA[half-wave]]></category>
		<category><![CDATA[ham shack]]></category>
		<category><![CDATA[Heathkit]]></category>
		<category><![CDATA[Heathkit HW-101]]></category>
		<category><![CDATA[HF]]></category>
		<category><![CDATA[impedence]]></category>
		<category><![CDATA[matching network]]></category>
		<category><![CDATA[reactance]]></category>
		<category><![CDATA[resistance]]></category>
		<category><![CDATA[RG-58 coax]]></category>
		<category><![CDATA[tuner]]></category>
		<category><![CDATA[Vertical Antenna]]></category>

		<guid isPermaLink="false">http://n00tz.net/?p=210</guid>
		<description><![CDATA[I captured a discussion my father, AI4ZV, was having with KJ4KET while trying out my UStream feed (for use at the office as a way of allowing me to listen to the Ham Radio waves in a basement). Some of you may catch some information that could prove useful. I hope the tags I add [...]]]></description>
			<content:encoded><![CDATA[<p>I captured a discussion my father, <a href="http://www.qrz.com/db/AI4ZV" target="_blank">AI4ZV</a>, was having with <a href="http://beeradvocate.com/beer/profile/11597/48179/?ba=n00tz" target="_blank">KJ4KET</a> while trying out my UStream feed (for use at the office as a way of allowing me to listen to the Ham Radio waves in a basement).</p>
<p>Some of you may catch some information that could prove useful. I hope the tags I add to the post helped direct you here for some useful purpose (if not your intended search).</p>
<p><a href="http://www.ustream.tv/recorded/2204933" target="_blank">http://www.ustream.tv/recorded/2204933</a></p>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2009/09/antenna-geekery-with-ai4zv-and-kj4ket/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gear Guide &#8211; Choosing a Sleeping Bag</title>
		<link>http://n00tz.net/2009/09/gear-guide-choosing-a-sleeping-bag/</link>
		<comments>http://n00tz.net/2009/09/gear-guide-choosing-a-sleeping-bag/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 17:38:14 +0000</pubDate>
		<dc:creator>n00tz</dc:creator>
				<category><![CDATA[Camping]]></category>
		<category><![CDATA[backpacking]]></category>
		<category><![CDATA[comfort]]></category>
		<category><![CDATA[cotton]]></category>
		<category><![CDATA[down]]></category>
		<category><![CDATA[Polarguard 3D]]></category>
		<category><![CDATA[sleeping bags]]></category>
		<category><![CDATA[Slumberjack]]></category>
		<category><![CDATA[synthetic]]></category>
		<category><![CDATA[wool]]></category>
		<category><![CDATA[zipper]]></category>

		<guid isPermaLink="false">http://n00tz.net/?p=194</guid>
		<description><![CDATA[Sleeping bags are arguably one of the top 5 most important items to take with you on any overnight expedition in the outdoors. So when you head to the store searching for a sleeping bag for the first time you may be surprised to find how many options you have. As with all gear guides [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_197" class="wp-caption alignleft" style="width: 155px"><img class="size-medium wp-image-197" src="http://n00tz.net/files/rectangular-bags-300x228.png" alt="rectangular bags" width="145" height="108" /><p class="wp-caption-text">Selected Slumberjack Sleeping Bags</p></div>
<p>Sleeping bags are arguably one of the top 5 most important items to take with you on any overnight expedition in the outdoors. So when you head to the store searching for a sleeping bag for the first time you may be surprised to find how many options you have. As with all gear guides I have or will be publishing I&#8217;ll apply my thoughts and knowledge to the topic and let you decide for yourself by getting informed. The goal of this article is that you  find that the multiple options you are presented with to be less than overwhelming, and to select the right piece of equipment for the right application.</p>
<p>There are a handful of things to think about when selecting what bag is right for the job:</p>
<ol>
<li>Design Type (Rectangular, Mummy, Mate-able)</li>
<li>Insulation (Synthetic, Down, Cotton/Wool)</li>
<li>Temperature Rating</li>
<li>Craftsmanship and Material (zipper, drawstring, fabric)</li>
</ol>
<h3>Design Type Considerations</h3>
<p>Rectangular sleeping bags are probably the most recognizable design type to the unfamiliar shopper. It is most simply described as a filled/insulated blanket that can be folded in half and zipped on two sides to create a pocket for you to sleep in. Though they can be used in cold weather, the opening at the top of the pocket in most rectangular bags allows for a significant leak in the insulated warmth the bag provides and will allow cold air drafts to enter the bag. <span id="more-194"></span>That being said, these bags are the easiest to pack due to their simple design and are fantastic in warm weather. Mate-able sleeping bags are most commonly a rectangular sleeping bag that are made such that you zip two of them together to create a large sleeping bag, this is a method for couples to be able sleep together (leading the type to be a double entendre?).</p>
<div id="attachment_199" class="wp-caption alignright" style="width: 245px"><a href="http://www.slumberjack.com/Product.aspx?ProductID=3"><img class="size-medium wp-image-199" src="http://n00tz.net/files/slumberjackmummy-300x128.png" alt="slumberjackmummy" width="235" height="100" /></a><p class="wp-caption-text">Slumberjack&#39;s Solera 15° Mummy</p></div>
<p>Mummy style sleeping bags are better for colder weather camping by design. The name describes their look perfectly, they taper from head to foot reducing the surface area and volume. By reducing the surface area and volume it takes less body heat to bring the insulation to a comfortable level, and increases their ability to keep heat from escaping. A drawstring at the head end of the bag to pull the top of the bag around your head, further increasing heat retention of the bag. Typical mummy bags do not have a zipper in the foot end of the bag because the zipper is one of the weakest points in the insulation of a sleeping bag and the toes are one of the more vulnerable parts of the body regarding heat loss. If you are purchasing a mummy bag for use by a female camper there are special considerations made by some manufacturers &#8211; construction differences in the female bags are additional material in the torso and hip areas to accommodate the differences in body type.</p>
<h3>Insulation and Temperature Ratings</h3>
<div id="attachment_203" class="wp-caption alignleft" style="width: 129px"><img class="size-full wp-image-203" src="http://n00tz.net/files/polarguard3d.png" alt="Polarguard3D, a synthetic fill material." width="119" height="119" /><p class="wp-caption-text">Polarguard3D, a synthetic fill material.</p></div>
<p>As I mentioned earlier the typical insulation used in sleeping bags are synthetic, down (feathers),  cotton, and wool. The features we will be looking at specifically in each of the different types of insulation is loft(or resistance to compression), weight, water absorption and retention, and cost. Loft is important because the more space insulation takes up the greater the r-value (thermal resistance). Reducing the amount of heat lost is the goal of a sleeping bag so this is a vital consideration, though some materials have higher r-values for less material used. Weight of material is a consideration anytime weight plays a pivotal role in the amount of gear you take, specifically backpacking. Water absorption and retention is more of a consideration as for how miserable you could be if your bag gets wet.</p>
<p>Wool is known for its properties of water repulsion and resistance to compression though it weighs more than just about any fill material used in sleeping bags. Cotton does not repel water well at all and weighs marginally more than all materials aside from wool but it is cheap and can pack much smaller than wool. If you are going cabin camping or to a sleepover in some form these materials are a great choice for those situations and others where the drawbacks are not of major concern.</p>
<p>Synthetic materials provide the highest r-value per inch versus the other fill materials, have the best water absorption and retention qualities (virtually none of either), dries easy, and even provides insulation while wet &#8211; a lifesaving feature that can prevent common cases of hypothermia while wilderness camping. Synthetic fill also insulates well under compression (like laying on the bag, for instance) and lofts quickly to provide maximum insulation faster. The drawbacks to these properties are that it does not compress easily and therefore requires more space to store than easily compressed materials, it also weighs more than down. Down  fill is one of the best heat retainers of fill material by density. It also costs the most, and is nearly useless when wet.</p>
<h3>Craftsmanship and Material</h3>
<p><img class="alignright size-thumbnail wp-image-204" src="http://n00tz.net/files/file_16_8-150x150.jpg" alt="file_16_8" width="150" height="150" />As with most things, the quality of the material and attention to detail in the craftsmanship in sleeping bags is directly proportional to the life of the bag. A couple of things you may want to look out for when choosing a bag is the zipper and material surrounding the zipper. Will the zipper get caught in the bag? Will the zipper jam easy or bind on itself? One of my favorite bags had a nylon webbing material that surrounded the zipper teeth such that the fabric on the inside and outside of the bag were kept out of the way of a closing zip. Unfortunately, the zipper pull itself was not constructed of hardened material and the zipper failed due to other circumstances. Another feature to check the material and craftsmanship on is any drawstring attached to the bag. Is the drawstring secure to the bag, or simply attached by a single stitch at a fold? Is the cord itself resistant to rot over long periods of time? Lastly, the fabric used for the inside and outside of the bag needs to be investigated. Is the fabric thin and easily worn out after a few dozen times in and out of the stuff sack or is it durable? Does the external shell of the bag resist water, stains, or other environmental factors that may play a part in the breakdown of material? Does the inner material warm up quickly to the touch? All of these questions should be in the back of your mind when investigating the construction of a sleeping bag.</p>
<h3>Care and Storage</h3>
<p>Care of your bag will be a concern if you plan to keep the bag for many trips, particularly keeping it clean. After each trip I take, I open my bag and turn it inside-out to lay it on a clothes line or the back of a couch. Airing it out helps prevent it from getting smelly quickly. If after a dozen trips or more it gets to the point where it no longer supports breathing, there are specialized detergents designed with your sleeping bag and other camping gear in mind. Most, if not all, sleeping bags will include instructions for washing on a tag either attached to the bag or a storage sack. Typically they will tell you to use a hand washing method, or a front-loading (non-agitating) washing machine with light amounts of detergent (like woolite or a specialized soap) in warm water. Air drying or press drying are highly recommended for drying a washed sleeping bag. Do NOT dry-clean a down sleeping bag unless the manufacturer explicitly recommends it, as the chemicals used will strip the feathers of natural oils necessary in keeping the insulating value of down.</p>
<p>With all materials settling will occur causing cold spots to appear in the bag if care is not taken to minimize the amount of settling. Down is the fill material most affected by this,  so much so that while in periods of extended storage it should be kept in a large back so it is not forcibly compressed. Short periods of time, like while packed in a backpack, are okay for this compression but will continually degrade the loft and insulation characteristics of the bag.</p>
]]></content:encoded>
			<wfw:commentRss>http://n00tz.net/2009/09/gear-guide-choosing-a-sleeping-bag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
