vote up 50 vote down star
38

What was the single thing you learned (either in classes or during work) that felt most like scales falling off your eyes?

For me, it was a lecture about microcode, because that filled the gap of understanding between electrons flowing through transistors to form logic gates, and assembler programming. It finally made me feel that I understood completely how a computer works, on all levels.

Related question: What is the single hardest programming skill or concept you have learned?

flag
show 1 more comment

80 Answers

1 2 3
vote up 106 vote down

When I stopped listening to the lecturer telling me to think of data objects as "like cars, made of components" and started thinking of them as custom data types with their own commands. Suddenly I could program Java.

link|flag
1  
+1, Many Interface tutorials use the Car metaphor as well. Interface Car, Class Ford : Car, Class Mazda : Car. Why would I create a class for each individual brand. Completely screwed up my understanding of interfaces – TT Dec 5 '08 at 13:44
2  
Can anyone cite any articles, blogs, etc. that expand on thinking about objects in terms of custom data types? As someone new to OOP this concept makes a lot more sense to me and it'd be nice to see some tutorials that taught OOP this way. – vg1890 Dec 9 '08 at 18:03
show 6 more comments
vote up 63 vote down

Humility. Going into my first 9 to 5 development job, about twelve years ago, thinking it was going to be a cakewalk and quickly getting put in my place. It is the realization that knowledge is not the same as experience.

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

I think the first time I realised "Wow, the computer does whatever I tell it!", followed by the first time I realised "Oh, it really does exactly what I tell it, not what I want it to do."

That and, like you, when I realised I had learnt enough to have a rough idea of how a computer works, all the way from electrons to user interfaces. I find having the understanding of the levels below the one you are working on to be very helpful, especially when things don't happen as you expect - you are then able to reason about it from first principles and often work out why the machine is doing what it's doing. Knowing how the computer works down to physical processes also helps to reinforce that it's a machine and prevent one from anthropomorphising it - intentionally or otherwise.

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

Pointers.

Once I figured out how to use a location, rather than the contents of a location, a lot of things became clearer to me.

link|flag
1  
In what way? I'm curious as to the meaning of this. – anonymous Dec 5 '08 at 22:43
show 5 more comments
vote up 38 vote down

Recursion.

Specifically, when I learned in university that one could implement a path-finding algorithm with a simple recursive function. I'd previously thought it was only useful for things like computing factorials.

It completely opened my mind.

link|flag
1  
To understand recursion, you must first understand recursion. – Dave Markle Dec 6 '08 at 15:25
5  
To understand recursion make sure you have a terminating case. – Eugene M Dec 8 '08 at 20:42
2  
And the sad thing is that although everyone sees his/her first recursion when professor says "you can make factorial in it", it's actually completely inappropriate to use it for something for which FOR loop is designed, and real usages are seen much later – Slartibartfast Jan 20 '09 at 16:59
show 1 more comment
vote up 27 vote down

Work.

Once I started working, applying my theoretical knowledge, I realised how little I knew about the important things in this business.

For example, being a DB wiz means nothing unless you have the skills to extract the real requirements from a client, and ignore what he has scribbled on the back of a fag packet.

Another example is when I learnt that just because I've done Task X a million times and have considered all the expected consequences, I should still take a backup; I found out just how many unexpected consequences there could be, and how incredibly likely they are to occur. A senior colleague once told me: 'Never take a step forwards unless you are reasonably confident that you can take the same step backwards'.

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

Functional Programming. Doing Miranda and Haskell changed the way I think about programming and solving certain kinds of problem.

Using my second programming language (Fortran -- don't laugh) also opened my mind.

link|flag
vote up 21 vote down

I have to say, top of the list has to be function pointers in C.

I'd missed the class and copied the notes from a friend. I wrote an example and fireworks went off in my head, suddenly it occurred to me - all at once - just how incredibly powerful they were, with these you could write ANYTHING. Compilers, operating systems etc. it completely changed how I looked at code, and in my mind made everything achievable.

Later that year I implemented a project using what I now realise was a primitive form of Polymorphism. It took less than a quarter of the code the rest of the class used. All thanks to (deep announcers voice) the power of Function Pointers.

Years later - after learning some OO - on the job I was introduced to UML and Design patters. Again suddenly I had a vocabulary that allowed me to communicate all the cool ideas I was having e.g. Instead of saying

  • "What we need is a thing and you'd have a couple of different ones, but like you'd only be using one at a time and what it does is create the specific objects for you and don't worry it'll be fine I know what I'm talking about"

I could say

  • "We need a Factory"

and everyone would know what I was talking about (and if not, I'd hand them my design patterns book, and they could RTFM)

link|flag
vote up 20 vote down

Polymorphism - suddenly Object-Orientation made sense!

link|flag
vote up 18 vote down

GIT

has changed the way I see and do my work more than any other tool. No longer understanding version control as a backup tool and having the whole power of an own repository at hand is very enlightening:

  • Being able to do everything in private - even large changes over a large number of patches without anyone even have a chance to see your stupid mistakes
  • If in doubt add one more branch
  • Move patches and branches around like Lego bricks
  • Do not only decide how the code looks like but also how the history looks like
  • Have a line by line control what of the changes actually makes it into the commit
  • reorder, rebase, squash and split patches with ease
  • have a set of damn powerful tools that build on the basic version control functionality

While the learning curve is a bit steeper than those of other tools the view from the top is much better.

link|flag
1  
But you will get so much better if everyone sees your stupid mistakes! – PeterAllenWebb Oct 25 at 23:21
vote up 12 vote down

"Wow, can I make my own class!?!!?"

link|flag
2  
Especially after having them show up in Intellisense, just like the "real" built-in classes. – IceHeat Dec 5 '08 at 20:06
show 1 more comment
vote up 12 vote down

"A computer can't do anything complicated, it can just do simple things lots of times fast." That was a big starting point for me in programming.

Also recursion, which although I learned about it right at the start I found I needed to go back over and learn in more depth as the rest of my programming got better. From time to time I realise it's time for me to go and relearn recursion, which although...

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

When I needed to solve a problem and realized I could do it with a program.

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

Storage. Once it actually twigged that each bit of data actually needed to live somewhere, in memory or on disk, and not just mysteriously exist somehow, things fell into place, programming wise.

link|flag
vote up 9 vote down

When I read how LISP works.It was beautiful

link|flag
vote up 9 vote down

Realizing that there are unsolvable problems. And then, realizing that one can approximate solutions to these problems.

link|flag
vote up 9 vote down

My moment was when I was reading the S&ICP book: I realized that lambdas in the presence of closures allow you to implement any data structure you like. Suddenly, cons, car and cdr were not the essence of Lisp, as we were taught back in Russia. Lambda was.

(not that this affected my day-to-day C++ slug, but it was beautiful)

link|flag
vote up 9 vote down

When I understood that data and instructions were both just bit patterns in storage, and that what happened with them depended totally on what process was interpreting those bit patterns. The eight bit byte 00110000 (hex 30) could be a 6502 branch on minus opcode or the ASCII code for digit 0 or the number 48. etc.

link|flag
vote up 7 vote down

I learned to program early on - probably when I was 12 back in 1987. I just kept programming and writing little things that suited my purposes or studies. I'd never considered myself an actual developer until at one point during a co-op term it suddenly occurred to me that professional programs (Word / Lotus 123 / Doom) all worked by using the same ints and float variables I was using, and that I actually was a developer.

I remember the thought struck me so hard that I stopped and said 'huh.'. For me, that's a massive emotional outburst.

link|flag
vote up 7 vote down

When I realized that code and data were the same thing. It's all bits and code can be manipulated just like any other data.

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

The most important thing I ever came to understand as a programmer is that it is universally my fault when my code behaves incorrectly. Even in the few cases where it is not my fault, it's still probably my fault.

link|flag
vote up 6 vote down

"Hello World!"

link|flag
vote up 6 vote down

Computer Science is not about digital computers and it is not a science.

It was said a long time ago. But most programmers don't get it.

Our design of this introductory computer-science subject reflects two major concerns. First, we want to establish the idea that a computer language is not just a way of getting a computer to perform operations but rather that it is a novel formal medium for expressing ideas about methodology. Thus, programs must be written for people to read, and only incidentally for machines to execute. Second, we believe that the essential material to be addressed by a subject at this level is not the syntax of particular programming-language constructs, nor clever algorithms for computing particular functions efficiently, nor even the mathematical analysis of algorithms and the foundations of computing, but rather the techniques used to control the intellectual complexity of large software systems. SICP

link|flag
2  
"Thus, programs must be written for people to read, and only incidentally for machines to execute." Try telling that to the compiler! – Earwicker Dec 6 '08 at 8:48
show 5 more comments
vote up 6 vote down

Deterministic finite state automata and the realization that there is a direct transformation that goes from a drawing with circles and arrows to logic gates - this was the zen moment of knowing that software and hardware are one.

link|flag
vote up 5 vote down

CPU insfrastructure and machine organisation. How did the bits get from memory and into the CPU and what happened during their execution. Understanding that was a turning point for me.

link|flag
vote up 5 vote down

Digital Logic Design class... The professor said an XOR and AND gate was a universal set. In other words, you could build any computer from a combination of them. Pretty mind-blowing! :)

link|flag
1  
NAND alone is sufficient, but XOR + AND is also universal – Kim Dec 28 '08 at 10:58
show 1 more comment
vote up 5 vote down

Hashing. When I realized that I could use a mathematical transform of a key to pick an index in O(1), and that I could get constant time storage and retrieval I wanted to store EVERYTHING in a hash table!

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

Starting out: GOSUB. Wow! you can REUSE bits of code in your program?

At Uni: The Universal Turing Machine. A realisation of how simple computers fundamentally are.

Work : More difficult to pick one thing out, but possibly finally grasping the implications of apply-templates in xslt.

link|flag
vote up 4 vote down

Probably in work and working with people. I think the hardest thing ever is to work with people in a group and modifying a pre-existing code within a tight deadline. In school, all we were taught is, "Make a student register application" and then it only taking 100 lines and rarely give any insight to large scale applications/maintenance and working with groups.

link|flag
vote up 3 vote down

Realizing that what you produce lives longer than you think - which is a nice way of saying people a long long time from now will be dealing with what you write today.

I got a call in 2002 from someone at a company I left in 1989 pleading for help with a database application I wrote on a Sun workstation in C & UNIFY. It had since been ported to VAXen/INGRES and then to Windoes2000/SQLServer. They were STILL using it and trying to build a web app out of it!

link|flag
1 2 3

Your Answer

Get an OpenID
or
never shown

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