The goal is to have the spec-related code conditionally elided from the below for prod builds:
(ns my-app.core
(:require [clojure.spec.alpha :as s]
[my-app.config :as config]))
(defn new-machine
[opts]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; Commentary ;; | |
;; ;; | |
;; The goal for writing this started with the idea to have tests run in ;; | |
;; parallel using the leiningen plugin eftest ;; | |
;; https://github.com/weavejester/eftest. ;; | |
;; ;; | |
;; With tests using with-redefs, it was not possible to run them in ;; | |
;; parallel if they were changing the root binding of the same ;; | |
;; vars. Here, we are binding the root of the var to one function that ;; |
(ns asyncawait | |
(:refer-clojure :exclude [await]) | |
(:require [cloroutine.core :refer [cr]])) | |
(defmacro async [& body] | |
`(js/Promise. (fn [s# f#] | |
(spawn (cr {await thunk} | |
(try (s# (do ~@body)) | |
(catch :default e# (f# e#)))))))) |
# Add these to your .bash_profile / .zshrc / etc. | |
# Starts a Clojure repl | |
function rebel-clj() { | |
clojure -Sdeps "{:deps {com.bhauman/rebel-readline {:mvn/version \"0.1.4\"} $@}}" -m rebel-readline.main | |
} | |
# Starts a browser REPL | |
function rebel-cljs() { | |
clojure -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.1.7\"} com.bhauman/rebel-readline-cljs {:mvn/version \"0.1.4\"} $@}}" -m figwheel.main |
The goal is to have the spec-related code conditionally elided from the below for prod builds:
(ns my-app.core
(:require [clojure.spec.alpha :as s]
[my-app.config :as config]))
(defn new-machine
[opts]
;; I think it would be a mistake to introduce temporal coupling to prevent typos. | |
;; The example program below lets you identify "missing" keys specs at | |
;; the time and place of your choosing, and then handle them as you | |
;; deem appropriate, without imposing those decisions on other | |
;; users of spec. | |
(require '[clojure.spec.alpha :as s] | |
'[clojure.set :as set]) |
A list of commonly asked questions, design decisions, reasons why Clojure is the way it is as they were answered directly by Rich (even when from many years ago, those answers are pretty much valid today!). Feel free to point friends and colleagues here next time they ask (again). Answers are pasted verbatim (I've made small adjustments for readibility, but never changed a sentence) from mailing lists, articles, chats.
How to use:
;; in your project definition | |
;; [cljsjs/react-select "1.0.0-rc.1" :exclusions [cljsjs/react]] | |
;; See react-select documentation: https://github.com/JedWatson/react-select | |
(ns example.select | |
(:require [reagent.core :as r] | |
[cljsjs.react-select])) | |
(defn select |
Let's say we want to computer the area of some Shape
types like Square
and Circle
We may have some function called sum-areas
that takes a list of Shape
, calls area on each of them, and sums them up. We don't have access to the original source, but want the ability to add new shapes.
#!/usr/bin/env python | |
# | |
# lumo-deps: lumo with JavaScript or ClojureScript dependencies | |
# | |
# Synopsis: | |
# | |
# lumo-deps [-c clojure-dep] [-j javascript-dep] [-- lumo-opt1 lumo-opt2 ...] | |
# | |
# Starts a lumo session with ClojureScript or JavaScript dependencies loaded. | |
# |