Results 204 comments of Maxwell Krohn

@khiltd that's an interesting suggestion, there used to be something like that....The reason I killed it is that the inlined runtime isn't as full-featured as the runtime that's in `iced.coffee`....

@khiltd the inlined version doesn't have code for Rendezvous or the stack-overrun-protector (when you call `await` in a tight loop and never go back to the main event loop). I...

Sorry, I messed up the npm publish it seems. Try to reinstall 1.2.0o, did that work?

WHAT THE! Ok, This time I verified it with npm's website, it's got to be right now. Really sorry about that!

Ok, great. I also brought a sledgehammer to bear on the problem and bumped to 1.2.0p. So long 1.2.0o, we hardly knew ye.

@softprops that exists --- I've patched extras/coffee-script.js to have the iced runtime. As an example, the brochure site is using it, and it seems to work. Check out http://maxtaco.github.com/coffee-script, and...

No problem, thanks for giving it a shot, let me know how it goes.

I should investigate further but a quick fix is to use `->` rather than `=>` ``` coffee-script is200_async = require './is200_async.iced' module.exports = (url, autocb) -> await is200_async url, defer()...

Thanks for the feature requests, now working through some of them... I made `register` work the way you describe in the most recent checkins.

I would write a converter function to convert it to a one-callback convection. ``` coffeescript converter = (cb) -> cb_success = (args...) -> cb null, args... cb_error = (err) ->...