Less.js will obsolete CSS
31–40 of 131 posts
Re: Less.js will obsolete CSS
#32Sensationalist link-bait headlines have no place here IMHO.
I welcome sensationalist link-bait headlines if they have weight behind them. Don't blame the sizzle, blame the steak.
Re: Less.js will obsolete CSS
#33instead of learning new abstraction like this, maybe more useful to sharpen up text editor skills? I found css very vim-friendly
Re: Less.js will obsolete CSS
#34Earlier quoted context omitted.
less and sass both allow you to compile to css. The live, in browser compiler is just intended to speed up development.
The article makes it sound like the author expects in-browser processing to be the only way it'll be used: "Less.js is a JavaScript implementation of LESS that’s run by your web browser. As any JavaScript, you include a link to the script in your HTML, and…that’s that. LESS is now going to process LESS code so instead of including a link to a CSS file, you’ll include a link directly to your LESS code. That’s right, n…
First back it up with numbers, then we talk.
Re: Less.js will obsolete CSS
#35Obsolete isn't a verb.
Re: Less.js will obsolete CSS
#36instead of learning new abstraction like this, maybe more useful to sharpen up text editor skills? I found css very vim-friendly
That's like saying that instead of learning how to write functions, one should just get better at copying and pasting (because VIM is good at that).
I was never forced to define important colors more than twice in my CSS style sheets, usually defining them just once. Maybe my document structures are too simple to get into trouble - but maybe that's the whole trick.
(i.e. producing less bloat rather than making bloat more manageable.)
Re: Less.js will obsolete CSS
#37Re: Less.js will obsolete CSS
#38We used Less for a project, but ended up moving to Sass: http://sass-lang.com/ The Sass compiler was (is?) more mature, and the language feels more consistent (see the '&' operator in Sass vs the :hover special case in Less). The editor/tool support was quite a bit better too. Sass doesn't have a javascript in-browser implementation (afaik), but for rapid development it can watch a folder/file for changes and automat…
Re: Less.js will obsolete CSS
#39Re: Less.js will obsolete CSS
#40We used Less for a project, but ended up moving to Sass: http://sass-lang.com/ The Sass compiler was (is?) more mature, and the language feels more consistent (see the '&' operator in Sass vs the :hover special case in Less). The editor/tool support was quite a bit better too. Sass doesn't have a javascript in-browser implementation (afaik), but for rapid development it can watch a folder/file for changes and automat…
Interesting. I tried both and now use LESS with the More plugin in my rails app. I'm a huge fan of HAML, but I haven't fallen in love with SASS yet. The big upside to LESS is it still looks like CSS. Compass is interesting though, from the SASS side. http://github.com/chriseppstein/compass
See the examples on their front page: http://sass-lang.com
They have a command line tool "sass-convert", which can convert between the syntaxes (and from Less)