See if what we do is right for you!

Duplication in your code. Also, duplication. And duplication.

EXTREME code duplication

  From the department of redundancy department, IT coder division: Duplication is probably the single, most important thing to banish from your code. Duplication can take several forms: textual This is the simplest and often the easiest to find. This is when you have sections of code that are identical or nearly so. This is [...]

Code formatting

code_550x220

Code should be easy to read. Code should be convenient to read, not convenient to write. There are several things involved here. Choosing good names that are self-explanatory is a good place to start. Strive for simple solutions, even if they are more verbose or inefficient. Whether inefficiency is a problem won’t be known until [...]