clojure icon indicating copy to clipboard operation
clojure copied to clipboard

Practicalli Clojure REPL Driven Development

Results 105 clojure issues
Sort by recently updated
recently updated
newest added

https://github.com/reborg/csl-book-examples

clojure-core

Community guidelines * https://stuartsierra.com/2015/05/10/clojure-namespace-aliases

Update Circle CI sections of Practicalli Clojure and Practicalli Clojure Web Services Pages to update * https://practical.li/clojure/continuous-integration/ * https://practical.li/clojure-web-services/projects/status-monitor-deps/continuous-integration.html * https://practical.li/clojure-web-services/projects/banking-on-clojure/deployment-via-ci.html CircleCI has a new Clojure image which includes OpenJDK...

Define a wrap function to control how often a function can be called (managed using local state) https://youtu.be/1zoNfM70cR0

clojure-core

#### Ignoring expressions Using ... will inform clj-kondo to ignore the following expression ``` #_:clj-kondo/ignore (,,,) ``` Common use would be for a (comment ...) block (although I believe they...

linter

Clojure tools for generating static websites, such as blogs but also multi-page workhops, tutorials and books such as Practicalli Clojure. Review available projects in Clojure Do any projects meet the...

babashka
static-site-generator
long-term-project

what is the idiomatic way of rounding numbers? (format ".%2f" val) ;; okay for printing / display (-> val (* 100) Math/round (/ 100)) ;; preferred when using as a...

partial vs lambas lambdas are considered more idiomatic than partial and comp reasons to prefer lambdas? They are often shorter, and often produce nicer stacktraces The behavior of comp and...

clojure-core

how swap! on atoms work: get the value of the atom as it is right now compute the new value it will be after applying the function if the underlying...