-
Archives
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- March 2010
- February 2010
- December 2009
- November 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- February 2009
- January 2009
- November 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- January 2005
- October 2004
-
Meta
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
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 );
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
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