Recent Entries:

Favorite Links

Agilitá

Thursday, October 2nd, 2008

This is just a list of things I think you should master if you want to be a good web programmer (and not only)
* Unit testing
* Refactoring, you must have a copy of Refactoring: Improving the Design of Existing Code
* Design Patterns, read Design Patterns: Elements of Reusable Object-Oriented Software
* Dependency injection and why [...]

Easier Flexunit configuration

Monday, June 2nd, 2008

I wrote an utility class to simplify the configuration of a flexunit testsuite. All methods starting with “test” are added automatically as test cases when the suite is created in the following way:

private function createSuite():TestSuite {
var ts:TestSuite = new [...]