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

1 2 3 4 5 6 next
vote up 376 vote down check

How to swallow pride and admit mistakes without taking them personally.

link|flag
13  
That is something that every human being should do regardless of their job (...sex, religion, culture, social status...), don't you think? ;) – Manrico Corazzi Sep 25 '08 at 12:00
5  
I wish i could vote you up twice. – JoshReedSchramm Sep 25 '08 at 15:27
show 10 more comments
vote up 153 vote down

When to ask to for help, and when NOT to ask for help.

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

Familiarity with version control systems. It doesn't have to be every one, but the basic concepts that can be applied to all of them should be known.

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

Basic data type & algorithm theory. Things like Big O notation, arrays, queues, etc.

link|flag
2  
Well, nowadays standard algorithms are implemented in the libraries/frameworks but I agree that some hard-algorithm-like thinking is useful, but not very often – Łukasz Sowa Sep 26 '08 at 0:14
1  
Just because they are implemented already doesn't mean you don't have to understand what to use when, complexity guarantees, etc. This is the important stuff behind algorithms. – Greg Rogers Sep 26 '08 at 20:54
1  
You won't know which one to use if you don't understand them. Algorithms are very important. – Bernard Jan 2 '09 at 16:52
show 5 more comments
vote up 7 vote down

Requirements change, your code will have to adapt, and it may or may not be you who has to adapt it.

There have been several questions here related to topics that are affected by this.

link|flag
vote up 1 vote down

Well... there are about a ten thousand things a programmer should know before they start getting productive, so this question is too generic and subjective. But a willingness to listen and learn new stuff, and a basic ability to Google is always a plus...

link|flag
vote up 42 vote down

Where his towel is.

42 – no more, no less, folks :)

link|flag
16  
This must stay at 42 votes! – Chris Blackwell Oct 16 '08 at 5:46
14  
This has been at 42 for two months now. I think we're officially the nerdiest community on the internet. :) – Bill the Lizard Dec 16 '08 at 17:52
1  
"for two months now." You were counting? 0_0 – Bernard Jan 2 '09 at 16:50
3  
I almost voted up ... phew :) – Discodancer Feb 11 at 1:00
1  
oh man, I almost ruined it – Carson Myers Jun 16 at 21:30
show 5 more comments
vote up 7 vote down

Reading other people's Code is not going to spoil your brain, but rather figure out why you would not have done it that way (if better or not is another question).

This gives you programming gedanken experiment, and occasionally you do find someone implementing something way better! Like in way better.

This answer naturally expands to reading your own code, thus it expands to use version control and DIFF, and thus to 42.

link|flag
vote up 106 vote down

How to read other people's code.

link|flag
34  
Addendum: How to write code other people can read – Mike Robinson Jan 15 '09 at 19:02
4  
Addendum #2: How to read your own code 6 months later – Nathan Koop Sep 4 at 16:33
show 2 more comments
vote up 194 vote down

How to think like a user, and not like a techie geek programmer.

link|flag
8  
I actually disagree. That's what you hire people for. You'll never be able to think like a user, but you can certainly have people tell you what users think and act on that advice. Just don't ask the users how they think! That's the worst option of all. – Asmor Sep 25 '08 at 20:29
1  
The user may very well be a techie geek programmer, but less likely a techie geek programmer who also implemented the code. If the application has very subtle and complex semantics/behavior, the person who wrote the code might be the only person who can understand how to use the application... – Reuben Dec 25 '08 at 7:21
show 5 more comments
vote up 14 vote down

That he doesn't know everything and should always try to learn new languages/technologies etc.

link|flag
vote up 13 vote down

How to observe a big complicated object and decompose it in small simple objects that still accomplish the same task when put together again.

link|flag
vote up 34 vote down

How to choose the right tool for the right task, and not taking part in silly flaming wars about his favourite programming tools.

link|flag
vote up 3 vote down

While helpful at times, you should not be fully relying on your compiler or your debugger to help you make your code better.

link|flag
vote up 39 vote down

You can't test quality into a product.

link|flag
1  
Technically speaking QA and Test is not the same thing, although to your point I'm not sure most organizations actually practice the difference. – InSciTek Jeff Sep 26 '08 at 12:02
show 1 more comment
vote up 4 vote down

Where to find the information he needs :)

link|flag
vote up 1 vote down

The negatives of their prefered language, no better way to defend your choice of language and know how to use it to its full potential better than knowing what is down sides are

link|flag
vote up 1 vote down

Model-View-Controller

link|flag
vote up 7 vote down

Version control. And to quote my gf: "I don't just want you to do the dishes, I want you to like it!"

link|flag
vote up 3 vote down

The fact that, No one is indispensable!

link|flag
vote up 0 vote down

Thinking out-of-the-box is usually a good thing! Most of the development is not just straightforward.

link|flag
vote up 0 vote down

How to leverage their network of contacts both internally within their current organisation and externally, as you never know when you will need someone to mull over an issue with you or where the next interesting project might come from.

link|flag
vote up 3 vote down

Every programmer should understand that generally the best solution for the business and the most technically elegant programming solution are not the same thing.

link|flag
vote up 18 vote down

Every programmer should understand design patterns.

link|flag
5  
I would add that they also need an understanding that not everything can be shoe-horned into a given design pattern. – tloach Sep 25 '08 at 12:48
5  
I would also add that not every programmer should understand design patterns. There are languages out there in faraway lands which have other features so powerful that thought flows directly out of the programmer and into working programs. In those languages, deliberate patterns are a misdirection. – Ali Sep 25 '08 at 20:20
2  
design patterns are for desingers not "programmers" - a programmer will need to know that when he/she becomes a "designer" – Autobyte Sep 26 '08 at 19:58
5  
There are two types of people.. people who enjoys coding and people who prefers talking about coding. Design patterns is a must for the second group.. – Bjorn Reppen Sep 28 '08 at 21:13
1  
Such patterns is a way to overcome limitations of languages. A programmer should understand them only because he should understand and be able to overcome the weaknesses of his languages. – tomjen May 16 at 19:28
show 5 more comments
vote up 70 vote down

Heres my 10 bits:

  • How to be humble. We are all here to learn. You may be smarter than others, but there sure as hell are a lot of people smarter than you.
  • How to study/consume info. I don't know about you, but I am forever studying! Books, net, whatever!
  • What a dictionary is and how to use one, and how to find out acronyms quickly.
  • What the basic tools of the trade are and what they do (IDE, CVS et al).
  • Know common terminolgy and what they mean : design patterns, usability, testing (ha!), stack etc. etc.
  • Have an understanding of OOP.
  • Be "capable" in at least one language, nothing amazing, just know how to identify variables and methods etc. From here you can learn FAST.
  • Understand that people ultimately use software and want to make those people happy.
link|flag
2  
Regarding the first bit.... "Don't be so humble, you're not that great". – Magnus Johansson Sep 25 '08 at 16:36
show 5 more comments
vote up 2 vote down

Managing expectations of your clients, your manager, your coworkers.

link|flag
vote up 1 vote down

What you don't know.

link|flag
vote up 12 vote down

Never trust a user (especially if the app is public!), they will often do everything in their power to break your app one way or another.

Make it future proof & expandable – you never know when you want to expand it in a few years time and realise how much effort it would take to re-code badly created code.

link|flag
vote up 19 vote down

Coffee and Intellisense are your best friends ever

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

How to program in C.

link|flag
6  
Not to mention assembly language. – Ferruccio Sep 27 '08 at 1:35
4  
Not to mention X. – Ali Sep 28 '08 at 16:20
1  
Screw it...Binary – Egg Jul 21 at 15:28
show 1 more comment
1 2 3 4 5 6 next

Your Answer

Get an OpenID
or

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