by Dave | Apr 28, 2005 | Tinker Blog
I’ve been reading a ton about coding guidelines as I work to expand on Scrimshaw. I’ve come to realize two things. First, this coding style in itself is about helping me to be more productive. If it helps someone else, even better. But it’s for me....
by Dave | Apr 18, 2005 | Tinker Blog
Within every Centeno-based application is a Values object. Many config.php files I’ve seen require that you then include the file into every page in the application. I’ll be looking through the code and find $someVar and I look through and I’m...
by Dave | Apr 13, 2005 | Tinker Blog
So below is our basic E-mail service for Centeno. The e-mail code is code based on what I usually use in projects, so feedback is welcome. Notice the use of the Values class. That’s another article I should do next I guess. Think of it as a valid values class or...
by Dave | Apr 12, 2005 | Tinker Blog
The bottom-level tier in the Centeno Framework are Services. Services are low-level concerns that could be applied to any project. They contain no business logic. Tate and Gehtland talk about aspect-oriented programming as a way to program better, so I’m going...