vote up 106 vote down star
93

Regardless of programming language(s) or operating system(s) used or the environment they develop for, what should every programmer know?

Some background:

I'm interested in becoming the best programmer I can. As part of this process I'm trying to understand what I don't know and would benefit me a lot if I did. While there are loads of lists around along the lines of "n things every [insert programming language] developer should know", I have yet to find anything similar which isn't limited to a specific language.

I also expect this information to be of interest and benefit to others.

flag

152 Answers

vote up 1 vote down

How to use paper and pen (or something equivalent) to write and explain code...

link|flag
vote up 1 vote down

Use or license someone else's code when it makes financial sense to do so. In other words, be aware of the tradeoff between time and money. If it's cheaper to license a library rather than spend time rolling your own, do so.

link|flag
vote up 3 vote down

1) Debugging someone else's code 2) How to test your own code 3) Design with security in mind 4) How/When to comment

Recommended reading list: http://www.codinghorror.com/blog/archives/000020.html

:)

link|flag
vote up 5 vote down

If you want to be the best possible programmer, you need to understand how the "magic" works. Others have suggested learning about compilers, and that's a good start. I would even say every serious programmer has to build their own compiler at least once. But there are other "magics" you need to understand:

  • How floating point maths work on the bit level
  • How an operating system manages processes and memory
  • How a CPU handles instructions internally (microcode, pipelining, branch prediction, ...)
  • How everything is built out of transistors, and how transistors work on the level of basic physics

I would also suggest studying "magical software techniques":

  • How game AI works, how a chess game plans its next move
  • Different sorting algorithms
  • Different techniques for laying out connected node graphs and finding paths in them

You should end up with a knowledge good enough to feel that you could look up everything you need to know to work on any part of the entire system. What this then will give you is a grounding that lets you tackle any issue, regardless of how many disciplines it traverses.

Ofcourse, this isn't all required to be a good programmer, but your question wasn't about being good, it was about being the best you can.

link|flag
vote up 7 vote down

No-one wants to use software. They want problems solved.

link|flag
1  
Exactly. When I hear developers attempting to explain the database to an end user as an answer to their question of why something can't be done, I cringe. They don't need to know how we do stuff. They just want it to work. And that's the way it should be. – Kevin Fairchild Sep 26 '08 at 13:43
show 1 more comment
vote up 1 vote down

Always be willing to learn from your mistakes.

link|flag
vote up 0 vote down
  • Too learn from your mistakes.
  • Regex - Which I still don't know :-(
  • Version Control.
  • Where to stop with performance optimisations.
link|flag
vote up 1 vote down

A good level of Math!

link|flag
vote up 0 vote down

I'll add my own bits:

  • Basic understanding of Software Development Life Cycle, generally the phases of requirements gathering, analysis and design, implementation, testing and maintenance.

  • Know how you learn - Do you prefer visual, oral, or some other method of learning new material? Also, what kind of reference look ups do you usually do to learn something?

  • Knowledge of where they want to go or at least what to try. Architect, business analyst, systems analyst, program manager, or some other next step after being a developer for a few years is something to ponder and explore, not necessarily commit to forever. Alternatively, what kind of specialization do you want to have: Web, Windows applications, web services, databases, etc.

  • Be able to communicate at various levels of detail depending on your audience. The exception here are the top 1% of programming geniuses that will cater to someone with such ability.

  • Be good at solving problems and designing solutions. In most places this may be part of your work that you didn't think as this isn't necessarily specific to what software you'll be writing.

  • Be humble when things go wrong, expect things to go in odd or unusual directions.

link|flag
vote up 0 vote down

Know and understand the theory and the algorithms. Anyone could learn to code, but only few becomes those who can teach to code.

link|flag
vote up 1 vote down

That there is a time to discuss system architecture and a time to just get things done.

link|flag
vote up 2 vote down

One of the things that I try to recall whenever I'm writing code is that someone else will have to change it someday. Now, in certain instances, this may not be true, but I write as if it is. I try to code so that they can enjoy the process, or at least not give it a second thought.

link|flag
vote up 1 vote down

Be language/platform agnostic. Java is not the right tool for all applications. Neither is C#, or C, or Lisp, or [insert your own language here]

Without users, there is no use for programmers

And one of my favorite quotes... Always write your code as if the next person to come along and support it is a raving lunatic who knows where you live.

link|flag
vote up 1 vote down

Correct naming conventions for variables - There are several out there, pick one, stick to it religiously... every time.

Third normal form - If you're having to design a database, this is like, the most important thing ever.

Good commenting - Anyone with basic knowledge of the language, should be able to decipher your code.

Where to get help - No-one knows everything... knowing which forums, communities, manuals, references etc. to go to when you get stuck can literally save days of man-hours.

link|flag
vote up 1 vote down

Boolean Logic and Basic algorithmic notions

link|flag
show 1 more comment
vote up 22 vote down
  • RegEx

It was mentioned before but I think it deserves it's own answer.

link|flag
2  
Some people, when confronted with a problem, think "I know, I’ll use regular expressions." Now they have two problems. --"Jamie Zawinski":jwz.livejournal.com, in comp.lang.emacs – Bjorn Reppen Sep 28 '08 at 21:11
show 2 more comments
vote up 22 vote down

That the day you stop learning should be the day you're no longer a programmer.

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

Binary search. It's useful in a lot of places: search through sorted collection, certain debugging scenarios, programming interview questions.

link|flag
show 1 more comment
vote up 1 vote down
  • How to read an income statement
  • How to think like a user
  • How to discard features because they confuse users
link|flag
vote up 1 vote down

IMHO, a career programmer should have the passion and drive to create things. One should also be very keen on learning new stuff as well as master the language you are currently using. I also agree that good programmers should accept their mistakes and admit to have had mistakes in the past and use these mistakes to improve one's skills. And always keep in mind that someone is always better than you in something else but don't make this deter you from being the best programmer you can be.

link|flag
vote up 19 vote down

I'm a little late to this one, but I'll go with the knowledge laid down by Edsger Dijkstra:

Besides a mathematical inclination, an exceptionally good mastery of one's native tongue is the most vital asset of a competent programmer.

If you can't write a good paragraph, chances are you can't write good code either.

link|flag
4  
Yet I'm amazed at the terrible spelling, grammar, and punctuation used in natural-language writing by some programmers. You would think that working every day with systems that have zero tolerance for spelling errors and invalid syntax would have a beneficial effect... – cheduardo Jun 23 at 13:07
show 1 more comment
vote up 2 vote down

Power of searching.

Even the tiniest issue might have answers in the net, if only one is willing to spend some time searching.

link|flag
vote up 3 vote down

My 2¢ as an aspiring hardware design guy:

you should know how a computer physically works, so that you understand where the power of software bumps up against the limits of hardware, and how to prepare for them, code around them, and come out ahead.

link|flag
vote up 2 vote down

How to learn.

link|flag
vote up 1 vote down
  • Work in small teams (2-10) where you're one of the weakest programmers. You'll learn much more from working with experienced folks than you will by contracting/freelancing and reading books.
  • Ugly, complete and working beats elegant, incomplete and broken.
  • Learn about every trendy concept, whether it be good, bad or the-jury-is-still-out (e.g. MVC, Ruby on Rails, test-driven development, respectively) so you can ignore it or embrace it with good reason.
  • How to write comments and name your variables/methods/objects/functions correctly. Read the latest edition of Code Complete for suggestions.
link|flag
vote up 0 vote down

This is probably already posted but I'm not about to search and read through all that. But a programmer must know when to give up on their idea if a better way of doing it comes along.

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

How to remain proud of your work and be able to admit mistakes at the same time.

Don't swallow pride!

link|flag
vote up 0 vote down

Stop worrying and start doing.

link|flag
vote up 0 vote down

I live by these mottoes:

"Success is 10 percent inspiration and 90 percent perspiration."

"How often have I said to you that when you have eliminated the impossible, whatever remains, however improbable, must be the truth?"

link|flag

Your Answer

Get an OpenID
or

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