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
|
|
|
|
|
|
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 :) |
|||
|
|
|
|
Makefiles More specifically understanding other peoples obscure Makefiles |
|||
|
|
|
|
The different structures of $_POST['files'] data and a regular, normal, god-fearing PHP array. |
||||
|
|
|
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) |
|||
|
|
|
|
Target compiling in Forth. |
|||
|
|
|
|
Linked lists in C++ |
|||
|
|
|
|
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 ;-) |
|||
|
|
|
|
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." |
|||
|
|
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. |
|||
|
|
|
|
To strike the word 'easy' from my vocabulary. "Yeah, I can do that, that'll be easy!" |
|||
|
|
|
|
Functional Programming. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Fast Fourier Transforms. For whatever reason my head didn't want to wrap itself around those for the longest time. |
|||
|
|
|
|
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." |
|||
|
|
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. |
|||
|
|
|
|
To have patience. |
|||
|
|
|
|
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. |
|||
|
|
|
|
the hello world application |
|||
|
|
|
|
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. |
|||
|
|
