Skip to content

Instantly share code, notes, and snippets.

View a13's full-sized avatar
🌲
🍺

D.K. a13

🌲
🍺
  • Belgrade, Serbia
View GitHub Profile
@a13
a13 / clojure-learning-list.md
Created December 3, 2022 09:34 — forked from ssrihari/clojure-learning-list.md
An opinionated list of excellent Clojure learning materials

An opinionated list of excellent Clojure learning materials

These resources (articles, books, and videos) are useful when you're starting to learn the language, or when you're learning a specific part of the language. This an opinionated list, no doubt. I've compiled this list from writing and teaching Clojure over the last 10 years.

  • 🔴 Mandatory (for both beginners and intermediates)
  • 🟩 For beginners
  • 🟨 For intermediates

Table of contents

  1. Getting into the language
#!/usr/bin/env bb
(ns envset
(:require [clojure.edn :as edn]
[clojure.string :as str]))
(defn read-env-config [name]
(->> (slurp name)
(edn/read-string)))
(defn collect-leaves [path values]