Click here to Skip to main content
Licence CPOL
First Posted 12 Dec 2002
Views 132,978
Bookmarked 36 times

The seven secrets of successful programmers

By Duncan Edwards Jones | 20 Oct 2003
7 tips to make you a better citizen in the developer community.
22 votes, 40.0%
1
4 votes, 7.3%
2
8 votes, 14.5%
3
10 votes, 18.2%
4
11 votes, 20.0%
5
2.86/5 - 55 votes
μ 2.74, σa 2.83 [?]

1. Code for human consumption

It is one of the most pervasive misunderstandings in computing that the source code is for the computer's consumption. Computers work with low-level binary code, a series of impenetrable 1's and 0's or hexadecimal numbers, not the structured high level languages we code in. The reason that these languages were developed was to help the programmer.

In practice, coding for human consumption often means coding for clarity first, over efficiency and speed second.

2. Comment often and comment well

The comment is the extreme example of a language element for human consumption. Most compilers will strip the comments from the executable program. The purpose of the comment is to tell you (and any future developer) what the program is intended to do. Write comments with this in mind - and avoid simply restating the code.

  • Good comment: Disable button to prevent its activation.
  • Bad comment: Set cmd = False

A good indication that you have got the level of comment right: could someone understand what your program does if all but the comments were removed?

3. Layout code to increase legibility

Just as it is important for an author to split a book into chapters and paragraphs that aid reading so it is important for the developer to consider the layout of the code and how that can aid readability of the code. In particular, any code branch (an IF..THEN...ELSE construction) and any code repetition (a WHILE...END WHILE construction) should be indented so that it is easy to see where they start and end.

4. Expect the unexpected and deal with it

Before you open a file, make sure that the file is present. Before you set focus to a control, make sure that the control is visible and enabled. Try to work out what conditions could cause your code to fail and test for them before they cause the program to fall over. Also use explicit data type conversion wherever possible.

5. Name your variables to aid readability

There are a number of strategies to variable naming. The key is to be consistent and to be as informative as possible. If you name a variable nMonth, you give the programmer extra information as to what that variable is expected to contain. I personally prefer the Hungarian notation style - but whichever style you use, consistency is the key.

6. Keep your functions and subroutines simple

A function or subroutine should ideally only do one thing. One of the greatest sources of misunderstandings, in my experience, is a subroutine that does a number of different operations. This should be split into separate functions for each different thing it is doing, so that these in turn are easy to reuse, and the scope of a code change is easy to understand.

7. Scope functions and variables appropriately

Functions and variables that are only used in one module should not be visible outside that module. Variables that are only used in a function or subroutine should not be visible outside that function or subroutine. This prevents any use of a variable or function outside of where it makes sense to use it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Duncan Edwards Jones

Software Developer (Senior)
JP Morgan
Ireland Ireland

Member

Follow on Twitter Follow on Twitter
C# / SQL Server developer
Microsoft MVP 2006, 2007
Visual Basic .NET

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralVB6 help PinsussAnonymous9:19 1 Jul '04  
GeneralRe: VB6 help PinmemberMerrion7:36 22 Mar '05  
GeneralCode Complete Pinmemberedunphy199:15 30 Oct '03  
A programming book that all programmers should read is Code Complete by MS Press. It shows many pitfalls, and way around them. It also shows the best practices to create code in an open architecture way that minimizes code changes as specs change.
GeneralSeperate data from code Pinmembertwb1521:45 29 Oct '03  
Generalsmartass remark Pinmemberk4_pacific4:08 29 Oct '03  
GeneralRe: smartass remark PinmemberMerrion8:46 29 Oct '03  
GeneralType of comments Pinmembergaryknights5:24 22 Oct '03  
GeneralRe: Type of comments PinmemberKevin McFarlane0:46 28 Oct '03  
GeneralCosmetic ... PinmemberSébastien Lorion12:00 21 Oct '03  
GeneralRe: Cosmetic ... PinmemberTom Pruett5:16 22 Oct '03  
GeneralRe: Cosmetic ... PinmemberSébastien Lorion21:06 22 Oct '03  
GeneralRe: Cosmetic ... PinmemberTom Pruett9:07 23 Oct '03  
GeneralRe: Cosmetic ... PinmemberSébastien Lorion12:30 23 Oct '03  
GeneralRe: Cosmetic ... Pinmemberrichman25:28 29 May '04  
GeneralRe: Cosmetic ... PinmemberKevin McFarlane1:02 28 Oct '03  
GeneralRe: Cosmetic ... PinmemberKevin McFarlane0:59 28 Oct '03  
GeneralPoint #2 Pinmemberrondalescott7:58 21 Oct '03  
GeneralRe: Point #2 PinsussAnonymous8:29 21 Oct '03  
GeneralRe: Point #2 PinmemberMichael P Butler8:41 21 Oct '03  
GeneralRe: Point #2 PinmemberKevin McFarlane1:13 28 Oct '03  
GeneralRe: Point #2 Pinmemberdanitrol21:54 28 Oct '03  
GeneralRe: Point #2 PinmemberPit M.23:46 21 Oct '03  
GeneralRe: Point #2 PinmemberArnaud Brejeon0:41 22 Oct '03  
GeneralRe: Point #2 PinmemberKevin McFarlane1:25 28 Oct '03  
GeneralRe: Point #2 Pinmemberjhwurmbach22:14 29 Oct '03  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120210.1 | Last Updated 21 Oct 2003
Article Copyright 2002 by Duncan Edwards Jones
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid