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

prev 1 2
vote up 3 vote down

Code generation. Back when giant sloths dug up our network cables, and saber-toothed tigers ate the repairmen, I worked in IBM 370 assembler language, and we had to write programs that would write programs that would emit programs that would do things. I took a long time to get that thing working, and wasn't confident of the results.

Then, a long time later, I learned Lisp, and ran into the DEFMACRO. With that and the backtick notation, it was real easy to generate code. Except that it was, and is, difficult to do it correctly.

I think the easiest environment I've found is Perl's eval function, but that may be because I've never done anything ambitious with it.

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

Polymorphism was the trickiest of the big three OO concepts for me.

The literature I see today does a better job of illustrating it through analogy than when I first was learning it. Then moving on to the differences between inclusional and operational polymorphism. They seem simple now, but at the time, I didn't get it.

link|flag
vote up 4 vote down

APL - never did get it though! Never wanted to get it either...just needed to make it thru the class!

Here is an example of the syntax from wikipedia:

The following function "life", written in Dyalog APL, takes a boolean matrix and calculates the new generation according to Conway's Game of Life:

alt text

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

In college I had courses that used Pascal and C++ and the toughest hurdle back then was understanding pointers. I remember one of my instructors tried to help by comparing a pointer and data to a street address and a house. I understood the analogy but it never helped me when it came to actual practice, especially when dealing with multiple levels of indirection, which was often the case when working with pointers.

This was a problem for me until one semester I took a class in assembly programming/machine architecture.. it was then I started to really grok pointers and after that was able to deal with pointers and multiple levels of indirection fairly effortlessly, giving me the confidence to pursue a career in programming (first job was heavy C++/COM).

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

Regular expressions

link|flag
1  
+1. Regular expressions are great and do tons of work in a little space! But I may never be comfortable with the syntax. – Bernard Dy May 1 at 21:04
show 1 more comment
vote up 21 vote down

For me, the concept of "good enough" was (and still is) the hardest thing for me to deal with. While I want to produce the best possible code that is elegant, performs well, and meets all the requirements, sometimes you have to know when to draw a line in the sand and declare the release done.

Often things boil down to the holy trinity of software development: fast, cheap, quality where you only (generally) get to pick two of the three for any particular problem. Never forget the overall priorities of what you are creating.

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

That software doesn't have to be perfect in order to be released. Sometimes it is best to get something out there and in front of users.

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

That I am not the greatest programmer that has ever lived. I was a bit cocky when I finished college. In some respects I still am. However thanks to my Project lead and a coworker, they showed me that in fact I was not the greatest programmer through some very mean and spirited code reviews when I started my career fresh out of college.

From this experience I learned that there is always someone better out there. And once I stop trying to learn and understand, I have effectively become the worlds worst programmer. This is because the world of software development is always changing. Weather it is news ways of development or new practices. There is something that can make a software developer better. Yes, even if they program in COBOL.

I would take an intern that has the desire to learn over an experienced developer that no longer has the desire to learn.

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

Pointers was one, OOP was another, but the first one for me was recursion. I remember struggling and struggling with it, and thinking it was so stupid...

And then suddenly, I got it.

It was a total flash of insight or divine understanding, and I switched to wanting to do everything recursively. ("When you have a hammer...")

It's also one of the examples I show "non-programmers" (who happen to be scripters -- like html designers) when I'm showing them how interesting programming can be.

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

In the very early days, pointers in C. Once you truly grok that though, you get a significantly better insight into the way the hardware works, and you're good to go.

A good understanding of C helped me so much. You listening, Jeff? ;-)

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

Asymmetric encryption took me a while to grasp.

link|flag
vote up 18 vote down

Multithreaded Programming..

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

I guess pointers and memory. OK, that's two.

I got through it by being compelled to solve college programming problems that involved both.

link|flag
1  
Having taught programmers, I know there are a series of "speed bumps", and those are definitely along the way. – Mike Dunlavey May 2 at 1:35
vote up 3 vote down

Aligning expectations. The only way to address that is communication, clarification (if needed) and reiteration.

link|flag
vote up 13 vote down

Monads. (Not that I understand more than 5% of them.)

Looking at how they enable to fake imperative programming and how that in turn makes STM possible helped.

link|flag
vote up 10 vote down

User Interface Design - Over time realizing that not everyone thinks like a programmer!

Test Driven Design - I read a lot of books/blogs and practiced.

link|flag
vote up 13 vote down

The ASP.Net page lifecycle.

Especially with relation to dynamic controls.

There are no skills that can help you here. You must get down into the trenches and wage war with it, day in and day out for months, until it finally lodges into your brain.

link|flag
6  
>>until it finally lodges into your brain or until you move to asp.net mvc – Pablote May 1 at 23:45
1  
+1 - The WebForms abstraction is painfully leaky. My favourite hole is the ordering of Master page events before Page events. That can make it difficult or impossible to put common code in Master pages, so you end up with your Pages both inheriting from classes to compose common code, and using Master pages to compose common layout. I find that as soon as dynamic controls came on the scene blood starts pouring uncontrolled out of my ears and nose. – Alex May 2 at 1:20
show 2 more comments
vote up 1 vote down

logs in college algebra, they just didn't make sense.

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

The switch to object orientation (yeah, I'm an old timer)

link|flag
vote up 8 vote down

Object-oriented development. I learned it through a will to survive.

link|flag
show 7 more comments
prev 1 2

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