Skip to content

Resources I've found helpful on my journey learning Clojure

Notifications You must be signed in to change notification settings

mrpia/learn-clojure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

learn-clojure

Resources I've found helpful on my journey learning Clojure.

Most if not all of the credit goes to my Clojure mentor & work colleague Jonas Emanuel Müller, whose digital life can be observed at jonasmueller.net. What started as fascinating lunch discussions and slack conversations turned into this. Thanks mate for challenging and guiding me on the journey!

Getting ready to learn Clojure

Don't start by learning Clojure. First learn why you should learn Clojure. At best with a lot of videos, so you can intensely absorb Rich Hickey's arguments while commuting.

Start with Effective Programs - 10 Years of Clojure, it tells you why the language exists and what its goal is: productivity in the enterprise. If you prefer reading, go for a transcription (for some reason people love to transcribe Rich's talks). For more detailed explanations on how Clojure is better at achieving that goal than any other language you'll need to follow up with other talks.

A next great step is Simple Made Easy, it gives you insight into the central philosophy behind Clojure. Note how the talk isn't about Clojure, but about how to be a better programmer/thinker in general. Jonas has watched the talk many times and admitted he still learns new things every time. If you want some third party opinion on why your time isn't wasted with this talk you could for example have a look at this Hacker News thread.

The last abstract talk Jonas strongly recommends is really important before going practical: The Value of Values. Depending on your background, be prepared to be provoked a bit, since that's the part where Rich also criticises object-oriented programming. Luckily for me, Jonas thought I seemed "very surprisingly open to these kinds of thoughts and ideas".

If you're eager for more, check out Rich Hickey's greatest hits.

As one of the side-benefits of these talks, you get to learn funky new words, such as:

  • homoiconicity indicates that a program's source code is written as a basic data structure that the programming language knows how to access, for more details read about the Clojure Reader
  • reification means making an abstraction into a concrete value that can be manipulated at runtime.

Now you can impress your peers by combining these terms together, as Clojure's homoiconicity means that programs are reified into the language as data.

Learning Clojure

Armed with all the theoretical motivation, I've decided to buy the excellent Clojure for the Brave and True book to guide me a bit more in my journey.

Most importantly, code while you learn! Setup your favourite tool quite early, and start hacking! Some popular collections of exercises:

This visual cheatsheet is also good for beginners.

Do not try to learn Clojure by reading the official Clojure documentation. It's meant as a reference and is best read after some real experience with Clojure. Instead, use the community-driven CDS Clojure Documentation

Learn clojure.spec in due time. That is, only when you're comfortable reading and writing Clojure ;)

Tools

The Cursive IntelliJ IDEA plugin proved ideal for the Jetbrains fan that I am. This even shows you one of the reasons Lisp parentheses are awesome: you don't actually write/type them, you use them to manipulate your code semantically.

Some people prefer Spacemacs.

Clojure vs the rest of the world

People on the outside seem more focused on the fact that Clojure is a Lisp than Clojurians are. Read: "Oh no, parentheses-hell!". Among Clojurians it is common to hear "I came for the Lisp, but I stayed for the immutability".

Clojure makes users way more aware of data structures and their performance implications than many statically typed languages. For example one uses different functions to append to an array and a (linked) list, because one should be aware of the performance/computational complexity differences.

The Clojure Design Patterns article is somewhat biased towards Clojure but it's still an interesting comparison of compactness between Clojure and Java.

Beyond Clojure

Rich Hickey & co think it's so important that data can be typed that created the Transit format, an extended version of JSON that has more types (so you can for example transmit dates properly!) and can be extended with more types. And they implemented libraries for the major languages.

If you think that immutable data, as well as data as a first-class citizen of your end-to-end software world are fantastic concepts, then check out Datomic.

About

Resources I've found helpful on my journey learning Clojure

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published