I've been thinking lately about a few practices that I have kind of adopted. Not things you see listed all the times, but patterns that you've looked back and said "I'm glad I did that", then adopted for yourself.
I'm not really thinking of the ones you hear all the time, like "Refactoring" or any design patterns listed in common books either, but would include specific refactoring patterns that you find success with but don't hear about very often...
A few of my biggies:
Separate Data from Code. This is one of my biggest driving factors now--my ultimate mantra. I'm not talking about constants you declare in code as scalars, more about identifying patterns where you can extract data and place it in arrays and use them to instantiate collections of objects--eliminating repeated patterns.
This works very well on GUI code, I no longer would ever consider writing "new Button("Click Me")", because "Click Me" is data and should be from an array, as should all the GUI objects and, preferably, most of their locations and handlers.
This pattern allows some remarkable refactorings that are impossible without recognizing what is data and what is code.
Never pass around raw/native/library objects (specifically collections). I try to avoid passing around ANY raw java objects that I can't extend and aren't part of my "domain".
A class accepting a "List" gives no hint as to what you should pass in, a class expecting a "CarCollection" tells you exactly what to pass in, and the CarCollection class itself can insure it's in a valid state with valid items, a List, even a List cannot. Finally, you almost always want to add methods, when you use raw objects these usually become crappy utilities distributed throughout your code instead.
This has allowed me a remarkable flexibility when it comes to adding features that weren't planned for in the first place.
Okay, your turn...