<?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"
	>

<channel>
	<title>The Ramblings of a Crazy Man.</title>
	<atom:link href="http://www.n5ebw.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.n5ebw.com</link>
	<description>Crazy thoughts, notions, and madness of a sleep deprived man. Enjoy!</description>
	<pubDate>Sat, 22 May 2010 08:45:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>The Folding@Home project, with a little VMWare. Part 2</title>
		<link>http://www.n5ebw.com/2010-05/the-foldinghome-project-with-a-little-vmware-part-2/</link>
		<comments>http://www.n5ebw.com/2010-05/the-foldinghome-project-with-a-little-vmware-part-2/#comments</comments>
		<pubDate>Sat, 22 May 2010 08:45:45 +0000</pubDate>
		<dc:creator>n5ebw</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.n5ebw.com/?p=338</guid>
		<description><![CDATA[If you linked here directly, feel free to go back and read part 1 for background on this project, located here.  If you&#8217;re still with us from Part 1, Thanks!
Recently, I filled a 4 foot rolling rack with equipment.  A 4 core  IBM eSeries server with 2 TB of SCSI storage running ESXi is [...]]]></description>
			<content:encoded><![CDATA[<p>If you linked here directly, feel free to go back and read <a href="http://www.n5ebw.com/2010-05/the-foldinghome-project-with-a-little-vmware-part-1" target="_self">part 1</a> for background on this project, located here.  If you&#8217;re still with us from <a href="http://www.n5ebw.com/2010-05/the-foldinghome-project-with-a-little-vmware-part-1" target="_self">Part 1</a>, Thanks!</p>
<p>Recently, I filled a 4 foot rolling rack with equipment.  A 4 core  IBM eSeries server with 2 TB of SCSI storage running ESXi is one of the  main components.  I always like to keep the server online for various  sundry items, but it usually sits largely idle, even with two Red Hat  Linux instances running on it while I am studying.  This is somewhat of a  waste in my opinion because the server is sitting idle with spinning  fans while not doing much of anything.  A wonderful solution to this is  have ESXi run a guest, specifically for the folding application.  If set  up correctly, you can even have ESXi dedicate as much of the machine&#8217;s  resources for CPU and memory as possible during downtime, and have it  throttle it back when other applications are working on mission critical  things.  I&#8217;m looking at you, small business and enterprise owners.</p>
<p><span id="more-338"></span></p>
<p>Most people download and install Ubuntu, or Windows as their OS  choice for Folding@Home.  Since these OS&#8217;s are geared more toward the  Desktop user, they have a little too much overhead for my liking when  picking something for one process (yes, I just said that).   My OS of  choice for this process was CentOS 5.5, but that&#8217;s just personal  preference.  I aimed to install a minimally loaded, no frills OS with  bare minimum internet connectivity and libraries required to make  Folding@Home run, but it can happily share any Linux box you&#8217;ve got.  My base installation, along with a few programming libraries and a webserver, took about 2.5 gigs (keep in mind that a lot of this was the swap file I allocated during install, you may choose an amount that is drastrically lower).  If you aren&#8217;t familiar with the Linux command line, you&#8217;re going to want to install the GUI, but I&#8217;m right at home there, so I opted to save space.</p>
<p>It&#8217;s then a simple matter of downloading and installing their client onto your machine, here&#8217;s the blow by blow:</p>
<p><strong>(Note: Be sure to find the correct version by checking <a href="http://folding.stanford.edu/English/Download" target="_blank">http://folding.stanford.edu/English/Download</a>)</strong></p>
<p>Once you&#8217;ve determined your version, find a suitable install target, download and install by unarchiving&#8230;</p>
<p>Make the directory. Go to it.<br />
<span style="color: #ffff00;">ewolf@folding$ mkdir folding; cd folding/</span></p>
<p>This command downloads the package from Stanford, substitute the link to your install here.<br />
<span style="color: #ffff00;">ewolf@folding$ wget <span class="urllink">http://www.stanford.edu/group/pandegroup/folding/release/FAH6.29-Linux.tgz</span></span></p>
<p>Uncompress and unarchive the install.</p>
<p><span style="color: #ffff00;">ewolf@folding$ tar -xzvf FAH6.29-Linux.tgz</span></p>
<p>This will leave you with 2 files.</p>
<p><span style="color: #ffff00;">ewolf@folding$ ls</span><br />
<span style="color: #00ff00;">fah6     mpiexec</span></p>
<p>Give the binary execute permissions.</p>
<p><span style="color: #ffff00;">ewolf@folding$ chmod u+x fah6</span></p>
<p>Now, we have to configure the client settings by running the following command:</p>
<p><span style="color: #ffff00;">ewolf@folding$ ./fah6 -configonly</span></p>
<p>Follow the onscreen setup instructions.  These are the same as the configuration pane on Windows, just in text form.</p>
<p>Next, make it easy on yourself.  Build a start script for the startup command, give execute permissions:</p>
<p><span style="color: #ffff00;">ewolf@folding$ echo &#8220;./fah6 -verbosity 9 $*&#8221; &gt; fah; chmod u+x fah</span></p>
<p>If this is a dedicated VM or machine, and you want this process to use all of your allocated processor power, this is the last step required for configuration.  To run this script on demand, simply execute it:</p>
<p><span style="color: #ffff00;">ewolf@folding$ ./fah</span></p>
<p>This will bring up a super neato (Not) screen with status information on your fold workload.</p>
<p style="text-align: center;">(click for full size)</p>
<p style="text-align: center;"><a href="http://www.n5ebw.com/images/foldingdisplay.jpg" target="_blank"><img class="aligncenter" title="Folding Display" src="http://www.n5ebw.com/images/foldingdisplay_tn.jpg" alt="" width="202" height="177" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">Now for the tweaks.  There are two you may want to do right off the bat: CPU throttling and Automatic startup.  Here&#8217;s what my VM performance looks like when running this with minimal configuration:</p>
<p style="text-align: center;">(Click for full size)</p>
<p style="text-align: center;"><a href="http://www.n5ebw.com/images/foldingperf.jpg" target="_blank"><img class="aligncenter" title="Folding Performance" src="http://www.n5ebw.com/images/foldingperf_tn.jpg" alt="" width="269" height="167" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">This may be a problem if you aren&#8217;t fond of running your CPU&#8217;s at full utilization, due to electricity costs, wear and tear/etc&#8230;.  If that is the case for you, there is a 3rd party utility available (freeware) to get the cpu utilization throttled back called &#8220;fahlimit&#8221; (<a href="http://calxalot.net/downloads/#fahlimit" target="_blank">click here for website in new window</a>).  Run it as a part of your start/stop script I am going to cover shortly if this is a consideration.</p>
<p style="text-align: left;">
<p style="text-align: left;">&lt;rant&gt; Just as an aside, there&#8217;s a lot of talk on the Folding@Home website about how you should be able to run your processors at 100% all the time, without consequence (other than power consumed).  I&#8217;m here to tell you that this is just <span style="text-decoration: underline;">NOT TRUE</span>.  Any amount of added heat, especially from processing wear and tear, will always cause your electronics to fail sooner than they would have if they had an average load on them.  Heat is the absolute enemy of electronics.  100% CPU utilization all of the time causes LOTS of heat.  The fact that the heat is dissipated with adequate heat sinking and fan cooling is immaterial.  These measures only will prevent your CPU from <span style="text-decoration: underline;">absolute</span> failure from <strong><span style="text-decoration: underline;">overheating</span></strong>. &lt;/rant&gt;</p>
<p style="text-align: left;">
<p style="text-align: left;">Here&#8217;s what I did to install fahlimit:</p>
<p style="text-align: left;">First, get into the install directory (substitute $FAH with your install directory path)</p>
<p style="text-align: left;"><span style="color: #ffff00;">ewolf@folding$ cd $FAH/</span></p>
<p style="text-align: left;">
<p style="text-align: left;">Download fahlimit.</p>
<p style="text-align: left;"><span style="color: #ffff00;">ewolf@folding$ wget http://calxalot.net/downloads/versions/fahlimit/0.6/fahlimit-0.6-linux.tgz</span></p>
<p style="text-align: left;">
<p style="text-align: left;">Unarchive and uncompress fahlmit.</p>
<p style="text-align: left;"><span style="color: #ffff00;">ewolf@folding$ tar -xzvf fahlimit-0.6-linux.tgz</span></p>
<p style="text-align: left;">
<p style="text-align: left;">Now run the extracted tool, also called fahlimit, with your desired utilization with this command:</p>
<p style="text-align: left;"><span style="color: #ffff00;">ewolf@folding$ ./fahlimit -daemon -percent 50</span></p>
<p style="text-align: left;">
<p style="text-align: left;">As you can see, I&#8217;m using 50 percent here, and it&#8217;s brought my CPU utilization down accordingly:</p>
<p style="text-align: center;">(Click for full size)</p>
<p style="text-align: center;"><a href="http://www.n5ebw.com/images/foldingperfhalf.jpg" target="_blank"><img class="aligncenter" title="Half Performance" src="http://www.n5ebw.com/images/foldingperfhalf_tn.jpg" alt="" width="268" height="166" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">Now that we&#8217;ve configured everything for optimum use within the OS, I will show you how to put it all together and autostart your folding when your VM comes up.  Instead of explaining everything in the start/stop script, and pasting it here, I am offering it in a .txt file, viewable <a href="http://www.n5ebw.com/downloads/folding.txt" target="_blank">here</a>.</p>
<p style="text-align: left;">
<p style="text-align: left;">I installed a copy in my installation directory, and soft linked it to /etc/init.d, but it will of course work just as well if you have a copy in both spots.  Pay close attention and edit the script as necessary to suit your own installation needs.  And also, don&#8217;t forget to give the start script execute permission:</p>
<p style="text-align: left;"><span style="color: #ffff00;">chmod u+x folding</span></p>
<p style="text-align: left;">
<p style="text-align: left;">To get it to start with the server, we just register it with chkconfig (You will probably have to be root to move the file into /etc/init.d as well as register with chkconfig):</p>
<p style="text-align: left;"><span style="color: #ffff00;">root@folding# chkconfig &#8211;add folding</span></p>
<p style="text-align: left;">
<p style="text-align: left;">And that&#8217;s all it takes.  To verify it&#8217;s going to start, just query chkconfig to tell you which runlevels it will start with:</p>
<p style="text-align: left;"><span style="color: #ffff00;">root@folding# chkconfig &#8211;list folding</span></p>
<p style="text-align: left;">
<p style="text-align: left;">You should see the word &#8220;on&#8221; after runlevels 3, 4, and 5.  If this is not the case, please consult the man page for chkconfig for further assistance.</p>
<p style="text-align: left;">
<p style="text-align: left;">Next, continue on to part 3, where I will briefly show you how to set up ESXi to utilize this lovely purpose-driven VM during off hours and non-peak processing times&#8230;&#8230;but first, I need some sleep.  More to come in the next few days!</p>
<p style="text-align: left;">
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://www.n5ebw.com/2010-05/the-foldinghome-project-with-a-little-vmware-part-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Folding@Home project, with a little VMWare. Part 1</title>
		<link>http://www.n5ebw.com/2010-05/the-foldinghome-project-with-a-little-vmware-part-1/</link>
		<comments>http://www.n5ebw.com/2010-05/the-foldinghome-project-with-a-little-vmware-part-1/#comments</comments>
		<pubDate>Sat, 22 May 2010 08:45:28 +0000</pubDate>
		<dc:creator>n5ebw</dc:creator>
		
		<category><![CDATA[Computing]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.n5ebw.com/?p=326</guid>
		<description><![CDATA[Around this time last year, I made a post about helping the environment through a service called &#8220;Earth911&#8243; (See that post here).  This post isn&#8217;t about the environment, nor is it about woodworking, electronics, weather, or any of the other weird stuff you&#8217;ve come to expect from my writings.  This is about helping the thing [...]]]></description>
			<content:encoded><![CDATA[<p>Around this time last year, I made a post about helping the environment through a service called &#8220;Earth911&#8243; (<a href="http://www.n5ebw.com/2009-05/earth911com-the-hazardous-material-disposal-search-engine/" target="_blank">See that post here</a>).  This post isn&#8217;t about the environment, nor is it about woodworking, electronics, weather, or any of the other weird stuff you&#8217;ve come to expect from my writings.  This is about helping the thing we all hold most dear in this life: ourselves.  Readers in my audience who are on the techie side of things will likely have already known about this for years, but I also know I have others in my audience who are not.</p>
<p><span id="more-326"></span></p>
<p>Normal, healthy proteins take on a shape called a &#8220;fold&#8221; during their natural course of action in a healthy environment.  Protein mis-folding causes diseases such as Mad Cow, Cystic Fibrosis, Alzheimer&#8217;s, and some cancers, just to name a few.</p>
<p>Here&#8217;s where it gets personal.  My father-in-law (from whom I inherited all of the tools I restored), passed away at the age of 55 from complications of early onset Alzheimer&#8217;s due to a stroke.  Two of my grandmother&#8217;s are breast cancer survivors, but 1 also has Alzheimer&#8217;s, and my grandfather has an ongoing battle with Lung Cancer.  I am doing this to not only contribute to the research of these horrible diseases for their health and well being, but at the risk of sounding slightly vain and selfish, I&#8217;m doing it for myself, as well as my siblings, and immediate family.  We&#8217;ve determined the risks for these diseases are abundantly heightened in our family.  I&#8217;m quite sure I&#8217;m not the only one, otherwise Folding@Home would not exist.</p>
<p>Now that you have way too much background on the &#8220;why&#8221;, I&#8217;ll go into the &#8220;what&#8221; and &#8220;how&#8221;.</p>
<p>The &#8220;Folding @ Home&#8221; project (<a href="http://folding.stanford.edu" target="_blank">http://folding.stanford.edu/</a>)  harnesses the distributed computing power of idle computers on the  internet to study protein folding.  Stanford&#8217;s protein folding researchers have developed a desktop application that runs in the background of your computer and does &#8220;simulated protein folding&#8221; to glean the output of different scenarios they can&#8217;t observe in the real world in abundance. It would take 10,000 CPU days to simulate  folding, one CPU alone doing it would take 30 years (folds happen in a matter of 10,000 nanoseconds).  That&#8217;s unacceptable.  With the computer power harnessed from idle CPU power, the workload is distributed and results are produced much faster in their simulated folding time line environment.  I&#8217;m participating in the folding project by dedicating one of my idle CPU cores (I&#8217;m running a dual core) and as much available RAM as I can spare (I have 8 gigs total) to the cause while I do low CPU tasks like browsing the internet, listening to music, even as I write this article.  You can participate, too.  Go to the <a href="http://folding.stanford.edu" target="_blank">Folding@Home</a> website, download the install program, which is very small, AND cross platform for all of you Linux and Mac users out there, install it, and turn it on.  (There&#8217;s even a app for your Playstation 3!) I promise that you won&#8217;t even notice it&#8217;s there, other than the icon on your taskbar, which usually brings a smile to my face.  Without sounding too cliche, &#8220;The life that you save may be your own&#8221;.</p>
<p>I&#8217;m taking it one step further, though.  Most of you will agree that if there were a kingdom where all of the subjects over-engineered and over-thought every little thing, I&#8217;d be a Prince.  Probably not the <a href="http://www.n5ebw.com/images/princechappelle.jpg" target="_blank">purple velvet wearing, pancake making one</a>, though.  Now, I&#8217;m going to discuss how to get this running with spare CPU and memory on a VMWare server, so discontinue if this isn&#8217;t your brand of tech.</p>
<p><a href="http://www.n5ebw.com/2010-05/the-foldinghome-project-with-a-little-vmware-part-2" target="_self">(Continue to Part 2 by Clicking Here)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.n5ebw.com/2010-05/the-foldinghome-project-with-a-little-vmware-part-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Welcome, visitors from &#8220;The Daily Matt&#8221;!</title>
		<link>http://www.n5ebw.com/2010-02/welcome-visitors-from-the-daily-matt/</link>
		<comments>http://www.n5ebw.com/2010-02/welcome-visitors-from-the-daily-matt/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 20:33:54 +0000</pubDate>
		<dc:creator>n5ebw</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.n5ebw.com/?p=318</guid>
		<description><![CDATA[Hey Everyone, thanks for visiting my site! If you linked here from &#8220;The Daily Matt&#8221; (I&#8217;m noticing A LOT of referrer traffic in my logs), let me be the first to welcome you on your arrival!  I have taken the liberty of organizing all of the hand planer restoration articles into one concise source.  Again, [...]]]></description>
			<content:encoded><![CDATA[<p>Hey Everyone, thanks for visiting my site! If you linked here from &#8220;The Daily Matt&#8221; (I&#8217;m noticing A LOT of referrer traffic in my logs), let me be the first to welcome you on your arrival!  I have taken the liberty of organizing all of the hand planer restoration articles into one concise source.  Again, thanks for visiting, and I hope you enjoy the restoration articles!</p>
<p><a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt1/" target="_blank">Refurbishing Old Hand Planes Part 1: Flattening the Sole</a><br />
<a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt2-2/" target="_blank">Refurbishing Old Hand Planes Part 2: Truing the Frog</a><br />
<a href="http://www.n5ebw.com/2009-10/refurbishing-old-hand-planes-pt3/" target="_blank">Refurbishing Old Hand Planes Part 3: Modifying the throat and chip breaker</a><br />
<a href="http://www.n5ebw.com/2009-11/refurbishing-old-hand-planes-pt4/" target="_blank">Refurbishing Old Hand Planes Part 4: Sharpening the iron</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.n5ebw.com/2010-02/welcome-visitors-from-the-daily-matt/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Spring is coming, the Crazy Man electronics sale is here!</title>
		<link>http://www.n5ebw.com/2010-01/spring-is-coming-the-crazy-man-electronics-sale-is-here/</link>
		<comments>http://www.n5ebw.com/2010-01/spring-is-coming-the-crazy-man-electronics-sale-is-here/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 00:38:06 +0000</pubDate>
		<dc:creator>n5ebw</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.n5ebw.com/?p=312</guid>
		<description><![CDATA[I&#8217;ve got some things that were from past projects that are up for sale.  Take a look at my sale page to see if any of it catches your fancy!
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got some things that were from past projects that are up for sale.  Take a look at <a href="http://www.n5ebw.com/electronic-stuff-for-sale/" target="_self">my sale page</a> to see if any of it catches your fancy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.n5ebw.com/2010-01/spring-is-coming-the-crazy-man-electronics-sale-is-here/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Refurbishing Old Hand Planes Part 4: Sharpening the iron</title>
		<link>http://www.n5ebw.com/2009-11/refurbishing-old-hand-planes-pt4/</link>
		<comments>http://www.n5ebw.com/2009-11/refurbishing-old-hand-planes-pt4/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 00:00:27 +0000</pubDate>
		<dc:creator>n5ebw</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Woodworking]]></category>

		<category><![CDATA[hand plane restoration]]></category>

		<guid isPermaLink="false">http://www.n5ebw.com/?p=256</guid>
		<description><![CDATA[Wow, a tremendous response from some of you who are following my restoration articles! Thank you all for your kind words and support!

For those of you just joining us, we&#8217;ve been discussing how to refurbish an old Stanley #4 hand plane that I inherited as a family heirloom. If you have missed part 1, part [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, a tremendous response from some of you who are following my restoration articles! Thank you all for your kind words and support!<br />
<br />
For those of you just joining us, we&#8217;ve been discussing how to refurbish an old Stanley #4 hand plane that I inherited as a family heirloom. If you have missed <a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt1/" target="_blank">part 1</a>, <a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt2-2/" target="_blank">part 2</a>, or <a href="http://www.n5ebw.com/2009-10/refurbishing-old-hand-planes-pt3/" target="_blank">part 3</a>, feel free to go back and read them. I&#8217;ll wait&#8230;..<br />
<br />
Some of you may have noticed in <a href="http://www.n5ebw.com/2009-10/refurbishing-old-hand-planes-pt3/" target="_blank">part 3</a> that the plane iron was cutting really rough, despite having trued all of the surfaces of the plane so far. The reason is that not only was the iron not all that sharp (like yours truly at times), but the angle of the cut was not optimal. As if that weren&#8217;t bad enough, the angle was not homogeneous all the way across, and there was a small knick in the edge.<br />
<br />
We&#8217;re gonna wanna take care of that I think&#8230;&#8230;<br />
<span id="more-256"></span><br />
First, we need to do something called &#8220;re-establish the primary bevel angle&#8221;. Sounds very techie doesn&#8217;t it? I assure you it&#8217;s very easy to accomplish. All&#8217;s we&#8217;re really aiming to do is grind a new surface onto the iron that is perfectly flat, and a consistent angle all the way across. We want a general purpose bevel edge on the iron, around 30 degrees (I&#8217;ll cover how we know that in just a bit). For this, I will be using three tools:<br />
</p>
<ul>
<li>A Honing Guide <a href="http://www.amazon.com/Robert-Larson-800-1800-Honing-Guide/dp/B000CFNCKS/ref=sr_1_1?ie=UTF8&amp;s=hi&amp;qid=1257887955&amp;sr=8-1" target="_blank">(I got mine at Amazon for less than $8.00 USD)</a></li>
<li>Our float glass with 120 grit paper from previous articles</li>
<li>A jig for measuring the distance between the edge of the honing guide and the edge of the iron.</li>
<li>1000 grit/6000 grit combo Japanese waterstones <a href="http://www.amazon.com/Woodstock-D1130-1000-Japanese-Waterstone/dp/B0000DD2C9/ref=pd_bxgy_hi_img_b" target="_blank">(Which I also got from Amazon)</a></li>
</ul>
<p>
The reason we use the honing guide, is because like most of you visiting this article, I CANNOT judge angles by eye for sharpening, and, honestly, people that claim they can are, in my opinion, cheating themselves out of sharpening accuracy. Do what you want with your tools, but mine will be using the guide :-).<br />
<br />
Anyway, if you take a look at the side of the honing guide, there is a legend that tells you the space in between the end of the guide tool and the tip of the tool that it takes to achieve a desired angle (feel free to do the necessary trigonometry if you don&#8217;t wish to use the legend).<br />
<center><img src="http://www.n5ebw.com/images/planerpics/honingguide.jpg" alt="" /><img src="http://www.n5ebw.com/images/planerpics/jigspec.jpg" alt="" /></center><br />
From that, I built a really crude &#8220;stop block&#8221; measuring tool out of MDF, which can not only be used on my plane iron, but on my chisels as well:<br />
<br />
<center><img src="http://www.n5ebw.com/images/planerpics/stopblock.jpg" alt="" /></center><br />
This ensures that not only can I set the jig up quickly every time I sharpen my irons and chisels, but also that I will be able to consistently set it up for the exact distance, each and every time. Now grasshopper, you see how we achieved our 30 degree sharpening angle with the jig! Imagine a gong crash right about now. Let&#8217;s set up our iron with the 38mm mark and reestablish our bevel with our sandpaper and float glass:<br />
<br />
<img src="http://www.n5ebw.com/images/planerpics/jigsetup.jpg" alt="" /><img src="http://www.n5ebw.com/images/planerpics/ironfloatglass.jpg" alt="" /><br />
<br />
Since the bevel on my iron was so messed up, I had to do this twice. The first time was to make the angle homogeneous, and since a bit more material was removed than anticipated, I re-gauged the distance on my stop block jig and then went across the sandpaper/glass again just to make sure the angle was correct. Once the angle was correct, I finished the bevel off on some 400 grit and 600 grit wet sandpaper to polish the blade a little before I moved to my 1000 grit/6000 grit water stones.<br />
<br />
At this point, we have a nice, consistent bevel worth putting a cutting edge on. To do this, we turn to the water stones! Personally, I would <strong><em>like</em></strong> to take these down to 8000 grit, but there&#8217;s only one company who makes a combo wetstone, Norton, and I haven&#8217;t been able to quite stomach the 75-something-dollar price tag, especially since the water stones I have are still in good shape. Maybe in the future, but if it&#8217;s in your budget, go for it. Let me move on before I go too far off into that tangent. A good practice that I like to adhere to is to keep the stones soaked in water, so they are ready when I need them. Otherwise, you&#8217;re looking at soaking them for at least 8 minutes before use. I use one of those disposable tupperware containers, and it seems to work well, but a lot of water stones will often times come with their own &#8220;wet storage&#8221; containers.<br />
<br />
Now, we&#8217;ll set up shop on &#8220;ye olde workbench&#8221; with the water stone and my spray bottle of clean water handy, and at the risk of sounding as long and drawn out as a <a href="http://en.wikipedia.org/wiki/Joseph_Moxon" target="blank">Joseph Moxon</a> text, I&#8217;m going to try to explain how to get a razor sharp edge on to the plane iron. First, we need to put a slight back bevel on the back of the iron, spacing it at around 1 or 2 degrees using a thin strip of metal (I harvested this one from an old sheetrock mud bucket I threw away, but a lot of people use thin metal rulers for this). Why do we have to bevel the back of the blade when we&#8217;re cutting with the primary beveled side?  The easy answer is that it (theoretically) improves your cut by slightly decreasing the cutting angle.<br />
<br />
Right about now, you may be saying &#8220;Eric. Stop. You&#8217;re losing me here&#8221;.  All&#8217;s I am saying is that we&#8217;re back beveling the edge in order to have a slightly steeper angle and reducing the amount of blade contacting the surface of the wood, thus making for a smoother cut by reducing cutting friction.  Now I can hear you saying, &#8220;Well, why don&#8217;t we just grind the primary bevel at a steeper angle if we&#8217;re just reducing surface area?&#8221;  The answer is, it inherently makes the blade weaker by doing that.  The metal of the iron has less structural support and becomes flimsy.  Okay&#8230; &#8220;Well, what&#8217;s different about the back bevel then?&#8221;  We&#8217;re accomplishing the goal of an &#8220;effective angle&#8221; by using a small compounded angle on the backside, leveraging the tensile strength of four compound surfaces instead of three.  In essence, it helps split the forces from the cut a little better by sharing the load in different directions.  As a layman&#8217;s comparison, think of a bridge with circular pillars where it meets the water of a river.  They aren&#8217;t square because it would take a stronger material to absorb the force of the rushing water.  By changing the shape, and adding more directions for the water to contact, we accomplish the goal of dissipating more force with the same amount of material.  The magic of applied physics is a fantastic thing.  I&#8217;ll move on now, I can see you&#8217;re growing tired of this discussion.<br />
<br />
Anyway, using the 1000 grit side of the wetstone, with plenty of water on it, I place the back of the iron on it using the metal strip as the spacer. Rock it in a back and forth motion, while moving side to side, for about twenty or thirty strokes&#8230;oh bother, here&#8217;s a video:<br />
<br />
<center><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="320" height="265" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/tAINr9vtnjs&amp;hl=en_US&amp;fs=1&amp;rel=0" /><embed type="application/x-shockwave-flash" width="320" height="265" src="http://www.youtube.com/v/tAINr9vtnjs&amp;hl=en_US&amp;fs=1&amp;rel=0" allowfullscreen="true" allowscriptaccess="always"></embed></object><br />
</center><br />
<br />
If you see the top of the stone start drying out, add a small amount of water to it from your spray bottle. What you do not want to do, is remove the dirty looking water. We refer to this as &#8220;slurry&#8221;, and that&#8217;s a good thing as it aids in the sharpening process. In fact, you absolutely want a slurry on the surface of your stone at all times. After you are done, you will notice a small mirror edge on the back of the blade. I have been in several discussions on whether to go ahead and sharpen the back edge of the iron with the finer grit side. Some people think it is not necessary, others think it is absolutely necessary to mirror the finish of the bevel with the back bevel with the same grit. I&#8217;m not sure who is right, so even if it&#8217;s not necessary, at the risk of overkill, I repeat the back bevel sharpening process with the 6000 grit side. I know it adds time, but, in reality, it&#8217;s just a little bit of patience, which is what most woodworkers possess anyway. When we finish with the back bevel, it should look something like this:<br />
<br />
<center><img src="http://www.n5ebw.com/images/planerpics/backbevel.jpg" alt="" /><br />
<br />
(Note: I know this isn&#8217;t the best picture. It was hard to get a contrasting picture of the back bevel with the trashy fluorescent lighting in the shop, so I apologize)<br />
</center><br />
Now, we just flip the blade over, and return to the 1000 grit side. With the honing guide set, and using methodical strokes from the far end of the stone to the near side, run the bevel across the length. Do this slowly, taking your time to ensure the blade stays flush and fully contacting the stone. Eat your heart out, Moxon.<br />
<br />
<center><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="320" height="265" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/A6oeptqQTtk&amp;hl=en_US&amp;fs=1&amp;rel=0" /><embed type="application/x-shockwave-flash" width="320" height="265" src="http://www.youtube.com/v/A6oeptqQTtk&amp;hl=en_US&amp;fs=1&amp;rel=0" allowfullscreen="true" allowscriptaccess="always"></embed></object><br />
</center><br />
<br />
Anyway, I achieved a suitable edge from 30 strokes. Repeat this process with the 6000 grit side, and you should have a nice mirror finish edge that looks similar to this:<br />
<center><br />
<img src="http://www.n5ebw.com/images/planerpics/frontbevel.jpg" alt="" /><br />
<br />
(I know this isn&#8217;t a great picture either, but since I couldn&#8217;t get a good contrasting shot, look at how the light shimmers off of the edge in comparison)<br />
</center><br />
Now, the good stuff. We want our iron to not just cut, we want it to cut with ease. This can be accomplished by using a bit of pressure on the edges while you drag the plane iron on the water stone. I generally match the number of strokes I use to put the edge on with this process. Use the same dragging motion as above, with the slight difference of adding pressure to the edges. Here&#8217;s a picture of where my fingers are during the sharpening process:<br />
<center><img src="http://www.n5ebw.com/images/planerpics/ironcurve.jpg" alt="" /></center><br />
This will give you a slight curvature to the plane iron that greatly increases cut quality. I&#8217;m talking the kind of ease in a planer that would make your mother so proud she would cry.<br />
<br />
And with that, our planer has been fully refurbished. For those of you who do not know how to adjust your planer for operation, I will be coming out with a supplemental on that very shortly. Otherwise, I wish you the best of luck with your woodworking endeavors, even if they do not include rehabilitating an old, worn out heirloom.<br />
<br />
Oh, in case you were wondering how it cuts, well, see for yourself!<br />
<br />
<center><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/jnUKGrvEHrw&amp;hl=en&amp;fs=1&amp;rel=0" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/jnUKGrvEHrw&amp;hl=en&amp;fs=1&amp;rel=0" allowfullscreen="true" allowscriptaccess="always"></embed></object><br />
</center><br />
Related Posts:<br />
<a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt1/" target="_blank">Refurbishing Old Hand Planes Part 1: Flattening the Sole</a><br />
<a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt2-2/" target="_blank">Refurbishing Old Hand Planes Part 2: Truing the Frog</a><br />
<a href="http://www.n5ebw.com/2009-10/refurbishing-old-hand-planes-pt3/" target="_blank">Refurbishing Old Hand Planes Part 3: Modifying the throat and chip breaker</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.n5ebw.com/2009-11/refurbishing-old-hand-planes-pt4/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Refurbishing Old Hand Planes Part 3: Modifying the throat and chip breaker.</title>
		<link>http://www.n5ebw.com/2009-10/refurbishing-old-hand-planes-pt3/</link>
		<comments>http://www.n5ebw.com/2009-10/refurbishing-old-hand-planes-pt3/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 05:26:44 +0000</pubDate>
		<dc:creator>n5ebw</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Woodworking]]></category>

		<category><![CDATA[hand plane restoration]]></category>

		<guid isPermaLink="false">http://www.n5ebw.com/?p=221</guid>
		<description><![CDATA[For those following along, welcome back!  For those of you just joining us, we&#8217;ve been talking about how to restore an old Stanley #4 hand plane.  If you&#8217;d like to catch up, feel free to check out part 1 and part 2 beforehand.

We&#8217;ve got our sole flattened and our frog is true, and [...]]]></description>
			<content:encoded><![CDATA[<p>For those following along, welcome back!  For those of you just joining us, we&#8217;ve been talking about how to restore an old Stanley #4 hand plane.  If you&#8217;d like to catch up, feel free to check out <a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt1/" target="_blank">part 1</a> and <a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt2-2/" target="_blank">part 2</a> beforehand.</p>
<p></p>
<p>We&#8217;ve got our sole flattened and our frog is true, and now it&#8217;s a good time to address tweaking a few of the components that deal with chip removal: the plane throat, and the chip breaker.</p>
<p style="text-align: left;"><span id="more-221"></span></p>
<p></p>
<p>First, for some, I may have to justify what I am about to do.  A lot of people skip this step because they are more concerned with the blade being sharp and removing thin layers of material that look like a piece of lace in my grandmothers china hutch.  The simple fact of the matter is, planes don&#8217;t JUST remove really thin layers of material, but thicker ones as well (in woodworking, we refer to this as a more <em>aggressively tuned</em> plane).  These, above others, have a tendency to bind in the throat of the plane because they are more rigid and stronger than their thin counterparts.   Any good plane should be set up to plane thick shavings as well as thin ones.</p>
<p></p>
<p>Let&#8217;s imagine, through the magic of bitmap graphics, a side cutaway view of what our planer looks like with an unmodified chip breaker and shavings being removed from a piece of wood stock (Ok so my animation skills are terrible and this isn&#8217;t EXACTLY like it might look, but you get the idea):</p>
<p><center><img src="http://www.n5ebw.com/images/planerpics/planejam.gif"></center><br />
</p>
<p>If your shavings don&#8217;t perfectly roll up inside of the plane (and let&#8217;s face it, they rarely do), then they need somewhere to go.  Notice on the circled areas of the cutaway view where our major binding points are: the throat opening, and where the chip breaker mates with the plane iron.</p>
<p></p>
<p>Again, using a little imagination, here&#8217;s a modified cutaway of what we&#8217;re going for:</p>
<p><center><img src="http://www.n5ebw.com/images/planerpics/planeclear.gif"></center><br />
</p>
<p>I see my faithful readers getting irritated with my long-winded explanations, so on with the modification!</p>
<p>First, I chuck the Planer sole into a vise, using some scraps (in this case, some offcuts from a new cedar fence I just finished) to protect the metal:<br />
<center><img src="http://www.n5ebw.com/images/planerpics/throatchuck.jpg"></center><br />
Using a flat file, I made a relief cut into the lip of the throat, taking care to not touch the bottom edge.  We don&#8217;t want to widen the width of the bottom of the throat, as that will affect the way our planer cuts, just the top where the shavings are in danger of binding.  This is approximately a 15 degree cut (perhaps slightly more) from our previous vertical in the throat.  Most of the reference that I read prior to doing this mentioned to make the sole vertical, but I disagree.  In my opinion, it&#8217;s easier to get a feel for your progress when the sole is horizontal (applying steep downward force from the sole top) than trying to file with the sole vertical (shallow upward thrust from the sole bottom).  This also helps prevent accidentally filing away the bottom and enlarging the throat because more attention is given to where the file is, and we&#8217;re not cutting in the great unknown.  Use whichever method works better for you, though.<br />
<center><br />
Here&#8217;s a before and after picture so you can get a feel for how much material was removed:<br />
<img src="http://www.n5ebw.com/images/planerpics/throatbefore.jpg"><img src="http://www.n5ebw.com/images/planerpics/throatafter.jpg"><br />
</center></p>
<p>The next thing we&#8217;re going to want to do is modify our chipbreaker so the tip of it is not elevated from the top of the plane iron.  Apparently, my father in law, or whoever owned the plane beforehand, did this step for me, so I really don&#8217;t have a lot to demonstrate except for what it&#8217;s supposed to look like and a quick pictorial of how it is done.  In order to achieve a result similar to the above, you must re-establish the bevel of the chip breaker so that the tip contacts the plane iron rather than the heel (In other words, we&#8217;re gonna make the angle steeper).  This can be accomplished by going back over to our piece of float glass where we&#8217;ve pretty much done all of the milling work to our plane:</p>
<p><center><img src="http://www.n5ebw.com/images/planerpics/chipbreakerundercut.jpg"></center><br />
Notice how the chipbreaker is hanging off of the edge of the float glass (I&#8217;ve got the float glass elevated on a piece of 3/4&#8243; MDF), and only the tip portion is contacting our sandpaper.  Using a side to side motion, rub the chip breaker against the sandpaper until your new, steeper angle forms.  The tip should cleanly contact the back of the plane iron upon reassembly, and don&#8217;t worry about it if there happens to be a little space in between the heel of your new bevel and your iron:<br />
<center><img src="http://www.n5ebw.com/images/planerpics/chipbreakerangle.jpg"></center><br />
The last thing we want to do to the chipbreaker is smooth the surface where the curvature on top meets the blade.  We need to do this so the shavings glide over instead of hang and get caught on the chipbreaker.  Again, we will turn to our finer grits of sandpaper attached to our float glass to accomplish this.  A lot of people use a honing guide to smooth the surface, but I don&#8217;t like that approach.  It creates a flat spot if you go too far.  The method I used was just to run the surface across the sandpaper, rocking the chipbreaker back and forth over it&#8217;s ridge to distribute where the material was being removed.  This worked pretty well, and as you can see, leaves the top shiney smooth:<br />
<center><img src="http://www.n5ebw.com/images/planerpics/chipbreakersmooth.jpg"></center><br />
Now that we&#8217;ve done all of this modification to this old plane, I couldn&#8217;t help but to see if I was achieving little more than sawdust and toothpick shavings.  Since the edge of the plane iron needs to be re-established, I briefly sharpened it with the same flat file I previously used, and reassembled the plane.  Here&#8217;s a short video of the plane that we&#8217;re bringing out of retirement up to this point:<br />
<center><br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/wG03MO3zSU4&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/wG03MO3zSU4&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
</center></p>
<p>Not quite perfect, but certainly better than sawdust!  Next time, we&#8217;ll put the finishing touches on our plane restoration by completely re-establishing the bevel on our worn plane iron and demonstrating proper sharping technique.  See you then!</p>
<p>Related Posts:<br />
<a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt1/" target="_blank">Refurbishing Old Hand Planes Part 1: Flattening the Sole.</a><br />
<a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt2-2/" target="_blank">Refurbishing Old Hand Planes Part 2: Truing the Frog</a><br />
<a href="http://www.n5ebw.com/2009-11/refurbishing-old-hand-planes-pt4/" target="_blank">Refurbishing Old Hand Planes Part 4: Sharpening the iron</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.n5ebw.com/2009-10/refurbishing-old-hand-planes-pt3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Refurbishing Old Hand Planes Part 2: Truing the Frog</title>
		<link>http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt2-2/</link>
		<comments>http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt2-2/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 06:41:09 +0000</pubDate>
		<dc:creator>n5ebw</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Metal]]></category>

		<category><![CDATA[Woodworking]]></category>

		<category><![CDATA[hand plane restoration]]></category>

		<guid isPermaLink="false">http://www.n5ebw.com/?p=203</guid>
		<description><![CDATA[Welcome back!  If you&#8217;re still with us after reading part 1, you are a most curious soul.  I mean, how could you not be to withstand so much of my boring writing in the name of woodworking?!
So now the sole of the plane is flat.  I would have to say that 80 percent [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Welcome back!  If you&#8217;re still with us after reading <a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt1" target="_blank">part 1</a>, you are a most curious soul.  I mean, how could you not be to withstand so much of my boring writing in the name of woodworking?!</p>
<p style="text-align: left;">So now the sole of the plane is flat.  I would have to say that 80 percent of your grunt work here is done&#8230;..but there are a few other crucial things left to accomplish.  If the bottom of our plane is flat, we need to ensure that the rest of that translates all the way up to the plane iron, because what have we really accomplished if we stop here?  Flattening and truing the Frog isn&#8217;t JUST to make it parallel to the sole, it also ensures we have a mating surface for the blade to rest on the whole time the plane is in operation.  When this surface is not flat, we get that ever so annoying movement named &#8220;chatter&#8221;.  As the plane iron skims across the wood substrate, it will unseat itself and bounce around on the surface of the frog, causing an inconsistent cut.</p>
<p style="text-align: left;"><span id="more-203"></span></p>
<p style="text-align: left;">With all of that in mind, let&#8217;s look at the Frog of our test subject, the Stanley #4:</p>
<p style="text-align: left;"><img class="aligncenter" src="http://www.n5ebw.com/images/planerpics/frogdiscon.jpg" alt="" width="258" height="197" /></p>
<p style="text-align: left;">To disassemble our frog from the sole, there are two screws that hold it to the sole which need to be taken out.  From there, removal of the frog is easy.  We also need to push the pin out that anchors the blade fine adjustment screw lever to the frog (see circled item in above photo).  I used a thin punch, and it easily came apart.  One thing we ARE NOT removing here is the blade pivot lever that is used to pivot the blade left or right for cut adjustment.  It is riveted to the body of the frog.  Extra care will be used to avoid this part in the next step.</p>
<p style="text-align: left;">First, we need to address the tooling marks left on the top where the frog meets the blade:</p>
<p style="text-align: left;"><img class="aligncenter" src="http://www.n5ebw.com/images/planerpics/frog1.jpg" alt="" width="488" height="224" /></p>
<p style="text-align: left;">Using the same method we used in <a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt1" target="_blank">part 1</a>, we will again use the float glass and 220 grit sandpaper to GENTLY remove the tooling marks.  First, we&#8217;ll put some guidelines on the frog:</p>
<p style="text-align: left;"><img class="aligncenter" src="http://www.n5ebw.com/images/planerpics/frog2.jpg" alt="" width="484" height="196" /></p>
<p style="text-align: left;">Again, being very cautious, it only takes a few minutes against our flat surface to produce a surface with most of the tooling marks removed:</p>
<p style="text-align: left;"><img class="aligncenter" src="http://www.n5ebw.com/images/planerpics/frog3.jpg" alt="" width="428" height="196" /></p>
<p style="text-align: left;">Note that there&#8217;s a slight bit of tooling on the surface to the left (near the blade guide lever).  It&#8217;s not perfect.  On the frog, there&#8217;s very little material to work with on the mating surface for the blade, and we want to be careful not to remove too much.  This should be leaps and bounds above what was there before though, and the ultimate goal is to increase the surface area where the frog meets the blade, which we have done in large quantities.</p>
<p style="text-align: left;">The bottom of the frog also needs to be addressed for flatness.  Luckily, there wasn&#8217;t really anything out of square here, and basically, I just took a little time to remove the surface rust off of the mating surfaces with a flat file:</p>
<p style="text-align: left;"><img class="aligncenter" src="http://www.n5ebw.com/images/planerpics/frogbottom.jpg" alt="" width="408" height="306" /></p>
<p style="text-align: left;">Your mileage may vary here, but unfortunately, there wasn&#8217;t anything to show with my plane.</p>
<p style="text-align: left;">The last step we are going to address related to the frog is where it mates to the sole.  There were a few tooling marks left over at the bottom at the four mating points.  I marked the surface with a Sharpie on all four, and used a flat file to knock down the back surfaces.  Use caution to make sure you aren&#8217;t beveling the surface, but flattening it out, or it will defeat the purpose of removing the tooling marks!  For the front two mating surfaces, I used some emory cloth and a 1/2&#8243; piece of dowel rod and just twisted the cloth back and forth until the tooling marks and Sharpie markup lines were gone.  Here&#8217;s the before and after result:</p>
<p style="text-align: center;"><img src="http://www.n5ebw.com/images/planerpics/frogsoleb4.jpg" alt="" width="200" height="150" /><img src="http://www.n5ebw.com/images/planerpics/frogsoleafter.jpg" alt="" width="208" height="156" /></p>
<p style="text-align: left;">Well, that&#8217;s all for truing up the frog.  We now have a parallel surface between our blade and material.  Next time, we will talk about how to modify our plane&#8217;s throat and chipbreaker for optimal removal of shavings so they don&#8217;t get jammed in the opening.  See you then!</p>
<p style="text-align: left;">Related:</p>
<p style="text-align: left;"><a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt1">Refurbishing Old Hand Planes Part 1: Flattening the Sole</a></p>
<p style="text-align: left;"><a href="http://www.n5ebw.com/2009-10/refurbishing-old-hand-planes-pt3/">Refurbishing Old Hand Planes Part 3: Modifying the throat and chip breaker.</a></p>
<p style="text-align: left;"><a href="http://www.n5ebw.com/2009-11/refurbishing-old-hand-planes-pt4/" target="_blank">Refurbishing Old Hand Planes Part 4: Sharpening the iron</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt2-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Refurbishing Old Hand Planes Part 1: Flattening the Sole.</title>
		<link>http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt1/</link>
		<comments>http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt1/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 07:21:40 +0000</pubDate>
		<dc:creator>n5ebw</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Woodworking]]></category>

		<category><![CDATA[hand plane restoration]]></category>

		<guid isPermaLink="false">http://www.n5ebw.com/?p=139</guid>
		<description><![CDATA[A couple of weeks ago, I decided on a whim to refurbish a couple of the tools I inherited from my father-in-law: A Block Plane and a Stanley #4 hand plane.  Both had really bad surface rust, and were REALLY cupped from years of heavy use.  To give you an idea of what I dealt [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://www.n5ebw.com/images/planerpics/planer_finished.jpg" alt="" width="289" height="175" />A couple of weeks ago, I decided on a whim to refurbish a couple of the tools I inherited from my father-in-law: A Block Plane and a Stanley #4 hand plane.  Both had really bad surface rust, and were REALLY cupped from years of heavy use.  To give you an idea of what I dealt with before, I used that #4 on a scrap piece of pine stock <a href="http://www.n5ebw.com/images/planerpics/planers_before.jpg" target="_blank"><img class="alignright" src="http://www.n5ebw.com/images/planerpics/planers_before_tn.jpg" alt="" width="163" height="122" /></a>and got nothing but crooked, toothpick sized shavings with every pass, and small chunks of sawdust.  I didn&#8217;t chronicle the restoration of the block plane (it was a spur of the moment thing), but have documented the restoration of the Stanley #4 pretty thoroughly.</p>
<p>Join me in this journey in the next couple of articles.</p>
<p><span id="more-139"></span></p>
<blockquote><p>&lt;rant&gt;To tell you the truth, if these weren&#8217;t family heirlooms, I probably would have sold them and bought brand new <a href="http://www.lie-nielsen.com/" target="_blank">Lie-Nielsen&#8217;s</a> or something that was ready out of the box.  When taking my time into account, it would have been hard to justify doing this to every plane I come across that needs work.  The learning curve on the needed process wasn&#8217;t too bad, but this was incredibly time consuming. &lt;/rant&gt;</p></blockquote>
<p>Enough of that.  On to the project!  From doing some research, I made the following assumptions:</p>
<ol>
<li>The sole had to be flat (duh, right?)</li>
<li>To reduce chatter, the area that the blade iron contacted needed to be as flat as possible. This part of the plane is an area known as &#8220;the frog&#8221;.</li>
<li>The areas where the frog meets the plane have to be parallel and flat.</li>
</ol>
<p>Having a membership over at <a href="http://www.finewoodworking.com" target="_blank">Finewoodworking.com</a>, I was able to find an article suggested by <a href="http://www.mattsbasementworkshop.com" target="_blank">Matt Vanderlist, from Matt&#8217;s Basement Workshop</a> titled &#8220;<a href="http://www.taunton.com/finewoodworking/SkillsAndTechniques/SkillsAndTechniquesPDF.aspx?id=2933" target="_blank">Handplane Tune-Up</a>&#8220;.  It pretty much confirmed the above, but also added the following:</p>
<ol>
<li>The chip breaker must rest flat against the blade iron to reduce binding.</li>
<li>A relief cut should be milled into the throat of the sole to allow optimum chip clearing.  This <strong>does not</strong> mean WIDEN the throat, but instead of the opening being 90 degrees to the bottom of the sole, the front edge would get a 15 degree angle filed into it, leaving more room for the chips to clear the throat.</li>
</ol>
<p><strong>Note: Feel free to click on any of the smaller pictures to enlarge them (they&#8217;re thumbnails to conserve bandwidth)</strong></p>
<table border="0" width="100%">
<tbody>
<tr>
<td>
<p>The first step in restoring the #4 was to flatten the sole.  Here&#8217;s a picture of what it looked like next to the flat sole of the block plane.  As you can see, there&#8217;s a good bit of surface rust on the sole.  I&#8217;ve often heard a horse analogy that can be applied here: &#8220;Ridden hard and put away wet&#8221;.  A coat of paste wax every now and again couldn&#8217;t have hurt.</p>
<p>In this situation, there are a few options: Either take the plane to a machine shop and have them flatten the bottom using a milling machine, or sand it down against a dead flat surface, such as a piece of granite, or float glass.  I, obviously, chose the latter of the two.</p>
</td>
<td><a href="http://www.n5ebw.com/images/planerpics/planer_compare.jpg" target="_blank"><img class="alignright" src="http://www.n5ebw.com/images/planerpics/planer_compare_tn.jpg" alt="" width="163" height="122" /></a></td>
</tr>
</tbody>
</table>
<table border="0" width="100%">
<tbody>
<tr>
<td><a href="http://www.n5ebw.com/images/planerpics/float_glass.jpg" target="_blank"><img class="alignleft" src="http://www.n5ebw.com/images/planerpics/float_glass_tn.jpg" alt="" width="163" height="122" /></a></td>
<td>The first thing I did was to disassemble the plane down to the sole, leaving only the handles.  I knocked the surface rust off of the bottom and sides using some 80 grit that was attached to an old, thick piece of copier glass (thanks to my friend Dan for hooking me up with this, another repurposed thing out of the landfill!) with a small homogeneous amount of 3M spray on adhesive.</td>
</tr>
</tbody>
</table>
<table border="0" width="100%">
<tbody>
<tr>
<td>After knocking the surface rust off, I scribed lines diagonally across the bottom of the sole with a Sharpie marker to give a good indication of how true and flat it was.</td>
<td><a href="http://www.n5ebw.com/images/planerpics/planer_reflines.jpg" target="_blank"><img class="alignright" src="http://www.n5ebw.com/images/planerpics/planer_reflines_tn.jpg" alt="" width="163" height="122" /></a></td>
</tr>
</tbody>
</table>
<table border="0" width="100%">
<tbody>
<tr>
<td><a href="http://www.n5ebw.com/images/planerpics/planer_halfway.jpg" target="_blank"><img class="alignleft" src="http://www.n5ebw.com/images/planerpics/planer_halfway_tn.jpg" alt="" width="163" height="122" /></a></td>
<td>Working on it for about an hour, and 2 sheets of 80 grit, I was still quite a ways from flat.</td>
</tr>
</tbody>
</table>
<table border="0" width="100%">
<tbody>
<tr>
<td>After about an hour longer with the 80 grit, I was left with a &#8220;true on 3 sides&#8221; plane.  As you can see, 80 grit leaves real deep grooved scratches in the metal (again, duh).  From here on out, we&#8217;ll step the grit down to sand out the scratches.  In between grits, I just pulled the piece of paper off of the glass (the adhesive was still tacky but not hard), shot another thin layer of the spray on down, and secured my paper.</td>
<td><a href="http://www.n5ebw.com/images/planerpics/planer_80grit.jpg" target="_blank"><img src="http://www.n5ebw.com/images/planerpics/planer_80grit_tn.jpg" alt="" width="163" height="122" /></a></td>
</tr>
</tbody>
</table>
<table border="0" width="100%">
<tbody>
<tr>
<td><a href="http://www.n5ebw.com/images/planerpics/planer_220grit.jpg" target="_blank"><img src="http://www.n5ebw.com/images/planerpics/planer_220grit_tn.jpg" alt="" width="163" height="122" /></a></td>
<td>Next up is the 220 grit.  Notice immediately that the metal is starting to develop a luster!</td>
</tr>
</tbody>
</table>
<table border="0" width="100%">
<tbody>
<tr>
<td align="right">Now the 400 grit&#8230;&#8230;&#8230;</td>
<td align="right"><a href="http://www.n5ebw.com/images/planerpics/planer_400grit.jpg" target="_blank"><img src="http://www.n5ebw.com/images/planerpics/planer_400grit_tn.jpg" alt="" width="163" height="122" /></a></td>
</tr>
</tbody>
</table>
<table border="0" width="100%">
<tbody>
<tr>
<td><a href="http://www.n5ebw.com/images/planerpics/planer_600gritdry.jpg" target="_blank"><img src="http://www.n5ebw.com/images/planerpics/planer_600gritdry_tn.jpg" alt="" width="163" height="122" /></a></td>
<td>I had some 600 grit laying around.  Why not?!</td>
</tr>
</tbody>
</table>
<table border="0" width="100%">
<tbody>
<tr>
<td align="right">And since we&#8217;re going this far, might as well wet sand it too&#8230;..</td>
<td align="right"><a href="http://www.n5ebw.com/images/planerpics/planer_600gritwet.jpg" target="_blank"><img src="http://www.n5ebw.com/images/planerpics/planer_600gritwet_tn.jpg" alt="" width="163" height="122" /></a></td>
</tr>
</tbody>
</table>
<table border="0" width="100%">
<tbody>
<tr>
<td><a href="http://www.n5ebw.com/images/planerpics/planer_wax.jpg" target="_blank"><img class="alignleft" src="http://www.n5ebw.com/images/planerpics/planer_wax_tn.jpg" alt="" width="163" height="122" /></a></td>
<td>And finally, to protect all of that freshly sanded metal, a good coat of paste wax.</td>
</tr>
</tbody>
</table>
<p>A lot of people seem to go overboard (that&#8217;s not to say that I didn&#8217;t take it a little too far as well, but I had the paper laying around) and use 1000 grit and 8000 grit wet stones to finish out the job.  Why bother?  It seems that it&#8217;s more of an asthetics issue than accuracy at that point (hope you like how your wood substrate puts those scratches right back into the metal, too).  And if you want to argue accuracy, here&#8217;s proof positive we&#8217;re flat, as well as square to the sides using my shiney new &#8220;Guaranteed Accurate&#8221; (maximum deviation from nominal of less than 0.001&#8243; at any point along the full length of the blade) Incra square:</p>
<p style="text-align: center;"><a href="http://www.n5ebw.com/images/planerpics/planer_incraflat.jpg" target="_blank"><img src="http://www.n5ebw.com/images/planerpics/planer_incraflat_tn.jpg" alt="" width="163" height="122" /></a><a href="http://www.n5ebw.com/images/planerpics/planer_incrasquare.jpg" target="_blank"><img src="http://www.n5ebw.com/images/planerpics/planer_incrasquare_tn.jpg" alt="" width="163" height="122" /></a></p>
<p style="text-align: center;">I seriously doubt that any accuracy can be gained by polishing out any further (within my skill set anyway), and if you&#8217;re willing to whip out your electron microscope to prove me wrong, well, woodworking probably shouldn&#8217;t be a hobby of yours, stay away from me! <img src='http://www.n5ebw.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Keep in touch.  Next time, we&#8217;ll discuss truing up the frog using somewhat of a similar method.</p>
<p style="text-align: left;">Related:</p>
<p style="text-align: left;"><a href="http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt2">Refurbishing Old Hand Planes Part 2: Truing the Frog</a></p>
<p style="text-align: left;"><a href="http://www.n5ebw.com/2009-10/refurbishing-old-hand-planes-pt3/">Refurbishing Old Hand Planes Part 3: Modifying the throat and chip breaker.</a></p>
<p style="text-align: left;"><a href="http://www.n5ebw.com/2009-11/refurbishing-old-hand-planes-pt4/" target="_blank">Refurbishing Old Hand Planes Part 4: Sharpening the iron</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.n5ebw.com/2009-07/refurbishing-old-hand-planes-pt1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Earth911 releases iPhone application iRecycle</title>
		<link>http://www.n5ebw.com/2009-05/earth911-releases-iphone-application-irecycle/</link>
		<comments>http://www.n5ebw.com/2009-05/earth911-releases-iphone-application-irecycle/#comments</comments>
		<pubDate>Thu, 21 May 2009 19:22:24 +0000</pubDate>
		<dc:creator>n5ebw</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.n5ebw.com/?p=141</guid>
		<description><![CDATA[Hey everyone, a quick note that I have received a press release from Earth911.com and I am happy to report that they have a new mobile iPhone application called &#8220;iRecycle&#8220;!  The application allows you to pretty much do everything that you can do on their website search engine with some added features.  Check it out!
FOR [...]]]></description>
			<content:encoded><![CDATA[<p>Hey everyone, a quick note that I have received a press release from <a href="http://www.earth911.com">Earth911.com</a> and I am happy to report that they have a new mobile iPhone application called &#8220;<a href="http://earth911.com/iphone/" target="_blank">iRecycle</a>&#8220;!  The application allows you to pretty much do everything that you can do on their website search engine with some added features.  Check it out!</p>
<blockquote><p><strong><span style="text-decoration: underline;"><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">FOR IMMEDIATE RELEASE</span></span></strong></p>
<p><strong><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">May 19, 2009</span></strong></p>
<p style="text-align: center;" align="center"><strong><span style="text-decoration: underline;"><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">iPhone App Makes Local Recycling Easy and Convenient</span></span></strong></p>
<p style="text-align: center;" align="center"><strong><span style="text-decoration: underline;"><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"><span style="text-decoration: none;"> </span></span></span></strong></p>
<p><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">When it comes to recycling and properly disposing of your trash, knowing is half the battle. The other half is actually getting your stuff to where it needs to go – whether it’s in a curbside collection program, a retail drop-off point or a hazardous waste event. With iRecycle, a new iPhone app from Earth911.com, you’re equipped for all stages of reducing your waste: knowing what you can recycle and where you can take it in your neighborhood.</span></p>
<p><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"> </span></p>
<p><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Compatible with both iPhone and iTouch, iRecycle brings you Earth911.com’s national, comprehensive database of over 100,000 recycling and proper disposal locations for over 200 products at the touch of a button. Whether you need to recycle motor oil and CFLs in San Francisco or rechargeable batteries and paint in Washington, DC, iRecycle can connect you with real, local options.</span></p>
<p><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Simply start typing what you’ve got, select your location and get instant access to the nearest recycling and proper disposal spots near you:</span></p>
<ul>
<li><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"> </span><span style="font-family: Symbol;"><span><span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Auto-complete makes searches quick and effective</span></li>
<li><span style="font-family: Symbol;"><span><span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Get directions to the nearest site from your current location</span></li>
<li><span style="font-family: Symbol;"><span><span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Find additional information like hours of operation, other materials accepted (maybe you can recycle all those plastic bags from under your kitchen sink), their Web site, etc. </span></li>
<li><span style="font-family: Symbol;"><span><span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Check your search history to replay old search results –also functions on iTouch when an Internet connection is not available</span></li>
<li><span style="font-family: Symbol;"><span><span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Call locations directly from search results if you need more information</span></li>
</ul>
<p><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">Wherever you are, iRecycle keeps you connected to your green efforts. Even when you’re travelling or in a new city, you’ll never be without the knowledge of where to take your electronics, water bottles, car batteries, tires, eyeglasses… well, you get the point.</span></p>
<p><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;">At Earth911.com, we’ve spent a lot of time thinking about how to make recycling easy. With iRecycle, you can use your powers for good – not waste.  <span><br />
</span></span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.n5ebw.com/2009-05/earth911-releases-iphone-application-irecycle/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Earth911.com, the hazardous material disposal search engine.</title>
		<link>http://www.n5ebw.com/2009-05/earth911com-the-hazardous-material-disposal-search-engine/</link>
		<comments>http://www.n5ebw.com/2009-05/earth911com-the-hazardous-material-disposal-search-engine/#comments</comments>
		<pubDate>Fri, 08 May 2009 19:45:53 +0000</pubDate>
		<dc:creator>n5ebw</dc:creator>
		
		<category><![CDATA[Electronics]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Safety]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Woodworking]]></category>

		<guid isPermaLink="false">http://www.n5ebw.com/?p=132</guid>
		<description><![CDATA[As we continue through Woodworkers Safety Week, many resources that were previously unknown to me have surfaced.  A new one, is Earth 911.com.  This was brought to my attention by The Woodwhisperer Woodworking Video podcast, Episode 88 - Safety Q&#38;A.  (Before I forget, keep voting for Marc in the BHG contest.   He&#8217;s still in second [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://www.n5ebw.com/images/piyblog.jpg" alt="" width="137" height="140" />As we continue through Woodworkers Safety Week, many resources that were previously unknown to me have surfaced.  A new one, is <a href="http://www.earth911.com" target="_blank">Earth 911.com</a>.  This was brought to my attention by <a href="http://thewoodwhisperer.com/88-safety-qa/" target="_blank">The Woodwhisperer Woodworking Video podcast, Episode 88 - Safety Q&amp;A</a>.  (Before I forget, keep voting for Marc in the <a href="http://www.bhg.com/app/voting/index.jsp?id=/templatedata/bhg/voting/data/1240261629709.xml&amp;sid=0" target="_blank">BHG contest</a>.   He&#8217;s still in second place and hanging strong, so don&#8217;t stop voting now!)</p>
<p>Anyway, Earth911 is a search engine you can use to find locations for hazardous materials disposal.  As a woodworker, you could use this to dispose of old, or dirty varnish, or any other material so it doesn&#8217;t end up in the landfill.  If you are a DiY tinkerer like I am, the search engine is of GREAT use.  One thing that comes to mind is circuit board disposal (Or any E-Waste) where they can recycle the silver and gold, but also reclaim the lead.  If you don&#8217;t know my stance on this issue, you should read <a href="http://www.n5ebw.com/2008-09/parts-recovery-and-hippy-disclaimer/" target="_blank">this article from last year</a>.</p>
<p>The absolute first thing that I used this site for was car battery disposal.  I have been accumulating these in the garage for some reason&#8230;mainly because I didn&#8217;t know of a safe way to dispose of them.  Lo and behold, the search engine turned up an unexpected result: Wal Mart.  I was a little skeptical, so I called to verify, and sure enough, they <strong><em>do</em></strong> take car batteries to recycle!</p>
<p>I&#8217;m gonna use this website a LOT, and I invite you to do the same.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.n5ebw.com/2009-05/earth911com-the-hazardous-material-disposal-search-engine/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
