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

vote up 14 vote down

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.

link|flag
show 1 more comment
vote up 0 vote down

Eloquence.

link|flag
show 1 more comment
vote up 13 vote down

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.

link|flag
show 3 more comments
vote up 36 vote down

humility

(still working on it)

link|flag
vote up 1 vote down

I'd say designing programs; that it, which code goes where, what should be static, what should be an abstract class, what should be an interface, how it al fits together etc.

I think it's a difficult thing to learn, and comes with experience.

link|flag
vote up 3 vote down

GridBagLayout

GBL code itself is hard enough. But then figuring out how to make it NOT look like ass was damn near impossible.

link|flag
show 3 more comments
vote up 0 vote down

I haven't learned it yet.

link|flag
vote up 0 vote down

Developing fast and believable artificial intelligence for games. I've been learning it for 15 years, and still learning.

link|flag
vote up 0 vote down

Continuations. It was a real brain-twister to learn how continuations work in a language like Scheme.

link|flag
vote up 3 vote down

The whole C++/OOP thing.

I used to hate it, curse it, lose sleep over it, because EVERY program I had to write for my BSCS HAD to be in C++ unless the course was specifically for another language.

BUT, once I finally got my head around it, I loved it, sang its praises, and wondered how I ever wrote decent code in any other language.

And everything I had to learn since then has been easy by comparison. ;)

link|flag
vote up 1 vote down

quaternions. super cool stuff once you grok em

link|flag
show 2 more comments
vote up 0 vote down

Objective-C MVC apps for the iPhone. It's just weird.

link|flag
vote up 35 vote down

"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

link|flag
show 3 more comments
vote up 2 vote down

Writing easily readable, clear code and not trying to be too clever. So much easier on others and yourself when you have to fix a important bug under time pressure.

Testing is another thing. Never push something that can not be tested. I've once held off a 1 line code change for a couple of weeks as the edge case was pretty difficult to reproduce (needed things to have a particular data happening with a set of other conditions). Better to wait than push out untested code.

link|flag
show 1 more comment
vote up 0 vote down

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?

link|flag
vote up 5 vote down

C++ template metaprogramming.

link|flag
show 1 more comment
vote up 1 vote down

ClearCase. Specifically it was difficult to restrain my homicidal urges while using it as a source control system.

link|flag
vote up 10 vote down

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.

link|flag
show 2 more comments
vote up 0 vote down

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)

link|flag
vote up 0 vote down

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.

link|flag
show 1 more comment
vote up 0 vote down

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.

link|flag
vote up 12 vote down

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

link|flag
vote up 0 vote down

x86 segmented memory architecture. It doesn't help that FAR addresses are represented differently using asm/C.

link|flag
vote up 0 vote down

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.

link|flag
vote up 9 vote down

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.

link|flag
vote up 3 vote down

Simplicity, by a large margin.

link|flag
vote up 9 vote down

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.

link|flag
vote up 0 vote down

"The Realm of the Final Inch" - when you think you are done there is still a whole lot to do !

link|flag
vote up 1 vote down

APL. Brrrrr

link|flag
vote up 3 vote down

I know that nowadays everyone begins their programming education with OO - but when I started out OO was niche stuff. It took me nearly ten years from first exposure to actually applying it in a useful way.

link|flag
show 2 more comments

Your Answer

Get an OpenID
or

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