[ANN] Bidirectional Ring router. REST oriented. Rails inspired.

2017-03-22 Thread Михаил Кузьмин
https://github.com/darkleaf/router -- 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 unsubscribe

Re: The major upgrade to Neanderthal (the matrix library) will be released soon, with lots of new functionality.

2017-03-22 Thread Christian Weilbach
Am 22.03.2017 um 02:41 schrieb Dragan Djuric: > More details > at: http://dragan.rocks/articles/17/Neanderthal-090-is-around-the-corner Nice work! Hopefully I can play with it soon :). -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this

clojure.data.zip Selecting a nested tag where tag shares same name as parent

2017-03-22 Thread Peter Schmiedeskamp
Hello, I posted this question to StackOverflow, and one commenter suggested that this was a more appropriate place to ask this question (http://stackoverflow.com/questions/42940811/select-nested-xml-element-where-nested-tag-is-the-same-name-using-clojure-data-z) I have a bit of XML that I'm wra

Re: The major upgrade to Neanderthal (the matrix library) will be released soon, with lots of new functionality.

2017-03-22 Thread Dragan Djuric
Great! Please follow up with feedback when you do! On Wednesday, March 22, 2017 at 2:55:57 PM UTC+1, Christian Weilbach wrote: > > Am 22.03.2017 um 02:41 schrieb Dragan Djuric: > > More details > > at: http://dragan.rocks/articles/17/Neanderthal-090-is-around-the-corner > > Nice work! Hopefully

off-topic: stackof developer survey

2017-03-22 Thread Gregg Reynolds
very interesting stuff, esp. the sociological bits: http://stackoverflow.com/insights/survey/2017 sadly, clojure does not even rank in popularity. but it's number 1 in pay worldwide. o sweet vengeance! -- You received this message because you are subscribed to the Google Groups "Clojure" grou

Re: off-topic: stackof developer survey

2017-03-22 Thread Luke Burton
> On Mar 22, 2017, at 2:26 PM, Gregg Reynolds wrote: > > very interesting stuff, esp. the sociological bits: > > http://stackoverflow.com/insights/survey/2017 > > > sadly, clojure does not even rank in popularity. but it's number 1 in pay > wo

Re: clojure.data.zip Selecting a nested tag where tag shares same name as parent

2017-03-22 Thread Matching Socks
Does inserting clojure.zip/down between the two :thing's help? If these examples are representative, then clojure.core/xml-seq could be simpler than zippers: (def xmlstuff (first example1)) ;; you got a list from parse; get the root element (->> xmlstuff xml-seq (filter #(= :thing (:tag %)))

Re: off-topic: stackof developer survey

2017-03-22 Thread Gregg Reynolds
On Wed, Mar 22, 2017 at 6:16 PM, Luke Burton wrote: > > On Mar 22, 2017, at 2:26 PM, Gregg Reynolds wrote: > > very interesting stuff, esp. the sociological bits: > > http://stackoverflow.com/insights/survey/2017 > > sadly, clojure does not even rank in popularity. but it's number 1 in pay > wo

Re: off-topic: stackof developer survey

2017-03-22 Thread Didier
As I understand it, the Most Love metric asks people who work with the language how happy they are with it. So I find this metric very interesting. Clojure foes rank well in this, but it falls below a lot of others. I'd like to know why? Why doesn't everyone who uses Clojure loves it? I can se

Re: livecoding with Quil middleware

2017-03-22 Thread Jay Porcasi
hi Nikita thank you so much for your explanation, it's very clear (and a bit surprising to learn that partial and anonymous functions have a slightly different semantics) i am able to get the live coding behaviour when i redefine fill-background (as per your example, and that's great that it i

Can you extend a Java class, and add new fields and constructors to it?

2017-03-22 Thread Didier
Hi, I'm trying to see if you can extend a Java class in Clojure, in a way that lets you add class members (fields) and new constructor methods. I'm pretty sure you can not with reify, since that only works on interfaces and protocol, but I'm thinking there should be a way to do so with proxy m

Re: Can you extend a Java class, and add new fields and constructors to it?

2017-03-22 Thread Erik Assum
Not sure that this is exactly what you're asking for, but it might still give you a starting point: https://github.com/wjoel/clj-bean Erik. -- i farta > Den 23. mar. 2017 kl. 07.12 skrev Didier : > > Hi, > > I'm trying to see if you can extend a Java class in Clojure, in a way that > lets

Shout-out to Clojure and Rich @ ReactConf 2017

2017-03-22 Thread Alan Moore
>From ReactConf 2017, Cheng Lou's "Taming the Meta Language": https://www.youtube.com/watch?v=_0T5OSSzxms At the end (35:00) is a shout-out to Clojure and Rich Hickey... I thought it was a nice attribution of his inspiration for work he did on Factor and the React bindings. This talk reminds m