vote up 21 vote down star
9

And how did you understand it at the end? What kind of efforts and skills helped you solve it at the end?

Edit: Adding a list of the skills proposed in answers ( with popularity > 3)

  • Understanding humans
  • Understand when to stop development
  • learn it the hard way ( a lot of work )
  • realize that not every one thinks like programmer
  • program in school courses
  • learn older languages also ( C ?! )
  • communicate and clarify to align expectations
  • know how to say no and organize and prioritize problems and bugs
flag
2  
Could you make this a community wiki? (Edit --> check community wiki box --> save) – Daniel Lew May 1 at 20:49
1  
I disagree to the closing of this question as "not programming related". In my opinion, it is definitely about issues related to learning and tackling challenges as a developer. – Ola Eldøy May 5 at 9:26
1  
+1 for Ola. Actually this type of skills should be the first to teach to future programmers. E.g. if you know how-to learn you would be faster and more successful in learning. Everyone which claims to know this "too abstract" stuff does not realize that it is simply impossible - e.g. the claim itself is ridiculous ... – YordanGeorgiev May 5 at 11:35
show 2 more comments

closed as not programming related by Jason Coco, Geo, sth, cletus, Shog9 May 4 at 16:20

50 Answers

1 2 next
vote up 39 vote down check

People.

;)

[edit]

... and I'm not being facetious. Understanding humans is the most valuable software development skill you can have. After all, and I totally believe this, most software bugs arise from the requirements. If you can't understand your users' needs then you've set yourself on an uphill trek before you code a single ++

... and a further edit, you can do worse than try to empathise. I've read Adaptive Path's short book on design recently and I catch myself thinking about it in the context of software development all the time.

Preet Sangha contributed a great comment - 'people are hard, even the simple ones', even if it might be slightly harsh towards simple people (like me ;) ).

link|flag
4  
+1 for truth. Computer systems do not create bugs, programmers create bugs, requirement gathers create bugs, and managers create bugs. :) – Tony May 1 at 20:58
2  
+1 Computers are in essence simple (even the hard bits). People are hard even the simple ones. Esp. the simple ones. – Preet Sangha May 1 at 23:20
1  
@Preet ... 'people are hard even the simple ones' ... brilliant. I had to google the phrase ... no results. :) – Bedwyr Humphreys May 2 at 6:04
show 2 more comments
vote up 0 vote down

Web development. Moving from stateful fat clients to web-based thin clients was really difficult to get my head around. Of course, a lot of this was because I tried to learn it by reading articles that assumed you already knew about sessions and web server internals. Once I finally figured out that I could put things into the session in one call and retrieve it from the session in a subsequent call, things got much easier! I did, however, develop god-like cookie encoding sk1llz... :)

link|flag
vote up 2 vote down

Multithreading for sure :(

link|flag
vote up 1 vote down

Learning to edit with Vim was pretty tough at first. Fortunately I had some spare time that summer, I read the docs and tutorials, chatted with friends, and on the irc.freenode.net channel.

Once I got the basics down I found I could edit faster than with a conventional editor, and every extra trick I learned since then is a bonus!

I wouldn't recommend it for everyone, but if you are interested in using a "power" editor, be prepared to make some initial investment before reaping rewards.

As for Support Vector Machines, I never did manage to understand them.

link|flag
vote up 2 vote down

That I wanted to be a software developer more than I wanted to be a writer.

I grew up believing I wanted to be a writer. All through the first decade and a half of my career in software, I felt like programming was just something I was doing to pay the bills while I wrote in my free time. In the mid-90s, I finally achieved my goal: I wrote a column for the San Francisco Chronicle. I wrote articles for Wired and New Scientist. I even got paid - a lot, really, though anything at all would be more than most - for writing fiction for a web site.

And I really didn't like it. This was a hard pill to swallow. The actual feeling of sitting down and finding something to say was painful. If there wasn't a looming deadline, I didn't do it. If there was a looming deadline, my life became a misery of half-finished sentences and sleepless nights. I completely went to pieces when I was in the late stages of finishing a piece. It was horrible.

It was certainly great to have written. Writing for the newspaper could be wonderful. It was a pretty remarkable feeling to be in a cafe and hear people discussing ideas that I'd just finished putting into words the night before. And writing for magazines meant that I got to sit down and play with robots with Will Wright, interview Pattie Maes about virtual dogs, hang out with the smartest guy I've ever met (Bob McHenry, general editor of the Encyclopedia Britannica) and talk to Richard Garfield about the genesis of Magic: The Gathering. I was invited to an ultra-special and extremely expensive "gathering of the digital elders," which was eleven different kinds of wrong. (I was invited in my capacity as a digital elder. Seriously. A lot of weird things happened in the first Web bubble.)

But it was just awful work, getting stuff out of my head and onto the page. Meanwhile, I still paid the bills by developing software, and it gradually dawned on me that I actually liked developing software. And that I didn't really like writing.

I spent the next 15 years approaching my work with what Thomas Lux once called "a positive condescension." The nagging feeling that I was missing something by working in software was gone. I ended up getting really good at it.

link|flag
vote up 1 vote down

The difference between pointers and references.

link|flag
vote up 2 vote down

Prolog and logical programming. The way through it? Think of it this way: your Prolog programs are trees, the rest is just depth-first search.

Prolog is an absolutely mind-bending way to write code, but once you get good you can do some amazing things.

link|flag
vote up 1 vote down

cross domain single sign on

link|flag
vote up 2 vote down

Developers with 10 years of experience who write things like :

if (url.find("http://www.oursite.com/page.jsp?value1=1&value2=2.... ")== -1){
 ...
}
else if ((url.find("http://www.oursite.com/page.jsp?someothervalue=A&someothervalue=b.... ")== -1){
 ..
}
else if (

... }

You get the idea. I am not making this up.

Them, and the people that hire them.

link|flag
vote up 2 vote down

That communication is as important as the technology that I work with.

link|flag
vote up 3 vote down

The concept of picking my battles. To solve some problems/issues/bugs now, and some others later.

Sometimes the choice is mine, sometimes it's a task I'm assigned.

As a person I like making myself useful and solving peoples problems, so I quickly become a "go to" guy in any office for fixing those small problems that won't take a lot of time but just haven't gotten done for a long time. Learning to say no and to organize and prioritize problems and bugs has been a long hard climb, so far.

I have to say, during this I've grown to really appreciate the work that project managers and senior workmates can do. If good people are in those positions, it really makes my life easier.

link|flag
vote up 3 vote down

Continuations.

link|flag
vote up 3 vote down

I think what did it for me was when I realized the other people in the room didn't know more than I did. They may have had an understanding of different things, but I knew as much as they did (or in some cases more). I'm not trying to be cocky or anything. For a long time I was always under the impression that everybody else knew more than I did, so I just hung back. It was when I realized that I had as much to contribute as everybody else that things really turned around for me.

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

Dynamically allocated memory with malloc and free. I couldn't get my mind around the idea that there were mutable locations ("variables") that had no names.

link|flag
vote up 1 vote down

The benefit of using callback functions (and implementing them in C). I still have a hard time using them in every day problem solving. Sometimes I wonder if they are as useless as recursive functions.

Sometimes it helps to explain others the concept you are trying to learn. But with callback functions it didn't work. I guess when I make my first program were I use callback functions by myself, then I will really understand this concept.

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

Writing, then knowing how to explain what I'm doing to another developer. I guess my most difficult concept to grasp is called "communication".

link|flag
vote up 2 vote down

A way to get rich without discarding the heart of programmer

I still couldn't think of the solution but I will definitely let you guys know ;-)

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

Pointers vs References in c++ and when to use one over the other.

It took discussing with other developer and research aka "Google" to comprehend.

link|flag
vote up 3 vote down

Unification: a concept used when constructing mechanical theorem provers in Artificial Intelligence. The explanation/description of Unification seems simple enough that it seems, at first, to be pretty straightforward. When you try to actually do it, though, it turns out to be surprisingly hard.

link|flag
show 6 more comments
vote up 1 vote down

Volumes 1, 2, 3 of "The Art of Computer Programming". I bought the books because it is supposed to be the ultimate reference for all things programming... I'm still frustrated that after 25 years I've never referred to it.

link|flag
vote up 0 vote down

For some reason, the thing that keeps coming to mind is trying to derive predicate calculus from first principles, not having actually studied it or anything, during the GRE Subject Test in Computer Science.

That test was freakin' hard, yo.

link|flag
vote up 1 vote down

Concurent debugging and to keep my head cool during it!

link|flag
vote up 8 vote down

char **ptr

link|flag
1  
At the beginning of programming studies, it's a deal breaker for some. I was afraid it was going to be for me! In all of my programming years since, learning new technologies, learning lambdas and studying functional programming, learning SQL and LDAP and strange printer control languages, penetrating Microsoft patterns & practices docments--all have paled in comparison to those first nights of drawing boxes and arrows to understand a single, terse declaration. Everything since just melts away, is at some point understandable: it's all just boxes and arrows, ones and zeroes. – Nicholas Piasecki May 2 at 4:22
show 2 more comments
vote up 1 vote down

Politics

It's a bit like 'people', but tends to involve personalities and people trying to prove they are higher up than other people.

It's made even worse if the political people are, or used to be, technical as well!

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

1) EJBs. It was my first foray into remote calls. Finally one day it just clicked. I still don't have the different types of transations down, though.

2) Incomplete requirements. At first I just didn't understand why you couldn't, with enough time, get a complete set of requirements before the project started. This goes with the "People" answer that was already given.

link|flag
vote up 11 vote down

I agree, people.

Not just for requirements, either.

Somehow in the MIT AI Lab I picked up the habit of gratuitously insulting people outside of the "in crowd" for the things they did.

It took a stupidly long time, and a Dale Carnegie course, to learn that, Gee, if you insult somebody they might not be inclined to work with you.

link|flag
1  
@Bedwyr: Actually, I wasn't alone. That lab trained a lot of people who then wrote books and articles and trained a generation of teachers, who trained a lot of today's programmers. So it you search SO for "moron", "idiot", "smell", etc. I believe you are seeing that legacy. – Mike Dunlavey May 1 at 23:56
show 2 more comments
vote up 4 vote down

1) bosses and management and the way companies function. Specially in large but "flat" organizations. (read: design by committee)

2) understanding co-workers that are technology obsessed over some things (usually language or paradigms) that are totally irrelevant to both work and the problem at hand.

3) the primary problem is getting specifications about what should be done, that are not an unworkable Ivory Tower decree.

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

Initially, I have had some troubles due to the impedance mismatch between relational and object oriented worlds. Also, the SQL way of thinking in terms of sets.

link|flag
vote up 5 vote down

The Internet. It still boggles my mind how all the packets and signals can be routed so efficiently all the way around the world. I had no problem with things like pointers or OOP, but I still don't think I even have a clue how the Internet works.

link|flag
2  
Well you see, there is a series of tubes... dumptrucks, and ... etc – d03boy May 2 at 0:58
1  
@d03boy: Damn, where did that great quote come from? Was it some politician? – Mike Dunlavey May 2 at 1:42
show 2 more comments
vote up 1 vote down

The Adapter pattern

link|flag
1 2 next

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