Ambrose Bonnaire-Sergeant

Results 116 comments of Ambrose Bonnaire-Sergeant

Based on the error message, it looks like you might be using Cursive? In any case, please share the command you're using to trigger the error. It might also help...

Could you post a complete example with cljfx?

I found my experience with cljfx made learning re-frame much faster, learning one of them deeply should help with using both.

I reported this upstream: https://github.com/plumatic/schema/issues/433 But I think in general even if this is fixed in schema, it could be triggered if your schema has an extra-key which does not...

I think everywhere `time-matcher` is mentioned it's actually referring to [ring.swagger.coerce/time-matcher](https://github.com/metosin/ring-swagger/blob/0ef9046174dec0ebd4cbf97d6cc5c6846ef11996/src/ring/swagger/coerce.clj#L29) (similar for the other multimethods).

I think a reasonable fix would be to use `(defmulti time-matcher #(when (class? %) %))` instead of `(defmulti time-matcher identity)` to work around https://ask.clojure.org/index.php/10532/memory-leak-using-the-default-method-of-a-multimethod EDIT: oh, this was already encouraged...

> How can I define global fixtures that are only run once for the entire test run? I just need an idea. Try Leiningen's `:injections` keyword and enable it when...

I think the fix for https://todo.sr.ht/~technomancy/fennel/54 caused this issue: https://github.com/bakpakin/Fennel/commit/6db6a2caa6e0f2995f749c22c3ee339492799130 FWIW I don't think the general problem of "`lua` forms respecting local scope" is fixable in all cases using this...

Idea: warn if `java-time` has not been created yet in internal namespaces to inform users if they are in danger of nondeterministic results based on their requires of internal namespaces.

I had trouble reproducing the OP, so I'll offer another reproduction: ```clojure (defproject deps-tree-bug "0.1.0-SNAPSHOT" :managed-dependencies [[com.gfredericks/test.chuck "0.2.10" :exclusions [com.andrewmcveigh/cljs-time]]] :dependencies [[com.gfredericks/test.chuck]]) ``` ``` ~/Projects/deps-tree-bug ❯ lein deps :tree [clojure-complete...