Learn these three tools — map, filter, and reduce– and you’ll be well on your way to developing a functional mindset.
Video Courses
Screencasts, Whiteboards, and Slides produced to help you learn
Advanced Property-Based Testing with test.check
Property-Based Testing is a powerful way to test your software. This course starts where the Intermediate course left off. In this course, we learn the most powerful applications of Property-Based Testing, including parallel and distributed systems, searching for known bugs, and testing web frontends.
Beginning Property-Based Testing with test.check
Property-Based Testing is a powerful way to test your software. In this course, we learn how to use test.check, the Clojure Property-Based Testing library, to automatically generate tests.
Beginning with Clojure Macros
What mysteries do Clojure macros hold? This course jumps right into macros with gusto. It starts with the key to understanding macros, takes you through the implementation of 6 progressively more complex macros, and finishes with the three reasons you *need* macros.
Building Re-frame Components
Sometimes we want to see how individual components are built. We want to know how to reproduce common components easily using Re-frame. In this course, we take that approach. We build individual, interactive components, going through the design decisions we have to make.
Written Guides
Pragmatic and in-depth guides to a topic.
10 Programming projects to boost your resume
When NOT to put personal projects in your resume; tips for choosing programming projects; and how to present your projects to maximize your chances.
5 ways to tweak your resume
5 functional programming ways to impress a hiring manager with your resume.
Are there enough functional programming jobs?
Is functional programming a fad? We cut through the buzz cycle and answer the question once and for all.
Clojure Concurrency Tutorial
From Agents to Executors, this guide covers all of the important concepts for concurrent programming in Clojure. It includes a comprehensive catalog of concurrency primitives.
Clojure Data Structures Tutorial
Clojure’s collections are central to Clojure programming. While in most languages, you might find collections somewhere in the standard library, in Clojure, they are front and center.
Clojure Jobs Resources
A big list of sites with Clojure job listings. If you’re looking for a job in Clojure, these are the best places to look. Includes many remote jobs.
Mini Guides
Small, precise guides to a particular feature.
4 Things Java Programmers Can Learn from Clojure without learning Clojure
I was trained in Java at University. The OOP matrix was firmly implanted in my thinking. I wanted to share some things that I have learned from Clojure that were certainly possible in Java but never became fundamental to my programming practice. Clojure certainly has learned a lot from Java. It might be cool if […]
5 Differences between clojure.spec and Schema
Schema and clojure.spec aim to solve similar problems. There are significant differences, though, that might not be obvious at first.
5 features of Clojure let
Clojure let is used to define new variables in a local scope. This article describes a few things you probably know about let, and a few you don’t.
All about clojure.set
clojure.set is part of the standard library that comes with Clojure. It has functions for doing set operations and relational algebra.
Atom code explanation
I go over a real-world example of how atoms and immutable values allow you to compose constructs in ways that are easy to reason about and less prone to error.
Can building ClojureScript assets be integrated into my build process?
ClojureScript’s official build process is a simple shell command. There is also integration into Leiningen and Boot.
Technical Articles
3 Things Java Programmers Can Steal from Clojure
Many of the cool parts of Clojure are written in Java. That means you can access those parts from any Java code. Just include the Clojure JAR, import the classes, and you’ve got better tools.
4 Features Javascript can steal from Clojure(Script)
ClojureScript adds a lot of value on top of the Javascript platform. But some of that value can be had directly in Javascript without using a new language.
6 things Reacters do that Re-framers avoid
Down on React? You should check it out from the ClojureScript perspective.
A reduce Example Explained
A deep-dive into a single reduce example shows how much can happen in a short bit of code.
Are there any DOM manipulation libraries in ClojureScript?
ClojureScript has some nice DOM manipulation options, including jQuery and more idiomatic libraries.
Clojure is a better Java than Java
How is it possible that Clojure is better than Java at its own game? Hear me out, then decide for yourself.
Learning Paths
Curated selections of courses on a specific topic
Beginner Programmer Learning Path
Clojure can be an excellent language to learn programming. The following courses should set you on a good path for getting up to speed in Clojure. Be sure to click those checkmarks to track your progress. Start with the best introduction to Clojure out there. It gently guides you through the language with fun exercises. […]
Functional Programming Learning Path
The following sequence of courses should build up your functional programming toolkit. These will help you eliminate duplication in your code and find better abstractions.
Object-Oriented Programmer Learning Path
If you’re coming to Clojure from an Object-Oriented Programming background, this page is for you. Be sure to click those checkmarks to track your progress. Start with the best introduction to Clojure out there. It gently guides you through the language with fun exercises. You’ll learn the syntax and the thought processes behind Clojure programming. […]
The Everything Learning Path
If you’re looking to watch absolutely all of the courses on this site, I’ve put together a suggested order. Start at the beginning and just watch everything straight through. Be sure to click those checkmarks to track your progress.
Web Programming Learning Path
Web development is an extremely popular use for Clojure. If you want to learn web programming, here are the courses I recommend you watch. I am assuming you already are familiar with Clojure. Be sure to click those checkmarks to track your progress. Backend You’ll want to learn Ring. It is a unifying set of […]
Video Lessons
Parts of courses on specific topics
A day at the bakery
Now that we have an efficient way of fetching ingredients, let’s handle the orders for the day.
A deeper explanation of with-open
Do you understand the pattern of using helper functions within a macro and how it can make your macro more useful and easier to understand?
A Game of JSON
This lesson teaches how to read in JSON and explore data. This lesson includes a video screencast. The screencast is 25 minutes long.
A map of the Repl-Driven Development territory
We take a look at an idealized model of the development process so that we can understand all of the places where we can make tools and practices to improve our development workflow.
A tour of the built-in generators
test.check comes with many built-in generators that we can use to create properties and build new generators from. We take a tour of the generators provided so we have a feeling of what’s available.
Access patterns
What do I mean by access patterns? It’s the underlying commonality between the collections. It answers the question: How will we access our information?
Download Resources
PDFs, code, and other downloads to help you learn
clj-refactor Reference Sheet
These four reference sheets will be handy for you when you’re learning clj-refactor, the plugin for CIDER.
Clojure core.async Reference Sheet
Overwhelmed by the number of functions in Clojure core.async? This reference sheet shows you just the essentials in an easy-to-follow format.
Clojure Macro Patterns Reference
We tend to code using patterns that we repeat a lot. Learning these patterns can help you level up your macro skills very quickly. This reference sheet contains six annotated patterns that Clojure programmers use all the time.
Clojure Macro Sigils Reference
Have you ever wondered what the symbols in Clojure macros do? I’m talking about `, ~, ~@, etc. This handy reference sheet tells you what they all do, when to use it, and shows examples. Never get lost in a macro again!
Clojure Macroexpand Reference
When we’re developing macros, it really helps to be able to see what code it will output. Fortunately, Clojure comes with three built-in functions for doing just that. They are so useful for debugging. This reference sheet shows what each one does. It also includes how to access macroexpansion in the three most popular Clojure […]
Clojure.test Cheatsheet
Want a handy reference for writing your tests? This cheatsheet contains everything you need to write tests, make assertions, and set up fixtures. It even shows the commands for runnings tests at the REPL.
Speaker Interviews
Adam Warski Lambda Days 2017 Interview
We interviewed Adam Warski about his upcoming Lambda Days 2017 talk.
Alex Mann Clojure/conj 2016 Speaker Interview
We interviewed Alex Mann about his upcoming Clojure/conj 2016 talk about machine learning in Clojure applied to the English language.
Alex Miller EuroClojure 2017 Interview
We Interviewed Alex Miller about his upcoming Euro Clojure talk called Dependency Heaven.
Alexey Aristov EuroClojure 2017 Interview
We Interviewed Alexey Aristov about his upcoming EuroClojure 2017 talk called otplike – Erlang/OTP processes and behaviours for Clojure.
Ali Shoker Curry On 2017 Interview
We Interviewed Ali Shoker about his upcoming Curry On 2017 talk about There are no BFT Fans Anymore.
Allen Rohner Clojure/conj 2016 Speaker Interview
We interviewed Allen Rohner about his upcoming Clojure/conj 2016 talk about Spectrum, a static typing library for Clojure.
Newsletter Issues
PurelyFunctional.tv Newsletter 422: Don’t write your own language
Issue 422 – April 12, 2021 · Archives · Subscribe Design Tip 💡 Don’t write your own language A few weeks ago, I argued that Deepmind should have written their own programming language to do machine learning. There are many advantages to writing your own language for solving your specific problem. And writing a language […]
PurelyFunctional.tv Newsletter 421: Programming monism
Issue 421 – April 05, 2021 · Archives · Subscribe Design Tip 💡 Programming monism Programming languages exhibit an unhealthy monism. Monism is a system wherein you believe that a single principle underlies distinct phenomena. For example, in OOP, we might say, “everything is an object.” In the lambda calculus, there are only functions. This […]
PurelyFunctional.tv Newsletter 420: Say what you mean
Issue 420 – March 29, 2021 · Archives · Subscribe Design Tip 💡 Say what you mean People have tried to write a “more concise Java,” like Groovy. But I think the idea is misguided. The fundamental problem is not that Java is verbose. The design flaw is that Java does not allow you to […]
PurelyFunctional.tv Newsletter 419: Why not write your own language?
Issue 419 – March 22, 2021 · Archives · Subscribe Follow-up 🙃 Clojure’s buzz In last week’s issue, I asked how we could drive Clojure’s growth. I got some really great responses to my question last week. Mostly, they were explaining how lots of characteristics trump language quality. While Clojure is a great language, it’s […]
PurelyFunctional.tv Newsletter 418: Clojure’s buzz
Issue 418 – March 15, 2021 · Archives · Subscribe Clojure’s buzz 🐝 Hi Clojurists! I took the first big step in a year-long plan to migrate my entire platform. My courses are now hosted on Podia, and all of the existing purchasers have been imported. Thanks for your patience throughout this process. I think […]
PurelyFunctional.tv Newsletter 417: Clojure at heart 🥰
Issue 417 – March 08, 2021 · Archives · Subscribe Clojure at heart 🥰 My fellow Clojurists, I am grateful every day that I get to teach Clojure full time. We really have a great community and an awesome language. After finishing my functional programming book, I am refocusing on helping you thrive with Clojure […]
Programmers
Alan Kay
Alan Kay invented Smalltalk and Object-Oriented Programming. He reads more than a book per day. He has worked at Xerox PARC, Atari, and Apple. He’s currently the president of the Viewpoints Research Institute.