lvh
lvh
The README has pom.xml entries for 3.1.1, but that version is not on Maven Central: https://search.maven.org/search?q=a:mapbox-vector-tile
I think the answer is `(repeat 32 :byte)` which mostly works except for the part where it interacts poorly with other byte types, since you're forcing it to be a...
Hi! This seems like a fairly reasonable utility feature that I've needed in more than one place now. ``` clojure (def ^:private whitespace? "Is this a string, and does it...
Right now, when you parse some XML (using e.g. the open PR, or just DOMParser), and then `as-hiccup` it, you turn something like this: ``` xml RAX ``` ... and...
Original ask: https://github.com/rackerlabs/otter/pull/789/files?diff=split#diff-46adfe1ec6f5f279e1d90dc10518c9abR188
This might help for future PRs. I tried to add a test for adding methods as metadata on generated syms, but I couldn't get the tests to pass on master.
``` [#'amazonica.aws.mturk/list-hi-ts-for-qualification-type #'amazonica.aws.mturk/list-hi-ts] ``` Should be "-hits" (from HITs), not "hi-ts".
I'm assuming this is unintentional and possibly means pagination doesn't work for those fns right now. I've found: - `#'amazonica.aws.simplesystemsmanagement/list-documents` (contains `next-token`) - `#'amazonica.aws.identitymanagement/list-policies` (contains `marker`)
There is an obvious way to spell `with-region` in 3rd party code: ```clojure (defmacro with-region [region & body] `(amazonica.core/with-credential {:endpoint (name ~region)} ~@body)) ``` However, this has a subtle bug:...
I don't know how interested you are in a "fix" for this, but FYI purging AsyncClients is a very useful trick for slimming jar sizes down (which is ~necessary for...