Category Archives: code
Securing Cloud-Based Ruby on Rails Applications: Why I like Engine Yard.
A customer of mine referred me to an article on Cloud Deployment on Amazon Web Services’ EC2 platform that discussed common security holes users are leaving in their instances. The article, Amazon’s Cloud is Full of Holes, warned that poor … Continue reading
JQuery-UI verus SimpleForm for Rails Forms processing
Recently, I had a conversation with a colleague about using JQuery UI to layout form processing for a Ruby on Rails application. I cautioned them against it. In general, I’ve found more success using the simple_form library for generating form … Continue reading
Open Source Developers Are Rock Stars!
When I was a kid, all I wanted to be was a rock star. I wanted to play guitar, get up on stage, and have everyone scream while I cranked out some hard rockin’ tune. I wanted to see lighters … Continue reading
Example code for storing environment-specific configuration variables in rails
Here’s some example code I’ve used for storing configuration variables using Ruby on Rails. This code allows for defaults as well, so you only have to specify variables per environment if they override the default value. This first file should … Continue reading