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

prev 1 2 3
vote up 0 vote down

I don't think I've ever done anything harder than debugging someone else's assembly-language code when my starting point was a listing and a cheat-sheet of op codes and the only language I'd ever programmed in was BASIC. I got pretty good at it. I've built my entire career around not ever having to do anything like that again.

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

Regular expressions.

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

Breadth First Search and Depth First Search algorithms.

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

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

Recursive algorithms, especially dynamic programming.

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

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

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 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 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 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 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 30 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 '08 at 10:44
show 5 more comments
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 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
2  
grasping monads is enough to make your eyes water! – Mitch Wheat Nov 28 '08 at 10:13
show 8 more comments
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
2  
"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 '08 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 0 vote down

I second Unsliced on Prolog.

link|flag
vote up 8 vote down

Techniques for effective debugging

link|flag
show 1 more comment
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 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 '08 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
prev 1 2 3

Your Answer

Get an OpenID
or

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