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

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

link|flag
show 2 more comments
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 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 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 59 vote down

Maybe it's too subtle, but I think of it as "knowing which problem to solve." A lot of programmers (and normal people) waste tremendous effort solving things that simply aren't very important; or they create a solution, with a great deal of extra work, that isn't quite what is needed.

link|flag
1  
Agreed, worrying about fringe use-case scenarios that only a handful of users will ever encounter instead of more core functionality is an all too common trap! I still learn this one the hard way... – Ian Robinson Sep 27 '08 at 1:40
show 1 more comment
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 43 vote down

How to relax. It's the secret to productivity.

Eventually, willpower and caffeine are not enough. This constant contraction we do is very damaging.

This is a big deal.

link|flag
show 3 more comments
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 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 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 30 vote down

Well, here's my .02$ :

  • The learning never stops. No matter how good you think you are, there is always someone better than you, and there is always something you can improve about yourself. If you stop learning, you'll inevitably degrade as a programmer. Read books. Read blogs. Talk to other programmers.
  • Try to learn several languages. At least one of them object-oriented. Also, you should know something about various technologies related to the language you learn (e.g. If you learn Java, it would be nice if you knew something about Spring, and so on..).
  • Refactoring. Sooner or later you're going to need that knowledge.
  • Learn how to deal with legacy code.
  • Write unit tests. Learn about TDD.
  • Learn to work in a team.
  • Write elegant and readable code. As the old saying goes:"Write your code as if the person that's going to maintain it is a psychotic serial killer who knows where you live."
  • Learn how to be lazy and disciplined at the same time. Good programmers posess both of these qualities. Weird as it seems, they're not contradictory to one another, but complementary.
link|flag
vote up 25 vote down

Unit testing and debugging.

link|flag
1  
No, when the unit test fails, that needs debugging. The two go together. – Zan Lynx Sep 25 '08 at 19:15
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 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
vote up 20 vote down

Don't get too emotionally vested in, attached to, or religious about any given technology, OS, or language - none are perfect - in the long run you're likely to end up wishing you could create your own ala carte from what you like about each different one.

Think of it like cars - you may not have driven a particular car before, but they all have keys, steering wheels, accelerators, and brakes - you should be able to get in one and quickly drive off once you sort out what's where. Treat OSes and languages similarly and focus on learning the essential concepts underlying them even if you're in the throes of the specifics of any given instance.

And over time try to understand and appreciate the ancestry, heritage, and commonalities of the various technologies which will help you keep perspective. Realize for example that, while the evolutionary tree is actively branching and full of dead-ends, over time technology tends to repeatedly converge around 'best practices' and 'economies of scale' (e.g. notice a Mac isn't all that different than a PC under the hood these days...).

Last, remember no matter how much fun you're having with it all, technology essentially represents an imperfect lens between what your mind can envision and what you actually produce. Do your best, learn to learn, and remain adaptable...

link|flag
vote up 19 vote down

Coffee and Intellisense are your best friends ever

link|flag
show 3 more comments
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 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 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 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 11 vote down

The basics of good UI design and communication (aka graphic) design.

I see so many apps and projects ruined by bad design or poor usability. Just learning the basics can make a world of difference. Plus the visual problem solving techniques (i.e., how to communicate a concept visually) are a stimulating challenge that should open your eyes to new ways of seeing, which should in turn have an impact on your code.

A recommended book is The Non-Designer's Design Book by Robin Williams

Here's what Joel Spolsky says of it:

Wow! Everybody has to do some graphic design, and not every software team has the luxury of professional designers. This excellent, thin book will give you a grasp of the principles behind page layout, fonts, etc. The good news is, you can read it in the bath before the water gets cold, and the next day, your dialog boxes and powerpoints and web pages will start looking better.

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

Every programmer should know how to learn quickly. A lot of times you come into a job and will be asked to develop in a technology you've never used. They might give you a week or so to get on your feet (if you're lucky) before you're asked to write production-quality code.

link|flag
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 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 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 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
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.