aatree release 0.5.1--Memory Constrained for Queries

2015-11-08 Thread William la Forge
The aatree project provides fully compatible alternatives to Clojure sorted-map, sorted-set and vector, with several extensions: - AAVector supports add/drop at any point using addn and dropn. - AAMap and AASet implement Reversible, Counted, Indexed and Sorted - CountedSequence implements

Cryptic crashes in Leiningen

2015-11-08 Thread James Elliott
This weekend I was thrilled to have two people pick up and start experimenting with Afterglow, the live-coding light show software I’ve been working on this year, and both are new to Clojure as well. Unfortunately one is stuck and I am stumped about how to try to help: He’s been able to use

Re: Cryptic crashes in Leiningen

2015-11-08 Thread Gary Trakhman
Just a guess, since your project has many dependencies, and I have little time right now, but I had a recent issue with tools.reader <=0.9.2 and the ExceptionInfo class. The maven artifacts for tools.reader bundled .class files, and triggered this bug: http://dev.clojure.org/jira/browse/CLJ-1639

Re: Cryptic crashes in Leiningen

2015-11-08 Thread James Elliott
Thanks, Gary! Kevin tried a :verbose require, and the last few lines involved loading tools.reader and the ExceptionInfo class, so it seems very likely that you are correct about the problem. I have suggested trying this exclusion, does that look like it might do the trick? (I’m not entirely

Procedurally generated animation in Clojure

2015-11-08 Thread Mikera
Hi all, I created a set of tools this weekend to produce procedurally generated animations in Clojure. May be of interest to those who like computer graphics and the more creative usages of Clojure! Here's an example which I rendered overnight: https://www.youtube.com/watch?v=94CtmzAUIBI

Using cookies with clj-http.client

2015-11-08 Thread Mike
Hello, I have a web site that uses cookies for authentication. You logon to a specific URL with your username and password using a POST (which I have working; I get a 200 status back) which should create a cookie; then you use the cookie for all future access to the web site. I have all of