vemv

Results 256 issues of vemv

Hi there, interesting library! I noticed the re-frame module is .cljs, while re-frame is a .cljc library. At a glance, looks like the port would be easy. Thanks - V

alexmiller wrote on [Clojurians Slack](https://clojurians.slack.com/archives/C03S1KBA2/p1641292493026700): > yeah, this kind of code is not valid in 17 without setting additional jvm flags https://github.com/nrepl/nrepl/blob/8223894f6c46a2afd71398517d9b8fe91cdf715d/src/clojure/nrepl/middleware/interruptible_eval.clj#L32-L40 Which relates to actual issues that users have...

Bug
Help Wanted

Fixes https://github.com/nrepl/nrepl/issues/263

One thing that has helped me while developing Eastwood (another t.ana-based tool) is having third-party projects as submodules: https://github.com/jonase/eastwood/tree/29eb37a56055c304c6222f43cb6de1c25192358f/.circleci This way one can assert in CI that they can be...

Hi there, I've faced this issue repeatedly. In the past I had worked around it via `:jvm-opts ["-Xmx18G"]`, but today I hit it again (long time no see!). I could...

https://github.com/juxt/clip/tree/v0.23.0#system-as-data says: > Systems may fail during startup, which can leave you in a state where a port is in use, but you have no handle to that partially-started system...

## Context / Problem statement Eastwood is a linter that provides unique insights, complementing other linter offerings such as clj-kondo's. It has the nuance that its runtime grows linearly with...

improvement

Hi! https://github.com/metosin/ring-swagger/blob/0ef9046174dec0ebd4cbf97d6cc5c6846ef11996/src/ring/swagger/json.clj#L23 is bit of a surprising behavior since it alters `cheshire` globally. It would be nice to state that clearly in the README. Thanks - V

The following example included in https://clojure.org/reference/reducers won't run in parallel because `range` is a seq: ```clojure (r/foldcat (r/filter even? (r/map inc (range 100000)))) ``` It is confusing to find a...

help wanted

https://github.com/clojure/clojurescript-site/blob/0ef3da1d56fed6d9de322fed4973f2b17ecf6a9e/content/about/differences.adoc#hinting says: > the only type hint of significance is the ^boolean type hint: It is used to avoid checked if evaluation (which copes with the fact that, for example,...

minor