Subversion and Snow Leopard

Along with so many others, I upgraded to Snow Leopard. Overall the upgrade went without a hitch. However, I noticed that my Subversion repository was no longer available from Subclipse or via the Web Browser. Not good. So I did some digging around and upon finding...

Getting Started in Java Development

I get asked this question.. a lot. David, any tips on how I can learn Java quickly? Or the more popular variant of it: David, how can I learn Java fast? Short answer: You can’t. There’s no shortcuts in learning software development in any language. Period....

Starting The RDoc Server for Ruby on Rails

I don’t know why this isn’t better documented or stated anywhere so I’ll just iterate it here. If you want to peruse the documentation for Rails and your installed Gems type the following gem server And in your terminal prompt you should see Starting...

Zed Shaw: Rails is a Ghetto

Mongrel Developer/Creator, Zed Shaw, cut loose on the Ruby and Rails communities in a recent posting to his website. He gives some interesting insights into who the major players are, and cuts through some of the hype surrounding rails. While caustic in his delivery,...

Adding to the Ruby Library Path

My friend Lori noted a great way to Add to the Ruby Library Path. She also noted that I had no way to put comments on my blog. Users would get sent to a page telling them to log in, but I never provided the login link Fixed — check out the “Links”...

How Ruby Finds Libraries

In Ruby not library management is not always as simple as running gem install. Some Ruby code is distributed simply as libraries. So where do you put these libraries? The clue is in the Ruby $LOAD_PATH variable. irb(main):001:0> puts $LOAD_PATH...