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.
|
32
|
|
|
|
|
|
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. |
|||
|
|
|
|
Eloquence. |
|||
|
|
I haven't learned it yet. |
|||
|
|
|
|
Developing fast and believable artificial intelligence for games. I've been learning it for 15 years, and still learning. |
|||
|
|
|
|
Continuations. It was a real brain-twister to learn how continuations work in a language like Scheme. |
|||
|
|
|
|
Objective-C MVC apps for the iPhone. It's just weird. |
|||
|
|
|
|
One thing I still struggle with is the idea that programming is difficult. To me, it comes easy. That leads to some difficulty interacting with other programmers. I've been called arrogant, which I find ironic - in fact, it's a lack of self-esteem that sometimes leads me to believe that others simply aren't trying. After all, so my thinking goes, I'm nobody special, and I can do this - so why can't everyone? |
|||
|
|
|
|
Maybe not the hardest (it depends on the individual), but certainly the most important for me has been: Learning to visualise abstract concepts (OOP, set theory, concurrency etc) |
|||
|
|
|
|
Self-referencing Common Table Expressions. They seem so simple, but recursion in a set-based language like sql is much, much different from recursion in an iterative or functional language. |
|||
|
|
Not trying to build my support libraries too early. I've only recently figured out that you can't write the database-access abstractions or state-saving classes or whatever else until the second time you need to do that task. Only then will you be able to see enough of the general problem to know how to write a solution for it. |
|||
|
|
|
|
x86 segmented memory architecture. It doesn't help that FAR addresses are represented differently using asm/C. |
|||
|
|
|
|
Python tuples. I kid you not. There's been a long running holy war, with fanatical jerks on both sides, as to whether tuples are read-only lists. Well, they are. But that isn't just all they are. And that's what was tricky to me. Halfway through the argument, I realized that I had never needed a read-only list, yet I used tuples all the time. Sorting through that revelation helped me understand not only the "intended use" of tuples, but also why certain implementation details were or weren't like those of lists. It's Python, so I still reserve the right to use tuples as read-only lists, or lists as read/write tuples (as much as the implementation will let me), but now I understand why some uses are more natural than others. |
|||
|
|
|
|
"The Realm of the Final Inch" - when you think you are done there is still a whole lot to do ! |
|||
|
|
|
|
Target compiling in Forth. |
|||
|
|
|
|
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." |
|||
|
|
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. |
|||
|
|
|
|
How/When to just fix a bug without throwing out the current version of the code and starting over. |
|||
|
|
|
|
To do it in the simplest way. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Whilst not a programming language, being able to write mostly cross browser HTML & CSS. |
|||
|
|
|
|
Getting a non-trivial multi-threaded program to work properly with both no-deadlocks and good performance. |
|||
|
|
|
|
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. |
|||
|
|
|
|
The customer doesn't want clever or elegant code. The customer just wants to see his problem solved. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Pointers ! |
|||
|
|
the hello world application |
|||
|
|
