Sep 24 2009 in Blog, Coding, Technology thoughts by WebSpry
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 [...]
Tags: best practices, Coding, formatting, scalability, templates
Aug 18 2009 in Blog, Coding, Technology thoughts by WebSpry
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 [...]
Tags: Coding, formatting