Earlier quoted context omitted.
I checked out your app, very interesting how native it feels. Would you recommend Titanium, in general?
Titanium is a mixed bag. For simple applications, it's great, but as soon as you need to do something a little bit complicated, the learning curve goes up quite a bit. For example, in my app ( http://iphone.albumpl.us ) I had to write a couple of small custom objective-c modules to get some camera/image stuff to have sufficient performance. But overall being able to write most of it in CoffeeScript, is so much better…
Poll: Have you moved from JavaScript to CoffeeScript?
81–90 of 178 posts
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#82Earlier quoted context omitted.
Yes, and why would I want less of JavaScript's syntax in my life when it has so much overlap with other languages I use like PHP?
Well, you do choose Javascript when you could have chosen PHP and had even more overlap. Presumably, because you believe it is better for the tasks. Similarly, Coffeescript authors believe that Coffeescript is better than Javascript -- even if there's less overlap.
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#83Earlier quoted context omitted.
Used it. Not extensively, but I have. It adds nothing of real value for me; I have no fundamental beef with the Good Parts of JavaScript and get nothing from a Ruby-inspired hat on top. I'd like to see something like MileScript gain some traction--not to replace JavaScript, but as another tool in the toolbox. MileScript adds new value that you don't really get with plain JS; CoffeeScript doesn't.
I'd be shocked if Milescript got traction without it being inflicted on developers from above. Milescript turns Javascrpit into Java. Whilst many developers don't have a problem with static typing, none I know of like the verbosity of Java. An ML or Haskell styled Javascript might fare better.
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#84Re: Poll: Have you moved from JavaScript to CoffeeScript?
#85Also, I never understood why some people advocate learning C++ before C. But that's a different debate...
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#86After reading posts about it on here for maybe a year, I recently decided to try it for a small jQuery plugin. I enjoyed it so much that we immediately switched to writing all new code in CoffeeScript and have begun converting existing code as time allows. The benefits over straight JavaScript are amazing—I’d been writing careful code that drew from the ‘good parts’ mentality and pre-declared all variables, etc. Now…
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#87Re: Poll: Have you moved from JavaScript to CoffeeScript?
#88Re: Poll: Have you moved from JavaScript to CoffeeScript?
#89After reading posts about it on here for maybe a year, I recently decided to try it for a small jQuery plugin. I enjoyed it so much that we immediately switched to writing all new code in CoffeeScript and have begun converting existing code as time allows. The benefits over straight JavaScript are amazing—I’d been writing careful code that drew from the ‘good parts’ mentality and pre-declared all variables, etc. Now…
Is it difficult to debug the resulting code?
Re: Poll: Have you moved from JavaScript to CoffeeScript?
#90I'm currently learning JS, but am preferring to not learn CoffeeScript or jQuery yet, because I feel like I would be avoiding the nitty-gritty of the language with convenient frameworks that pave over some ugly spots. I know that JS is a bit of an aberration in that it has been around for so long in so many places yet has so many fundamental flaws, but it feels wrong that I would have to learn a framework that wraps…