Hacker News new | ask | show | jobs
by kperry 2671 days ago
Working Effectively with Legacy Code is the best Software Engineering book I have ever read. Most authors will show you very trivial examples, but Feathers shows detailed examples and an almost formulaic way to make your code testable. You can read and memorize SOLID principles, but he shows you how to _do_ SOLID principles.
1 comments

I was revisiting that book again last night briefly and was having a chuckle at some of the example code in Java (I assume it's Java?) before some of the more modern features came into the language and thinking "yep, using iterator and .next() to do your loops sure is legacy code alright!". It smelt like Java 1.4

Good times.