Archive for the 'Blogroll' Category

Today is November 5th!

November 5th, 2007

Remember to contribute as much as you can - especially today - to Ron Paul! Both Tasha and I just submitted our donations.

2nd Annual McWeiland Chili Cookoff Photo Montage

November 5th, 2007

And first YouTube upload ever. Tasha did the video on her new MacBook - like that “Ken Burns” effect? Enjoy!

RubyConf ‘07

November 4th, 2007

I’m in the final hours of my first RubyConf, the annual international conference for rubyists being held in Charlotte, NC this weekend. There’s been way too much information for me to possibly absorb completely, but the exposure to the community, the attitudes and thinking, and the possibilities people are exploring has certainly been a [...]

Web Development - The Next Generation

October 22nd, 2007

Over at the Central Virginia Ruby Enthusiasts Group (cvreg.org) blog I recently contributed an article reflecting on my talk to a local high school web design class. Since the overwhelming topic was money and jobs, not the art of programming and design, I had a chance to impart some of my observations of the [...]

Selenium_on_rails Quick Start

October 8th, 2007

Over the past few days I’ve been diving into Selenium, a automated functional testing tool for web apps. It’s pretty slick - in fact, like most of the technologies I’ve been using over the past two years, it does so much for you that the obstacle always ends up being a matter of getting [...]

Back to work!

October 4th, 2007

Well, I’ve put the update on my life off for far too long, time to come clean. As of Tuesday I am working for a D.C.-based web development firm that is focusing on Ruby and Rails. I get to work from home in Richmond and the work I’m doing is some pretty cutting [...]

text_field and currency values

September 16th, 2007

I’ve asked around about this issue and nobody has been able to give me a straightforward solution. It is for that reason that I’m not afraid to share my hack. If there’s a better way to do this in Rails, let me know.
The problem: you’re using some sort Numeric field for storing monetary [...]

Quick Rails Logging Tip

September 14th, 2007

It’s not difficult to alter how Rails logs requests. Just look at ActionController::Base#log_processing (see code here), and you can see that’s it’s basically just printing request.inspect. So if you override that method in your ApplicationController, you can change how requests are logged. This was important for me, because I’m using gsub to [...]

I can take your money

September 13th, 2007

Or, rather, the Rails web app I’ve been working on for the past month can. After a very frustrating week of slack-ass-edness from Wachovia, we finally got stuff hooked up right for credit card donations to this new political action committee. So the big hurdle has officially been crossed - though at the [...]

Question on migrations

September 9th, 2007

OK. So you have been using migrations to iteratively modify your database and populate it with information as you flesh out your application. Awesome. Now, what happens when you change the model definitions and try to rollback and then roll forward?
This is the problem I’m encountering. For example, I’ve made changes to [...]