CoffeeScript hits 1.0 -- Happy Holidays, HN
11–20 of 55 posts
Re: CoffeeScript hits 1.0 -- Happy Holidays, HN
#12Great work Jeremy! I've been using CoffeeScript extensively for an upcoming project, and having written 1000+ lines of it so far, I'm loving it!
Now if someone made a Cappuccino like framework on top of CoffeeScript instead of Objective-J I'd be in heaven :) Out of curiosity, what are you making?
Re: CoffeeScript hits 1.0 -- Happy Holidays, HN
#13Re: CoffeeScript hits 1.0 -- Happy Holidays, HN
#14It's pretty clear that jashkenas is the Chuck Norris of Javascript.
There is some clear talent behind these projects.
Re: CoffeeScript hits 1.0 -- Happy Holidays, HN
#15Earlier quoted context omitted.
Now if someone made a Cappuccino like framework on top of CoffeeScript instead of Objective-J I'd be in heaven :) Out of curiosity, what are you making?
We are developing an open-source MMO on node.js and WebGL - http://github.com/feisty
Re: CoffeeScript hits 1.0 -- Happy Holidays, HN
#16Earlier quoted context omitted.
Now if someone made a Cappuccino like framework on top of CoffeeScript instead of Objective-J I'd be in heaven :) Out of curiosity, what are you making?
We are developing an open-source MMO on node.js and WebGL - http://github.com/feisty
Re: CoffeeScript hits 1.0 -- Happy Holidays, HN
#17Would people be interested in a Ruby-oriented project like this? Say, tiny.rb ported to use Javascript? (Some Googler already has a Lua-esque VM for tiny.rb as her 20% project.)
* https://github.com/superchris/rubyjs
* https://github.com/jessesielaff/red
* https://github.com/tlrobinson/cappruby
I'm afraid that Ruby semantics don't align too well with JavaScript semantics. Things as basic as numbers, method dispatch, and variable scoping don't work the same way. Either you end up with perfectly valid code written in one that doesn't run on the other, or you have an extremely slow Ruby interpreter implemented on top of JavaScript.
This is the main reason why CoffeeScript tries to stick as close to JavaScript as possible.
Re: CoffeeScript hits 1.0 -- Happy Holidays, HN
#18It's pretty clear that jashkenas is the Chuck Norris of Javascript.
For the last week I've been using CoffeeScript along with Backbone.js & Underscore.js (all backed by jashkenas) and it's given me a much greater appreciation for the power of javascript. There is some clear talent behind these projects.
Here's hoping for a larger community adoption!
Re: CoffeeScript hits 1.0 -- Happy Holidays, HN
#19Good to see new languages improving upon syntax, readability is key and a great way to gain adoption. As Norvig said, it is easier for him to explain an algorithm in python than any other language. Well, now CoffeeScript has just passed that test too.
Brendan Eich is also adapting many good things from CoffeeScript to JS.next, validating the point that coffee, in its short life, has been able to influence other great language designers.
And that says a lot about CoffeeScript and its potential.