Categories
Shopping

A Fave: Skeletool CX

One gift I received for Christmas has already gotten a ton of use: the Leatherman Skeletool CX.

skeletool-cx

It’s very light, has a wonderful little knife, and a wire cutter built into the pliers. The best part for me though is the integrated storage for the screwdriver bits; in my previous Leathermans, I always ended up losing the bit sleeve that was supposed to go in the case and never had any bits other than what I last stored on the thing. With the new integrated bit storage, I’ve got everything I need in one handy little device.

Categories
Video

A Long Time Ago

in a galaxy far away… They made a Christmas Special.

Categories
Etc

Merry Christmas!

Just wanted to wish everyone a great day! We just got up, have buns in the oven (literally), and are about to go wake up the kiddo.

Merry Christmas everyone!

Categories
Etc

Redid monkey/~blowery

A page I’ve had since forever just got a minor facelift. I’m watching Helvetica, the movie, so… yeah.

Categories
Computers

Copy to clipboard from command line

I just discovered a couple useful command-line tools on OSX and thought I’d share. pbcopy will copy stdin to the clipboard and pbpaste will send the clipboard to stdout.

$ cat somefile.txt | pbcopy #copy a file to the clipboard
$ pbpaste | grep foo #search the clipboard for foo

Handy.