vote up 2 vote down star
3

Possible Duplicate:
What was your biggest CS eye-opener?

What has been your greatest Shakubuku (a swift, spiritual kick to the head that alters your reality forever) towards how you approach programming?

I ask, because I just had a good one reading Jon Skeet's metaphor on explaining the difference between reference types and value types: http://stackoverflow.com/questions/274054/what-are-your-favorite-metaphors-for-technical-concepts

flag
1  
just curious...what is shakubuku? – Casey Oct 25 at 16:29
1  
Sounds a lot like this question: stackoverflow.com/questions/343390/… – gnovice Oct 25 at 17:34
show 4 more comments

closed as exact duplicate by skaffman, paxdiablo, gnovice, Greg Hewgill, Bill the Lizard Oct 25 at 23:04

35 Answers

1 2 next
vote up 22 vote down

Realization that you may be the unfortunate bastard who has to debug your own code at 2am at night in the middle of production emergency 3 years later.

So you better write/design so that ANY such unfortunate person can easily maintain your code, and test so that your code doesn't fail at 2am with cryptic errors in the first place.

link|flag
1  
Oh, yes. I think that taking one of those 2AM calls for a critical problem, or working 24/7 until you resolve one of those problems (yes, in your own code), is a pre-requisite for truly being a senior, professional developer. – Cylon Cat Oct 25 at 15:35
show 2 more comments
vote up 11 vote down

Realizing that you never "learn" how to program, you just get better at it.

Also, having to do lot's of debugging doesn't mean you're a bad programmer. It means you're a programmer.

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

When I saw the following code (without any context):

struct node {
    node* next;
    int value;
};

I suddenly understood programming. Not only did this contain the context of linked lists, but also self-reference (recursion) and everything that came with it. This code snippet was my epiphany.

link|flag
4  
And so did I just now. – Daniel Oct 25 at 13:32
1  
second line should be "struct node* next" ;-) – elcuco Oct 25 at 16:43
4  
@elcuco Welcome to C++ – AraK Oct 25 at 20:51
vote up 7 vote down

Cliche alert.

Writing complex code is easy, writing simple code is hard.

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

To truly undestand Object Orientation and its quirks

link|flag
1  
I remember the exact moment that I suddenly grokked O-O programming and polymorphism and virtual functions and all that stuff. Unfortunately I'd been doing it for a year at at that point. – Graeme Perrow Oct 25 at 12:25
show 3 more comments
vote up 6 vote down

Conway's Law, which expressed in 1968 a fundamental truth that, 40 years later, still captures perhaps the most pervasively crippling--and yet unacknowledged--barrier to successful system design:

Organizations which design systems are constrained to produce designs which are copies of the communication structures of these organizations.

One (oversimplified) consequence of this is that a company's products cannot be designed better than the patterns, mechanisms, and abilities--or lack thereof--that the people in that organization use to communicate with each other.

Long before "agile" and "extreme programming" became buzzwords, he went on to suggest:

Ways must be found to reward design managers for keeping their organizations lean and flexible. There is need for a philosophy of system design management which is not based on the assumption that adding manpower simply adds to productivity. The development of such a philosophy promises to unearth basic questions about value of resources and techniques of communication which will need to be answered before our system-building technology can proceed with confidence.

Achieving this, IMO, will become the greatest programming revelation. I think we, as an industry, have a long way to go ... and I'm enjoying the journey!

link|flag
vote up 5 vote down

Understand the proper use of Exceptions can make your code easier to debug.

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

Having done Basic, Asm and (basic) C++, when I saw Haskell and the first generic function signature a -> [a] -> [a] and so on, I realized "this is what programming is really about". :)

link|flag
vote up 3 vote down

All code has bugs, even the stuff produced by the best programmers.

link|flag
vote up 3 vote down

When I realized that I could think of a program that was useful or interesting and with enough hard work, conjure what I envisioned into true existence.

link|flag
vote up 3 vote down

When I was in my teens[15-18yrs], my 'computer' teachers used to tell me that computers speaks only in O's and 1's!! I wondered how it speaks in 0's and 1's and that too only in 2 characters!!

In my first year of my college study, in my Digital Logic Design hour, my professor explained the BCD and EBCDIC code formats. She wrote the English alphabets and their corresponding binary representation of those in the board. She then asked us to write "Hello" in binary. I wrote it and suddenly i got shakubuku. Ha, She made me write in machine language[binary!!].

I told myself *this is how the alphabets are stored in binary digits and retrieved back!! Now, i can even speak machine language[but with some charts in ma hand!:p] * and realized What an invention by mankind, the computer is!

That is one of the revelations - a significant one for kindling my interest in computers and programming.

link|flag
show 1 more comment
vote up 3 vote down
  1. When I realised that a pointer isn't an arrow, it's a number.
  2. When I realised how learning a new language affects how you program in the ones you already know (for example, learning Perl made me start thinking about C++ problems in terms of regular expressions and maps).
link|flag
vote up 2 vote down

One of my bigger revelations was when I learned that usability isn't about features, it's about the productivity of the end user.

Hugh Macleod nailed it when he said, "It's not what the software does. It's what the user does."

link|flag
vote up 2 vote down

The best one I had seen so far...
Starbucks Does Not Use Two-Phase Commit

link|flag
vote up 2 vote down

When I grasped that not doing unit testing due to working with legacy code was an excuse and not a reason - an excuse that leads to more legacy code.

link|flag
vote up 2 vote down

The moment I actually understood why OOP makes sense (back in 1993, after three years of humbug-ing...).

link|flag
vote up 1 vote down

read the gang of four books: "Design Patterns"

link|flag
vote up 1 vote down

Some years ago, it was the moment I understood what in C++, a pointer to a function means and how to use it. I was a junior programmer at that time and it was a nightmare to get that state of mind, but from that moment it became easy for me to deal with notions like events, callbacks, interfaces, Inversion of Control etc.

link|flag
vote up 1 vote down

Coding is like art - very few people really understand it's undercurrents.

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

Honestly, and this will sound silly, but I never had a clear picture of what programming really meant IN ESSENCE, until the movie The Matrix explicitly illustrated it.

That was a subject of philosophical debate in my Catholic high school, but it was also a way of showing how computer language, bits and bytes, OOP, databases, and the Internet is only a very rough MODEL of what we want in reality.

A programmer can only model and solve a problem as well as his/her own real-life experience allows.

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

Agree with many preceding answers. Here's another one: Learning the value of good logging. When you spot an unreported problem while reviewing program-generated logs, and pull enough information from the logs to be able to fix the problem. Without first having to reproduce the problem.

Good logging, especially for untrapped errors, is essential. When starting a new project, it's one of the first things I set up.

link|flag
vote up 1 vote down

Realization that TDD is just a way how to express your train of thoughts.

link|flag
vote up 1 vote down

That computers do nothing more than just copy data from one place to another, sometimes modifying the transmitted bits.

link|flag
vote up 1 vote down

I guess my Shakubuku was finding that programming wasn't about writing code. All code boils down to 3 operations (assignment, comparison, and branching). What programming is about is describing problems and their solutions. If there is no way to describe a solution, there is no way to write a program to do it.

(as an aside: about 30 years ago - age 12, I had to choose between my first computer or a vcr. In my naive youth I believed computers could do everything, so I chose the computer. I thought I could easily write software to record and watch video (on my atari 800), since there were all those ports that could process the signal. Of course that wouldn't happen until some time later.. And I missed out on a bunch of crappy movies I can now see online..

-B

link|flag
vote up 1 vote down

Realizing I am terrible at writing good code as I learn more effective programing techniques and then not ever wanting to work on a piece of code I had previously written.

And that revelation driving me to write better code.

It's like a real-life infinite loop.

link|flag
vote up 1 vote down

When I realized that "saving time" by not writing automated tests costs you and other developers MUCH more time than it takes to write the automated tests.

link|flag
vote up 0 vote down

My greatest programming revelation was to discover programming itself.

Well, I'm still young :-)

link|flag
vote up 0 vote down

When I learned C++ (Pointers, WIN32, STL) suddenly everything became clear! I knew how games worked, I could finally begin to understand ASM, and my code in every language I know improved.

link|flag
vote up 0 vote down

People who spend all their time talking about how good programmers they are or try to mention Turing and Neumann i every second sentence is probably not as good a programmer as you.

and

If someone says he will be able to fix a system or a program bug if he just sat down one hour and concentrated. The given problem will never be fixed. ^^

link|flag
vote up 0 vote down

When I discovered that Microsoft Basic on the 1981 TRS-80 Color Computer supported recursive programming so I could draw Sierpiński curves on my TV.

link|flag
1 2 next

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