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 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 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 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 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 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 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 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

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 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 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

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

Learning Smalltalk, in my concrete case Squeak.

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

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 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 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

Python's use of lists. After reviewing the list of methods, I was extremely confused as to why something called a "list" would need these. Working through them, however, taught me quite a bit about data structures, including stacks, queues, linked lists, and eventually tuples, dictionaries, and sets as I worked through "why does this need something different than a list?"

For a while, though, my Python code did more list manipulation than my Scheme code.

link|flag
vote up 0 vote down

Learning that a computer can be built using nothing but NAND gates and a clock.

Then much later on actually simulating this process myself. http://www.hackszine.com/blog/archive/2008/03/from_nand_to_tetris_in_12_step.html

link|flag
vote up 3 vote down

Once, when I had been programming for about 6 years, my company sent me on a totally inappropriate course (can't even remember what it was - something to do with local area networks maybe...). Bored with it, I had a look in the class next door where they were doing structured programming. There were more course notes than students, so I was able to take one home and read it. There was nothing in it that I didn't kind of know intuitively and from experience - but I had never been explicitly taught it either, and having the principles and reasoning behind it spelt out was very illuminating.

Since then I have learned many other languages, and newer techniques such as OO, but the principles of structured programming are just as valid now as they were then.

link|flag
vote up 0 vote down

'A' + 32 = 'a'

Took me a while to fully appreciate the fact that empirically everything is just numbers and not abstract 'a' letters and 'b' letters etc. I'm also a EE, so I'm slightly biased.

link|flag
vote up 1 vote down

University classes in theoretical computer science and compiler construction.

On the theoretical side, I learned about terms like correctness and formal provableness, so where the limits of being able to write correct software are. I my view, some knowledge in this area is mandatory for writing software that does what it should, even if formal proofs are acutally hardly ever done in read-life software development.

There has been no other place where I learned so much about the programming, importance of theory (in some areas), but also stuff like how to implement complex data structures efficiently like in compiler construction. Knowledge in this area does not only help for related problems like building parsers for complex data formats, macro languages or similiar stuff, but also helps to get some idea what the computer actually does when we enter instructions in high-level language and what needs to be done to implement software efficiently.

link|flag
vote up 0 vote down

recursion.

link|flag
vote up 0 vote down

This is taking me way back to my youth. Apple ProDOS had just come out. Prior to that was plain ol' Apple DOS 3.3 with its flat file system, which I cut my teeth on.

I had an "a ha!" moment when I figured out the difference between absolute and relative pathnames and that they were interchangeable. The concept of the "current working directory" suddenly took on a whole new dimension which was missing before. Sure, it had all been explained in numerous books and magazines, but it didn't sink in until that moment.

link|flag
vote up 0 vote down

Learning how pointers worked in C was definitely a light-bulb moment. But I had a much better one a few years later: modularity and abstraction. What is significant is that it came after I'd been doing both for months. Experience can be a wonderful teacher.

(What actually happened was that I was learning how to write Windows programs in C against the Win16 API. The Petzold book was absolute gold, but it taught "start with this skeleton". That was the key. I eventually had a batch file to start a new program by copying the template I had made of the essential pieces. When I learnt DDE, there was so much mechanical stuff you had to do that it was (by then) natural to abstract it away into another .c file. Then I built a small library on top of my own DDE one and that's when I realized what I was doing. The lesson has stayed with me every since.)

link|flag
vote up 1 vote down

Sitting with a user group of professionals all asking about solutions to their problems and realising that every single one was a problem to do with individual people and not technical issues. Every problem was a people problem.

link|flag
vote up 0 vote down

I dunno if any scales fell off my eyes :-) but something that I thought was really cool was spatial data structures, like kd-trees and PR quadtrees. I also liked doing 3D graphics with matrices.

link|flag
vote up 1 vote down

When I realized what functions were, a light bulb went off. "I don't have to do copy and paste anymore!"

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

Functional Programming.

Although I'm a determined C# programmer, this tutorial was an eye-opener to me that there are other ways of solving problems. Using overloading in C# to emulate functional programming, I was able to refactor some of my more complex algorithms using less than 20% of the code before while having a better readability.

link|flag

Your Answer

Get an OpenID
or

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