Archive for March, 2008

Photoshop sites

For all those Photoshop and Lightroom users out there, here are two excellent websites for tutorials, news, and tips.

Photoshop Users TV is a little wacky, but the content it serves up is invaluable if you work with Photoshop and want to learn some new tricks. Lightroom Killer Tips is a little more straight forward and an excellent way to learn what is fast becoming one of my favourite tools.

Speed Bumps

The last project I was on, I attempted to be very disciplined and do test-driven development all the time. This didn’t also work out. Far too often I found myself writing code for which I hadn’t written tests first for. I would have to stop myself and write a test first. Similar to driving, the tests acted as speed bumps preventing me from going to fast.

Most of the time, writing tests was fine. They forced me to think about what I was doing. Instead of creating single, long methods that did more then one thing, the tests forced me to create small, single purpose methods. This resulted in cleaner code that was easier to test and easier to work with. And it also resulted in a much clearer understanding of the solution that I creating.

However, there were times when I knew exactly what I wanted to code and how to code it. This is where the speed bumps came in. Instead of just forging ahead and programming, I had to stop and create tests. And I must admit, far to often, I coded my solution first and created tests after. And far too often, I had to recode what I had done because it wasn’t testable. So the speed bumps, although frustrating at times, in the end proved to be the better way to code.