Tutorials
These articles are focused on learning how to do something — usually to learn a technology, or how to implement a project.
Don’t Fear The Shortcode
I like WordPress shortcodes. I think they can empower authors. But people some people are afraid to use them.
Playing Games with SQL
When dealing with a sports league of any sort, there are two elemental tables that make the core of the application – games and teams. The game table has foreign keys in it that refer to the team table. Because of this, we’ll talk about the team table first. Team Table +————+————-+——+—–+———+——-+ | Field | … Read more » Playing Games with SQL
Convert Line Endings In Textmate
Goto Text > Filter Through Command Set Input to “Document” Set Output to “Replace Document” Use this sed one-liner as your command to convert from Unix to DOS: sed “s/$/`echo -e \\\r`/”
Application Architecture on Localhost
You’re ready to begin development on your project. Now what? Since you are a professional, you need to setup your environment not just a for a single project, but the many projects to come. Sure you could just create a folder on your desktop, and start hacking together an html file from scratch. but I’m … Read more » Application Architecture on Localhost