Category Archives: Coding Practices

The Science of Debugging

by Taylor Hadden | 17:37

Debugging is the worst part of programming. It is frustrating, demoralizing, and at the end, when you finally find the source of the bug, you more often than not come face to face with an example of your past stupidity. You can spend hours, even days, just trying to find the source of one issue…. continue reading

Dependencies and IoC

by Taylor Hadden | 16:50

While I’m programming, there are two overarching goals that I’ve come to strive for while architecting and developing my applications: Single Solution: Objects and their functions exist to solve a single problem, and that problem is solved once. Minimum Dependency: Objects require and depend on as few other types and objects as possible in order to… continue reading