-
-
Tutorials are great, but it would be nice to have full API docs online somewhere, similar to [this for Compojure](http://weavejester.github.io/compojure/) or [this for Clojure.core](http://clojure.git…
graue updated
9 years ago
-
I was reading through the documentation, and noticed that `keep` was basically the same as `filter`. Looking into it a bit more, I believe `keep` is supposed to return the _results_ of the transform t…
-
Using the list (https://clojuredocs.org/clojure.core/list) data structure to define the main middleware:
#### Before
```clojure
(ring/router
["/" {:handler h-fn}]
:data {:middleware (cons…
-
With latest IDEA and cursive version, in the beginning I can get quick documentation on function, but after I updated the doc archive in setting for cursive, only some functions can have quick documen…
-
Would it be hard to autogenerate a purely static / no-server-required copy of the website? This would be very useful to have available locally on a development laptop for day to day use: it'd be faste…
-
Clojure's `partition` and `partition-all` have an optional "step" argument[1] which allows one to choose overlapping subsequences of a sequence. E.g.,
```
(partition 2 1 (range 5)) ;;=> ((0 1) (1 2)…
-
Based on the discussion here: https://github.com/BetterThanTomorrow/calva/discussions/1071
The F# VsCode tooling (https://ionide.io/index.html) has this concept called an info panel. I haven't seen…
-
Slack thread: https://clojurians.slack.com/archives/CBE668G4R/p1670838574590269
In https://github.com/BetterThanTomorrow/calva/issues/1998, I found that no API exists to move the problems report ab…
-
This code will cause a stackoverflow error:
(def a (atom nil)) (def b (atom a)) (reset! a b)
a
Possible solutions are:
1. `print-method` multimethod can be used to fix this for cloju…
ghost updated
3 years ago