Is a total rewrite always a bad idea? I don’t think so. I use the pilot system often in new projects and that pilot is designed to be thrown away. What I get out of it is a proof of concept and knowledge about how the interlocking pieces of the system work. I plan to […]
Tag Archives: design patterns
In Javascript app development maintainability is often exchanged for rapid production and delivery. Using Javascript code modules is not a new concept to software developers who write single-page JS apps but the distinction between using namespaces with a singleton-style static object and writing modules is important. I keep hearing that modules improve executing speed and […]
As a programmer you’re going to have to solve similar problems over and over on different projects. Design patterns are techniques and solutions which allow you to solve common problems in elegant and reusable ways. Memorizing a few of the most common design patterns will make you a better problem solver. When an issue comes […]