Henrik Eneroth
Henrik Eneroth
When running, `clojure -Sdeps '{:deps {com.github.liquidz/antq {:mvn/version "RELEASE"}}}' -M -m antq.core` I get the following error: ```clojure {:clojure.main/message "Execution error (InstantiationError) at cognitect.http-client/ssl-context-factory (http_client.clj:253).\norg.eclipse.jetty.util.ssl.SslContextFactory\n" :clojure.main/triage {:clojure.error/class java.lang.InstantiationError :clojure.error/line 253 :clojure.error/cause...
I'm attempting to connect to a server hosted by Shadow-CLJS: ```clojure {:deps {:aliases [:common]} :nrepl {:port 5555 :middleware []} …} ``` There are no error messages in the log, as...
I'm getting this error when attempting to follow the "[in-a-box](https://opencrux.com/howto/in-a-box.html)" example: ```clojure Execution error (UnsatisfiedLinkError) at java.lang.ClassLoader$NativeLibrary/load0 (ClassLoader.java:-2). /private/var/folders/sn/69qx269x1y785_jjlgfvhc2c0000gn/T/crux_rocksdb-6.12.7/librocksdbjni-osx.jnilib: dlopen(/private/var/folders/sn/69qx269x1y785_jjlgfvhc2c0000gn/T/crux_rocksdb-6.12.7/librocksdbjni-osx.jnilib, 1): no suitable image found. Did find: /private/var/folders/sn/69qx269x1y785_jjlgfvhc2c0000gn/T/crux_rocksdb-6.12.7/librocksdbjni-osx.jnilib: mach-o, but...
Printing to stdout in go blocks results in an error: ``` Error handling response - class java.lang.IllegalArgumentException: No implementation of method: :out of protocol: #'cursive.repl/Handler found for class: nil ```...
I'd love some help with this. I'm probably calculating my offsets wrong or something, but I'm not quite sure what I'm doing wrong. Args: ```Json { "mode": "smart", "text": "[1...
FYI, In order for Muuntaja to work with Datomic Cloud, these deps (as of right now) need to be included in the root: ```Clojure {com.fasterxml.jackson.core/jackson-core {:mvn/version "2.10.1"} com.fasterxml.jackson.core/jackson-databind {:mvn/version "2.10.1"}...
I'm trying to write a function to replace all instances of a value in a data structure with another value. Specter is black magic to me, so I started from...
An idea would be to scope server settings (as a first step, and then maybe content as well?) to different environments. For example, `staging` would deploy the site to one...
CLJS compilation with Shadow-cljs: ``` ------ WARNING #1 - :undeclared-var -------------------------------------------- Resource: matcher_combinators/core.cljc:263:66 Use of undeclared Var matcher-combinators.core/Exception -------------------------------------------------------------------------------- ```
- `for` can be given a kf using metadata: `^{:by kf}`. E.g., `(e/for ^{:by :id} [v [{:id 0} {:id 1}]])` - Warn when used without key function, but otherwise preserve...