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

Indirection.

It might not be obvious why this is, or even what this means. But indirection is really at the basis of all of programming.

At a more superficial glance, it only seems to touch abstraction (as a concept), or perhaps also pointers (after all, they are the archetype of indirection). But pointers are just one instance (there! indirection!) of the concept, and there are many more, that are effectively equivalent upon closer examination.

First and foremost, variables are indirections because they allow the manipuation of a value indirectly via a symbol (name). As a direct consequence, functions are an indirection, because they replace one symbol (the formal parameter) with another (the actual parameter, or argument (sometimes, the definition is the other way round)).

Since classes are historically just functions in disguise, classes are obviously an indirection for the same reasons as functions.

Arrays (or lists, same thing) are another indirection, often exposed as a fundamental type. In fact, there is no difference between an array and a pointer. Both refer to other things, or none (in which case the array is empty, the pointer is null or a special placeholder, “not in list”: NIL).

I've recently read a paper where the pseudo code contained the following function, and use:

function UpdateItem(item, position) do
    P <- { }
    if item.x > position then
        item.count <- 0
        P <- { item }
    item.count <- item.count + 1
    item.x = position

Results <- { }
for something or other do
    position <- GetPosition()
    Result <- Result U UpdateItem(current, position)

The point here is that, like all good mathematical pseudo-codes, it operates on mathematical sets, and augments a Results set by joining it to another one. Now, how would one implement this? Obviously, we could just use a Set data structure, or an array, or a vector, or any of these. But usually, this is done via pointers, right?

item_t* update_item(item_t* item, int position) {
    if (item->x > position) {
        item->count = 0;
        return NULL;
    }
    ++item->count;
    item->x = position;
    return item;
}

item_t* result = (item_t*)malloc(sizeof item_t * N);
unsigned index = 0;
for (something; or; other) {
    item_t* r = update_item(item, get_position());
    if (r != NULL)
        result[index++] = item;
}

For me, this shows really well that many, many different programming concepts just implement/perform some kind of indirection and that, despite all their differences, most of them can be expressed in terms of other means of indirection trivially.

So yes, I think indirection is really the first principle of programming, since all others are just indirection in disguise. Except recursion. Of course, recursion can be used to describe indirection. ;-)

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

Do no harm :)

link|flag
vote up 2 vote down

Use your head. It is terrifying how many people fail that one.

link|flag
vote up 1 vote down

Any problem can be solved with another layer of indirection.

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

This is a good question.

  • Know your requirements
  • Know your user
  • Know your limits
  • Always assume you don't know everything
  • Always understand the code you're using/writing
  • Never reach conclusions without evidence
link|flag
show 1 more comment
vote up 1 vote down

While keeping it simple (KISS) and not duplicating code (DRY):

  • Make it work right
  • Make it work fast
link|flag
show 1 more comment
vote up 1 vote down

In practice, and very unfortunately, good testing turns out to be more important than good programming. Testing increases the value of ugly code. If you can't write beautiful code, you should at least make it testable.

link|flag
vote up 1 vote down

Garbage in - Garbage Out It doesn't matter how nice your user interface is if the data is bad.

link|flag
vote up 1 vote down

Never completely believe what you are told about how the program will be used.

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

Think about how then end product will be used at least as much about how the code looks. You could write the best commented, most maintainable, most brilliantly logical code ever but it's essentially a failure if no one wants to use the end product.

link|flag
vote up 1 vote down

Occam's Razor. Reduce the problem/task to its simplest form. Then - and only then - start coding. Don't put the cart before the horse. Requirements first. Sure, they may evolve but the core requirement will be the core of your code.

link|flag
vote up 1 vote down

If the system won't work on paper then it won't work as a program. The reverse isn't always true, but a good computer system is usually based on a good paper system.

link|flag
vote up 1 vote down

"Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." ---- Martin Golding

link|flag
vote up 1 vote down

Besides not reinventing the wheel, you should understand how the wheel was built and what it really does.

link|flag
vote up 1 vote down

There are only three things in the universe: data, containers for data, and tools that either put data in a container, take data out of a container, or change the data in a container, and they overlap.

link|flag
vote up 1 vote down

What is the simplest thing that could possibly work...

link|flag
vote up 1 vote down

SOC - Separation of concerns
KISS - Keep it simple stupid
DRY - Don't repeat yourself

in that order

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

Knowing WHAT not to program is as (sometimes even more) important as knowing what to program.

link|flag
vote up 1 vote down

making it bug free.

link|flag
show 1 more comment
vote up 1 vote down
  • The way of thinking is more important than pushing the actual buttons
  • All good programmers are lazy, but not necessarily the other way around (!)
link|flag
vote up 1 vote down

I would have to say that testing is one of the most important pieces of the puzzle. In my opinion test early and test often. Whether you design method is highly planned or agile there is nothing more important than testing to keep you on the right path.

link|flag
vote up 1 vote down

Understand the problem.

link|flag
vote up 1 vote down

Decomposition. Solve large, complex problems by breaking them into smaller, more manageable pieces.

And - style matters.

link|flag
vote up 1 vote down

Do one thing, and do it well. It's the UNIX philosophy (http://en.wikipedia.org/wiki/Unix_philosophy). It works at every layer.

link|flag
vote up 1 vote down

When in doubt, manipulate the data!

link|flag
vote up 1 vote down

BE SMART AND LAZY

Just smart, and you will be engineering your way into bloated frameworks and writing UML until Duke Nukem Forever is released.

Just lazy and you are worthless, eating bon-bons in your sweats with no hope of amounting to anything.

If you are smart and lazy, that's where the money is. Engineering your way to nirvana by being pragmatic and recognizing ways to make your life easier daily.

link|flag
vote up 1 vote down

You have to resolve all the problems in the world with "if, for, while".

link|flag
vote up 1 vote down

JFDI - Just @#*&^%$ do it.

A friend recently suggested that agile, waterfall, iterative, etc etc etc are a waste of time and the best way to write software is the JFDI school of thought. Not my mantra, but made me smile.

link|flag
vote up 1 vote down

This is a good question.

link|flag
vote up 1 vote down

Abstraction, Composition

link|flag

Your Answer

Get an OpenID
or

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