Doesn't seem all that life-changing to me, but I guess it could speed you up if you churn out a lot of html every day.
If you code HTML, Zen Coding will change your life
11–20 of 44 posts
Re: If you code HTML, Zen Coding will change your life
#12The thing I don't like about all these ways to "improve" HTML/CSS is that they all seem to assume the rest of the webapp ecosystem doesn't exist. Take SASS's variables and arithmetic, for instance. I agree that CSS desperately needs some way to abstract out common values. But any decent webapp will already be using some sort of template system, and the template system will have some sort of variable. Why not use it a…
Almost any homepage I create that's not a one-shot throwaway for a client is going to running on top of some sort of framework. That means that for any table like this, I'm only going write a single row (at most), and then have my framework iterate over it and turn it into pretty code.
I love any time-saving or code-saving functions and features in my code as much as the next guy, but this seems like an unnecessary complication to already rather streamlined coding.
Also the fact that any IDE with decent auto-complete will be able to do the same thing with just three strokes instead of all that. (For example, in Eclipse if I type "<tab" then press enter, I get a fully formed pretty table in 5 key strokes.
Re: If you code HTML, Zen Coding will change your life
#13Writing lengthy boilerplate code becomes trivially fast.
Re: If you code HTML, Zen Coding will change your life
#14Zen Coding seems like the Haml philosophy implemented as code completion rather than as a run time compiler. The upside is that the markup you generate is plain old HTML that any web framework can serve. The downside is that it has the readability of plain old HTML.
Re: If you code HTML, Zen Coding will change your life
#15I'd be interested in knowing if this is available for some OS X editor (pref a free one) and whether they have vim support. (Cant recall if TextWrangler is free)
Re: If you code HTML, Zen Coding will change your life
#16That's a seriously exaggerated title.
Re: If you code HTML, Zen Coding will change your life
#17Zen Coding seems like the Haml philosophy implemented as code completion rather than as a run time compiler. The upside is that the markup you generate is plain old HTML that any web framework can serve. The downside is that it has the readability of plain old HTML.
Re: If you code HTML, Zen Coding will change your life
#18Re: If you code HTML, Zen Coding will change your life
#19The thing I don't like about all these ways to "improve" HTML/CSS is that they all seem to assume the rest of the webapp ecosystem doesn't exist. Take SASS's variables and arithmetic, for instance. I agree that CSS desperately needs some way to abstract out common values. But any decent webapp will already be using some sort of template system, and the template system will have some sort of variable. Why not use it a…