vote up 20 vote down star
13

I want to know what people think are the most important soft skills (e.g patience, tenacity, competitiveness) for programmers.

I’m not really interested in communication skills, but more the skills you use when you’re hunched over the keyboard.

flag
1  
i wonder if this should be a community wiki – geowa4 Jul 24 at 13:43
4  
Make this community wiki and tag it fun, and you will stand a chance of it surviving the day. – Ralph Rickenbach Jul 24 at 13:43
1  
I concur - this would be very helpful cw question – warren Jul 24 at 13:49
1  
To all who vote to close: please let us know why this is not programming related? – Robert Munteanu Jul 27 at 20:56
show 5 more comments

39 Answers

1 2 next
vote up 45 vote down

Curiosity. You just have to be driven to figure out how things work (or how to make them work) for the sheer pleasure of it.

link|flag
vote up 44 vote down

Laziness of course. Less is more.

I've seen and reviewed so much code that should have been much less code.

link|flag
2  
+1 for laziness. – JimNeath Jul 24 at 13:44
6  
Haha, don't forget hubris and impatience :) ( c2.com/cgi/wiki?LazinessImpatienceHubris/… ) – Falaina Jul 24 at 13:44
2  
I liked the couple of pages in Code Complete about laziness (all the way at the end). – Stefan Jul 24 at 14:15
1  
Agreed. It's a very special kind of laziness though. The kind that will make a person spend all day writing a script so that they don't have to spend all day mechanicially cutting and pasting and modding stuff. – T.E.D. Jul 24 at 14:34
1  
Nice! Just want to add this --> From the guru: "We will encourage you to develop the three great virtues of a programmer: laziness, impatience, and hubris." - LarryWall – Secko Jul 24 at 14:35
show 5 more comments
vote up 27 vote down
  • Tenacity - for bug-fixing and over-coming technical blocks.
  • Analytical skills - able to break
    down big problems in to component parts.
  • Knowledge sharing - able to grow knowledge in a team and improve those around them
  • Pride in work - shows some interest in refactoring and simplifying code.
link|flag
show 1 more comment
vote up 21 vote down

Patience and critical thinking.

link|flag
1  
What happens if you don't have patience? – Supertux Jul 24 at 14:26
6  
@Supertux - You either fail, or get promoted to mangement. – Russ Jul 24 at 15:23
show 2 more comments
vote up 13 vote down

The ability to pull back from a particularly difficult problem. Most insights to these types of problems occur when you are doing something totally unrelated to the task at hand. If you are getting nowhere after 2-3 hours and feel as if your spinning your wheels, it is absolutely critical for you to be able to leave it aside and go do somethong else

link|flag
3  
This also applies if you've been spinning your wheels for 2-3 weeks... – kibibu Jul 24 at 13:47
vote up 11 vote down

The absolute intrinsic need to learn something new, every time and forever.

Never stop learning.

link|flag
vote up 11 vote down

The ability to take criticism from anyone (Seniors, juniors, interns), analyze it and be able to apply it when necessary.

link|flag
vote up 11 vote down

Larry Wall said it best: Laziness, Impatience and Hubris

I know that they are mostly tongue-in-cheek (you wouldn't go into a job interview and say "I think that my best skill is laziness") but deep down, they do lead to self-motivation. You want someone who will figure out what needs to be done and just do it (and WANT to do it), because it will make their own jobs easier, and if it makes their own jobs easier, it will probably make everyone else's jobs easier too.

link|flag
vote up 10 vote down

I believe conscientiousness is one of the greatest assets to a programmer. It doesn't matter how technically good a programmer you are, if you are sloppy, don't comment code, don't adhere to conventions and don't test your work. Caring about your work is important.

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

Don't Repeat Yourself / Don't re-invent the wheel!

link|flag
8  
You may want to reinvent the wheel to understand the wheel – phsr Jul 24 at 13:47
show 1 more comment
vote up 4 vote down

Ability to learn quickly and figure things out just as fast.

link|flag
vote up 4 vote down

Understanding code rather then rewriting it.

link|flag
vote up 4 vote down

Being able to honestly assess how long something is going to take, and honestly assess how you're proceeding so far. This is a skill I fervently wish I had.

And deferring gratification: spending a few minutes searching the project or library for code that already does what you're trying to do rather than jumping in and having fun coding up a new version immediately.

link|flag
vote up 4 vote down

The ability to communicate ideas clearly and concisely to other people.

link|flag
vote up 3 vote down

Perfectionism and Curiosity, and thinking "outside the box" (overall picture). And planning.

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

Clear, logical and objective thinking (even when those around you are losing thier heads), patience, being able to ask the right questions, a dash of empathy, and the ability to avoid procrastinating [too much!].

I'd also say a desire and willingness to learn. You'll be doing it a lot.

link|flag
vote up 3 vote down

Mathematical aesthetic sensibility. A God's gift that makes wonders.

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

@Stephan Eggermont:

alt text

link|flag
vote up 2 vote down

Not being able to sleep until you figured out a solution to that day's problem.

link|flag
4  
Hmmm...not necessarily. Sometimes it's best to sleep on a problem, and return to it refreshed. – Steve Melnikoff Jul 25 at 16:43
vote up 2 vote down

Problem solving - Given something that doesn't work, figure out why it doesn't work and what possible solutions exist and why any of them may be the best solution to the problem.

link|flag
1  
+1 The good part about that skill: the solution might require taking a higher-perspective view, and that can keep you from being a small programmer with big problems. – Smandoli Jul 27 at 21:02
vote up 2 vote down

An unwillingness to let an unsolvable problem stay that way.

That, and making a new pot of coffee when you take the last cup.

link|flag
1  
...not necessarily in that order. :) – Bill the Lizard Jul 24 at 14:27
vote up 1 vote down

being subjective and argumentative.

link|flag
vote up 1 vote down
  • learning skills : to not repeat same errors again and again
  • high abstraction level : environment doesn't matter, only code matters
  • modelisation skills : be capable to sketch/explain ideas to others
link|flag
vote up 1 vote down

Patience, and the force of will to rewrite something from the start.

link|flag
vote up 1 vote down

For everyone in any type of profession, to become great it only takes dedication to the subject. Being passionate and obsessive with laughable working hours. Specially for programming, no social exercise is required.

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

Being able to LISTEN. How many times have I seen a client talking to a programmer, the guy paying attention the first few minutes and then his eyes glaze over, already forming his own ideas in his head.

P.S. I admit I used to do this too, but thankfully the I learned (and am still learning off course) how to do this better now.

link|flag
vote up 0 vote down

Patience and perseverance ("I WILL fix this bug")

link|flag
vote up 0 vote down

Motivation, curiosity, logic and laziness.

link|flag
vote up 0 vote down

Answering questions on Stack Overflow can be considered a soft skill? Giving back to community and helping others.

link|flag
vote up 0 vote down

Ability to learn by yourself. This way I learned crystal reports, SQL and .Net. At my work they love that.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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