up vote 16 down vote favorite
10
share [g+] share [fb]

Being a self taught programmer, I base most of what I do on KISS and DRY.

For me they encapsulate complex ideas well and DO help me to write better code.

What else should I know?

link|improve this question

3  
I think moist kisses are preferable, as long as you don't drool. Drooling is a big no-no. – Jimmy Nov 26 '08 at 23:21
^^^ nice. On a serious note... wikify this one. – Gishu Nov 27 '08 at 2:43
On a business trip to Vienna many years ago, an Austrian programmer explained that they thought "KISS" meant "keep it subtle and sophisticated." – Cylon Cat May 21 '10 at 13:47
feedback

15 Answers

up vote 23 down vote accepted
  • Encapsulate what Varies
  • Program to an Interface rather than an Implementation
  • Single Responsibility Principle (SRP): A class should have only one reason to change
  • Favour Composition over Inheritance
  • Open-Closed Principle (OCP): Classes should be Closed to Modification, but Open to Extension.

These two UI gems are from Bumper-Sticker Computer Science; I try to adhere to them wherever possible:

  • The Principle of Least Astonishment: Make a User Interface as consistent and as predictable as possible.
  • Don't make the user interface provide information that the system already knows.
link|improve this answer
Dont know who voted you down, I voted you up again. – private Nov 26 '08 at 11:32
5  
Head First Design Patterns, much? :) – Firas Assaad Nov 26 '08 at 11:39
@Firas I bet he does! – leeand00 Apr 30 '09 at 15:45
1  
I do, I do! .... – Mitch Wheat Apr 30 '09 at 15:53
5  
@Rogerio Liesenfeld: please explain why you are saying the OCP is a bad idea. It's not as far as I'm concerned. – Mitch Wheat Sep 2 '09 at 12:16
show 2 more comments
feedback

YAGNI is a good one to help developer instituted scope creep.

Loose coupling is also a fave of mine, check out the IOC pattern, and watch this for a really nice and basic (C#) example

link|improve this answer
You Ain't Gonna Need It. Thanks, just wikied :D – DD59 Nov 26 '08 at 11:32
It's a good one to keep in mind, a developer can be their own worst enemy at times – johnc Nov 26 '08 at 11:35
2  
Note that the A in YAGNI stands for "ain't" when it's code that you actually want to write (exciting micro-optimisations, towering frameworks), and "are" when it's code that you don't want to write (error handling) ;-) – Steve Jessop Nov 26 '08 at 11:51
feedback

Warning: Tongue firmly in cheek!

  • WoMPC: "Works on my PC" - a term for stating that the reported bug isn't really a bug in the eyes of the developer.
  • #pragma DWIM: "Do What I Mean" - a special #pragma statement that lets the compiler interpret your intention instead of your actual code, thereby "doing what you meant" and not "what you wrote"
  • PEBCAK: "Problem Exists Between Chair And Keyboard" - a developer term for stating that it's the user's own fault.
  • ID 10T Error: You can figure that one out yourself ;-)
  • SEP: "Someone Else's Problem". This is from Hitchhikers' Guide to the Galaxy, but actually, Douglas Adams' entire body of work is a great source for Dilbert-like truths.
  • RTFM: "Read The Fracking Manual". This one is never pronounced in full.
  • STFW: "Search The Fracking Web". See RTFM.
link|improve this answer
We have a similar expression to PEBCAK which is PICNIC - Problem In Chair, Not In Computer – jheppinstall Nov 26 '08 at 12:41
Nice one ;-) I'll remember that. – MadKeithV Nov 27 '08 at 10:25
1  
HMI (Human-Machine Interface). Also, SEP is from HHGTG, give props. – Bill K Feb 28 '09 at 1:49
feedback

WTF

It's the only universal code quality unit :

alt text

link|improve this answer
feedback

tight cohesion and loose coupling

I think this concept encapsulates the core of software engineering.

link|improve this answer
I just read this nabble.com/… and found it useful – DD59 Nov 26 '08 at 12:52
feedback

GIYF : Google Is Your Friend

link|improve this answer
letmegooglethatforyou.com – S.Lott Nov 26 '08 at 12:12
feedback

Perhaps it isn't a maxim, and you already know it: first think, then code. Don't write any code without thinking before what you want to do -using pen and paper.

link|improve this answer
feedback

Write tests.

Tests that reassure you that your code is doing what it should do.

Pretty much whatever your language, there's a testing framework available. Probably more than one.

Once you have tests, run them often. Every time something changes, so that you know immediately when you've encountered an unexpected side-effect.

Care for your tests. As your code evolves, the tests may need to evolve with it - don't discard them when they're no longer testing what your code now does.

If you get that far, try going for the Big One: write a test before you write the code that passes it. Let your tests define your code. At that point you will have added a new acronym: TDD to your arsenal.

link|improve this answer
feedback

"Do the simplest thing that can possibly work."

It gives you a good place to start, and has the side effect of encouraging an end product that is both effective and simple to explain, which can be a big benefit when the client doesn't have a technical background.

link|improve this answer
feedback

"Normalize till it hurts; Denormalize till it works!"

link|improve this answer
feedback

Principle of Least Knowledge: Use only one dot in OOP languages.

I.e., try to avoid a.b.Method()

a.k.a. Law of Demeter

link|improve this answer
feedback

Some of my favorites:

  • TAANSTAFL - There ain't no such thing as a free lunch
  • NIH - Not invented here syndrome (usually BAD)
  • YAGNI - You ain't going to need it. (almost same as KISS)

    There are many more principles but these are simple some simple ones

  • link|improve this answer
    feedback

    Buy Bentley's More Programming Pearls for his Bumper-Sticker Computer Science.

    link|improve this answer
    heh heh, If we can't fix it, it ain't broke – johnc Nov 26 '08 at 23:32
    feedback

    GTD - getting things done. A general maxim not only relevant for programmers.

    link|improve this answer
    feedback

    Classes for Concepts

    link|improve this answer
    feedback

    Your Answer

     
    or
    required, but never shown

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