Eric Dvorsak

Results 14 issues of Eric Dvorsak

After upgrading figwheel-sidecar from 0.5.12 to 0.5.13. I started to get the following red screen error on Android emulator when figwheel reload occurs: ``` Can't find variable: document ``` I...

This link in the readme is dead: https://juxt.pro/blog/posts/component-meet-schema.html I couldn't find the article anywhere

# Problem Since looking for transfers is expensive because getting events has to be done by iterating over a range of blocks, we could reduce the amount of blocks to...

stale

In status-react we are using similar build configs in `clj-rn.conf.edn` and `build.clj`. The first one seem to be used for the `watch` task and the second one for `compile` and...

The example of file upload using a clojure.java.io/input-stream from the readme is broken ``` Execution error at clojure.data.json/write-generic (json.clj:599). Don't know how to write JSON of class java.io.BufferedInputStream ``` seems...

in 0.7-alpha2 I get the following sporadic error (and nothing else) when doing a `post` and : ```clojure (->>@(http/post URL params)) :body cbs/to-line-seq (map (fn [data] (when log-fn (log-fn data))...

waiting on user

useful to avoid errors such as: Caused by: com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class reitit.core$single_static_path_router$reify__100794 and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS) (through reference chain:...

```clojure (jsonista.core/write-value-as-string (jsonista.core/read-value "{\"attribute1\": 1, \"attribute2\": 2}")) "{\"attribute2\":2,\"attribute1\":1}" ``` This is annoying in my case as I'm doing some cleanup on the json using clojure that can no-op, in which...

There was a previous issue opened https://github.com/tonsky/rum/issues/253 Using the following snippet taken for one of the examples and simplified: ``` (rum/defc value < rum/reactive [*ref] [:code (pr-str *ref #_(rum/react *ref))])...

I am calling create-chat-completion with the options `:stream true :on-next #(log/info :on-next %)` and nothing it logs, instead I have all the "chat.completion.chunk" events dumped at once after some time...