Archives for the 'programming' Category
Debugging windows services in .NET
Saturday, April 19th, 2008
The other day I was trying to test a Windows Service that I implemented for a friend. I thought to myself that this was going to be an easy endeavor. I just needed to install the service, run it, set some breakpoints, then attach its process to the debugger and that was it. Oh boy… [...]
Sharing Class names: a bad, bad practice….
Saturday, April 19th, 2008
I consider sharing class names (in design or implementation) a bad, bad practice. In my opinion, it is a practice that will lead to confusion among developers, will eventually cause problems, and will promote software entropy.
You don’t have to go that far to find an example of this bad practice. You can find it right [...]