vote up 10 vote down star
9

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?

flag

1  
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

15 Answers

vote up 16 vote down check
  • Encapsulate what Varies
  • Program to an Interface rather than an Implementation
  • (SRP) The Single Responsibility Principle: A class should have only one reason to change
  • Favour Composition over Inheritance
  • (OCP) Open-Closed Principle: 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|flag
Dont know who voted you down, I voted you up again. – mm2010 Nov 26 '08 at 11:32
3  
Head First Design Patterns, much? :) – Firas Nov 26 '08 at 11:39
@Firas I bet he does! – leeand00 Apr 30 at 15:45
I do, I do! .... – Mitch Wheat Apr 30 at 15:53
3  
@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 at 12:16
show 2 more comments
vote up 16 vote down

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|flag
You Ain't Gonna Need It. Thanks, just wikied :D – DrG 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 – lagerdalek Nov 26 '08 at 11:35
1  
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
vote up 5 vote down

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"
  • RTFM: "Read The Fracking Manual". This one is never pronounced in full.
  • STFW: "Search The Fracking Web". See RTFM.
link|flag
We have a similar expression to PEBCAK which is PICNIC - Problem In Chair, Not In Computer – jxh00u 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 at 1:49
vote up 3 vote down

tight cohesion and loose coupling

I think this concept encapsulates the core of software engineering.

link|flag
I just read this nabble.com/So-what-are-"loose-coupling"… and found it useful – DrG Nov 26 '08 at 12:52
vote up 3 vote down

GIYF : Google Is Your Friend

link|flag
letmegooglethatforyou.com – S.Lott Nov 26 '08 at 12:12
vote up 2 vote down

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

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

"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|flag
vote up 2 vote down

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

link|flag
vote up 2 vote down

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

WTF

It's the only universal code quality unit :

alt text

link|flag
vote up 1 vote down

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|flag
    vote up 0 vote down

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

    link|flag
    heh heh, If we can't fix it, it ain't broke – lagerdalek Nov 26 '08 at 23:32
    vote up 0 vote down

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

    link|flag
    vote up 0 vote down

    Classes for Concepts

    link|flag

    Your Answer

    Get an OpenID
    or

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