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

vote up 3 vote down

Emacs

me: what's the key binding to commit a file?
emacs master: C-x v v
emacs master: you can list all the key bindings with C-h b

(10 seconds later after I typed my commit message)

me: what's the key binding to actually commit now?
link|flag
show 3 more comments
vote up 3 vote down

GridBagLayout

GBL code itself is hard enough. But then figuring out how to make it NOT look like ass was damn near impossible.

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

The whole C++/OOP thing.

I used to hate it, curse it, lose sleep over it, because EVERY program I had to write for my BSCS HAD to be in C++ unless the course was specifically for another language.

BUT, once I finally got my head around it, I loved it, sang its praises, and wondered how I ever wrote decent code in any other language.

And everything I had to learn since then has been easy by comparison. ;)

link|flag
vote up 3 vote down

Simplicity, by a large margin.

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

I would say it's a toss-up between floating point arithmetic (truly comprehending how IEEE-754 works), and theoretical verification (especially of parallel algorithms). But, if I had to pick, I'd probably go with verification.

link|flag
vote up 2 vote down

Breadth First Search and Depth First Search algorithms.

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

Several people have already mentioned multi-threading and thread safety. Although I find these disciplines difficult, the real hard stuff for me is finding ways to TEST multi-threading and thready safe code. In the comfort of a sandbox/sample program forcing these situations to occur is only a little harder than trivial; but in a real, otherwise working application I say "Pshaww!" and "That's hard".

link|flag
vote up 2 vote down

Writing easily readable, clear code and not trying to be too clever. So much easier on others and yourself when you have to fix a important bug under time pressure.

Testing is another thing. Never push something that can not be tested. I've once held off a 1 line code change for a couple of weeks as the edge case was pretty difficult to reproduce (needed things to have a particular data happening with a set of other conditions). Better to wait than push out untested code.

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

Makefiles

More specifically understanding other peoples obscure Makefiles

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 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

The very hardest part overall was probably when I was 15 or so and was trying to understand the concepts behind BASIC variables on my TRS-80 so that I could interact with hand-coded assembly routines I was fooling with.

Figured out pointers, reference counting and memory allocation all in one week with no help except for a z80 assembly reference book (Nobody I knew had a computer in '78, and there were no "For Dummies", by reference book I'm talking no examples--just bitecodes, register descriptions and electronic signaling.).

When I came to C like 10 years later, pointers were trivial and obvious.

Everything else--inserting bitfields into assembly operations, converting them to integer values so they could be poked into memory, ... was just fun.

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

Recursive algorithms, especially dynamic programming.

link|flag
vote up 1 vote down

I'd say designing programs; that it, which code goes where, what should be static, what should be an abstract class, what should be an interface, how it al fits together etc.

I think it's a difficult thing to learn, and comes with experience.

link|flag
vote up 1 vote down

quaternions. super cool stuff once you grok em

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

ClearCase. Specifically it was difficult to restrain my homicidal urges while using it as a source control system.

link|flag
vote up 1 vote down

APL. Brrrrr

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

Linked lists in C++

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

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

To have patience.

link|flag
vote up 0 vote down

I second Unsliced on Prolog.

link|flag
vote up 0 vote down

C pointers were always a pain for me. I've been able to figure out how to use them, but I find that whenever I take some time away from C, I need a refresher on pointers when I come back to it.

link|flag
vote up 0 vote down

Formal lexing and parsing techniques are the most difficult concept to master that I have actually used in the practice of day-to-day programming in a normal software shop. Being able to create and parse a simple language of your own design can often be a life-saver in terms of long-term productivity, but can also be a royal pain in the ass if you don't know what you're doing.

link|flag

Your Answer

Get an OpenID
or

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