Re: Missing fns: rotate & rotate-while

2019-03-22 Thread Nathan Rogers
(defn rotate [a n] (let [l (count a) off (mod (+ (mod n l) l) l)] (flatten (list (drop off a) (take off a) (rotate '(1 2 3 4 5) -1) => (5 1 2 3 4) (rotate '(1 2 3 4 5) -6) => (5 1 2

[ANN] kamera - visual testing tools for Clojure with devcards integration

2019-03-22 Thread Oliver Hine
Hi everyone, I'm very excited to announce kamera , a visual testing tool for Clojure. > > When data is represented visually for a human to view you must take to > present it intuitively, accessibly and beautifully. This requires skill, > time and above all h