vote up 33 vote down star
54

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

vote up 4 vote down

Convention over Configuration

Especially where conventions are strong and some flexibility can be sacrificed

link|flag
vote up 4 vote down

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

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

Plan First, Design Second, Code Third, Test Always.

link|flag
vote up 2 vote down
  1. Audience - everything we build is for an audience, it'll be used by end users as well as other coders. Ensure it's usable by both.

  2. Simplicity - if you find yourself implementing something complex and convoluted, you're probably missing a more effective, simple solution.

  3. Quality, not perfection - keep your mind on what's important - delivering quality within a timeframe. if you double the estimate, delivering perfection won't save your ass.

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

It doesn't have to be art, but it has to be on time

An old rule from journalism that I've had to learn the hard way.

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

Declare everything. Never nest 15 functions into 1 variable.

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

Instead of being someone who says "I don't know", be someone who says "I want to know". It changes your approach from avoiding/reacting, to proactive discovery and growth.

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

Red, Green, Refactor!

TDD or Test Driven Development.

  1. Write your tests for the piece of functionality you want to develop, ensuring that they fail since you have yet to write any code.

  2. Write the least amount of code that you need to to make the test pass.

  3. Refactor as needed for things such as efficiency or clarity.

  4. After refactoring, ensure you tests still pass.

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

Design patterns are your friends

Make sure to keep a copy of the Gang Of Four book lying around somewhere as a reference.

link|flag
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 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 1 vote down

YAGNI

You Ain't Gonna Need It

Be critical of what you do aka Think!

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

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

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

Understand the intent of the SOLID principles (or any other set of principles or methodology).

link|flag
vote up 0 vote down

Some Things Are Better Done than Described

Don't fall into the specification spiral---at some point you need to start coding.

via The Pragmatic Programmer

link|flag
vote up 0 vote down

strive to find solutions that require the least amount of code

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

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

Your Answer

Get an OpenID
or

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