Re: [ClojureScript] Re: A real clojurescript dedicated website

2015-05-01 Thread Oliver George
Small thing, but I love the logo. On Sat, May 2, 2015 at 3:06 AM, Shaun LeBron shaunewilli...@gmail.com wrote: We are working on a website here: https://github.com/cljsinfo we're mainly working on docs right now: http://cljsinfo.github.io/api-docs-report/ On Thursday, April 30, 2015 at

Re: [ClojureScript] ClojureScript, NodeJS, and CLIs

2015-05-01 Thread Daniel Compton
Hi Jeremy You can find more contributing info at http://clojure.org/contributing. If you're having issues with JIRA, then try asking Alex Miller on IRC, or Twitter @puredanger. On Sat, 2 May 2015 at 8:45 am David Nolen dnolen.li...@gmail.com wrote: Clojure projects do not take PRs. You need to

[ClojureScript] Re: A real clojurescript dedicated website

2015-05-01 Thread Benjamin Dreux
Le vendredi 1 mai 2015 13:06:50 UTC-4, Shaun LeBron a écrit : We are working on a website here: https://github.com/cljsinfo we're mainly working on docs right now: http://cljsinfo.github.io/api-docs-report/ On Thursday, April 30, 2015 at 11:26:59 AM UTC-5, Benjamin Dreux wrote: Hi,

[ClojureScript] Re: A real clojurescript dedicated website

2015-05-01 Thread Antonin Hildebrand
I would also recommend subscribing to ClojureScript Hero by Norbert Wójtowicz: http://bit.ly/cljs-hero Here are some of his recent talks: https://vimeo.com/122316380 https://www.youtube.com/watch?v=6_mbxaRDA-s Antonin On Thursday, April 30, 2015 at 11:26:59 PM UTC+7, Benjamin Dreux wrote: Hi,

Re: [ClojureScript] Re: A real clojurescript dedicated website

2015-05-01 Thread Marc Fawzi
Honestly, I love the taxonomy ... Getting more out of it than other cljs cheatsheets out there ... A section on macros in cljs with examples covering all features of macros and all ways you could write a macro would be really helpful. Another favorite thing would be to accumulate examples

Re: [ClojureScript] Re: A real clojurescript dedicated website

2015-05-01 Thread Marc Fawzi
do you accept pull requests at this stage? Would be nice to add the zipper function: https://clojuredocs.org/clojure.zip/zipper On Fri, May 1, 2015 at 10:35 AM, Marc Fawzi marc.fa...@gmail.com wrote: Honestly, I love the taxonomy ... Getting more out of it than other cljs cheatsheets out

[ClojureScript] Re: A real clojurescript dedicated website

2015-05-01 Thread Shaun LeBron
We are working on a website here: https://github.com/cljsinfo we're mainly working on docs right now: http://cljsinfo.github.io/api-docs-report/ On Thursday, April 30, 2015 at 11:26:59 AM UTC-5, Benjamin Dreux wrote: Hi, I'm pretty new to Clojurescript. And i feel a little bit weird the

[ClojureScript] Re: [ANN] Clojure 1.7.0-beta2

2015-05-01 Thread Nicola Mometto
Fluid Dynamics writes: That's weirdly inconsistent with e.g. (defn ^String prefix [s n]...). It can be surprising behaviour, but it's not an inconsistency. As per the documentation, metadata on the symbol being def'd *is* evaluated, metadata on the argvec isn't. Evaluating `String` produces

[ClojureScript] ANN: Gamma, GLSL shaders made simple

2015-05-01 Thread kovas boguta
Gamma is a substrate for graphics software, such as games and data visualization tools. It presents a simple, composable language for representing GLSL shaders. It allows using Clojurescript to abstract shaders. https://github.com/kovasb/gamma Technically, Gamma is an EDSL that hosts GLSL within

Re: [ClojureScript] A real clojurescript dedicated website

2015-05-01 Thread Gary Schiltz
On Thursday, April 30, 2015 at 11:45:03 AM UTC-5, David Nolen wrote: No plans at the moment for an official ClojureScript site. There are some community led efforts underway which we whole-heartedly encourage! David On Thu, Apr 30, 2015 at 12:10 PM, Benjamin Dreux benji...@gmail.com

[ClojureScript] Re: [ANN] Clojure 1.7.0-beta2

2015-05-01 Thread Alex Miller
On Fri, May 1, 2015 at 2:53 PM, Nicola Mometto brobro...@gmail.com wrote: Now, if you want to argue that the compiler should immediately throw an error as soon as the wrong type hint is used rather than silently ignore it and fail when the type-hinted form is used, I'll agree with you and

Re: [ClojureScript] ClojureScript, NodeJS, and CLIs

2015-05-01 Thread David Nolen
Clojure projects do not take PRs. You need to submit a Clojure CA, then create a ticket and attach a patch to JIRA. David On Fri, May 1, 2015 at 4:28 PM, Jeremy Shoemaker jer...@codingkoi.com wrote: That's understandable. You build what you need when you need it. I'm not sure what the

Re: [ClojureScript] ClojureScript, NodeJS, and CLIs

2015-05-01 Thread Jeremy Shoemaker
That's understandable. You build what you need when you need it. I'm not sure what the contribution process is. From what I found, I thought it involved creating a ticket in the Clojure JIRA, but I'm having issues with it. When I try to login, it throws an error saying that user should not

[ClojureScript] Re: [ANN] Clojure 1.7.0-beta2

2015-05-01 Thread Nicola Mometto
Alex Miller writes: On Fri, May 1, 2015 at 2:53 PM, Nicola Mometto brobro...@gmail.com wrote: Now, if you want to argue that the compiler should immediately throw an error as soon as the wrong type hint is used rather than silently ignore it and fail when the type-hinted form is used, I'll

[ClojureScript] Re: [ANN] Clojure 1.7.0-beta2

2015-05-01 Thread Nicola Mometto
The type-hint on init-state is wrong. It has to be either (defn {:tag 'longs} init-state [] (long-array 1)) or (preferred) (defn init-state ^longs [] (long-array 1)) shlomivak...@gmail.com writes: I tried playing around with the new primitive type hints and got the following weird behavior

[ClojureScript] Fresh Google Closure API Docs

2015-05-01 Thread Mike Thompson
You have probably been looking at stale Google Closure docs. The freshly generated API docs are available here: http://google.github.io/closure-library/api/index.html Background on the staleness: https://groups.google.com/forum/#!topic/closure-library-discuss/l2_rx0ROFNc -- Mike -- Note

Re: [ClojureScript] Fresh Google Closure API Docs

2015-05-01 Thread Oliver George
Thank you! On Fri, May 1, 2015 at 6:09 PM, Mike Thompson m.l.thompson...@gmail.com wrote: You have probably been looking at stale Google Closure docs. The freshly generated API docs are available here: http://google.github.io/closure-library/api/index.html Background on the staleness:

[ClojureScript] Re: using cljsjs jars

2015-05-01 Thread Sebastian Bensusan
On Thursday, April 30, 2015 at 9:36:03 PM UTC+2, upgrad...@gmail.com wrote: I'm missing something ... I'd like to use leafletjs in clojurescript. So, I added `[cljsjs/leaflet 0.7.3-0]` as a dependency to project.clj. Then, I use the leafletjs inside cljs like so: (.setView

[ClojureScript] Re: using cljsjs jars

2015-05-01 Thread upgradingdave
Thanks Sebastian, makes sense. I understand how externs work now ;-) Advanced compilation is working for me now! Woohoo! https://github.com/cljsjs/packages/pull/111 Thanks, Dave -- Note that posts from new members are moderated - please be patient with your first post. --- You received