Re: New AWS services supported by Cognitect Labs' aws-api.

2019-12-04 Thread Michael Glaesemann
es listed below. See > https://github.com/cognitect-labs/aws-api/blob/master/latest-releases.edn for > a full listing of all of the services aws-api supports. > > Enjoy! You rock, David! Michael Glaesemann grzm seespotcode net -- You received this message because you are subscrib

Re: [ANN] Clojure 1.10 has been released!

2018-12-17 Thread Michael Glaesemann
days 😊 > > And, yeah, this was the first release of Clojure itself that I got a patch > into… and it was just a backport of a patch from the ASM Java code, so it > wasn’t really even my contribution! Thanks, Sean :) Michael Glaesemann grzm seespotcode net -- You received this me

Re: [ANN] com.cognitect.aws/api-0.8.155

2018-12-12 Thread Michael Glaesemann
> On 2018–12–12, at 19:07, David Chelimsky wrote: > > com.cognitect.aws/api-0.8.155 is now available. Rock on! Michael Glaesemann grzm seespotcode net -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this g

Re: [ANN] Programming Clojure, 3rd edition

2018-02-21 Thread Michael Glaesemann
m > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Clojure" group. > To unsubscribe from this group and stop receiving emails from it, send an >

Re: [ANN] Clojure 1.9.0-RC2

2017-11-27 Thread Michael Glaesemann
> On 2017-11-27, at 16:17, Alex Miller wrote: > > I should also mention that I've re-built the Clojure doc automation process > and the Clojure docs have refreshed for the first time in a long while. Thanks, Alex! Michael Glaesemann grzm seespotcode net -- You rece

Re: Clojure/conj hotel reservations

2017-09-22 Thread Michael Glaesemann
ubscribe from this group and stop receiving emails from it, send an > email to clojure+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. Michael Glaesemann grzm seespotcode net -- You received this message because you are subscribed to the Google

Re: Stubbing with instrument and generators

2017-06-30 Thread Michael Glaesemann
getting matched. Feel free to file a ticket for this. > > On Friday, June 30, 2017 at 9:37:42 AM UTC-5, Michael Glaesemann wrote: > Using spec instrument to stub functions is really helpful. I'm using stubbing > to test Stuart Sierra-style components with some success. However, I

Stubbing with instrument and generators

2017-06-30 Thread Michael Glaesemann
t isn't there would result in the thing still not being there, thus the :no-gen failure. And it is something that can be worked around. It would be decidedly more succinct if the gen override worked rather than the spec override. Best, Michael Glaesemann grzm seespotcode net [1]: http

Re: Native Clojure

2010-12-20 Thread Michael Glaesemann
I), but at the moment I > see no satisfying solution. Have you looked at JNA? <https://jna.dev.java.net/> Michael Glaesemann grzm seespotcode net -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email t

Re: Trouble understanding let

2010-10-09 Thread Michael Glaesemann
ecial%20Forms--(let%20[bindings*%20]%20exprs*)> (let [bindings* ] exprs*) To get the result you want: user> (let [k (+ 2 2)] k) 4 Michael Glaesemann grzm seespotcode net -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to

"splitting" sql results by attribute

2009-05-14 Thread Michael Glaesemann
"attr-3" (collect-stats :attr-3 stats))] chart-data) However, this requires multiple passes over the result data. I should think it'd be possible to do it in one, but I can't seem to wrap my head around it. Any pointers would be much apprecia