Luke has inherited a Java Struts-based application. Struts is one of the many Java web frameworks, designed ..
User interfaces tend to map fairly naturally to trees as a data structure. In the modern world where ..
Mateus inherited some code where half the variables were named things like strAux1 and strAux2. It was a data ..
Correctly validating an email address, per the spec, is actually surprisingly hard. This is, in part, ..
"QPirate" was debugging an issue with purchase order version information. The format was supposed to be "Revision#.Version#", ..
Before RESTful web services and JSON as a serialization format, XML was going to conquer the world. Circa ..
Andy found this simple function in a C project he's working on. void clearVal(int x) { x = 0; } This ..
Mike's team had a new hire. They did great on the interview, really shined in the coding challenges, ..
We ofter talk about dates and timekeeping as extraordinarily difficult tasks. And, at least in part, ..
"Generic exception handlers" sound like an oxymoron, but are a weirdly common pattern in web development. ..