vote up 28 vote down star
30

There are many quotes from famous computer scientists that have become the wisdom that guides our profession. For example:

"Premature optimization is the root of all evil in programming."

  • Donald Knuth (citing Hoare's Dictum)

"Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it?"

  • Brian Kernighan

And so on. My question is, what are your favorite words of wisdom about programming from someone who is not famous? Was it a friend, a coworker, or a teacher, or a family member?

For example, a technical writer friend of mine said:

"You can't get the right answers unless you ask the right questions."


Thanks for all the contributions! The answer I selected was (a) specifically coding-related, and (b) stated by someone who is not technically famous (though he has a popular blog and a podcast and runs StackOverflow). I.e. he's no Bill Gates or Yogi Berra.

flag
show 3 more comments

73 Answers

1 2 3 next
vote up 34 vote down check

I Believe Jeff Atwood said it

Code doesn't exist until it's checked into source control.

I've lost so much interesting software that I've written over the years simply because I never had a system of storing it. Over the last 2 years, I've made sure that just about every thing, including scripts that I've written, have been stored under source control.

link|flag
3  
Corrollary: code which only exists on your computer is no more real than code which only exists in your head. – JesperE May 29 at 15:27
show 1 more comment
vote up 0 vote down

From "Tips: Ten tips for being happier.":

Anything worth doing is worth doing badly.

For a mountain of wisdom take a look at some of the posts on "Sources of Insight".

link|flag
vote up 0 vote down

"El flojo trabaja dos veces" -my friend's Colombian mother

Spanish for, "The lazy person works twice." Applicable to everything.

link|flag
vote up 1 vote down

"This project is scheduled to be done when hell freezes over. But it may slip." - Keith Reynolds

link|flag
vote up 0 vote down

Even though the compiler doesn't have a GUI, it still is beautiful.

-- me

Always have a healthy disrespect of the impossible

-- unknown

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

"I think most application development involves initial lack of understanding of how to use a particular technology optimally, followed by a downward spiral of workarounds and short cuts" - A developer friend of mine

link|flag
vote up 2 vote down

We've made a deal with God:

  • He doesn't program,
  • we don't make miracles.
link|flag
vote up 1 vote down

Question: What is the difference between ignorance and apathy?

Answer: I don't know and I don't care. ;)


Synopsis: You can't help someone who is both ignorant and apathetic at the same time, so don't waste your energy.

link|flag
vote up 1 vote down

"For every problem there is a solution which is simple neat and wrong"

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

My all-time favourite has to be Hofstadter's Law:

It will take longer than you think, even if you take Hofstadter's Law into account.

:)

link|flag
vote up 0 vote down

If you can't test it, then you don't need it.

Referring to source code. If it doesn't have a testable result, then you might as well use a null statement.

This is particularly true of error handling code. If the error condition can't be created, why try to handle it?

link|flag
vote up 0 vote down

"All of Microsoft's software is written in Visual Basic" -- My IT teacher

haha.

link|flag
vote up 2 vote down

It's maybe a bit obvious, but one of my lecturers in college pointed this out, and it's stuck with me:-

"If your code compiles, you've written a program. But this doesn't mean that it's the program that you think you've written".

This guy was big on formal proofs...

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

Being really good at C++ is like being really good at using rocks to sharpen sticks. — Thant Tessman

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

At least two. They are more physics, rather than computer science:

"if you always follow the minimum energy path, you are guaranteed that your potential will only decrease" - Me

"When you work in a vacuum, it's easy to fill the room" - Zachary Spencer, here on SO

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

At a polytechnic they teach you to wash your hands after going for a piss, at university they teach you not to piss on your hands.

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

"Question your assumptions"

link|flag
vote up 9 vote down

Computer Science is no more about computers than astronomy is about telescopes.

--E. W. Dijkstra

link|flag
vote up 0 vote down

Don't de-reference dangling pointers.

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

Programming is communication. Communication is not programming.

-- Myself.

Here's an explanation (spoiler alert?) for those that might find it difficult to grok exactly what this phrase is suppose to mean:

The first part of this phrase is butt naked and means exactly what is says. When we write code - good code, that is - we are communicating ideas and intent, data and process. Not only are we communicating this information to our compiler, but also to our colleagues, the next guy who is going to maintain that code and to our (near) future self.

The second part; "communication is not programming," is a bit deeper and is about communicating with living people, and how different that is from communicating with a compiler. Human languages are full of ambiguity, and often require multiple different explanations before a point or idea comes across clearly. Communicating with people require "people communication." Further, people are not computers. When you ask a person to do something, they will probably not do exactly what you asked. They may do less or they may do more. They may even do something completely different, or what amounts to nothing of value (to you). Not because they are bad, but because they are people.

link|flag
vote up 9 vote down

A favorite when trying to make a decision.

It is easier to get forgiveness than permission.

link|flag
1  
I just can't figure out why people like this quote. There are so many situations where someone following this advice could cause permanent damage, for which forgiveness is nice, but the consequences remain. – John Fisher Jul 30 at 17:06
show 1 more comment
vote up 18 vote down

I was talking to a guy about Object Oriented Programming, and added:

Just because it's made out of car parts, doesn't mean it's a car.

It promptly was entered into Bugzilla's Quips.

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

"Think big, act small, fail fast; learn rapidly"

link|flag
vote up 10 vote down

"Measure twice, cut once" - good philosophy for any discipline...

link|flag
7  
"...and have a spare, just in case" – Pondidum Jul 30 at 12:38
show 1 more comment
vote up 4 vote down

I can't believe these weren't already here:

Garbage in, garbage out

and

Know Thy Data

finally

To err is human, to really foul up requires a computer

link|flag
vote up 3 vote down

None of us is as dumb as all of us.

link|flag
vote up 1 vote down

What I usually end up telling my colleagues

  • Stop assuming the code is wrong just because you are not the author of it.

What I usually end up telling my boss:

  • The urgent is done. The indispensable is in progress. For miracles, please forecast some delay.
link|flag
vote up 0 vote down

"Do it right the first time (Bertrand Serlet)"

...meaning, don't hack something together which works mostly, but apply proper engineering. Everything else requires more effort in the future.

link|flag
vote up 5 vote down

"Don`t test what you are not prepared to fix"

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

"Proper Planning Prevents Poor Performance" -- My old boss.

link|flag
show 1 more comment
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.