by David Orriss Jr | Apr 17, 2008 | General
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...
by David Orriss Jr | Feb 13, 2008 | Rails, Ruby
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...
by David Orriss Jr | Jan 4, 2008 | J2EE, Java, Rails, Ruby
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,...
by David Orriss Jr | Oct 20, 2007 | Programming, Ruby
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”...
by David Orriss Jr | Oct 20, 2007 | Programming, Ruby
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...