Archive for March, 2009

How I Set a Bench Plane

Tuesday, March 31st, 2009

There is no single best way to set a bench plane to take a proper shaving. I’ve seen people do it by eye, with their fingertips, using scraps of wood and even working on live stock and making adjustments on the fly. This last technique takes guts. It’s like working on a car while the engine’s running.

I’ve tried every single method above and can do them all with great ease. There is no secret to unlock any particular method. Only practice.

The following is how I prefer to set a bench plane to take a shaving. It’s in more detail than I usually go into on the blog, but here’s the dirty little secret about that: The reason I started writing this blog in 2005 was to create a way for me to answer common e-mail questions. Want to know the difference between bevel-up and bevel-down planes? Instead of answering that question six times a week, I could paste this link into an e-mail six times a week instead. Oh, and the blog would serve as a way to remember when I got my last tetanus shot.

Before we get to the good part, let me shove a little dogma down the disposal with the evening’s chicken bones. All of my bench planes (the fore, jointer and smoothing planes) have irons with curved cutting edges (so does my block plane, but that’s another entry). I camber the cutting edge to keep the corners from digging into the work and to allow me to remove material from selective areas on a board. People who disagree with my approach are encouraged to come to our shop in May for the Lie-Nielsen show with their torches and pitchforks.

The good news is that the way I set a bench plane works for any plane (even joinery planes and moulding planes). So don’t flee yet.

Step One: Kentucky Windage
The goal is to get the iron centered in the mouth of the plane. The strongest part of the curved edge should be in the middle of the mouth, and the corners of the iron should be tucked safely into the body of the plane. If your curve is too pronounced, you’ll take too narrow a shaving. If your curve is too flat, the corners will still dig in.



First you want to sight down the sole of the plane. Gaze at the toe of the sole and advance the iron until it appears as a black line across the sole. If your bench is light in color, you can use the benchtop as a background. If your bench is bubinga, do this against a sheet of paper.

Adjust the iron laterally until the black line appears consistent across the mouth. The camber on a smoothing plane and jointer plane isn’t really visible, so you’re looking for a consistent line.

Use a Scrap to Refine
Retract the iron into the body of the plane and start advancing it. Use a small shim (1/16" x 3/4" x 1-1/4" is nice) and run it across the mouth of the plane as you advance the iron a bit. Where the iron is cutting, you’ll feel it drag against the shim. It’s not dramatic – more like a tug. I first got this trick from David Charlesworth. Thank you, David.

Where do I get my shims? Well you could send me $20 and I'll send you a bag of them. Or you could look in your garbage can for waste that has fallen off from your rip cuts.

The end result is that you want to feel zero drag at the corners of the mouth and a little drag right at the center. You can adjust the iron using the lateral adjustment lever (if you have one), but I prefer hammer taps using a small Warrington or tack hammer. These are love taps and are unlikely to mushroom your iron. I’ve been tapping one iron on one smoothing plane for about five years. I’ve almost used up the entire iron and still have yet to find a mark from my tapping.

Final Adjustments
Then I start planing – either on scrap or live stock. Likely the shaving is too thin. And that’s OK. Advance the iron until you get the shaving you want from the plane. Then take a quick look at the shaving and where it is coming from in the mouth.

The shaving should be centered in the plane’s mouth. And the shaving should look like this: It should be thickest in the center and fade away to nothing at the edges. And it should be as wide as possible. That’s the sweet spot.

If I’m a little off-center at this point, I simply tap the iron with my baby hammer to move the shaving into the center of the mouth. Then I get busy.

— Christopher Schwarz

Email Yourself Reminders From Launchy [Ubergeek]

Monday, March 30th, 2009

Reader Ryan writes in with his ubergeeky method for sending emails to himself directly from Launchy—a very useful trick to quickly send yourself reminders.

To accomplish this hack, Ryan assembled a visual basic script (VBS) file that sends the email using Gmail's SMTP server—the email addresses are hard-coded but the subject line can be entered directly in Launchy.

If you want to use this trick for yourself, there's just a few steps to follow along—first, create a new *.vbs file and paste in the following contents, modifying the bold text with your own values.

Set iMsg = CreateObject("CDO.Message")
Set iConf = CreateObject("CDO.Configuration")
Set Flds = iConf.Fields
schema = "http://schemas.microsoft.com/cdo/configuration/"
Flds.Item(schema & "sendusing") = 2
Flds.Item(schema & "smtpserver") = "smtp.gmail.com"
Flds.Item(schema & "smtpserverport") = 465
Flds.Item(schema & "smtpauthenticate") = 1
Flds.Item(schema & "sendusername") = "MYACCOUNT"
Flds.Item(schema & "sendpassword") = "PASSWORD"
Flds.Item(schema & "smtpusessl") = 1
Flds.Update

With iMsg
.To = "EMAILADDRESS"
.From = "NAME <EMAIL>"
.Subject = wscript.arguments.item(0)
.HTMLBody = message
.Sender = " "
.Organization = " "
.ReplyTo = " "
Set .Configuration = iConf
SendEmailGmail = .Send
End With

set iMsg = nothing
set iConf = nothing
set Flds = nothing

Now that you have your script created and ready to go, open up Launchy's Plugins tab in the options panel, and create a new Runner command pointing to the script. The key step here is to use "$$" in the arguments field—the quotes are important!

Since the example uses "tome" as the command, you can just type "tome" into Launchy, hit the tab key, and then type the subject of the email message. If all goes well, you should see a new email in your Gmail account with the same subject line.

This tip can be used for much more than just sending yourself emails, however—you can make a copy of the script and adjust the To field to quickly send emails to Remember the Milk or any number of other services that accept new items via email. You could even modify the script further to pass in further parameters to your RTM tasks if you really wanted to get geeky with it.Thanks, Ryan!

If you'd rather use your web browser, you can open a new Gmail compose window directly from Launchy. For more on Launchy power tips, read our feature on taking Launchy beyond application launching.




[Sponsored]
Inside Guantanamo: Sunday at 9P e/p



Guantanamo Bay is one of the world's controversial prisons. This may be its final chapter. With unprecedented access, National Geographic has the story you haven't heard. Both sides, told from the inside, before its doors close forever. Click to learn more and go Inside Guantanamo >>
natgeotv.com/guantanamo
 

Ads by Pheedo

Italicize Your Unread Tabs in Firefox without an Extension [Firefox]

Monday, March 30th, 2009

If you're a fan of Tab Mix Plus, you already know how handy having your unread tabs italicized can be—but you don't need to install an extension for this useful feature.

You can run a tight ship and keep extensions to a minimum by editing your userChrome.css file to achieve the same effect. The userChrome.css should be located in the sub-directory /Profiles/Chrome/ wherever your Firefox installation resides. If you've never tinkerer with your userChrome.css before, check out our previous post about where to find it and how to edit it. Open it up in your favorite text editor and add the following line:

#content tab:not([selected]) {font-style: italic !important; }

Save the file and you're all set. There is one caveat: The tweak doesn't distinguish between selecting a tab to read it and selecting a tab to drag and drop it to a new location on the tab bar without actually reading the contents. If that's a deal breaker, aforementioned Tab Mix Plus does distinguish between the two and keeps the tabs "unread" until you actually look at them.

Quickly Find Unread Tabs in Firefox [Mozilla Links]



[Sponsored]
Inside Guantanamo: Sunday at 9P e/p



Guantanamo Bay is one of the world's controversial prisons. This may be its final chapter. With unprecedented access, National Geographic has the story you haven't heard. Both sides, told from the inside, before its doors close forever. Click to learn more and go Inside Guantanamo >>
natgeotv.com/guantanamo
 

Ads by Pheedo

GMinder Puts Google Calendar in Your System Tray [Downloads]

Monday, March 30th, 2009
Windows only: System tray application GMinder gives you quick offline display of multiple Google Calendars—and even alerts you of upcoming appointments. The application was created by reader Greg Todd, who wrote the application for his own use—but decided to release it for the rest of us to enjoy. Using the application is simple—just enter in your Google account information, click the Download button to get your list of calendars, and then select the ones you want to display. The only small issue is that Windows Vista users will need to select a different sound file in the options panel since the default one doesn't exist on Vista—a small price to pay for an excellent application that bridges the gap between Google Calendar and your Windows desktop. Thanks, Greg! GMinder is free and open source, available for Windows only. Google Desktop users can also check out the powerful Google Calendar gadget, and readers using Firefox should check out our own Better GCal extension.
Gminder

MailBrowserBackup Backs up Browser and Email Profiles [Downloads]

Monday, March 30th, 2009

Windows only: If you use multiple web browsers and email clients, MailBrowserBackup allows you to backup your profiles for each in one swoop.

Currently MailBrowserBackup supports Mozilla Firefox, Google Chrome, and SRWare Iron in the browser arena, and Mozilla Thunderbird in the email arena. According to the author's release schedule the next release will increase support to include Opera, Safari, and Internet Explorer. Backing up Firefox and Chrome took only a few seconds on my system and the results were stored neatly in the directory I specified. Restoring was just as quick. The application is portable, but does require Microsoft .NET 2.0+ or above. MailBrowserBackup is open-source, Windows only.

MailBrowserBackup [via gHacks]