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

Admitting to a development team that you were wrong, and then having the courage to go back to the drawing board with them and start all over again.

link|flag
vote up 0 vote down

The customer doesn't want clever or elegant code. The customer just wants to see his problem solved.

link|flag
vote up 0 vote down

Although not typically considered a programming skill, I would say Logic, and how it applies to my programming on a daily basis. Not just the standard ways in which it is applied to computer science, but also logic in and of itself.

For example, Kurt Gödel's work on arithmetic logic and his theorems on incompleteness ("no useful system of arithmetic can be both consistent and complete") have huge implications and apply directly to work in programming, in my opinion.

link|flag
vote up 0 vote down

Getting a non-trivial multi-threaded program to work properly with both no-deadlocks and good performance.

link|flag
vote up -2 vote down

the hello world application

link|flag
vote up 0 vote down

Whilst not a programming language, being able to write mostly cross browser HTML & CSS.

link|flag
vote up 0 vote down

Learning to use other people's code, instead of coding my own version of software that does the same thing from scratch.

My first brush with Prolog also made me go crosseyed. Took me a while to get used to thinking backwards.

link|flag
vote up 1 vote down

To have patience.

link|flag
vote up 1 vote down

How video codecs work. Including DCT/iDCT transforms, quantization, zigzag scan, huffman coding, CABAC, motion estimation searches, not to mention rate control - single pass MB-based CBR is probably the hardest thing to get my head around. Once you understand these concepts you can understand most video compression algorithms, like the MPEG family or anything that is block-based and does quantization in the frequency domain.

link|flag
vote up 2 vote down

The hardest is Psychic debugging (Raymond Chen style) from clueless-user input :D Especially when internal, non-technical teams are involved as intermediaries.

Finding a probable cause to a problem linked to an interaction between your code and some hardware without any version/model information and two level of interpretations (customer and internal) of a cryptic error message is the hardest of the task... Finding what the original error message could have been being the hardest part.

But the day always shine when after a wild guess answer the customer come back with a simple "Thanks, that solved it."

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

Fast Fourier Transforms. For whatever reason my head didn't want to wrap itself around those for the longest time.

link|flag
vote up 0 vote down

Regular expressions continue to kick my butt. If I don't keep my head in regex on a regular basis I will forget whatever I learned the last time I was in it. Regex has the additional problem of once it's working right, I don't have to go back to it and use it again for a long time.

It's like taking 3 years of Spanish class, then not going to Spain to use it and make it fluent. Of course that statement, itself, could be applied to a lot of things in programming.

link|flag
vote up 0 vote down

To do it in the simplest way.

link|flag
vote up 0 vote down

How/When to just fix a bug without throwing out the current version of the code and starting over.

link|flag
vote up 0 vote down

Comments

Not the idea that you should comment your code, or that you shouldn't comment every single line. There is always an exactly right kind of comment, one that adds just enough explanation about why a bit of code does this or that so that it makes some sense.

Before I started reading other peoples code, I mostly used comments as inline documentation, explaining what the arguments were, what the return value was, what the function was supposed to do. Only code changes, and comments turn into lies.

When actually reading someone elses code, you will usually start by looking "what does this actually do" because when you tried to use it, it didn't quite work the way you expected, so you read carefully what it does in the particular case you're interested in.

95% of the time, if the code is concise, uses meaningful identifiers, is well factored, you never needed to look at the comments to understand.

The first few times when that other code was just a bit too clever for me to grok by reading the source, and there was a comment there explaining the bit of cleverness, thats how I came to understand comments.

Now I use them for just that purpose. If I had to think hard about how to make something work, like look up a formula, I'll document where that formula came from. If a bit of code seems sloppy as I'm writing it, or condenses much logic into few tokens, I'll leave a note explaining the reasoning behind it and why I excluded other choices.

In particular, I comment about the assumptions I make about the caller and the data they've sent.

link|flag
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 3 vote down

Functional Programming.
It's such a different approach to problem solving that I find it very difficult (but very valuable) to wrap my head around it.

link|flag
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 1 vote down

Model-View-Controller took me some time to fully understand, but hind-sight is 20/20. From the side of understanding, it's genius, and amazingly simple.

link|flag
vote up 0 vote down

C++ -- and I must admit that I gave up eventually. I can write complex code in roughly 30 programming languages and I learn a new one every year. I wrote OO programs in C long before people know what OO was but C++ ... ugh. As a friend of mine said: "To understand C++, you must be a C++ compiler".

That's way better than my comment: "C++ is the successful attempt to force developers to use every non-alphabetic character on the standard US keyboard in every single line of code."

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

Many potential candidates here. Writing a virus in assembly language as a teenager. It was hard because I had to deal with self changing code and stupid segments in x86 assembly, and because information was not as easily available as today. I had no internet, BBS or anything like that to access.

PS: I didn't write a virus that was spread, outside my own computer. It was just for the programming challenge ;-)

link|flag
vote up 1 vote down

Linked lists in C++

link|flag
vote up 0 vote down

Target compiling in Forth.

link|flag
vote up 2 vote down

Probably my biggest challenge was writing my own implementation of a database index using red-black trees in memory mapped files. I had to write my own memory allocator in order to to allow the removal of nodes as well.

I did have trouble grokking the concept of Object orientation when I first started programming when I got my first computer and taught myself C++. That was when I was 15 or so. (I had actually taken C programming classes before owning a computer)

link|flag
vote up 1 vote down

The different structures of $_POST['files'] data and a regular, normal, god-fearing PHP array.

link|flag
1  
if you're talking about the uploaded files they are in $_FILES not $_POST – Click Upvote Feb 11 at 21:32
vote up 2 vote down

Makefiles

More specifically understanding other peoples obscure Makefiles

link|flag
vote up 1 vote down

Mh, I can't really decide.

The first really akward things are Monads in Haskell. I think I finally began to understand them, because one of our professors told me about the concept in a totally different way ("Monads basically overload the ; and the = in Java").

The second really big step was to move from "Hey, I use class in my code, I am object oriented" to actually designing object oriented with concise objects that are told to do things. Python and its dynamic typing helped me a lot here.

The third big step was to actually understand the concept behind DSLs and thus starting to see where one could use them. This occured to me while pondering about Aspects (another candidate) and other advanced techniques to simplify programs.

One of those was the hardest concept to learn :)

link|flag
vote up 3 vote down

I know that nowadays everyone begins their programming education with OO - but when I started out OO was niche stuff. It took me nearly ten years from first exposure to actually applying it in a useful way.

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

APL. Brrrrr

link|flag
vote up 0 vote down

"The Realm of the Final Inch" - when you think you are done there is still a whole lot to do !

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.