Monthly Archives: August 2010

My AT&T Uverse Installation Experience

I moved to a new apartment last weekend, and as part of the move I switched from Time Warner cable/internet/phone to AT&T Uverse service.  I made the change because AT&T advertised higher download speeds for a similar price, and my … Continue reading

Posted in life | Tagged | 6 Comments

Is parameterized logic always harmful?

I’ve read plenty of times that parameterized logic is considered harmful in testable design.  What’s parameterized logic?  It’s stuff like this: int Calculate(int lhs, int rhs, Operation op) { if (Operation == Operation.Add) { return lhs + rhs; } else … Continue reading

Posted in .NET | Tagged , , | Leave a comment