Blake Miller

Results 29 comments of Blake Miller

This project doesn't seem to be focused on data structures... You could try https://github.com/tobgu/peds to get immutability a la carte

Joker is a _significant_ upgrade to my Clojure experience. Within an hour of trying it I had committed it to my emacs config, where it will remain. Mad props... we...

This happened to me while trying to use slimerjs to test clojurescript code using core.async. The cause of the error is not made clear in the error message. FWIW, the...

Here is that shared library which reimplements (the transducer arity of) all of the functions in `clojure.core` that return a stateful transducer: https://github.com/blak3mill3r/coddled-super-centaurs That function is then bound twice by...

Also I want to clarify regarding: "all the transducers use a single state store rather than each transducer having its own" Each time you transduce a KStream, if that transduction...

https://github.com/CoNarrative/precept

Only one thread, whichever thread calls `.poll()`, can acquire the lock on the `KafkaConsumer` instance. That includes calling `.seek()` We've had some clojure code wrapping the consumer instance for a...

I do not quite understand this. I understand that the SHA is used to tag the container image that is pushed to the registry, but where else is it used...

First of all, thank you @rhs for the detailed explanation. There are indeed a lot of things to consider here and I appreciate the complexity of it more now. The...

That makes a lot of sense, thank you @rhs and @richarddli ... when I get around to it I will read what you did for Spring and see if I...