What is the single hardest programming skill or concept you have learned? - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T14:49:18Zhttp://stackoverflow.com/feeds/question/167849http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned31What is the single hardest programming skill or concept you have learned?Jonathan Tran2008-10-03T16:56:10Z2009-10-10T17:56:27Z
<p>As a follow up to "<a href="http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-h">What is the one programming skill you have always wanted to master but haven’t had time?</a>", what is the single hardest thing related to programming — skill, concept, tool, language, etc. — that you <em>have</em> learned or mastered? Not necessarily <a href="http://stackoverflow.com/questions/146670/hardest-concept-to-grasp-as-a-beginner">as a beginner</a>, but all throughout your career.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167859#16785928Answer by Paul Tomblin for What is the single hardest programming skill or concept you have learned?Paul Tomblin2008-10-03T16:58:31Z2008-10-03T16:58:31Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167866#16786612Answer by Unsliced for What is the single hardest programming skill or concept you have learned?Unsliced2008-10-03T17:00:35Z2008-10-03T17:00:35Z<p>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 - <code><SNAP></code> - a light finally turned on. </p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167880#1678808Answer by EvilTeach for What is the single hardest programming skill or concept you have learned?EvilTeach2008-10-03T17:02:50Z2008-10-03T17:02:50Z<p>Techniques for effective debugging</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167884#1678840Answer by unforgiven3 for What is the single hardest programming skill or concept you have learned?unforgiven32008-10-03T17:03:16Z2008-10-03T17:03:16Z<p>I second Unsliced on Prolog.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167900#16790046Answer by Dan for What is the single hardest programming skill or concept you have learned?Dan2008-10-03T17:08:48Z2008-10-03T17:08:48Z<p>More code != better</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167903#16790325Answer by Jonathan Tran for What is the single hardest programming skill or concept you have learned?Jonathan Tran2008-10-03T17:09:38Z2008-10-03T17:09:38Z<p>For me, it was grasping monads in Haskell.</p>
<p>Looking back, part of the reason is because the pattern it embodies is so abstract. Different examples of monads are seemingly completely unrelated.</p>
<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167906#1679062Answer by Joeri Sebrechts for What is the single hardest programming skill or concept you have learned?Joeri Sebrechts2008-10-03T17:10:13Z2008-10-03T17:10:13Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167915#16791529Answer by Patrick McKenzie for What is the single hardest programming skill or concept you have learned?Patrick McKenzie2008-10-03T17:12:03Z2008-10-03T17:12:03Z<p>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).</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167920#16792021Answer by chills42 for What is the single hardest programming skill or concept you have learned?chills422008-10-03T17:13:16Z2008-10-03T17:13:16Z<p>Recursive functions.</p>
<p>Although, after figuring the pattern out it has helped me to look at new problems from totally different viewpoints.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167936#1679363Answer by Lance Roberts for What is the single hardest programming skill or concept you have learned?Lance Roberts2008-10-03T17:17:54Z2008-10-03T17:17:54Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167948#1679484Answer by blue.tuxedo for What is the single hardest programming skill or concept you have learned?blue.tuxedo2008-10-03T17:20:04Z2008-10-03T17:20:04Z<p>Monads.</p>
<p>First exposure is ok, then you try to explain it to someone else and can't do anything but go reread the papers.</p>
<p>Then you discover STMs and wonder why people are still playing with locks and threads manually. Computer science is still in the stone age... :)</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167978#16797821Answer by Ates Goral for What is the single hardest programming skill or concept you have learned?Ates Goral2008-10-03T17:26:30Z2008-10-03T17:26:30Z<p>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).</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168036#1680363Answer by dlamblin for What is the single hardest programming skill or concept you have learned?dlamblin2008-10-03T17:40:13Z2008-10-03T17:40:13Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168038#1680383Answer by Jonathan Tran for What is the single hardest programming skill or concept you have learned?Jonathan Tran2008-10-03T17:40:53Z2008-10-03T20:59:21Z<p>Emacs</p>
<pre>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?</pre>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168111#1681113Answer by Kluge for What is the single hardest programming skill or concept you have learned?Kluge2008-10-03T17:57:08Z2008-10-03T17:57:08Z<p>SQL. Hands down.</p>
<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168117#1681170Answer by Dana for What is the single hardest programming skill or concept you have learned?Dana2008-10-03T17:59:00Z2008-10-03T17:59:00Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168125#1681251Answer by Bill K for What is the single hardest programming skill or concept you have learned?Bill K2008-10-03T18:03:12Z2008-10-03T18:03:12Z<p>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.</p>
<p>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.). </p>
<p>When I came to C like 10 years later, pointers were trivial and obvious.</p>
<p>Everything else--inserting bitfields into assembly operations, converting them to integer values so they could be poked into memory, ... was just fun.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168126#1681261Answer by Christopher for What is the single hardest programming skill or concept you have learned?Christopher2008-10-03T18:03:43Z2008-10-03T18:03:43Z<p>Recursive algorithms, especially dynamic programming.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168147#1681473Answer by Bill the Lizard for What is the single hardest programming skill or concept you have learned?Bill the Lizard2008-10-03T18:09:42Z2008-10-03T18:09:42Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168156#1681564Answer by Michael Easter for What is the single hardest programming skill or concept you have learned?Michael Easter2008-10-03T18:12:53Z2008-10-03T18:12:53Z<p>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). </p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168163#1681638Answer by Chris Noe for What is the single hardest programming skill or concept you have learned?Chris Noe2008-10-03T18:15:35Z2008-10-03T18:15:35Z<p>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.</p>
<p>It's hard to write, even harder to read, and not conducive to standard debugging techniques.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168229#1682292Answer by RyanFetz for What is the single hardest programming skill or concept you have learned?RyanFetz2008-10-03T18:29:39Z2008-10-03T18:29:39Z<p>Breadth First Search and Depth First Search algorithms.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168258#16825832Answer by aardvark for What is the single hardest programming skill or concept you have learned?aardvark2008-10-03T18:35:59Z2008-10-03T18:35:59Z<p>Regular expressions.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168305#16830526Answer by Matt Lacey for What is the single hardest programming skill or concept you have learned?Matt Lacey2008-10-03T18:45:37Z2008-10-03T18:45:37Z<p>What people say they want from a program != what people actually want from a progam</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168312#1683123Answer by Brandon for What is the single hardest programming skill or concept you have learned?Brandon2008-10-03T18:46:58Z2008-10-03T18:46:58Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168318#1683180Answer by PeterAllenWebb for What is the single hardest programming skill or concept you have learned?PeterAllenWebb2008-10-03T18:47:36Z2008-10-03T18:47:36Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168376#1683760Answer by Robert Rossney for What is the single hardest programming skill or concept you have learned?Robert Rossney2008-10-03T19:00:55Z2008-10-03T19:00:55Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168390#1683902Answer by CrashCodes for What is the single hardest programming skill or concept you have learned?CrashCodes2008-10-03T19:03:00Z2008-10-03T19:03:00Z<p>Several people have already mentioned multi-threading and thread safety. Although I find these disciplines difficult, the real hard stuff for me is finding ways to TEST multi-threading and thready safe code. In the comfort of a sandbox/sample program forcing these situations to occur is only a little harder than trivial; but in a real, otherwise working application I say "Pshaww!" and "That's hard".</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/211116#21111633Answer by JB King for What is the single hardest programming skill or concept you have learned?JB King2008-10-17T04:56:12Z2008-10-17T04:56:12Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/211124#211124-1Answer by Vijay Dev for What is the single hardest programming skill or concept you have learned?Vijay Dev2008-10-17T04:59:52Z2008-10-17T04:59:52Z<p>Pointers !</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/211172#21117214Answer by David Frenkel for What is the single hardest programming skill or concept you have learned?David Frenkel2008-10-17T05:40:34Z2008-12-31T15:46:45Z<p>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.</p>
<p>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 <em>trying</em> 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. </p>
<p>These hardest cases are where the person <em>DOES</em> know a great deal about some area, but has some inability to understand a logical argument... so if you question the <em>logic</em> of "having skill X automatically translates to skill Y" ends up getting interpreted as "ZOMG you have questioned my <em>skills</em>, how dare you."</p>
<p>This is the <em>single</em> <em>hardest</em> 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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/211187#2111870Answer by Joran for What is the single hardest programming skill or concept you have learned?Joran2008-10-17T05:52:35Z2008-10-17T05:52:35Z<p>Eloquence.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/211212#21121213Answer by staticsan for What is the single hardest programming skill or concept you have learned?staticsan2008-10-17T06:17:42Z2008-10-17T06:17:42Z<p>Modularity and abstraction.</p>
<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/220628#22062836Answer by Steven A. Lowe for What is the single hardest programming skill or concept you have learned?Steven A. Lowe2008-10-21T02:59:24Z2008-10-21T02:59:24Z<p>humility</p>
<p>(still working on it)</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/220700#2207001Answer by Cocowalla for What is the single hardest programming skill or concept you have learned?Cocowalla2008-10-21T03:37:13Z2008-10-21T03:37:13Z<p>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.</p>
<p>I think it's a difficult thing to learn, and comes with experience.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/220712#2207123Answer by madlep for What is the single hardest programming skill or concept you have learned?madlep2008-10-21T03:46:04Z2008-10-21T03:46:04Z<p><a href="http://java.sun.com/docs/books/tutorial/uiswing/layout/gridbag.html" rel="nofollow">GridBagLayout</a></p>
<p>GBL code itself is hard enough. But then figuring out how to make it NOT look like ass was damn near impossible.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/245367#2453670Answer by Feet for What is the single hardest programming skill or concept you have learned?Feet2008-10-29T00:22:58Z2008-10-29T00:22:58Z<p>I haven't learned it yet.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/245396#2453960Answer by Gerald for What is the single hardest programming skill or concept you have learned?Gerald2008-10-29T00:34:53Z2008-10-29T00:34:53Z<p>Developing fast and believable artificial intelligence for games. I've been learning it for 15 years, and still learning.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/245397#2453970Answer by Barry Brown for What is the single hardest programming skill or concept you have learned?Barry Brown2008-10-29T00:35:09Z2008-10-29T00:35:09Z<p><a href="http://en.wikipedia.org/wiki/Continuation" rel="nofollow">Continuations</a>. It was a real brain-twister to learn how continuations work in a language like Scheme.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/260765#2607653Answer by CoderChick for What is the single hardest programming skill or concept you have learned?CoderChick2008-11-04T03:25:20Z2008-11-04T03:25:20Z<p>The whole C++/OOP thing.</p>
<p>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.</p>
<p>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.</p>
<p>And everything I had to learn since then has been easy by comparison. ;)</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/260786#2607861Answer by Scott Evernden for What is the single hardest programming skill or concept you have learned?Scott Evernden2008-11-04T03:36:13Z2008-11-04T03:36:13Z<p>quaternions. super cool stuff once you grok em</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/260791#2607910Answer by Michael Haren for What is the single hardest programming skill or concept you have learned?Michael Haren2008-11-04T03:39:19Z2008-11-04T03:39:19Z<p>Objective-C MVC apps for the iPhone. It's just weird.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/262611#26261135Answer by Huntrods for What is the single hardest programming skill or concept you have learned?Huntrods2008-11-04T17:29:32Z2008-11-04T17:29:32Z<p>"Do the simplest thing that will work".</p>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>-R</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/289023#2890232Answer by Arvind for What is the single hardest programming skill or concept you have learned?Arvind2008-11-14T01:57:34Z2008-11-14T01:57:34Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/289085#2890850Answer by Sherm Pendley for What is the single hardest programming skill or concept you have learned?Sherm Pendley2008-11-14T02:33:06Z2008-11-14T02:33:06Z<p>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 <em>lack</em> 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?</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/289089#2890895Answer by Martin Cote for What is the single hardest programming skill or concept you have learned?Martin Cote2008-11-14T02:35:55Z2008-11-14T02:35:55Z<p>C++ template metaprogramming.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/289102#2891021Answer by madlep for What is the single hardest programming skill or concept you have learned?madlep2008-11-14T02:44:26Z2008-11-14T02:44:26Z<p>ClearCase. Specifically it was difficult to restrain my homicidal urges while using it as a source control system.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/289150#28915010Answer by Adam Liss for What is the single hardest programming skill or concept you have learned?Adam Liss2008-11-14T03:16:37Z2008-11-14T03:16:37Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/289153#2891530Answer by jacko for What is the single hardest programming skill or concept you have learned?jacko2008-11-14T03:23:05Z2008-11-14T03:23:05Z<p>Maybe not the hardest (it depends on the individual), but certainly the most important for me has been:</p>
<p><em>Learning to visualise abstract concepts</em> (OOP, set theory, concurrency etc)</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/289155#2891550Answer by Rick for What is the single hardest programming skill or concept you have learned?Rick2008-11-14T03:25:54Z2008-11-14T03:25:54Z<p>Self-referencing <a href="http://msdn.microsoft.com/en-us/library/ms175972.aspx" rel="nofollow">Common Table Expressions</a>. 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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/322780#3227800Answer by Brent Royal-Gordon for What is the single hardest programming skill or concept you have learned?Brent Royal-Gordon2008-11-27T02:15:15Z2008-11-27T02:15:15Z<p>Not trying to build my support libraries too early.</p>
<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/322783#32278312Answer by Oscar Reyes for What is the single hardest programming skill or concept you have learned?Oscar Reyes2008-11-27T02:18:36Z2008-11-27T02:18:36Z<h1>Threads. </h1>
<p>I never knew what was happening. </p>
<p>Later everything came clearer.</p>
<p>Later I understand, I should not do threads but leave all to the application server :) </p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/322826#3228260Answer by Draemon for What is the single hardest programming skill or concept you have learned?Draemon2008-11-27T02:53:35Z2008-11-27T02:53:35Z<p>x86 segmented memory architecture. It doesn't help that FAR addresses are represented differently using asm/C.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/325226#3252260Answer by J.T. Hurley for What is the single hardest programming skill or concept you have learned?J.T. Hurley2008-11-28T07:34:49Z2008-11-28T07:34:49Z<p>Python tuples. I kid you not.</p>
<p>There's been a long running holy war, with fanatical jerks on both sides, as to whether tuples are read-only lists.</p>
<p>Well, they are.</p>
<p>But that isn't just all they are. And that's what was tricky to me.</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/325272#3252729Answer by hasen j for What is the single hardest programming skill or concept you have learned?hasen j2008-11-28T08:23:45Z2008-11-28T08:23:45Z<p>Object Oriented Design (and programming)</p>
<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/325288#3252883Answer by Thibaut Barrère for What is the single hardest programming skill or concept you have learned?Thibaut Barrère2008-11-28T08:31:38Z2008-11-28T08:31:38Z<p>Simplicity, by a large margin.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/325362#3253629Answer by Valerion for What is the single hardest programming skill or concept you have learned?Valerion2008-11-28T09:34:28Z2008-11-28T09:34:28Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/325386#3253860Answer by LenW for What is the single hardest programming skill or concept you have learned?LenW2008-11-28T09:47:39Z2008-11-28T09:47:39Z<p>"The Realm of the Final Inch" - when you think you are done there is still a whole lot to do !</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/343880#3438801Answer by n8wrl for What is the single hardest programming skill or concept you have learned?n8wrl2008-12-05T13:47:42Z2008-12-05T13:47:42Z<p>APL. Brrrrr</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/344005#3440053Answer by slim for What is the single hardest programming skill or concept you have learned?slim2008-12-05T14:38:11Z2008-12-05T14:38:11Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/344182#3441821Answer by Tetha for What is the single hardest programming skill or concept you have learned?Tetha2008-12-05T15:34:09Z2008-12-05T15:34:09Z<p>Mh, I can't really decide.</p>
<p>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").</p>
<p>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.</p>
<p>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.</p>
<p>One of those was the hardest concept to learn :)</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/396013#3960132Answer by RichK for What is the single hardest programming skill or concept you have learned?RichK2008-12-28T09:21:55Z2008-12-28T09:21:55Z<p>Makefiles </p>
<p>More specifically understanding other peoples obscure Makefiles </p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/396017#3960171Answer by Joseph for What is the single hardest programming skill or concept you have learned?Joseph2008-12-28T09:30:28Z2008-12-28T09:30:28Z<p>The different structures of $_POST['files'] data and a regular, normal, god-fearing PHP array.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/396024#3960242Answer by Chad Okere for What is the single hardest programming skill or concept you have learned?Chad Okere2008-12-28T09:35:33Z2008-12-28T09:35:33Z<p>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.</p>
<p>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)</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/449163#4491630Answer by Bill Drissel for What is the single hardest programming skill or concept you have learned?Bill Drissel2009-01-16T01:11:26Z2009-01-16T01:11:26Z<p>Target compiling in Forth. </p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/565900#5659002Answer by Binoj Antony for What is the single hardest programming skill or concept you have learned?Binoj Antony2009-02-19T15:41:10Z2009-02-19T15:41:10Z<p>Linked lists in C++</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/565935#5659351Answer by Adam Smith for What is the single hardest programming skill or concept you have learned?Adam Smith2009-02-19T15:49:16Z2009-02-19T15:49:16Z<p>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. </p>
<p>PS: I didn't write a virus that was spread, outside my own computer. It was just for the programming challenge ;-)</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/566046#5660460Answer by Aaron Digulla for What is the single hardest programming skill or concept you have learned?Aaron Digulla2009-02-19T16:16:26Z2009-02-19T16:16:26Z<p>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++ ... <em>ugh</em>. As a friend of mine said: "To understand C++, you must be a C++ compiler".</p>
<p>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."</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/566058#5660581Answer by Jonathan Sampson for What is the single hardest programming skill or concept you have learned?Jonathan Sampson2009-02-19T16:19:54Z2009-02-19T16:19:54Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/566070#56607010Answer by sjbotha for What is the single hardest programming skill or concept you have learned?sjbotha2009-02-19T16:21:39Z2009-02-19T16:21:39Z<p>To strike the word 'easy' from my vocabulary.</p>
<p>"Yeah, I can do that, that'll be easy!"</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/566071#5660713Answer by dw.mackie for What is the single hardest programming skill or concept you have learned?dw.mackie2009-02-19T16:21:57Z2009-02-19T16:21:57Z<p>Functional Programming. <br>
It's such a different approach to problem solving that I find it very difficult (but very valuable) to wrap my head around it.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/566149#5661496Answer by DanM for What is the single hardest programming skill or concept you have learned?DanM2009-02-19T16:40:33Z2009-02-19T16:40:33Z<p>Continuations (and <a href="http://www.madore.org/~david/computers/callcc.html" rel="nofollow">call/cc</a>).</p>
<p>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.</p>
<p>I.e., it is a riddle, wrapped in a mystery, inside an enigma.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/576072#5760720Answer by TokenMacGuy for What is the single hardest programming skill or concept you have learned?TokenMacGuy2009-02-22T23:29:02Z2009-02-22T23:29:02Z<p>Comments</p>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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. </p>
<p>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.</p>
<p>In particular, I comment about the assumptions I make about the caller and the data they've sent.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/576077#5760770Answer by Chris Ballance for What is the single hardest programming skill or concept you have learned?Chris Ballance2009-02-22T23:32:02Z2009-02-22T23:32:02Z<p>How/When to <strong>just fix</strong> a bug without throwing out the current version of the code and starting over.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/576106#5761060Answer by Ali for What is the single hardest programming skill or concept you have learned?Ali2009-02-22T23:47:03Z2009-02-22T23:47:03Z<p>To do it in the simplest way.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/576134#5761340Answer by Patrick for What is the single hardest programming skill or concept you have learned?Patrick2009-02-23T00:02:55Z2009-02-23T00:02:55Z<p>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. </p>
<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/576142#5761421Answer by acrosman for What is the single hardest programming skill or concept you have learned?acrosman2009-02-23T00:09:35Z2009-02-23T00:09:35Z<p><a href="http://en.wikipedia.org/wiki/Fast_Fourier_transform" rel="nofollow">Fast Fourier Transforms</a>. For whatever reason my head didn't want to wrap itself around those for the longest time. </p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/576151#5761512Answer by VirtualBlackFox for What is the single hardest programming skill or concept you have learned?VirtualBlackFox2009-02-23T00:16:44Z2009-02-23T00:16:44Z<p>The hardest is Psychic debugging (Raymond Chen style) from clueless-user input :D
Especially when internal, non-technical teams are involved as intermediaries.</p>
<p>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.</p>
<p>But the day always shine when after a wild guess answer the customer come back with a simple "Thanks, that solved it."</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/584695#5846951Answer by thomasrutter for What is the single hardest programming skill or concept you have learned?thomasrutter2009-02-25T04:14:27Z2009-02-25T04:14:27Z<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/704047#7040471Answer by jerebear for What is the single hardest programming skill or concept you have learned?jerebear2009-04-01T04:17:13Z2009-04-01T04:17:13Z<p>To have patience.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/704063#7040630Answer by Ominous Coconut for What is the single hardest programming skill or concept you have learned?Ominous Coconut2009-04-01T04:23:35Z2009-04-01T04:23:35Z<p>Learning to use other people's code, instead of coding my own version of software that does the same thing from scratch.</p>
<p>My first brush with Prolog also made me go crosseyed. Took me a while to get used to <em>thinking backwards</em>.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/704079#7040790Answer by alex for What is the single hardest programming skill or concept you have learned?alex2009-04-01T04:33:37Z2009-04-01T04:33:37Z<p>Whilst not a programming language, being able to write mostly cross browser HTML & CSS.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/704215#704215-2Answer by adi92 for What is the single hardest programming skill or concept you have learned?adi922009-04-01T05:48:39Z2009-04-01T05:48:39Z<p>the hello world application</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/704232#7042320Answer by Mark Goddard for What is the single hardest programming skill or concept you have learned?Mark Goddard2009-04-01T05:55:50Z2009-04-01T05:55:50Z<p>Getting a non-trivial multi-threaded program to work properly with both no-deadlocks and good performance.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/704251#7042510Answer by Reed Copsey for What is the single hardest programming skill or concept you have learned?Reed Copsey2009-04-01T06:05:34Z2009-04-01T06:05:34Z<p>Although not typically considered a programming skill, I would say <a href="http://en.wikipedia.org/wiki/Logic" rel="nofollow">Logic</a>, and how it applies to my programming on a daily basis. Not just the standard ways in which it is <a href="http://en.wikipedia.org/wiki/Logic%5Fin%5Fcomputer%5Fscience" rel="nofollow">applied to computer science</a>, but also logic in and of itself.</p>
<p>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.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/1548610#15486100Answer by Konamiman for What is the single hardest programming skill or concept you have learned?Konamiman2009-10-10T17:53:51Z2009-10-10T17:53:51Z<p>The customer doesn't want clever or elegant code. The customer just wants to see his problem solved.</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/1548621#15486210Answer by Kiffin for What is the single hardest programming skill or concept you have learned?Kiffin2009-10-10T17:56:27Z2009-10-10T17:56:27Z<p>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.</p>