software

BarCamp Austin (SxSW)
Submitted by scott on Fri, 11/21/2008 - 14:55.No details yet on where

iPhone Dev Camp
Submitted by scott on Fri, 11/21/2008 - 14:53.At Conjunctured, Austin, TX

iPhone Dev Camp
Submitted by scott on Fri, 11/21/2008 - 14:51.At Conjunctured, Austin, TX

Software requirements
Submitted by scott on Fri, 04/27/2007 - 21:07.Have you ever had this happen to you?
Customer and Marketing/Sales
Customer: If your software had this feature I would buy it.
Marketing/Sales: We're working on it and it'll be in the next release.
Customer: When is the next release?
Marketing/Sales: We can't officially say when that is. *wink* *wink* But we normally have a release right before the next major trade show.
Marketing/Sales team and Development Manager
Marketing/Sales: Add this feature to our software.

Unit tests
Submitted by scott on Wed, 04/11/2007 - 22:41.Everyone should start using unit tests for all development projects if you're not already.
There are so many times I've had to look at code to find a bug that could have easily been discovered at the initial coding and testing phase yet made it all the way into production code. Here is an example of a simple method with a unit test. It is not important what the method is doing here, what is more important is the unit testing that tests multiple input and return values.
Here is a sample class puzzle with a method rowForPosition that we want to unit test.

