vote up 23 vote down star
36

I've been thinking lately about a few practices that I have kind of adopted. Not things you see listed all the times, but patterns that you've looked back and said "I'm glad I did that", then adopted for yourself.

I'm not really thinking of the ones you hear all the time, like "Refactoring" or any design patterns listed in common books either, but would include specific refactoring patterns that you find success with but don't hear about very often...

flag
show 2 more comments

45 Answers

1 2 next
vote up 47 vote down check

When commenting: Tell me WHY you're doing something, not WHAT you're doing. What you're doing is already there plain as day, it's called your code.

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

Simplify your design requirements. Trying to bite off too much for version 1.0 has helped kill a few of my own projects, while my successful applications were built with the minimum requirements in mind. Try to figure out the very core functionality you want to accomplish, and save the rest for later. You'll thank yourself when the simple stuff turns out to be not so simple in implementation. Also, by getting your product out faster you'll have a chance to get more feedback from users, which will help decide which "extra" features are worth developing or not.

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

In OO languages, keep simpler data objects immutable. This builds upon Paul Tomblin's point about keeping code separate from data. Simple data objects are like bits of hard metal currency passed around the more complex agents in your program, in that they're tangible and definite. They're unlike currency in that thin strings attach them to any object that wants them, for as long as the complex objects want. You wouldn't want someone grinding the "Five Cents" off your nickel and etching "Ten Cents" in its place; nothing should change what your complex objects assume about those bits of data.

link|flag
vote up 15 vote down

Always assume that some poor schmuck will have to maintain your code.

  • keep it simple,
  • easy to understand,
  • segmented in manageable and logical chunks

Remember, you might be the schmuck that has to maintain the code, give yourself a break, take no "shortcuts", dont use "clever" side effects, avoid cryptic variables, no unrelated comments...

link|flag
show 4 more comments
vote up 14 vote down

Never Pass English Language Up To the GUI Low level code should not be producing user visible strings. Instead, they should be passing up objects with codes that can be translated and formatted at the uppermost level. This way, if/when you internationalize, you can do it in one place instead of hundreds. Also, it means that in an environment where the View level is separate from the Model, you can have more than one Viewer using different languages. For instance, your movie theatre management system could be simultaneously viewed by the theatre in France, the regional Network Operations Center in Spain, the studio in Hollywood, and the support site in Rochester NY.

link|flag
vote up 12 vote down

Separate Data from Code. This is one of my biggest driving factors now--my ultimate mantra. I'm not talking about constants you declare in code as scalars, more about identifying patterns where you can extract data and place it in arrays and use them to instantiate collections of objects--eliminating repeated patterns.

This works very well on GUI code, I no longer would ever consider writing "new Button("Click Me")", because "Click Me" is data and should be from an array, as should all the GUI objects and, preferably, most of their locations and handlers.

This pattern allows some remarkable refactorings that are impossible without recognizing what is data and what is code.

link|flag
show 4 more comments
vote up 12 vote down

My best change was using the single responsibility principle. Each class I write only does one thing so it is really easy to troubleshoot problems when they are broken down into small chunks. Sure I have many more classes now but by properly namespacing them and placing them in folders I can easily manage them. SRP encourages code re-use and really enables unit testing (and I think is a key concept for test driven development)

link|flag
vote up 10 vote down
  • Writing unit tests (first)
  • One (or zero)-step compile/deploy/test cycle
  • Know your tools (editor, build-system, vcs)
  • Use a VCS
  • KISS (keep it simple)
  • Know how the paradigms of your language (object orientation, functional etc)
link|flag
vote up 9 vote down

FIRST write a test that goes red. THEN write the code that makes that one test turn green. Refactor as needed. Rinse. Repeat.

link|flag
vote up 8 vote down

When approaching other people's code I've taken to assuming that I am the biggest idiot on the face of the planet who has never seen a single line of code in his life. That way, whenever I get the urge to "correct" some line of code that seems pointless and wrong, I think to myself

"You know, I'm pretty dumb, and the person who wrote this probably isn't, so maybe I should find out why they wrote it before I go mucking around in here".

Often I will discover that there is in fact a reason for that line of code that I had never considered. Not to mention the number of times someone has "simplified" some piece of my code, only to discover the week before it releases that the code was actually required to handle that one case where if you hit the "o" key at the exact moment that you press OK while simultaneously playing "Eye of the Tiger" in iTunes via your iPod you will crash the application (which is relevant because your customer is a huge Survivor fan who obsessively presses the first letter of whatever dialog button he is clicking on - it happens).

link|flag
show 4 more comments
vote up 8 vote down

I try to live by the words of Brian Kernighan:

Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.

I summarize to my co-workers as "Clever code kills".

link|flag
vote up 6 vote down

In OO languages, complex logic objects should have their API be as small and restricted as possible, and what is there should be documented as a contract. This cuts down on maintenance like you wouldn't believe at first. It makes unit tests for those objects possible. The alternative is objects that expose a smorgasbord of methods to others; they may as well be festooned with billboards shouting "Poke me!", and you'll never know what their state is at any given time.

The corollary to this is that you'll be surprised how often extending an existing class turns out not to be the right choice, in the case of logic objects. (It's significantly more frequent for simpler data objects.) For example, queues are one of the simpler data structures out there, and look a lot like lists - but they are not lists. If the list allows random-access insertion and removal, and sorting, and the queue inherits it, then it will have that too, and risks having other objects use it as a list unknowingly. A queue should contain such a list, perhaps, but not extend it; it should have a totally different API - limited, tested, and well-documented.

link|flag
vote up 6 vote down

This has to do more with source control than code writing, but it impacts the way I develop my software:

Coherent and self contained source control commits:

Each time I'm about to develop a new feature or fix some bug, I plan the following two or three programming micro-tasks, and make sure each one is fully contained in a source control commit. Do not mix changes that are not related on the same commit.

Of course I'm talking about commits to my local branches. When pushing to the central repository, you should always commit full bug fixes and working features.

link|flag
vote up 6 vote down

Seperate your concerns!

Do not create "UBER" classes which contain a lot of knowledge of your domain, spread it out in logical part, so that each class has a function in the system.

Also try to decouple allot, so you can easily plug in your test/mock implementation for testing purposes.

link|flag
vote up 5 vote down

Code with sources managed under Version Control System!

That way, any refactoring is less an adventure and more a planified effort, with always the possibility to go back or to compare to a stable state.

link|flag
vote up 5 vote down

Don't overengineer. Engineer it just enough to get the job done and to be able to maintain it.

link|flag
vote up 5 vote down

Classes are fine, but don't start there. Instead, analyze flow of information. Where does it come from, where does it go to, how is it encoded, and when is it processed?

For example, if some of the information only changes once a week, possibly you could use a partial-evaluation pattern (i.e. code generator). This can be a divide-and-conquer strategy because the code generator only deals with part of the problem, and the generated code only deals with the remainder. Sounds funny, but it can really simplify things (as well as run a lot faster).

link|flag
vote up 5 vote down
  1. Use Subversion or some other sane version control system.

    • Use branching when doing risky work that might kill the whole build.
    • Be sure to carefully merge your risky work back into the trunk.
    • Be sure that you have a Subversion "hook" setup to run unit tests on code and make sure it passes all tests before checking the code in.

      (this way you know when you've broken something of somebody elses)

    • Be sure to comment in detail what the change has done on a check-in. And for pete's sake make sure your commits are atomic! (A.K.A. checking in all files that you changed relivent to the commit at once.)
    • Another good rule of thumb is one working-copy to a task.
  2. Use Unit-Testing on everything (even Javascript)

    • In this way you know what parts of your code work, and what parts of your code don't work.
    • (redundant yet very important) Also if you unit test you'll know when you've broken someone else's code, and thus you'll know when the two of you need to discuss it.
    • Unit-Testing also makes sure that you code is decoupled from other parts of the system (ensures that you've made good use of interfaces).
  3. Use a Dependency Injection Framework (okay not for JS). This is related to the bullet point above as well, and can allow you to do incredible things like using Aspect Oriented Programming to add and remove log statements very easily, also it helps when handling SQL transactions. (making sure your begin and commit statements are run at the right place in your code)

  4. Keep your team small, but highly skilled.

    • Too many cooks in the kitchen spoil the broth...
    • Too many people at the video store never pick out a movie...
  5. Communicate with your team as much as possible!
    Gone are the days when one could hide away in a cubical and just work on your project, it's all about team work now.

    • Have meetings, to discuss what the "team" as a whole is going to do.
    • Take notes in a shared wiki if possible.
    • regular at least weekly code reviews with your peers, discuss which design patterns are going to be used, and make UML design diagrams!
  6. Keep in time with the rest of the world...

    • Or as I like to call this one, "It's really hard to get help with Visual Studio 97' when it's almost 2009!"
    • Keep your frameworks/libraries, tools and compilers up-to-date, as it will make the questions you ask about them much less awkward, and more likely to get answered.
link|flag
vote up 5 vote down

Reduce the number of possible 'states of being' that can exist

Ensure objects are initialized and consistent the instant they are constructed and stay so until they are destructed.

If you know your objects members are all initialized and valid while the object exists you can write methods to rely on that without worrying.

I often see code where the author doesn't recognize how important object lifetimes are. They expect you to construct an object and then call various initialize methods on it to get it bought properly to life. This means their code is littered with checks to see if members are valid before they're used. All these checks reduce the code to an impenetrable mess.

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

Never pass around raw/native/library objects (specifically collections). I try to avoid passing around ANY raw java objects that I can't extend and aren't part of my "domain".

A class accepting a "List" gives no hint as to what you should pass in, a class expecting a "CarCollection" tells you exactly what to pass in, and the CarCollection class itself can insure it's in a valid state with valid items, a List, even a generic List<Cars> cannot. Finally, you almost always want to add methods, when you use raw objects these usually become crappy utilities distributed throughout your code instead.

This has allowed me a remarkable flexibility when it comes to adding features that weren't planned for in the first place.

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

1) Be Consistent. Nothing is harder to change or understand than inconsistent code.
Bonus: Comment WHY and perhaps HOW, but leave comments about defects, who, and when the changes were made to the SCM.

link|flag
show 1 more comment
vote up 4 vote down
  • Documentation before (What)
  • Coding
  • Documentation after (How) Unit
  • Testing (Validation & Verification)
link|flag
vote up 4 vote down
  • Copying and Pasting == Time to Refactor

  • Make your code as simple as possible, but no simpler.

  • Code defensively.

  • Don't try to be smart or clever.

  • Let go of your ego.

  • Cheerfully accept criticism of code that you write.

  • Learn from your colleagues - even the newbie intern has things to teach you.

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

Fewer features, fewer configuration options = usable software = maintainable code = used software.

simple. bye.

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

My personal list:

  • Understanding the bigger IT and domain pictures before writing code.
  • Doing a lot of thinking about what could go wrong, and what's likely to go wrong.
  • Paying my development taxes.
  • Sprinkling assertions liberally across my code and also code I have to maintain.
  • Using Try...Finally much more than Try..Catch.
  • Many comments explaining why certain design and implementation decisions were made.
  • Not sharing state between threads.
  • Poring over the documentation of a type before using it.
  • Refactoring constantly for simplicity and understandability.
link|flag
show 2 more comments
vote up 3 vote down

Generalize the problem, write code that solves the general problem and use it to solve a specific case.

link|flag
1  
Or use the Agile methodology of write the specific way twice, then refactor into the generic. – Bill K Nov 20 '08 at 17:42
vote up 3 vote down

Consistent object naming and well documented source code. It's not a problem of anybody else reading your code after some months, that person might be you and sometimes you don't know why you did something that way or how something works.

link|flag
show 1 more comment
vote up 2 vote down
  • Increase Cohesion + Reduce Coupling between modules within design (eg. objects, threads, any functional blocks)
  • K.I.S.S. principle
link|flag
vote up 2 vote down

When doing design, Create a GUI as one of the first parts of your design. On a whiteboard perhaps, or in simple front-end-only code. This is a GREAT way to communicate with your customers and find out if you are on the same level.

It also becomes about the best project specs you're likely to get.

I'm not saying code before design, the GUI is not actually the first code you write, it's just part of design that you may throw away or redesign when you actually get around to writing code.

link|flag
vote up 2 vote down

Errr... document code!

Especially the public API, with a clear definition for each function, and the the list of authorized limit values for parameters.

Even though no other documentation ends up being written, that much can save me when I have to use (or to make other use) my code!


Interesting: the recommandation about

"When commenting: Tell me WHY you're doing something, not WHAT you're doing"

picks up a lot of vote, but this more general recommendation does not.

That would be consistent with what I see amongst the developers I work with:
no one document its API... (or at least, not many ;) )
(I am referring to public API comments, not to internal bits of wisdom left within a code which are simple comments, not documentation)

link|flag
1 2 next

Your Answer

Get an OpenID
or

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