vote up 31 vote down star
31

As a follow up to "What is the one programming skill you have always wanted to master but haven’t had time?", what is the single hardest thing related to programming — skill, concept, tool, language, etc. — that you have learned or mastered? Not necessarily as a beginner, but all throughout your career.

flag
show 1 more comment

87 Answers

1 2 3 next
vote up 46 vote down

More code != better

link|flag
6  
And people still think that we like to write code, I love to DELETE code. – Fabio Gomes Oct 3 '08 at 17:28
3  
@UnbiasedEntropy: Bill by the hour instead. As Pascal said, "I have made this letter longer than usual, only because I have not had time to make it shorter." – Sherm Pendley Nov 14 '08 at 15:58
1  
"A designer knows he has achieved perfection not when there is nothing left to add, but when there is nothing left to take away." (Antoine de Saint-Exupéry) – Thorsten79 Dec 28 at 10:20
1  
On the flip side though sometimes less code != readability, everything in moderation I say. – John_ Feb 18 at 16:12
show 4 more comments
vote up 36 vote down

humility

(still working on it)

link|flag
vote up 35 vote down

"Do the simplest thing that will work".

I used to spend far too much time trying to code every possibility into the routine, planning for any eventuality. Of course, all that extra code meant more chance for defects and more debugging.

I learned that most of that code is never actually exercised. Worse, when the eventualities really do occur, they don't follow the assumptions you made back when coding, so you have to revisit the code and change it anyway. Except it's so complex with possibility thinking that it's harder to change than if you had never bothered.

So now I just write my code for the exact problem at hand. Later, if I need to add something else, I'll re-write (refactor) the code to be the simplest thing to solve the new problem.

-R

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

Learning to ask for help early on rather than try to be the hero and figure out something on my own which may take too long.

link|flag
1  
Of course, there is a balance here. You (or me) might learn more if you figure something out for yourself. It is also very disruptive to interupt another programmer. Although asking on SO is always good. :) – pipTheGeek Oct 10 at 18:05
show 2 more comments
vote up 32 vote down

Regular expressions.

link|flag
1  
huh? Regular expressions are far more simple than programming in general. – Pop Catalin Dec 28 at 10:55
show 3 more comments
vote up 29 vote down

Pointer. Freaking. Arithmetic. I'm convinced it only exists to keep out the riffraff (and ensure that maintenance C programmers will have jobs until 2137 fixing memory allocation errors).

link|flag
1  
this->memberfunc() is legit. I'd be worried if I saw you trying something like (this+3)->memberfunc(), though. Hehheh. – Greg D Dec 5 '08 at 15:53
1  
Pointer arithmetic is not hard, working with pointers/passing them around and managing the life of the objects/resources they point at, is horribly error prone. – Pop Catalin Dec 28 at 10:44
show 5 more comments
vote up 28 vote down

The single hardest problem I have learned, but evidently not perfectly, is trying to maximize performance and prevent thread deadlocks in a massively multi-threaded environment involving asynchronous events from remote calls and from gui events.

link|flag
1  
Multi-threaded code is so hard to write and maintain properly that I refuse to do it or allow others to do it unless there is no other way to achieve a desired effect. So, after learning the techniques involved, I've learned to avoid using them. Ironic, no? – PeterAllenWebb Oct 3 '08 at 18:44
1  
I have successfully avoided thread programming. I made the argument that it's the job of the kernel to keep all these jobs going at once. No need to re-implement kernel functionality (badly) in userland software. The java people were not amused, and I have successfully avoided java since. – Christopher Mahan Dec 28 at 10:16
1  
Multi threading isn't hard. .NET has made it all too easy. STABLE multi threading, now that's hard. I don't find it a difficult concept, but I have had several hard bugs caused by multi threaded code. Including one bug that only occured on single core machines. – pipTheGeek Oct 10 at 18:09
show 3 more comments
vote up 26 vote down

What people say they want from a program != what people actually want from a progam

link|flag
show 4 more comments
vote up 25 vote down

For me, it was grasping monads in Haskell.

Looking back, part of the reason is because the pattern it embodies is so abstract. Different examples of monads are seemingly completely unrelated.

But another part is that you have to already have a pretty deep understanding of so many other (pretty hard) concepts — higher-order functions, higher-order types, type classes, lazy evaluation — and integrate them all to grok monads.

link|flag
1  
grasping monads is enough to make your eyes water! – Mitch Wheat Nov 28 '08 at 10:13
show 8 more comments
vote up 21 vote down

Recursive functions.

Although, after figuring the pattern out it has helped me to look at new problems from totally different viewpoints.

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

Truly appreciating the value of testing and being able to design for testability and to be able to write testable code (and also writing test cases that actually properly test what's being tested).

link|flag
vote up 14 vote down

Learning to deal with people who lack skill in architecture and meta concepts but who illogically think that some other expertise makes them correct in this area.

Now in general, I have an easy time getting along with people, and this is a rarity, but when it hits, boy can it be a doozy. Often what you are fighting against here is someone's ego, or rather you are trying to debate a point of logic, but finding the ego shield is protecting the logical vulnerability. It can be hard to convince someone that you are in fact correct and that they have a made a mistake when they have already decided their superiority because they know oh so much more than you about: A)Graphical engines B)SCRUM C) The C++ spec D) Making flow charts.

These hardest cases are where the person DOES know a great deal about some area, but has some inability to understand a logical argument... so if you question the logic of "having skill X automatically translates to skill Y" ends up getting interpreted as "ZOMG you have questioned my skills, how dare you."

This is the single hardest skill I think a programmer will ever had to learn. It is especially hard for a programmer because we tend to be poor at diplomacy, especially in the face of illogical arguments. Nothing in school will train you for this, and it really only tends to happen once you hit the mid and senior levels.

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

Modularity and abstraction.

This is something far too many PHP web developers just do not 'get'. There is something to be said for black-box isolation of APIs. Too much code does everything from assembling HTML to sending SQL to the database on the same page. Bad. Wrong. Doesn't scale.

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

Until I got my head around it, the declarative nature of PROLOG was a complete left turn from anything I'd touched up to that point. It took me weeks to realise what was going on until - <SNAP> - a light finally turned on.

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

Threads.

I never knew what was happening.

Later everything came clearer.

Later I understand, I should not do threads but leave all to the application server :)

link|flag
vote up 10 vote down

Stifling my instinct to reformat or rewrite legacy code as I work through it. It's far more productive (and less error-prone) to add a few judicious comments that explain the epiphanies along the way.

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

To strike the word 'easy' from my vocabulary.

"Yeah, I can do that, that'll be easy!"

link|flag
vote up 9 vote down

Object Oriented Design (and programming)

When I was just starting, I had a really hard time with it. Actually, I couldn't grok it until a really good prof explained it to us.

link|flag
vote up 9 vote down

The hardest thing I learned was to resist the temptation to just jump in and start coding. Every hour you spend designing and thinking beforehand probably saves you a day in actual coding time.

link|flag
vote up 8 vote down

Techniques for effective debugging

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

XSLT. It requires holding multiple complex "plates in the air" all at the same time: a declarative/recursive program that is manipulating (at least) two document structures, at least one of which is usually hierarchical.

It's hard to write, even harder to read, and not conducive to standard debugging techniques.

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

Continuations (and call/cc).

Total nightmare to wrap your head around. For those who are not aware of call/cc... it's sort of like a mathematically sound GOTO with no side effects.

I.e., it is a riddle, wrapped in a mystery, inside an enigma.

link|flag
vote up 5 vote down

C++ template metaprogramming.

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

Monads.

First exposure is ok, then you try to explain it to someone else and can't do anything but go reread the papers.

Then you discover STMs and wonder why people are still playing with locks and threads manually. Computer science is still in the stone age... :)

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

Setting up a large, existing project in Eclipse (or any IDE) so that it will (a) build and (b) allow debugging (inside the IDE for both).

I dislike configuration: I don't have the patience for it and it seems the only way to get experience is to repeatedly fall down flights of stairs. There are no university classes; there are few books. Pair-programming helps greatly here.

I have learned to do it but back in the day (2002-03?) it was the bane of my existence. To this day, I will help you with anything I can, but please don't ask me to set you up with Eclipse.

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

The hardest thing relating to programming is finding adequate documentation. I usually know what I want to do, and have a general idea on how to implement it, but finding the details through documentation very seldom works.

link|flag
vote up 3 vote down

Writing your entire program as an expression; which is essentially what a functional language like Scheme or Lisp demands. After that would be identifying the resources that need to have thread contention protection. I would say debugging deadlocks in threaded applications, but there seems to be so much variety in what can go wrong that I always learn more while debugging.

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

SQL. Hands down.

C#, C++, C, Clipper, x86 Assembly, Javascript were easy compared to SQL. I guess it was hard to change my mind from procedural languages to a set-based language.

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

Network programming (in both C++ and Java). Maybe just because it's tedious, but it seems like 50% of the code is either detecting or recovering from an error condition.

link|flag
vote up 3 vote down

Functional Programming - Recursion, I'm finding that I have to constantly re-factor code to improve it. It has made force me to think in a new paradigm which is a challenge.

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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