[ANN] Cognitect Labs' aws-api 0.8.437

2020-02-14 Thread David Chelimsky
Cognitect Labs' aws-api 0.8.437 is now available! CHANGES - fix issue with invoke hanging when no region or creds are found #124 README: https://github.com/cognitect-labs/aws-api/ API Docs: https://cognitect-labs.github.io/aws-api/ Ch

Re: [ANN] Cognitect Labs' aws-api 0.8.430

2020-02-14 Thread David Chelimsky
That should be com.cognitect/http-client (https://search.maven.org/search?q=g:com.cognitect%20AND%20a:http-client) It is a dependency of aws-api, which it uses to submit http requests. On Wednesday, February 12, 2020 at 6:52:31 AM UTC-6, Tim Visher wrote: > > What's cognitect.http-client? > > On

Re: Odd exception on lazy sequence

2020-02-14 Thread KJO
OK. I got some super guidance from p-himik on the Slack channel (Thank you!). Essentially there was a TreeSet in one of the sets to be conj'ed and that was causing the exception. Apparently, it's not a trivial matter to conj tree-sets :-). -- You received this message because you are subscrib

Re: JNA stdout and the REPL

2020-02-14 Thread Jason Felice
I imagine you'll have to call the Java System.out.println from C. I forget how exactly to do this. Java streams and ANSI/POSIX C streams aren't compatible. The C ones usually rely on having an OS file descriptor, and Java allows making new kinds by implementing interfaces. There's not a general

[ANN] - neanderthal-stick (Neanderthal matrix library extension)

2020-02-14 Thread Kamil Toman
Hi everyone, I am pleased to announce the first release of neanderthal-stick 0.1.0 - save/load extensions to Dragan's Neaderthal matrix library. The focus of Neanderthal-stick is saving neanderthal data to a disk and importing them back fast and with as little ceremony as possible. Note that N

Odd exception on lazy sequence

2020-02-14 Thread KJO
I'm stumped on this. I have a function that returns a lazy sequence (let's call it lzs - it's produced by another function, and for this exercise I def'd it in the REPL from `*1'). It's a sequence of maps. When I apply a merge-with operation to the lazy sequence. I get the following error. c

Re: JNA stdout and the REPL

2020-02-14 Thread Sonny To
here is an example of > package foo; > >

JNA stdout and the REPL

2020-02-14 Thread Sonny To
I am using JNA to call native C code. calling native code that outputs to stdout does not show up in the Clojure REPL. stdout is redirected somewhere that is not attached to *out* How can I get stdout from native code outputting to *out* in the REPL? Without this, it makes it difficult to see w