vote up 23 vote down star
36

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...

flag
show 2 more comments

45 Answers

prev 1 2
vote up 1 vote down

Thread-safe by default. All of my (Java) code is thread-safe unless explicitly documented otherwise. It takes a bit more thinking and sometimes makes the code more complicated, but I go to great length to consider concurrency in every nook and cranny of my (newer) code bases. To this end, the java.util.concurrent package is a blessing.

This pactice, I believe, makes me write better code. Not only do I consider the concurrent failure modes, but I think that simply thinking about the code more leads to fewer mistakes.

link|flag
vote up 1 vote down

Use meaningful, relevant, human-readable identifiers for variables, methods, parameters and so on. Arbitrary abbreviations make your code much harder to read and understand.

link|flag
vote up 1 vote down

Don't start without a design document.

link|flag
show 1 more comment
vote up 1 vote down

There's more than one way to test.

When I learned about refactoring, I tried to write good unit tests. But I often found pieces of code that were resistant, but that I really, really wanted to improve...and so I'd end up changing the code without any tests in place. And of course I'd often break something in the process.

I learned two things:

  1. You have to have some way to test, even if it's not a perfect little NUnit test. It might be text in the Debug window, or a script of click here-type this-click there, but you've got to have something to tell you whether the code still works.
  2. If you can't figure out any way to test the code, then you don't understand it well enough to change it successfully. So don't try!
link|flag
show 2 more comments
vote up 1 vote down

Defensive programming. I really like to use defensive coding techniques in the style of Design By Contract. It's cheap to put assertions to verify "impossible" conditions, they document your code, and save your live failing fast when something impossible happens.

The best reference I have in the subject is chapter 8 of McConnell's Code Complete Book.

link|flag
vote up 0 vote down

Top Down Programming. Some may call it TDD or BDD, but I simply always trying to be focused on what's currently required. Well, my fingers keep trying pulling me down to the metal by saying: while you're here at this peace of code add some special handling etc., so I'm not giving up and telling myself YAGNI YAGNI move back upward to see what's the next thing that is absolutely necessary. Just my 2 cents.

link|flag
vote up 0 vote down

Keep the data structure loose and simple. Don't rely solely on notifications to keep various parts of the data tightly in sync. It's too hard to prove they're right, and it takes a lot of programming energy. Instead, have diff-style routines that you call once in a while to clean up inconsistencies.

link|flag
vote up 0 vote down

I agree with Joel, Make wrong code look wrong.

The speed difference between reading code formatted in a constant way and code that isn't is ridiculous. Assuming no one went out of their way to make the inconsistently formatted code obscure I'd guess consistent formatting reads over three times faster with a much higher likelihood of detecting a problem.

link|flag
show 2 more comments
vote up 0 vote down
  1. Read Code Complete
  2. Read Code Complete Again
  3. Remember Code Complete while you program
link|flag
vote up 0 vote down

I'd say take the time to think before doing something.. I often come up by doing it simpler/faster than I would have done it.

Also, I try to write clean code even in langages where good practice aren't always forced.. For instance, in python or bash :D

link|flag
vote up 0 vote down

Well designed interfaces are crucial to managing complexity. When the interface between two pieces of code is ill-defined or "loose" things get out of hand very quickly. I've found that perl is especially good a letting you create an entire castle out of matchsticks... In any language, you have to be diligent and protect your code with a clean interface.

link|flag
vote up 0 vote down

design a really well and easy to understand data structure/db structure, then even if your code is whacked, it's still pretty much self explanatory.

link|flag
vote up 0 vote down

Personally, my best "get things done efficiently and organized" is to write the problem's solution out. This takes two forms:

  1. A high level to-do list, crossing off items as they are slain.

  2. Actually coding it on paper first.

It almost seems like I think through problems more completely when I code on paper first than when I'm hacking on a screen. Your mileage may vary.

link|flag
vote up 0 vote down

One thing which I read somewhere is "Always select the SECOND workable solution for the problem".

The first solution that you get to most of the time is probably the easiest one but that will come back to bite you in the future.

link|flag
vote up 0 vote down

This is a performance analysis practice that leads to better coding practices.

Somehow the idea got around that you can't dynamically analyze performance without a profiler. Not so.

When code is being sluggish, use the simple random-halt technique to find things that take time that are not necessary. You can do this in the normal process of running the code under a debugger or IDE.

Especially in large software, you usually find that, after you fix a few "low-hanging-fruit", the fundamental reason for slow performance is over-design with way too much data structure.

This leads to a better coding practice of minimizing data structure and not over-designing.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.