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

1 2 3 next
vote up 1 vote down

0.

"Computer science is no more about computers than astronomy is about telescopes."

1.

Computer science and mathematics are closely linked. Math would help me with cutting edge Computer science.

2.

That I didn't need to know advanced mathematics to be a successful programmer (to have high income).

link|flag
vote up 1 vote down

It's the day you start thinking in code, rather than thinking about what code you going to be writing.

This seems to happen about 1 - 3 years after starting a language.

link|flag
vote up 0 vote down

Coming from a C++, C#, and Java background, many of the concepts of Scheme (a dialect of Lisp) such as first-order procedures, code as data, data as code were eye-opening (see Structure and Interpretation of Computer Programs).

Clojure (a JVM Lisp) is also eye-opening for its use of built-in concurrency.

link|flag
vote up 0 vote down

With assembly, writing bytes to the address space of the screen and seeing pixels change.

link|flag
vote up 0 vote down

I am 24 and still learning a lot of CS stuffs, but so far the biggest eye-opener has been my exercise to learn Common Lisp and reading the SICP book.

link|flag
vote up 0 vote down

Much like the OP, my epiphany occurred while tracing instructions through an pipeline. It was like the last piece of the puzzle. All of a sudden there was no mystery left about computers. This was all there was to know, everything else was just gravy.

link|flag
vote up 0 vote down

When I started to learn Design Patterns, I then realized the real power of polymorphism. It really opened my eyes, and has completely changed the way I think about every project.

link|flag
vote up 1 vote down

Probably the most eye-opening experience was a required computer engineering class that went over logic gates, flipflops, adders, all the way up to state machines and ALUs. It was fun learning how those things worked but at the end of the class we actually designed a CPU. It was shocking to see how it worked. A CPU instruction was really just a bit pattern used by multiplexers to specify the input registers, output registers, and operation of the ALU (obviously modern CPUs are much more complex).

It was then that I felt like I understood computers "all the way down" from the higher level stuff like Java, C++, lower level stuff like assembly and of course knowing how logic gates worked. But the CPU design which connected the highest level hardware devices - register, ALUs, etc, up to the lowest level programming -- assembler meant that I now had a 'complete path' all the way from transistors at the very lowest level too whatever you could imagine at the highest level: OO design, scripting languages, whatever.

Other then that, the theoretical stuff was enjoyable, but it was a gradual progression of "cool stuff" rather then any one 'ah hah' moment.

link|flag
vote up 0 vote down

It's been said many times but it's the same for me: Pointers

A spooky "clunk" noise at the back of my head as the relationship between code and hardware fell into place in a way it never really had before.

I'm sure there are many other ways to get that "ah ha" moment and that I was a dullard to have taken so long to have it happen for me but, until it happens, there is something fundamentally missing in one's grasp of the whole system one is working with.

link|flag
vote up 0 vote down

Test-Driven-Development and Domain Driven Design.

Nilsson's book, Domain Driven Development, has opened my eyes to the benefits of testing and modeling.

It was an unnerving experience looking back at my untested code.

link|flag
vote up 2 vote down

The biggest thing I learned was that the customers have no idea what they want and once you show them something they usually will know they don't want exactly that and "can you make that green?" or "how about a picture of a tree here instead" will happen.

Basically Joel said it best in his article The Iceberg Secret, Revealed An application takes 1-10% of your time to look good and 90% - 99% to be functional but the customer will only care about that 1-10%

link|flag
vote up 1 vote down

Concurrent programming/Multi-threading flow control. This is where we got an assignment where we would enter a # of kids and a # of toys and each kid would receive a random toy trying to complete the set by trading duplicates to get any that were missing. The key was to create Semaphores to prevent cheating like somebody getting 2 toys while giving away one. Very cool assignment that showed how complex the real world can be.

Second on the list would be the realisation that there are only about a dozen lines of code needed for a function to do its work. I remember that being said and seeing some examples where that is how some things are done, if it takes more lines of code then it can be refactored down to that size likely.

link|flag
vote up 3 vote down

I first encountered the idea of object-orientation in college, and while I understood the mechanics well enough — the "how", if you will — I didn't quite get the "why". It seemed like just another way of representing data and actions, and a fairly cumbersome one at that. It certainly didn't inspire me to stop writing procedural code at the time.

Some time later, however, I found myself reading through the language documentation of an interpreted language I was considering taking up (I've forgotten which) and while scanning through the examples, found what seemed the single most transcendent notion I'd ever encountered. The example was something akin to the following:

" foo ".trim();

In all my courses, I had never seen an object method called on a literal. It astounded me! For whatever reason, the idea of objects suddenly made sense. Classes as a way of structuring data had seemed clear enough before, but until that moment, the idea that objects could be so deeply embedded in the design of a language that actual string literals were objects with class methods had never occurred to me.

I've always felt a great debt to whatever anonymous programmer decided to add that particular example. Not only did it greatly expand my concept of how code is written, but I don't think I would have survived learning JavaScript without it!

link|flag
vote up 1 vote down

Being astounded that the IBM 1620 could do millions of operations, each nearly instantaneously, and never make a mistake. Computers really were a brave new world.

For a mechanical engineer, where things slip, wear out, fatigue, rust, and eventually break, that was phenomenal.

Or that a chunk of program that would take millons of operations could be invoked by a single instruction. That is like a machine the size of a battleship hanging comfortably from the thinnest wire.

link|flag
vote up 2 vote down

1972 -- "fixed" a broken photo-typesetting machine by having the 4-bit computer flash every character twice, thereby getting the newspaper to the pressroom. The manufacturer's techinician was 150 miles away, and was able to replace the weak flash power supply the next day. Fixing or working around broken hardware with software was a "WOW" moment for me.

link|flag
vote up 0 vote down

In my 2nd CS C++ class and I finished my homework assignment on pointers. I couldn't believe it actually worked.

link|flag
vote up 0 vote down

Lisp and the idea that you can use code to execute other code.

link|flag
vote up 1 vote down

AND, NOT and OR. I was aware what they do but one day our teacher explained to us how you need to arrange them to add up two 4-bit values. 1 minute later I was understanding how you would go about arranging them to do whatever operation you want them to perform on operands of any size you'd like. 2 minutes later I was thinking "a 32-bit CPU must be about the most complicated thing in the world but I still understand how it works, yay".

Of course every processor I would have built back then would be missing state, but we learned that later :-)

Recursion, polymorphism, the power of LISP and some other things I can't think of right now where also pretty big eye openers.

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

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

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

recursion.

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

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

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 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
1 2 3 next

Your Answer

Get an OpenID
or

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