Tubby's just hangin' out

July 10, 2011 Comments

Tubby's just hangin' out

Testing django-emailpost

July 09, 2011 Comments

Testing django-emailpost

Help me test and improve django-emailpost!

Benton Lodge

June 03, 2011 Comments

Benton Lodge #268

Benton Lodge #268 is the oldest Masonic Lodge in Wisconsin still in use.

Camp Kearney

May 31, 2011 Comments

Camp Kearney

My sister in law found this sign somewhere near Canton, IL. I thought it was pretty funny.

Rain turns to ice

April 19, 2011 Comments

Happy Saint Patrick's Day!

March 17, 2011 Comments

Green Blue Smoothie

Generating an AUTHORS file in git

February 21, 2011 Comments

Looking for an automated way of generating an AUTHORS file for your Open Source project? git makes this very simple:

git shortlog -se | cut -c8- > AUTHORS

I prefer this because of the .mailmap support.

Clear DNS cache in OS X

January 11, 2011 Comments

If you ever find yourself wanting to clear the DNS cache in OS X, here's how it's done:

dscacheutil -flushcache

Batch Image Processing

December 22, 2010 Comments

My wife and I opted for a DVD of all our wedding photos instead of buying actual prints from our photographer. Although (now days) this is almost always preferable, it still means we had 7GB of Nikon RAW (.NEF) images to process by hand. That's a lot of images to manually sort through and compress using a standard image editor.

I eventually got around to looking for a solution and came across UFRaw. This intrigued me because of its ability to batch-process from the command line, as seen below:

ufraw-batch --shrink=2 --out-type=jpeg --out-path=./processed ./*.NEF

Now, only eight short months after our wedding (my bad), plus a few hours letting UFRaw and all its dependencies compile in MacPorts, we had our entire wedding photo collection burned to CDs, ready to share.

WordPress to Django

November 26, 2010 Comments

This site is now running on a Django-powered backend. I've been a huge supporter of WordPress for many years now, but once I started digging into Django, the decision to switch became pretty clear.

I'm really looking forward to learning more about the framework. Taking on this new project has been a great learning experience, especially when it came to migrating all of my posts over to this new model. Let's just say WordPress does some pretty interesting things with its data.