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

1 2 next
vote up 47 vote down check

When commenting: Tell me WHY you're doing something, not WHAT you're doing. What you're doing is already there plain as day, it's called your code.

link|flag
show 3 more comments
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
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

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 5 vote down

Reduce the number of possible 'states of being' that can exist

Ensure objects are initialized and consistent the instant they are constructed and stay so until they are destructed.

If you know your objects members are all initialized and valid while the object exists you can write methods to rely on that without worrying.

I often see code where the author doesn't recognize how important object lifetimes are. They expect you to construct an object and then call various initialize methods on it to get it bought properly to life. This means their code is littered with checks to see if members are valid before they're used. All these checks reduce the code to an impenetrable mess.

link|flag
show 1 more comment
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

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

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 8 vote down

I try to live by the words of Brian Kernighan:

Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.

I summarize to my co-workers as "Clever code kills".

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 3 vote down

Consistent object naming and well documented source code. It's not a problem of anybody else reading your code after some months, that person might be you and sometimes you don't know why you did something that way or how something works.

link|flag
show 1 more comment
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 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 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 4 vote down
  • Copying and Pasting == Time to Refactor

  • Make your code as simple as possible, but no simpler.

  • Code defensively.

  • Don't try to be smart or clever.

  • Let go of your ego.

  • Cheerfully accept criticism of code that you write.

  • Learn from your colleagues - even the newbie intern has things to teach you.

link|flag
show 3 more comments
vote up 5 vote down
  1. Use Subversion or some other sane version control system.

    • Use branching when doing risky work that might kill the whole build.
    • Be sure to carefully merge your risky work back into the trunk.
    • Be sure that you have a Subversion "hook" setup to run unit tests on code and make sure it passes all tests before checking the code in.

      (this way you know when you've broken something of somebody elses)

    • Be sure to comment in detail what the change has done on a check-in. And for pete's sake make sure your commits are atomic! (A.K.A. checking in all files that you changed relivent to the commit at once.)
    • Another good rule of thumb is one working-copy to a task.
  2. Use Unit-Testing on everything (even Javascript)

    • In this way you know what parts of your code work, and what parts of your code don't work.
    • (redundant yet very important) Also if you unit test you'll know when you've broken someone else's code, and thus you'll know when the two of you need to discuss it.
    • Unit-Testing also makes sure that you code is decoupled from other parts of the system (ensures that you've made good use of interfaces).
  3. Use a Dependency Injection Framework (okay not for JS). This is related to the bullet point above as well, and can allow you to do incredible things like using Aspect Oriented Programming to add and remove log statements very easily, also it helps when handling SQL transactions. (making sure your begin and commit statements are run at the right place in your code)

  4. Keep your team small, but highly skilled.

    • Too many cooks in the kitchen spoil the broth...
    • Too many people at the video store never pick out a movie...
  5. Communicate with your team as much as possible!
    Gone are the days when one could hide away in a cubical and just work on your project, it's all about team work now.

    • Have meetings, to discuss what the "team" as a whole is going to do.
    • Take notes in a shared wiki if possible.
    • regular at least weekly code reviews with your peers, discuss which design patterns are going to be used, and make UML design diagrams!
  6. Keep in time with the rest of the world...

    • Or as I like to call this one, "It's really hard to get help with Visual Studio 97' when it's almost 2009!"
    • Keep your frameworks/libraries, tools and compilers up-to-date, as it will make the questions you ask about them much less awkward, and more likely to get answered.
link|flag
vote up 2 vote down

When doing design, Create a GUI as one of the first parts of your design. On a whiteboard perhaps, or in simple front-end-only code. This is a GREAT way to communicate with your customers and find out if you are on the same level.

It also becomes about the best project specs you're likely to get.

I'm not saying code before design, the GUI is not actually the first code you write, it's just part of design that you may throw away or redesign when you actually get around to writing code.

link|flag
vote up 4 vote down
  • Documentation before (What)
  • Coding
  • Documentation after (How) Unit
  • Testing (Validation & Verification)
link|flag
vote up 3 vote down

Generalize the problem, write code that solves the general problem and use it to solve a specific case.

link|flag
1  
Or use the Agile methodology of write the specific way twice, then refactor into the generic. – Bill K Nov 20 '08 at 17:42
vote up 8 vote down

When approaching other people's code I've taken to assuming that I am the biggest idiot on the face of the planet who has never seen a single line of code in his life. That way, whenever I get the urge to "correct" some line of code that seems pointless and wrong, I think to myself

"You know, I'm pretty dumb, and the person who wrote this probably isn't, so maybe I should find out why they wrote it before I go mucking around in here".

Often I will discover that there is in fact a reason for that line of code that I had never considered. Not to mention the number of times someone has "simplified" some piece of my code, only to discover the week before it releases that the code was actually required to handle that one case where if you hit the "o" key at the exact moment that you press OK while simultaneously playing "Eye of the Tiger" in iTunes via your iPod you will crash the application (which is relevant because your customer is a huge Survivor fan who obsessively presses the first letter of whatever dialog button he is clicking on - it happens).

link|flag
show 4 more comments
vote up 1 vote down

Don't start without a design document.

link|flag
show 1 more comment
vote up 2 vote down
  • Increase Cohesion + Reduce Coupling between modules within design (eg. objects, threads, any functional blocks)
  • K.I.S.S. principle
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 6 vote down

Seperate your concerns!

Do not create "UBER" classes which contain a lot of knowledge of your domain, spread it out in logical part, so that each class has a function in the system.

Also try to decouple allot, so you can easily plug in your test/mock implementation for testing purposes.

link|flag
vote up 9 vote down

FIRST write a test that goes red. THEN write the code that makes that one test turn green. Refactor as needed. Rinse. Repeat.

link|flag
vote up 3 vote down

My personal list:

  • Understanding the bigger IT and domain pictures before writing code.
  • Doing a lot of thinking about what could go wrong, and what's likely to go wrong.
  • Paying my development taxes.
  • Sprinkling assertions liberally across my code and also code I have to maintain.
  • Using Try...Finally much more than Try..Catch.
  • Many comments explaining why certain design and implementation decisions were made.
  • Not sharing state between threads.
  • Poring over the documentation of a type before using it.
  • Refactoring constantly for simplicity and understandability.
link|flag
show 2 more comments
vote up 4 vote down

1) Be Consistent. Nothing is harder to change or understand than inconsistent code.
Bonus: Comment WHY and perhaps HOW, but leave comments about defects, who, and when the changes were made to the SCM.

link|flag
show 1 more comment
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 5 vote down

Classes are fine, but don't start there. Instead, analyze flow of information. Where does it come from, where does it go to, how is it encoded, and when is it processed?

For example, if some of the information only changes once a week, possibly you could use a partial-evaluation pattern (i.e. code generator). This can be a divide-and-conquer strategy because the code generator only deals with part of the problem, and the generated code only deals with the remainder. Sounds funny, but it can really simplify things (as well as run a lot faster).

link|flag
vote up 5 vote down

Don't overengineer. Engineer it just enough to get the job done and to be able to maintain it.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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