Monthly Archives: January 2009

New Toys

Make friendly URLs easy with stapler Make library management hell less hellish with ivy (2.0 was just released) ACEGI is now “Spring Security,” whose new version purports lighter configuration requirements than previously. iBATIS Pipe Viewer (pv) — gives you a … Continue reading

Posted in Technical HOWTOs | Tagged | Leave a comment

Randomly sort the lines in a file

There are times when you need to randomly order the lines in a file. Here’s a script to do just that: #!/usr/bin/perl -w use strict; use List::Util 'shuffle'; my @lines = <>; print shuffle( @lines );

Posted in Technical HOWTOs | Tagged | 2 Comments

Quick MacPorts Installation of Ruby on Rails

I finally got to walking through a great gentle introductory ALA article on Ruby on Rails. I wanted to run rails Demo to build my first project, but I got nastiness: $ rails -v /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems.rb:379:in `report_activate_error’: RubyGem version error: rake(0.7.3 … Continue reading

Posted in Technical HOWTOs | Tagged , | Leave a comment

Great Frank Lloyd Quote

An architect’s most useful tools are an eraser at the drafting board and a wrecking ball at the site. Software isn’t nearly as hard to refactor as studs, drywall, and joists, but it’s still cheaper and faster to start only … Continue reading

Posted in Technical HOWTOs | 1 Comment