Bobby

Results 10 comments of Bobby

@prescottprue I've updated our fork and integrated it into our app. Here's an illustration of the issue and the difference between the 2 different reducers. **Before.** ![ezgif-2-b71ab9e2110f](https://user-images.githubusercontent.com/140163/109244957-7e22b100-7794-11eb-9129-01fe0ed9ac1a.gif) **After.** ![ezgif-2-acf3f960c486](https://user-images.githubusercontent.com/140163/109244971-837ffb80-7794-11eb-999a-ed8b757b05ba.gif) We're...

We've tested the cache reducer locally and it's all working. But the optimistic update message API was only designed to be used internally. It's too verbose for a consumer. We...

@prescottprue Submitted a PR for this new reducer. The headline is that is' 100x faster for all changes. The reason is that even single save operations have to round-trip over...

[fig-wheel](https://github.com/bhauman/lein-figwheel/blob/bb505a23051148cb424fc77f78b3e601764422c0/sidecar/src/figwheel_sidecar/components/nrepl_server.clj#L7-L29) is using [Piggieback](https://github.com/cemerick/piggieback) to connect to a JS runtime (either Node, Rhino or a browser). Piggieback is exposing a nREPL interface so toggling between clj and cljs shouldn't be...

I got stuck a bit too. But it's using standard ring requests so much of the documentation about Ring applies to this library as well. [https://github.com/ring-clojure/ring/wiki/Concepts](https://github.com/ring-clojure/ring/wiki/Concepts) For instead setting customs...

I’m happy to do a pull request for each to add them in. I could start with the metro bundled update. I think it’s the most critical since larger projects...

I would just use the decorator. There's a lot of flexibility in the if/then/else schema. The JSON Schema example of ``` { "if": { "properties": { "power": { "minimum": 9000...

@jsakas Internally TJS is using the Type's name as the index key on an internal storage map (FQN might be better). I fixed it by forcing our internal types to...