9 Ways to Instantly Code Faster
Posted on 30. Sep, 2010 by Jeffrey Way in template customization
Doesn’t the title say it all? There are a wide variety of tools and techniques which can drastically improve the speed at which we code. Particularly during time-sensitive settings, even a savings of a few seconds per iteration can add up substantially over the course of the month. I’ll show you ten of my favorite methods in this article. 1. Zen Coding Combine the power and specificity of CSS selectors with HTML mark-up, and you get Zen Coding. Certainly, I wasn’t the only one whose jaw dropped the first time he saw: div#container>div#contents>ul#nav>li*4 …convert to: <div id="container"> <div id="contents"> <ul id="nav"> <li></li> <li></li> <li></li> <li></li> ...Article source: Nettuts+.

