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?
|
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?
| |||||||||
feedback
|
These two UI gems are from Bumper-Sticker Computer Science; I try to adhere to them wherever possible:
| |||||||||||||||||
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 | |||||||||
feedback
|
|
Warning: Tongue firmly in cheek!
| |||||||||
feedback
|
|
tight cohesion and loose coupling I think this concept encapsulates the core of software engineering. | |||
|
feedback
|
|
GIYF : Google Is Your Friend | |||
|
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. | |||
|
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. | |||
|
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. | |||
|
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 | |||
|
feedback
|
|
Some of my favorites: There are many more principles but these are simple some simple ones | ||||
|
feedback
|
|
Buy Bentley's More Programming Pearls for his Bumper-Sticker Computer Science. | |||
|
feedback
|
|
GTD - getting things done. A general maxim not only relevant for programmers. | |||
|
feedback
|