vote up 32 vote down star
51

I have been working on a list for a while that helps me share the why of programming approach and thought as much as how to do something.

For this, I wanted to build a list of things that are:

  • best practice,
  • best thought,
  • best approach...

that help a programmers ability to analyze, think, approach, solve and implement in the most effective way.

I have seen dozens of incredibly valuable comments in questions throughout SO but I couldn't find a place where we keep them together. There is the most controversial opinion on SO, however I'm just looking for sagely insights that can be shared and help my team and I approach and solve problems better through better programming.

Hopefully this can be one place to gather the one or two liners that are concise, profound and easy to share, repeat, review. If we keep it to one rule per answer it might be easiest to vote up/down.

I'll start with the first.

DRY - Don't Repeat Yourself - In code, comments or documentation.

EDIT: This is now a community wiki. Appreciate the flood of answers!

flag
show 11 more comments

65 Answers

1 2 3 next
vote up 0 vote down

Write self-explanatory code (and then still document it), which includes

  • meaningful names avoiding abbreviations and especially consonant clusters
  • functions that are just introduced to make real code read like pseudo-code
  • keeping the level of abstraction constant inside one code unit etc. etc.
link|flag
vote up 0 vote down

People that know just a little about something (process/software) are the most dangerous people in the world.

link|flag
vote up 1 vote down

Never tell business everything!

Refactoring is part of your job and not something that is up for discussion. If you allways add a little "estimated" time to be able to do necessary refactoring there won't be any complaints about it!

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

Code without unit tests is, by definition, broken.

Self-explanatory.

link|flag
vote up 0 vote down

It's never easy the first time. It will be a snap to do every time after. It's like trying to find a short cut the first time you're driving somewhere. Before GPS.

link|flag
vote up 2 vote down

Quantity Always Trumps Quality

Coding more (even if it isn't great) will give you a better feel of what good code should look like.

link|flag
vote up 0 vote down

Always write documentation for your code! In half a year you won't remember about how it works. So don't write any code without documentation!

link|flag
vote up 1 vote down

Catch bugs early:

  • Use statically typed language so that compiler and static analysis can help you.
  • Unit Test (first or last)
  • Code review
  • Continuous integration
  • Finally, thing that matters the most - Continuous learning.
link|flag
vote up 1 vote down

Your code should be so simple that anyone who looks at it can understand what it does without reading any documentation.

But don't forget to document everything anyway.

If your API is not braindead-simple to use, there is something wrong with the API. Refactor it until it takes no effort to use correctly.

Before you write any code, research first to find out if the framework already has built-in support or extensible interfaces for what you're trying to do.

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

Frequently conduct code reviews

Code review and consequently refactoring is an ongoing task. Here is a few goodies about code review in my opinion: 1. It improves code quality. 2. It helps refactor reusable codes into reusable libraries. 3. It helps you learn from your felow developers. 4. It helps you learn from your mistakes and refresh your memory about a genious code you have written before.

link|flag
vote up 1 vote down

For databases...

Normalise as far as you can. Then normalise again.

Having a good database (in both structure and data) is critical for making programming less stressful.

link|flag
vote up 1 vote down

YAGNI

You Ain't Gonna Need It

Be critical of what you do aka Think!

link|flag
vote up 0 vote down
  1. Understand/walkthrough application code that is good, bad and ugly. You will be better placed at understanding what works and what doesn't.

  2. Talk to people (both IT AND Business) and don't be afraid to ask questions. This works for you in two ways:-

    a) You become more approachable as you seem more human than just that nerd who doesn't speak

    b) Your approach to coding/designing an application is based on real answers - not just on documentation/emails, that could be obsolete.

link|flag
vote up 4 vote down

Understand the tools you use

Don't use a pattern until you've understood why you're using it; don't use a tool without knowing why; don't rely on your framework or language designer always being right for your situation, but also don't assume they're wrong until proven to be!

link|flag
vote up 3 vote down

If you're stuck, talk about it (even if you only talk to a rubber duck)

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

"I just can't see how it can fail" is just "It can fail, I just can't see how" with the words rearranged. TEST EVERYTHING!

link|flag
vote up 2 vote down

Always build a prototype. Nine times out of ten it will be worth the day/week/month that it takes. Corollary: the length of time spent on a prototype should be proportional to the length/size of the main project.

link|flag
vote up 1 vote down

It is never as easy as you think

This is in response to another answer, but does not contradict it! Both are valuable principles that should be followed.

link|flag
vote up 3 vote down

Take a step back and look at the whole picture

Every once in a while, you should step back from your code and think about what you are doing in abstract terms. If you don't, you will overlook something that will come back to bite you a few days from now.

I love to dive deep into the code, but from time to time I need to return to the surface and get some air...

link|flag
vote up 9 vote down

Google before you will ask your colleague and interrupt his coding.

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

Don't try to make things simpler than they are.

Knowing what you are doing is preferable to unit tests.

Understanding the technology is preferable to test driven development.

Why would you want to waste your life with trial and error methodologies?

link|flag
vote up 6 vote down

Always code as if the person who ends up maintaining your code is a violent psychopath who knows where you live.

From: Coding Horror

link|flag
vote up 14 vote down

Best Practice: Use your brain
Don't follow any trend/principle/pattern without thinking about it

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

This comes from Steve McConnell

"Every new line of code should be single stepped through the debugger"

link|flag
vote up 0 vote down

Shouldnt your team already know these things ?

Its a bit of a worry they need to be told what values they already know from past experience. Its a bit like running a courier company and telling your drivers to know they shouldnt have accidents. If they need to be told this because they didnt already know this - i would be seriously worried tha tthey are the right choices for my team.

link|flag
vote up 3 vote down

Think of your work as a craft, not as a duty.

link|flag
vote up 0 vote down

I started a document for my team at my last job, as they had NO programing guidelines, suggestions or anything... It started to get pretty large, but it all made sense.

I'd be happy to share it. But it's not just ONE rule, it was more "Coding Guidelines" than anything else.

Here is a sample outline of what my document contained:

        A.      Source Code
           a.   Formatting
           b.   Variable naming
           c.   Error handling
           d.   Logging
           e.   Text Editor
           f.   Scope Declaration
           g.   Comments / Comment blocks
           h.   Documentation
           i.   API/Library Development standards

       B.       Source Control
          a.    Check-in/Check-out
          b.    Version information
          c.    What belongs in Source Control?

And here is an example from section A.


Source Code

Text Editor:

The choice of text editor is purely up to the developer. Fonts should be mono-spaced, no larger than 18 and no smaller then 8. Although, this is the developers choice, code comments should be present at the top of the source file indicating which editor, font, font size and if applicable indent size should be present. See Comments / Comment Blocks for more information.

Tabs:
Tabs should NEVER be in source files. Tabs should be replaced with spaces, and have an indent of 4.
Line Endings:
Line endings should be in the format CRLF. Most {your company name} source code is on the Windows platform, so line endings should be set to CRLF to be readable on Windows. Line endings should never be mixed in any source file.
Line Length:
Line Length should not extend past 200 chars for most lines. Very long lines of single statement source is acceptable. Function definitions, or function calls should be broken up (and documented). (See API/Library section for more information.)


Of course, this is what worked for US, your MMV, and you'd have to adjust the rules to match your coding styles.

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

Creating software is like.. building a house.

You can try building it without a blueprint, a plan, experience, an architect or qualified tradespeople.

As a result it will almost always cost more, take longer, and be full of future, ongoing surprises that need your time and money.

Just because someone can build a shed without a blueprint doesn't mean they should.

link|flag
vote up 3 vote down

Take part in open source development

If you are using open source code in your projects, remember to post your bugfixes and improvements back to the community. It's not a development best practice per se, but it's definitely a programmer mindset to strive for.

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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