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.
|
31
|
|
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
What people say they want from a program != what people actually want from a progam |
|||
|
|
Regular expressions. |
||||
|
|
|
Breadth First Search and Depth First Search algorithms. |
|||
|
|
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. |
|||
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
Recursive algorithms, especially dynamic programming. |
|||
|
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
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? |
|||
|
|
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. |
|||
|
|
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). |
|||
|
|
|
|
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... :) |
|||
|
|
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. |
|||
|
|
|
|
Recursive functions. Although, after figuring the pattern out it has helped me to look at new problems from totally different viewpoints. |
|||
|
|
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). |
||||||||
|
|
|
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. |
|||
|
|
|
|
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. |
||||
|
|
|
More code != better |
||||||||||||||||
|
|
|
I second Unsliced on Prolog. |
|||
|
|
|
|
Techniques for effective debugging |
|||
|
|
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 - |
|||
|
|
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. |
||||||||||||
|
