Point of Use

December 22nd, 2007

When we moved from C to C++, we were overjoyed that we no longer had to declare all of our variables at the top of the function.

do_something() {
int num = 0;
int another_num = 0;
num = get_a_num();
another_num = get_a_num();
}
We could instead declare them near the point of use, […]

Unwind with Subversion

October 15th, 2007

At the Codehaus and at JBoss.org, I’ve continually come across Subversion repositories that needed to be split apart or merged, perhaps after converting from CVS. One problem you continually hit, particularly if you’re merging repositories, is the “date order of revisions” bug. Simply stated, if you create a new repository loaded from two […]

Enterprise Ruby Conference (erubycon)

January 1st, 2007

Maybe I’ve been living in a hole, but I just found out about erubycon, the enterprise ruby conference. February 9-11, in Columbus, Ohio, of all places. Seems to include some reputable speakers.

Annc: The Ruby Underground

December 15th, 2006

Following on the heels of my last post, I’d like to announce the Ruby Underground. It’s simply a selective aggregator of Ruby blogger content. There’s already plenty of sources for generic ruby content. Tons of 20-something youngsters (yes, I’m old) are out there talking about Ruby on Rails and such.
The Ruby Underground […]

100% Pure Ruby(tm)

September 26th, 2006

Recently I’ve been doing a fair amount of work in Ruby. And yes, I’ve felt super-productive. Particularly compared to Java.
The downside of working in Java is the 100% Pure Java(tm) mentality. In the search for a clean and cohesive system, we take the attitude that if it’s not pure Java, it’s crap. […]