5
votes
What is the best way to implement constants in Java ?
In Effective Java 2nd edition, it's recommended that you use enums instead of static ints for constants.
There's a good writeup on enums in Java here:
…
2
votes
Good examples of Hungarian Notation?
I think the key thing to take away from Joel's article, linked above, and Hungarian Notation in general, is to use it when there's something non-obvious about the variable.
One example, fro …
0
votes
How to save my sanity while maintaining spaghetti code
Here's how I approached this problem while maintaining a 10 year old legacy perl system. To give a slight bit of background, this was some of the worst of the worst. I was initially depressed when …
