Jeremy Field

Results 16 comments of Jeremy Field

I'm getting this with jdk1.8.0_202 and lein-gorilla 0.6.0. Something to do with the way `check-for-update` calls `http/get` I think. Can be avoided with```:gorilla-options {:phone-home false}``` in `project.clj`.

The `jpackage` built into openjdk 14 works with jdk11 too.

Using openjdk@17 from deps.edn needs the following within an alias (doesn't seem to work at toplevel!): ```clj :jvm-opts ["--add-opens=java.base/java.nio=ALL-UNNAMED" "--add-opens=java.base/sun.nio.ch=ALL-UNNAMED"] ``` Adapted from https://github.com/lmdbjava/lmdbjava/commit/5687bd61ff8de770800fa319b4b98a0f61a92b24 and oops just noticed [your comment](https://github.com/juji-io/datalevin/issues/73#issuecomment-941684024)

This would also be helpful for generating a dynamic [nonce](https://w3c.github.io/webappsec-csp/#grammardef-nonce-source).

Coming back to this one because it was annoying me. I think yada is responsible for the reflection warning. I got around to enabling debug: `clj -J--illegal-access=debug -e "(compile 'project.namespace)"`...

Java 8's fine in the meantime. `{:deps {fn-fx/fn-fx-javafx {:mvn/version "0.5.0-SNAPSHOT"}}}` works as expected, using: - macOS 10.13.6 - java 1.8.0_192 via `brew cask install java8` - clojure 1.9.0.391 also via...

Is it something to do with execution just falling off the end of `-main`? I was able to delay the problem [here](https://github.com/jdf-id-au/fn-fx/commit/7800230592084adf52553e4dcffa1c97b061039d)—the program stays running until the `:quit` event is...

@poernahi I don't have time to look into this properly, but what about this controversial solution for your "this is ok too" example? ```elisp (setq clojure-indent-style 'always-indent lisp-indent-offset 1 lsp-enable-indentation...

Thanks for this completely magnificent library. I encountered some trouble trying to dump/load a db with evil space-containing keywords. [This approach](https://gist.github.com/jdf-id-au/80e3be174de2b3fe1a91894b2ee2f0e3) works around the limitations of [serialising with `prn`](https://github.com/juji-io/datalevin/blob/fd89f8cc4cc73771244e9b779ecbf5f6bfffa9c5/src/datalevin/core.cljc#L1464). ([This...

The dependency on `io.airlift/aircompressor` seems not to be declared. I got a macro expansion error from `datalevin/compress.clj`. Easily fixed by adding to my `deps.edn`.