vote up 45 vote down star
37

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

78 Answers

vote up 1 vote down

I was writing a small C++ program for a data structures class in college (using a DOS version of Borland). I had gone through a few iterations, but by now I understood exactly what it was doing. It was so simple, there was NO WAY it couldn't work... except that it didn't!

Stepping through the debugger, I watched it jump to some "random" line of code "for no reason at all". At my wit's end after watching it do this 10 or 15 times, I rebooted the PC and ran the program again. It worked fine! Hmmm... Guess I should've paid more attention to all those lessons about pointers and needing to be careful about accidentally venturing past the end of your arrays!

link|flag
vote up 0 vote down

I had started windows programming with MFC but concept of Windows (parent, child, sibling etc.) was not very clear to me. It may seem very weird but as soon as I read about GetDlgItem function, everything became clear :-). Suddenly reading MSDN become my favorite hobby.

link|flag
vote up 0 vote down

Data Structures.

When I learned all of the common ones I realised that a lot of the code I had made could have been done a lot better. Although when I learned all of that stuff it was during my first year of University, so I wasn't exactly an expert by that stage. Before learning about linked lists, I was doing silly things like creating very large arrays, and simply hoping that the array won't ever be exhausted.

Now when I see a problem, I have a much clearer idea of how the data should be stored and accessed, along with the speeds of each implementation.

link|flag
vote up 2 vote down

when i realized that there is much more to computer programming than writing compilers and assemblers...

link|flag
vote up 0 vote down

Learning Smalltalk, in my concrete case Squeak.

link|flag
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 3 vote down

The most profound thing I learned going for my Bachelor's in CS came during my AI class, when I learned that information can be considered interchangeable with energy. This totally blew my mind and changed the way I look at the world.

More practically, I didn't have a true understanding of pointers until taking an assembly language course. Before understanding their implementation, they might as well have been useful and yet unpredictable gremlins.

link|flag
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 1 vote down

Well, this was really early in my CS education, but at one point I'd written a number of short straight-line execution programs. Then I learned about arrays and loops, and it really was an amazing experience to see that light bulb switch on.

link|flag
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
vote up 3 vote down

My first big system.

For about 10 years, I had programed on and off as a hobby, doing programs between 10 and 100 lines. I then arrived at college, and completed some very complex, yet brief algorithm assignments- still under 1000 lines, perhaps 3-5 files.

Then, I took a class with a term project. The task was to create a web based information system - you know, something similar to things people actually use. There is no experience quite like starting from nothing, figuring out a technology, and creating a multi thousand line application. It seemed somewhat magic that my sql commands actually created a functioning database, that they actually made it over a network. It was also an eye opener to realize that I, as a programmer, was fully capable of creating things commonly sold for thousands of dollars.

link|flag
vote up 6 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 3 vote down

Mine was an anti-CS moment: realizing that for all we care about the complexity of a data structure, the constant matters a lot, and can get messed by memory layout, file systems, etc.

link|flag
show 1 more comment
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 0 vote down

that all the theoretical stuff that i learn in cs doesn't necessary apply that well in real world. yup, normalization should always be done to tables in databases...wat?!!! all your data is in this table? what is this column all over the places?

we should use UML to do all the documentation, wait, what you guys have never heard of UML? is this some sort of a twilight zone?

that, trying to write a good program is more than getting the algorithm which is closest to n(0) or just remembering the syntax really, really well.

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 1 vote down

It was at my first real programming job when "scope" clicked. I had a basic understanding of it, but wasn't optimizing for it in high school. My job (right after high school) made sure that I knew what scope was.

I had a basic understanding of the concepts of all OOP. However, until scope clicked, I wasn't able to dive in and start running with development.

link|flag
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 58 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 8 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 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
show 2 more comments
vote up 0 vote down

IOC Containers. All of a sudden your application is beautiful - less coupled, easier to maintain and a lot easier to write in the first place! Ban Spaghetti!! Microsoft's Unity is easy to use, but NInject is superb. There are loads out there (StructureMap, Castle Windsor, AutoFAC etc) and it doesn't really matter which one you use - just use one.

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 1 vote down

My first introduction to patterns. Finally I figured out how not to reinvent the wheel every week. I finally figured out what colour it should have been in the first place.

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 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 22 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 6 vote down

"Hello World!"

link|flag
vote up 3 vote down

Wait, you mean I didn't really need to learn calculus for web development jobs?

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

When I read how LISP works.It was beautiful

link|flag

Your Answer

Get an OpenID
or

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