Re: Clojurejs: a lightweight clojure to javascript compiler

2012-10-09 Thread Hoàng Minh Thắng
On Monday, October 8, 2012 9:09:49 PM UTC+7, Jim foo.bar wrote: On 08/10/12 14:47, Mark Rathwell wrote: ClojureScript is a Clojure implementation that targets Javascript (meaning that Clojure core, et al, is also necessarily converted to Javascript in the build process and a part

Clojurejs: a lightweight clojure to javascript compiler

2012-10-08 Thread Hoàng Minh Thắng
Hi all, Clojurejs started by [kriyative](https://github.com/kriyative) is an amazing project that compile clojure to javascript. I've just made it available in clojure 1.4.0, rewrite tests with [evaljs](https://github.com/weavejester/evaljs/) and add macros like ., .., - and -. Github repo

Re: Clojurejs: a lightweight clojure to javascript compiler

2012-10-08 Thread Timothy Baldridge
Clojurejs started by [kriyative](https://github.**com/kriyativehttps://github.com/kriyative) is an amazing project that compile clojure to javascript. This can hardly be called Clojure. The syntax may be similar, but the semantics are all wrong. From boot.cljs (defn map [fun arr] (loop

Re: Clojurejs: a lightweight clojure to javascript compiler

2012-10-08 Thread Mark Rathwell
Now I'm confused! Isn't clojureScript exactly that? ClojureScript is a Clojure implementation that targets Javascript (meaning that Clojure core, et al, is also necessarily converted to Javascript in the build process and a part of what you ship). I'm assuming this project is a straight

Re: Clojurejs: a lightweight clojure to javascript compiler

2012-10-08 Thread Jim foo.bar
On 08/10/12 14:47, Mark Rathwell wrote: ClojureScript is a Clojure implementation that targets Javascript (meaning that Clojure core, et al, is also necessarily converted to Javascript in the build process and a part of what you ship). I'm assuming this project is a straight translator from

Re: Clojure on Javascript: Crockford javascript lectures

2011-08-13 Thread daly
Crockford makes the point that script tag processing stops every other process in the browser including the asynchronous fetch of images. He strongly recommends that script tags be placed toward the end of the body tag. This allows maximum overlap of processing and makes the page appear as soon as

Clojure on Javascript: Crockford javascript lectures

2011-08-12 Thread daly
You might want to look at some of the information on Crockford's webpage about Javascript http://javascript.crockford.com In particular, lecture 3 in his video series is about functions, classes, objects, etc in Javascript: http://www.yuiblog.com/blog/2010/02/24/video-crockonjs-3 Tim Daly

Re: Clojure on Javascript

2010-11-03 Thread Michael Ossareh
On Fri, Oct 29, 2010 at 21:32, Michael Gardner gardne...@gmail.com wrote: Agreed. What is the point of Javascript on the server side? Familiarity? Consistency with client-side code? I guess what Java was meant to be, to some degree? Write once run anywhere. I for one am still hankering for a

Re: Clojure on Javascript

2010-10-30 Thread Bob Hutchison
On 2010-10-30, at 12:32 AM, Michael Gardner wrote: On Oct 29, 2010, at 11:09 PM, David Nolen wrote: JS brought me to Lisp, I would love to see the Clojure community bring Lisp back to JS. However I fail to see what advantage JS gives on the server side. From what I've seen the V8 GC and

Re: Clojure on Javascript

2010-10-30 Thread Scott Jaderholm
On Sat, Oct 30, 2010 at 12:09 AM, David Nolen dnolen.li...@gmail.comwrote: More interesting would be something along the lines of CoffeeScript (like ClojureScript) that takes a reasonable subset Clojure and compiles into efficient JS, allowing Clojure programmers to send Clojure code to

Clojure on Javascript

2010-10-29 Thread Tim Daly
Has anyone thought about putting clojure on javascript? Tim Daly -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient

Re: Clojure on Javascript

2010-10-29 Thread Santosh Rajan
Now that server side javascript is growing with node.js, clojure on javascript will be usefull. Nodejs is event based and not thread based so I don't know the ramifications on clojure yet. On Sat, Oct 30, 2010 at 8:33 AM, Tim Daly d...@axiom-developer.org wrote: Has anyone thought about

Re: Clojure on Javascript

2010-10-29 Thread Victor Olteanu
cf. node js, I thought of mentioning this link http://dosync.posterous.com/22397098 On Fri, Oct 29, 2010 at 11:10 PM, Santosh Rajan santra...@gmail.com wrote: Now that server side javascript is growing with node.js, clojure on javascript will be usefull. Nodejs is event based and not thread

Re: Clojure on Javascript

2010-10-29 Thread David Nolen
A port of Clojure to JS would be interesting. Rich has expressed interest and Chouser's ClojureScript is a step in that direction. On Fri, Oct 29, 2010 at 11:28 PM, Victor Olteanu bluestar...@gmail.comwrote: cf. node js, I thought of mentioning this link http://dosync.posterous.com/22397098

Re: Clojure on Javascript

2010-10-29 Thread Michael Gardner
On Oct 29, 2010, at 11:09 PM, David Nolen wrote: JS brought me to Lisp, I would love to see the Clojure community bring Lisp back to JS. However I fail to see what advantage JS gives on the server side. From what I've seen the V8 GC and Node.js have a considerable number of years to go