I\'ve got problems using bindAll. The error I get is func is undefined. Any thoughts on what I\'m doing wrong?
So I\'ve got a Express.js server setup, but after about 5 minutes on production - http://balupton.com - it crashes and restarts.
I\'m trying out the coffee script repl inside Emacs (under ArchLinux) and I\'m seeing these escape characters surrounding the prompt:
I\'d like to play around with integrating coffeescript into my dev process. But as I see it, I\'ll have to make a bat file that iterates a set of coffee files and spits out js files. Every time I writ
In the following code x= (f,n) -> f(n) ... x( (n) -> n+1 , 5) #parse erro开发者_JS百科r How can I fix the parse error above ?
TLDR: What can you do to combine multiple CoffeeScript files into one JS file, in RoR, all under the same anonymous function block?
Exists such a Javascript code: var re = /some_regex/g; return re.exec(link.attr(\'href\'))[0] How to call this in CoffeeScript
Trying to understand how CoffeeScript instance and class variable works I came with this code (and the results are in the comments).
I\'ve got a website that I\'d like to pull data from and it\'s really stuck in the stone ages. There\'s no web service, no API and it\'s very much an ASP/Session/table-based-layout page. Pretty fugly.
Please review the code below and suggest more elegant ways of doing the same. I am storing JSON strings in Redis database. To extract an array of objects, I use the following code that works. Just fo