Geoffrey Gaillard

Results 20 comments of Geoffrey Gaillard

Provided fix accounts for db in entity equality, using `identical?`. The following test is interesting. It shows this is not a perfect solution, but the tradeoff is acceptable for us....

I understand this is about user experience. It’s a good tradeoff. Repl.it watches two network interfaces at the OS level. A port opened on 0.0.0.0 is exposed to the outside...

Ah, my bad. Showing http://localhost:9630/ is misleading to the user. As a user, shadow is telling me it’s listening to localhost, while in fact it is listening to another interface....

Link to documentation https://docs.replit.com/hosting/deploying-http-servers

Why is it nested? (I've got clues but I want to be sure)

Shouldn't requests - be debounced at the HTTP client level - wait for the response to come back before sending the next request - only keep the last route change?...

RCF doesn't force you to put tests in the same file as your source, you can put them anywhere you think they belong. We didn't considered Babashka yet. Contributions are...

A minimal `project.clj`: ```clojure (defproject my/project "0.0.0" :dependencies [[org.clojure/clojure "1.10.3"]] :profiles {:test {:dependencies [[com.hyperfiddle/rcf "20220405"]] :jvm-opts ["-Dhyperfiddle.rcf.generate-tests=true"]}}) ``` Then run `lein test` If you have `tests` forms in your `src`...

Thank you for the example, it makes sense. I slept over it and believe we should not retrofit `clojure.test` design into RCF. `clojure.test` tests are named by design. Rich Comment...