Re: No eval in ClojureScript!?

2016-02-14 Thread ru
Thank you Alan for very helpful information. I know about Clara but don't watch its progress attentively fore some time :( Regards, Ru суббота, 13 февраля 2016 г., 18:25:46 UTC+3 пользователь ru написал: > > Dear ClojureScript users and team! > > Without "eval" function ClojureScript can't be

Re: No eval in ClojureScript!?

2016-02-14 Thread ru
I took a look at the Clara's code. This is excerpt from the comment of "defsession" defmacro: "..Each source is eval'ed at compile time, in Clojure (not ClojureScript.)..". So, this is a solution, but not clear ClojureScript solution :( -Ru суббота, 13 февраля 2016 г., 18:25:46 UTC+3 пользовате

Re: [ANN] dali SVG library 0.7.0

2016-02-14 Thread bernardH
On Thursday, February 11, 2016 at 1:49:54 AM UTC+1, Stathis Sideris wrote: > > Hello all, > > dali is a Clojure library for representing the SVG graphics format. It > allows the creation and manipulation of SVG files. The syntax >

confirming a core async channel is empty?

2016-02-14 Thread Stig Brautaset
In a unit test I am checking that a core async channel is empty. I couldn't find any `empty?` function for core async channels, and since `!! channel sentinel) (http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to

confirming a core async channel is empty?

2016-02-14 Thread Alex Miller
You could use poll! - it is non-blocking. -- 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 with your first post. To unsubs

Re: Welcome the new maintainer of Loom: Paul Snyder

2016-02-14 Thread Paul L. Snyder
On Thu, 11 Feb 2016, Aysylu Greenberg wrote: > I'm pleased to announce that Paul Snyder (@pataprogramming, pataprogramming > on Github ) has joined me in > maintaining Loom. I'm excited for the coming year for Loom > , with mor

[ANN] Graclj 0.1.0 -- New Gradle Plugin for Clojure

2016-02-14 Thread Andrew Oberstar
I just released the first version of Graclj, which is a new Gradle plugin for Clojure. The goal is to make something that feels native to Gradle, while giving the creature comforts Clojurians are used to from lein or boot. For those familiar with Gradle, this targets their new (and still evolving)

Shouldn't we consider this a bug? "Unable to resolve symbol: % in this context"?

2016-02-14 Thread Laws
If I write this in a file: (defn different-order [order] {:pre [ (map? order) (:waiter order) (:customer order) (:menu-item-name order) ] :post [ (map? %) (:waiter %) (:customer %) (:menu-item-name %)

Re: Shouldn't we consider this a bug? "Unable to resolve symbol: % in this context"?

2016-02-14 Thread James Reeves
The problem is: how do you tell the difference between a pre- and post-condition map, and a map you want to return from the function? The only way to do it is to explicitly return nil. - James On 15 February 2016 at 04:48, Laws wrote: > If I write this in a file: > > (defn different-order [ord

Re: Welcome the new maintainer of Loom: Paul Snyder

2016-02-14 Thread Andy Fingerhut
I had never seen JUNG before. I've not looked at its implementation at all, but the demos are pretty impressive. As you say, graphviz is nice for what it does, but I did not realize there was an open source 'graphical graph manipulator' like this. Andy On Sun, Feb 14, 2016 at 12:38 PM, Paul L.