Re: [ANN] Quil 2.4.0 and improved live editor

2016-03-24 Thread Dragan Djuric
Thank you for keeping this fantastic library alive :) On Thursday, March 24, 2016 at 9:03:42 PM UTC+1, Nikita Beloglazov wrote: > > Happy to announce Quil 2.4.0 release. > > Quil is a Clojure/ClojureScript library for creating interactive drawings > and animations. > > The release available on cl

Re: clojure.math.combinatorics/combinations throws exception on n=1

2016-03-24 Thread Alex Miller
I think this could be corrected by calling seq on the incoming coll (on the last line of the definition) and that would be in line with the rest of the seq functions in "seq"-ing their arg. This is kind of a degenerate case of course - sets are always distinct so (distinct ) should be the same

Re: Interest in a Full Featured Clojure Blog Engine

2016-03-24 Thread unst...@gmail.com
I ran across this today: Perun On Thursday, 18 July 2013 08:24:06 UTC-6, frye wrote: > > Hello, > > I'm thinking of how to build a composable blogging engine in Clojure. > There have been a few attempts at this, with cow-blog >

[ANN] Quil 2.4.0 and improved live editor

2016-03-24 Thread Nikita Beloglazov
Happy to announce Quil 2.4.0 release. Quil is a Clojure/ClojureScript library for creating interactive drawings and animations. The release available on clojars: https://clojars.org/quil. List of changes: - Updated cheatsheet

Re: clojure.math.combinatorics/combinations throws exception on n=1

2016-03-24 Thread Mark Engelberg
Looking at the source for distinct, the reason it fails is because it tries to destructure the set as a seq, and sets can't be destructured in this way. A lot of people think that (let [[f & r] coll] ...) is the same as (let [f (first coll), r (rest coll)]...), but they are not the same, because f

[ANN] schema-generators 0.1.0 (now with ClojureScript!)

2016-03-24 Thread Jason Wolfe
We've released schema-generators 0.1.0, which includes ClojureScript support via cljc: https://github.com/plumatic/schema-generators This library allows you to generate test data from most plumatic/schemas out of the box, as well as automatically "complete" partial datums -- which can both be

Protocols in another namespace, retract-type possible ?

2016-03-24 Thread Niels van Klaveren
In a project using clojure.java.jmx, I was extending it's Destract protocol object->data function to transform more of the JMX data structures returned from calls or metadata queries into plain clojure data structures. When I was done with the individual data structures, it should have been po

Re: clojure.math.combinatorics/combinations throws exception on n=1

2016-03-24 Thread Erik Assum
Interesting that set doesn't implement distinct. It should be a pretty straight forward implementation. Erik. -- i farta > Den 24. mar. 2016 kl. 00.53 skrev Mark Engelberg : > > The input should be a sequence not a set, so call seq on the input before > passing it to this function. > > Sor