Alex Gunnarson
Alex Gunnarson
Same thing happening to me.
Relates to https://github.com/BetterThanTomorrow/calva/issues/1152.
Thanks so much for commenting and being so helpful @seantempesta ! Glad to know there's someone out there using ClojureScript with React Native and WebWorkers :D Basically for now I'm...
Thanks for your detailed and helpful reply @seantempesta ! Yes, I'm using re-frame (with Reagent). I think it's a really great idea to pass (most of) the dispatches to a...
So I did some digging around and saw that react-native-workers uses the [React Native JSBundleLoader class](https://github.com/facebook/react-native/blob/5405aeb2a3f700d3c937396fdd54dc2a968bc2cd/ReactAndroid/src/main/java/com/facebook/react/cxxbridge/JSBundleLoader.java) in Android to load the worker .js file(s) (I don't really know Objective-C super...
That's awesome @seantempesta ! Thanks for sharing. I'll take a look at what you wrote and try it out. Your solution is probably the closest we ClojureScript people are going...
As a minimal example, I want the following to return `:b`, not `:a`: ```clojure (diehard/with-retry {:max-retries 2 :delay-ms 500 :retry-if (fn [v _] (= v :a)) :fallback (fn [_ _]...
Specifically, something like this could work (if you adapt it for `diehard.core/fallback`) — I'm using it in a project: ```clojure (defn- ->fallback-policy [{:as opts :keys [fallback retry-if retry-on retry-when]}] (when...
That's true, and that's useful, but different from the use case I'm describing. I want to have the option to throw on retries exceeded (say, when `:retry-if` returns truthy), even...
Here's a working Jetty 11 adapter we use in production. Happy to PR it. ```clojure (ns taoensso.sente.server-adapters.jetty "Sente adapter for `ring-jetty-adapter` (https://github.com/ring-clojure/ring/tree/master/ring-jetty-adapter). Adapted from https://github.com/taoensso/sente/pull/426#issuecomment-1647231979." (:require [ring.core.protocols :as ring-protocols] [ring.util.response...