vote up 38 vote down star
15

I always liked to ask myself "what's the first principle(s) of this?" after I learned the basic stuff of something (e.g. programming). It's an inspiring question, IMO, that can force you to think about the most important principle(s) behind something, especially a skill such as programming.

So, what do you think is the first principle(s) of programming? I'll give my answer below a little later.

flag

94 Answers

vote up 1 vote down

Beneficially relating elements.

This means that there are elements (modules, subroutines, whatever) that relate in order to benefit one another (nothing superfluous). This is part of Kent Beck's responsive design concept. There's a talk on it.

link|flag
vote up 1 vote down
  • 20% code for function

  • 80% code for exception

link|flag
vote up 1 vote down

"Computers Are Blind, Deaf and Stupid".

I should tell this to that teacher (not a programmer) who thinks that the formula is enough for programming an app that makes math calculations. You must tell the computer what to do with that formula, doh!! (the same is for data from a BD).

Blind and Deaf... if you make signal and image processing, you know this.

link|flag
vote up 1 vote down

It doesn't exist unless it's committed.

link|flag
vote up 1 vote down

Computers do ONLY what you tell them to. If it doesn't work right, its because you haven't "told it" (coded) it right.

2nd favorite: its usually a problem with you (your code) - interpret this as in "first look for bugs in your code, before blaming it on bugs in libraries you use"

link|flag
vote up 1 vote down

Loose coupling. High cohesion.

link|flag
vote up 1 vote down
  1. Think First
  2. See 1.
link|flag
vote up 1 vote down

Always code as if the person who will maintain your code is a maniac serial killer that knows where you live

No idea where that phrase originated from (possibly from some humorous caption), but I think there is some truth in it: Code for maintainability. If other people can maintain it, then that usually means that it's kept simple and well structured for the most part.

link|flag
vote up 1 vote down

Don't be stupid on purpose

link|flag
vote up 1 vote down

Code is written once, and read many times. Optimize for the reader.

link|flag
vote up 1 vote down

I think that one consequence of the Church-Turing thesis is that any algorithm that can be thought of, can be programmed on a machine.

It makes it incredibly hard to tell a manager/a client 'this is impossible' because in theory, if you can describe it, it is possible.

The rest is a matter of resource. The difference between a programmer and a non-programmer is that a non-programmer will ask for features which will range from 5 minutes development to 5 billion years, and they will be equally happy with each one of them. I exaggerate a bit, but that's the idea.

So here's the first rule of programming:

Maximize your 'end users satisfaction'/'resource' ratio.

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

Refactor before it's too late.

link|flag
show 2 more comments
vote up 0 vote down
  1. Don't do it.
  2. If not doing it isn't possible, get someone else to do it.
link|flag
vote up 0 vote down

Structured Programming

link|flag
vote up 0 vote down

When you assume, you make a YOU-KNOW-WHAT out of U and ME.

The golden rule, that one is. Always verify what you're taking for granted.

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

Don't repeat yourself!

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

Start with the output and work backward.

link|flag
vote up 0 vote down

Think as if you don't know any particular programming languages (so that you don't fall into the trap of "thinking in XXX". Code to realize that thinking using the proper language.

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

If it (the project) doesn't give you a hard-on, don't do it.

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

When you start something finish it!
Use the other principles to achieve this.

link|flag
vote up 0 vote down

One important aspect of programming that is often neglected and ignored is "Separation of concerns". Before starting to code, it is crucial to analyze and design your classes to ensure they are not tightly coupled. Otherwise you will end up with very dependent objects and code, which makes change very difficult and refactoring a nightmare.

Applications should be layered sufficiently and use of design patterns to decouple your classes allows for easy maintainence and ease of testing.

link|flag
vote up 0 vote down

Humbleness.

link|flag
vote up 0 vote down

We are morons.

link|flag
vote up 0 vote down

So, what do you think is the first principle(s) of programming? I'll give my answer below a little later.

  1. Never trust data from users or other sources.

In other words, always check data for validity first. Bad (or unexpected) data can create havoc.

link|flag
vote up 0 vote down

I'll second DRY and KISS. I'd also add, "Knowing a language is not the same as knowing how to program. Just like knowing how to use the steering wheel is not the same as knowing how to drive." Learn fundamental principles, and then apply those using whatever language or tools you have available. Languages and database engines and the like come and go. Data structures and algorithms are forever.

link|flag
vote up 0 vote down

Ask Questions first.

link|flag
vote up -1 vote down

Do not overuse Interface.

link|flag
1  
This one is too language-specific – finnw Oct 2 '08 at 1:07
show 1 more comment
vote up -1 vote down

Sequencing, what do I do and When do I do it.

link|flag
vote up -1 vote down

In general: Problem solving.

That is what it all boils down to.

link|flag
show 4 more comments
vote up -1 vote down

Progamming is not for the lonely geek.

link|flag

Your Answer

Get an OpenID
or

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