Use WordPress? Secure it!

I got a reminder last weekend about just how critical it is to secure your WordPress-based Blog. Mine was hacked… My own fault, to be sure… Turns out that the installation scripts can be very easily hacked and SQL-injected. The end result is that your...

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...