Erwin Rooijakkers

Results 12 comments of Erwin Rooijakkers

Reason is that the protocol is extended to an `IndexedSeq` at https://github.com/Vincit/venia/blob/master/src/venia/core.cljc#L53, but not to a `ChunkedSeq`.

If you look in the console it says: ``` -Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://gist.githubusercontent.com/sgarap/32c02feeec4fc010a332ac7013559e38 /raw/d1d0a1575bd47a0502fabe0c94909e99a8039571/test.csv. (Reason: CORS preflight channel did not...

@bertiebaggio same issue here. A ~/.emacs.d/.cache/savehist file of 80 MB. Seemingly after working in org-mode, but not 100 % sure.

After working for a while in a 20k words document in org-mode I see the `savehist` growing quickly. It is full of lines with 10k characters containing nested statements with...

We found a workaround: ``` (:import (clj_gcp.storage.core FileSystemStorageClient GCSStorageClient)) ``` I do think it would be nicer just to use Clojure and not Java interop to access the `defrecord`s.

Reason is that the protocol is extended to an `IndexedSeq` at https://github.com/district0x/graphql-query/blob/master/src/graphql_query/core.cljc#L50, but not to a `ChunkedSeq`.

@mposolda the action was set to disabled after the migration, later I manually said it back to true. We are using a container with postgres (version 11). We are also...

@mposolda thank you for your efforts and the fixing of the delete button issue. I don't know an exact reproduction scenario for the migration issue, but we did start with...

Also in clojure.core since 1.12 there's [`add-lib`](https://clojure.github.io/clojure/branch-master/clojure.repl-api.html#clojure.repl.deps/add-lib) and [`add-libs`](https://clojure.github.io/clojure/branch-master/clojure.repl-api.html#clojure.repl.deps/add-libs). Example: ```clj user=> (add-lib 'dev.weavejester/medley) [dev.weavejester/medley] ;; or user=> (add-lib 'dev.weavejester/medley {:mvn/version "1.8.1"}) [dev.weavejester/medley] user=> (require '[medley.core :as medley]) nil user=>...

Aah oops 😳. Thanks for clarification.