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.
|
30
|
|
|
|
|
|
More code != better |
||||||||||||||||
|
|
|
humility (still working on it) |
|||
|
|
|
|
"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 |
|||
|
|
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. |
||||
|
|
|
Regular expressions. |
||||
|
|
|
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). |
||||||||
|
|
|
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. |
||||||||||||
|
|
|
What people say they want from a program != what people actually want from a progam |
|||
|
|
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. |
||||
|
|
|
Recursive functions. Although, after figuring the pattern out it has helped me to look at new problems from totally different viewpoints. |
|||
|
|
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). |
|||
|
|
|
|
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. |
|||
|
|
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. |
|||
|
|
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 - |
|||
|
|
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 :) |
|||
|
|
|
|
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. |
|||
|
|
To strike the word 'easy' from my vocabulary. "Yeah, I can do that, that'll be easy!" |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Techniques for effective debugging |
|||
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
C++ template metaprogramming. |
|||
|
|
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... :) |
|||
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
