Petrus Theron

Results 90 comments of Petrus Theron

@martimatix thanks, deleting Cargo.lock helped me get unblocked on a Heroku Rust example using Iron.

Until this is solved, how to proxy secure websocket requests to my application? (`wss://`). This is a blocker for using Electric Clojure with LiteFS on Fly.io.

In [Semantic UI](https://semantic-ui.com/), class names are order-dependent so e.g. `(dom/props {:class "ui right aligned"})` renders to DOM as `"aligned right ui"`, so I have to reverse the order to get...

OK, so I managed to trace it down by turning on `(malli.dev/start! {:report (pretty/reporter)})` until I found the issue. The cause seems to be that namespaces with Malli schema definitions...

Before the exception, I get this warning: ``` [:app] Build completed. (219 files, 1 compiled, 1 warnings, 7.01s) ------ WARNING #1 - :redef ----------------------------------------------------- Resource: taoensso/encore.cljc:1026:1 -------------------------------------------------------------------------------- 1023 | (if...

Here is the deps tree. I see thata shadow-cljs pulls in `nrepl/nrepl 1.0.0` and that there are two versions of `com.taoensso/encore`: ``` $ clj -X:deps tree org.clojure/clojure 1.11.1 . org.clojure/spec.alpha...

Just got hit by this again on another project using nrepl v1.1.0-alpha1. Any updates?

This seems to happen if Connection type is of type "Socket Repl" instead of "nREPL". This was also independently discovered by Lucio Assis on the Clojurians Slack: https://clojurians.slack.com/archives/C6N245JGG/p1670669572982909?thread_ts=1663246187.604619&cid=C6N245JGG ![image](https://github.com/nrepl/nrepl/assets/1011676/eb199a98-4361-422d-b64e-909ef1424b6e)

Resolved by passing a cloned data value for each Sunburst charts. Charts don't seem to play well together when sharing the same `data` instance – I assume the chart modifies...