Apr
15th
Tue
15th
CushyCMS - Take the work out of managing content
The “add a class to make content editable” is brilliant.

#!/usr/bin/env ruby
require "rubygems"
require "RMagick"
original = Magick::Image.read(ARGV[0]).first
new_version = Magick::Image.read(ARGV[1]).first
comparison = original.composite(new_version, Magick::CenterGravity, Magick::DifferenceCompositeOp)
comparison.write("diff.png")
Save in ~/bin, add ‘bin’ to PATH, and use as:
$ vdiff original_version.png new_version.png
and a ‘diff.png’ file highlighting the differences is created.

Some time ago Hetima published a plugin for TextMate called MissingDrawer which “provides Xcode-like project window interface without drawer.”
I thought this would be a great idea but found it a little incomplete. Thankfully they released the source code under the MIT license which made modifications very easy.