Tom Connors
Tom Connors
This is an internal application so I haven't made any effort at all to optimize the build size. Tough to give any useful numbers because I added hx + react-dnd...
Ah, I wasn't aware that `:fetch-size` was an option for `fetch-lazy`. That'll solve the problem for me. Might I suggest a couple documentation changes (that I'd be happy to make)?...
I hit the same issue. For a gross short term fix I did: ``` clojure (let [orig-wrap-resource ring.middleware.resource/wrap-resource] (with-redefs [ring.middleware.resource/wrap-resource (fn [h root] (orig-wrap-resource h root {:allow-symlinks? true}))] (wrap-defaults handler...
Cleaned up the things you had questions about. Now `*checkpointer*` is always bound when `processor` is called, and each checkpoint strategy is explicitly handled, except for `:manual`, which is handled...
With this latest commit it's working for me and I'd say it's ready to be merged. The version of the aws sdk that amazonica uses doesn't define a `UserRecord.getEncryptionType` method,...
Anything I can change here to get this merged?
Thanks for the quick response! If s3's server side encryption ends up not being an option for us I'll give implementing this feature a try.
Just adding `id 'com.github.johnrengelman.shadow' version '7.0.0'` to the plugins caused complaints about an unsupported gradle version, so I upgraded gradle with `./gradlew wrapper --gradle-version=7.1.1` but then ran into other complaints...
I believe I have an issue similar to @emilohlund-git's. I only have one dnd-zone. In on:consider events, I'd like to know what element the mouse is over. Other DND libraries...
I am trying to make a UI that allows items to be grouped and sorted. Initially, we just have a list of items: `[{id: 1, label: "Item 1"}, {id: 2,...