Episodes

49. Passwordless Authentication With ring-oauth2

Passwordless Authentication With ring-oauth2

More and more sites offer the ability to log in with Facebook, Twitter, or Github, which can be quite convenient, as it means fewer passwords to keep track of. Adding this kind of capability to a Ring based app is easier than you might think, using the `ring-oauth2` library. In this episode we'll demonstrate how to implement a "Sign in with Google" button. The process is very similar for other providers.

23 min
48. List Comprehension with clojure.core/for

List Comprehension with clojure.core/for

A small macro with a lot of power! We start with a quick recap of Clojure's looping constructs, and then go over the various features and use cases of `for`, backed by examples taken directly from popular open source projects.

17 min
47. Interceptors, part 1, concepts

Interceptors, part 1, concepts

The Interceptor pattern was originally introduced by Pedestal, but has since been adopted by several other projects in the Clojure world. It's an extremely useful design tools to be familiar with, and while they may seem a bit strange at first, Interceptors are suprisingly straightforward. This episode introduces the interceptor concept, including the context map, queue, and stack. Clojure's persistent queues are explored, and to round off we look at how interceptors deal with error handling.

Freebie11 min
46. À la Carte Polymorphism, part 2

À la Carte Polymorphism, part 2

With the basics of multimethods out of the way it's time to look at some of the more advanced uses. This episodes explores in depth Clojure's keyword hierarchy features, some little known aspects of the `isa?` and `type` functions, and closes off with some examples that demonstrate the flexibility Clojure provides when modeling data and behavior.

13 min
45. À la Carte Polymorphism, part 1

À la Carte Polymorphism, part 1

Clojure provides polymorphism through protocols and multimethods. Protocols were covered in depth in [episode 24](https://lambdaisland.com/episodes/defrecord_defprotocol). This episode provides a brief recap, then looks at multimethod basics. If you are already familiar with multimethods then you might want to skip to the second part, which covers some of lesser known aspects.

Freebie9 min
44. Data Science with Kixi.stats, part 2

Data Science with Kixi.stats, part 2

After some exploration and analysis of the data it's time to create a predictive model. In this episode you'll discover several new chart types, learn how to evaluate the correlation between variables, how to create a simple linear model, and how to evaluate the fitness of the model.

16 min
43. Data Science with Kixi.stats, part 1

Data Science with Kixi.stats, part 1

With the knowledge of transducers under your belt, it's time to start analyzing some data. This episode provides a first introduction to the Kixi.stats statistical toolkit, by analyzing a data set and its distribution, with the goal of creating a predictive model through linear regression.

15 min
42. Inside Transducers

Inside Transducers

Clojure allows processing data in a way that is composable, reusable, and performs well, all through the power of Transducers. Episode 38 provided a general overview of what's in the box, the transducers and transducing contexts provided by clojure.core. This episode digs deeper into the internals of transducers and reducing functions, and looks at some powerful libraries for real-world data processing and statistics.

17 min
41. Using React Components with Reagent

Using React Components with Reagent

React's component based approach means you don't have to reinvent the wheel, there are literally thousands of building blocks freely available. When using React components from Reagent there are a few things to watch out for, this episode will show you how to use some popular React components from Reagent, and point out useful constructs and patterns. You'll also get to see some of the new `cljs.main` feature that landed in ClojureScript 1.10.

15 min
40. The Ultimate Dev Setup

The Ultimate Dev Setup

This one tool will transform how you program. It's time to raise your standards!

Freebie13 min
39. Integrant

Integrant

Integrant is a "micro-framework for data-driven architecture". It manages the lifecycle of your application, and the dependencies between components, similar to Component or Mount, but with some very different design decisions. Integrant forms the foundation for Duct, a Clojure web framework by James Reeves, aka Weavejester.

20 min
38. Transducers

Transducers

Transducers are a Clojure feature allowing you to write code that is efficient, reusable, and composable. They have been around for several years, landing first in Clojure 1.8, but even some experienced Clojure programmers are not yet reaping the benefits of their use. In this episode we'll look at the problems that Transducers solve, and how you use them in practice.

8 min
37. Datomic Quickstart, part 2

Datomic Quickstart, part 2

Datomic is a database based on the same principles that underly the design of Clojure itself. Learn what makes it different, and how to start using from Clojure immediately. This second part dives deeper into transacting entities and querying them.

11 min
36. Datomic Quickstart, part 1

Datomic Quickstart, part 1

Datomic is a database based on the same principles that underly the design of Clojure itself. Learn what makes it different, and how to start using from Clojure immediately. This first part gives an overview of the architecture and data model, and walks you through your first transactions.

Freebie11 min
35. Generative Testing with test.check

Generative Testing with test.check

Generative testing, also called Property Based testing, is a powerful technique able to expose some of the most obscure bugs. You'll learn how to create and compose generators, and how to define properties that together can verify many aspects of your code.

13 min
34. Acceptance Testing With SparkleDriver

Acceptance Testing With SparkleDriver

Learn how to use a headless web browser to test your application for feature completeness. You'll also see how Component can be used to set up an isolated test environment, how to use fixtures and dynamic var bindings to share setup code between tests, and how to keep tests readable and concise by judicously pulling code into helper functions.

22 min
33. Running ClojureScript Tests

Running ClojureScript Tests

Learn how to run tests with Figwheel, PhantomJS, Node, doo, and Karma. Running Clojure tests once they are written is pretty straightforward, but for ClojureScript there are a few more things to consider. Your code needs to be compiled first, and then needs to run on the JavaScript engine of your choice. In this episode you'll learn how to set up a ClojureScript project from scratch using Figwheel, how to run tests from the REPL, how to create test runners for PhantomJS and Node, and how to use doo and Karma to run your tests on a wide variety of browsers simultaneously.

Freebie17 min
32. Introduction to Clojure Testing

Introduction to Clojure Testing

Testing libraries and frameworks are indispensable, but there's no magic to how they work. Through implementing your own mini testing framework, you'll learn how `clojure.test` does things under the hood. While the main plot demonstrates how to write a function test-first, you'll also meet several supporting characters, like preconditions, dynamic bindings, and even a macro. Finally the mask comes off. It was `clojure.test` all this time!

18 min
31. Component in Practice

Component in Practice

Learn how to incorporate Component in a real world project. This episode is a bit of grab bag. It shows how to set up a `-main` function and how to use it, how to use reloaded.repl and tools.namespace for a better REPL workflow. You get introduced to the Suspendable protocol that complements Component's Lifecycle protocol. Finally it shows how to streamline your configuration with Aero.

17 min
30. Building Command Line Applications with Lumo, part 2

Building Command Line Applications with Lumo, part 2

Now that the "birch" command is working, it's time to release it to the world. In this episode you'll learn how to turn your Lumo script into an NPM package. You'll also learn how to use packages from NPM (cli-colors) and Clojure library jars (tools.cli) to make your script even more awesome.

11 min
29. Building Command Line Applications with Lumo, part 1

Building Command Line Applications with Lumo, part 1

JVM based Clojure isn't very suitable for command line scripting. On the command line you want quick feedback, which is at odds with the time Clojure needs to boot up, and just to run a single source file you need to jump through a few hoops. Instead you can use Lumo, a ClojureScript runtime environment based on Node.js. In this episode you'll learn how to write a script in Lumo, and how to make use Node's built-in libraries, by building your own version of the Unix "tree" command. It'll also be a handy refresher on recursion.

13 min
28. Authentication with Buddy

Authentication with Buddy

Buddy is a popular security library for implementing authentication and authorization. In this episode you'll learn what the difference is, and how to implement password based authentication for a simple Ring app.

13 min
27. Resolving Dependency Conflicts

Resolving Dependency Conflicts

In this beginner friendly episode you'll learn how to resolve a common type of Clojure error. It walks you through the process step by step, from analyzing the error, investigating the cause, coming up with a solution, up to finally reporting the issue on Github. In the process you'll learn how to interpret stack traces, how to inspect the dependency tree with Leiningen, and how to influence Leiningen's choice of version in case of a conflict.

Freebie10 min
26. Component and System

Component and System

Stuart Sierra's Component is a small library that can have a big impact on the structure and architecture of your application. In this episode you learn how you can use it to create components, and manage dependencies. You will create a Jetty and an Endpoint component, and use the PostgreSQL component from the System project.

18 min
25. re-frame, part 3: Events and Effects

re-frame, part 3: Events and Effects

Side effects in re-frame are handled through events. You'll implement several event handlers of a TodoMVC app so it becomes functional. You'll also implement custom effect and co-effect handlers for storing the application state in localStorage. To debug event handlers you'll learn about the "debug" interceptor, and about re-frisk, a handy tool for inspecting your re-frame database.

15 min
24. defrecord and defprotocol

defrecord and defprotocol

With records, Clojure has introduced a way to create struct-like objects, while avoiding some of the problems encountered in object orientation. Records don't hide their data behind custom interfaces, but instead partake in the abstractions that Clojure's own data types are built on, so that code can treat treat a record like a regular Clojure data type. Protocols are Clojure's take on abstract interfaces. They make it possible to extend preexisting types to new methods, and extend preexisting methods to new types, thus avoiding the expression problem.

10 min
23. deftype and definterface

deftype and definterface

Clojure is built on a well thought out set of abstractions. To implement these, it makes use of the ability to define abstractions in the host language, namely Java interfaces, and the high-performance polymorphism that they provides. As a Clojure programmer you don't have to resort to Java to achieve the same thing. All the facilities are there to create interfaces, and to create types that implement interfaces, getting you as close to the JVM as you need to be.

15 min
22. Seq and Seqable

Seq and Seqable

Seqs are a key abstraction in how Clojure processes data, but what exactly is a "seq", and how does it relate to "seqable?". Time for a deep dive in Clojure and ClojureScript source code to discover the finer points. Learn exactly what seqs and seqables are, what they do, and how you can use them to your advantage.

Freebie8 min
21. Compojure

Compojure

Compojure is one of the more popular routing libraries for Ring. It's easy to pick up, and gives you a great foundation to further explore Clojure web development.

15 min
20. re-frame, part 2: Subscriptions

re-frame, part 2: Subscriptions

A complete look at re-frame subscriptions, including coverage of Reagent's atoms and reactions. You learn how to write subscriptions, how they work, and how to plug them together into a signal graph.

13 min
19. re-frame, part 1

re-frame, part 1

Reagent is a popular and easy to use option for using React with ClojureScript. re-frame builds on top of Reagent, providing an elegant and opinionated way to structure applications and deal with application state. The documentation for re-frame can easily overwhelm. With this episode you get a practical hands-on introduction, so you can be making your own apps in no time.

13 min
18. Using JavaScript libraries in ClojureScript

Using JavaScript libraries in ClojureScript

One of the benefits of ClojureScript is that it lets you leverage the great JavaScript ecosystem. Using arbitrary JS libraries isn't always trivial though, and a lot of head scratching can ensue. In this episode you'll learn the exact steps from here to success, and you'll gain insight into ClojureScript's build process, so you can tackle any challenge that comes your way.

Freebie17 min
17. Ring, part 3: Return of the Middleware

Ring, part 3: Return of the Middleware

We add `GET`, `PUT`, `DELETE` operations to the contact book API. In the process we pull out the EDN handling into its own middleware, and come across some handy Regex tips. This third episode picks up the pace a bit, but by now that shouldn't be a problem.

12 min
16. Ring, part 2: the Two Routes

Ring, part 2: the Two Routes

In this second installment of our beginner friendly introduction to Ring the API goes from being read-only to being read-write. You also learn about `juxt`, `slurp`, and how to parse an incoming request body.

11 min
15. Using Figwheel With Emacs, part 2: CIDER

Using Figwheel With Emacs, part 2: CIDER

By using Figwheel with CIDER you get both a Clojure and a ClojureScript REPL at the same time, and you get all the nice features of CIDER. It's a more complex setup than just straight inf-clojure, so before we get there we need to talk a bit about nREPL and Piggieback, tooling you should be familiar with, no matter which editor you are using.

13 min
14. Using Figwheel With Emacs, part 1: inf-clojure-mode

Using Figwheel With Emacs, part 1: inf-clojure-mode

Learn how to integrate Figwheel's browser connected REPL into Emacs, for an ever greater degree of interactive development, using inf-clojure-mode.

11 min
13. Ring, part 1

Ring, part 1

In this new series you'll build an API with Ring from the ground up. The pace is slow and no steps are skipped, making it a great lesson for beginners.

15 min
12. Clojure Keyword Arguments

Clojure Keyword Arguments

Clojure's variable argument functions combined with map destructuring results in a concise syntax for keyword arguments. We'll pick this feature apart to see exactly what's inside. You'll learn about "mapply", and learn why keyword arguments aren't always the best solution.

9 min
11. Reagent, part 3: Keys & Lifecycle Methods

Reagent, part 3: Keys & Lifecycle Methods

Learn about React performance, the use of `keys` properties, and how to use lifecycle methods with Reagent.

Freebie12 min
10. Reagent, part 2: Cursors

Reagent, part 2: Cursors

We continue building a Kanban board with Reagent, adding functionality to edit cards. In the process you'll learn all about Reagent's cursors and event handlers.

13 min
9. Reagent, part 1

Reagent, part 1

One of the more popular wrapper libraries for using React with ClojureScript is Reagent. We'll build a kanban style board to demonstrate the main features.

7 min
8. The ClojureScript Compiler

The ClojureScript Compiler

To be effective at programming, you have to understand your tools. In this episode we'll peel a few layers away, and use the ClojureScript compiler without any help from Leiningen, Cljsbuild or Figwheel. You'll learn about compiler options, levels of optimization, the role of the Google Closure Library, and how to confgure the compiler for development and production use.

13 min
7. Intro to clojure.spec

Intro to clojure.spec

The spec library which will be included in Clojure 1.9 gives you a powerful mechanism for validating data. Find out how to use it in this episode.

Freebie11 min
6. Building a React app with ClojureScript

Building a React app with ClojureScript

React.js is the new hotness in the land of user interfaces. It's descriptive approach pairs wonderfully with ClojureScript's functional underpinnings. This episode will show how to build an app with React, all from comfortable ClojureScript. It provides a solid foundation for diving into React wrappers like Reagent or Om later on, and it's a welcome exercise in using ClojureScript's interop features. We'll cover: elements, components, the virtual DOM, using an atom to keep application state, and attaching event handlers with component properties.

19 min
5. Introduction to Luminus, part 3

Introduction to Luminus, part 3

In this closing episode of the Luminus introduction, you'll learn how to extend the template language with custom filters, and how to generate HTML components in code using Hiccup.

8 min
4. ClojureScript Interop

ClojureScript Interop

In this episode we'll go over all the tools ClojureScript puts at your disposal to interoperate with JavaScript. You'll learn how to call JavaScript libraries, how to work with JavaScript datatypes, how to convert data back and forth, and how to use "this".

Freebie8 min
3. Introduction to Luminus, part 2

Introduction to Luminus, part 2

We continue our journey through Luminus by building a wiki. In this episode you'll learn how to create the form to edit pages, and handle creating new page revisions. We'll also come across Cross Site Request Forgery, and learn how to prevent it.

8 min
2. Introduction to Luminus, part 1

Introduction to Luminus, part 1

To give you a starting point for building your own app, we'll go through the process of building an application from scratch with Luminus. In this first part in a series of three, you'll learn to set up the database, write migrations to create tables with Migratus, create SQL queries with HugSQL, and tie it all together with Compojure routes and Selmer templates.

9 min
1. clojure.core/some

clojure.core/some

Clojure's `some` function is surprisingly versatile. Find out what it does, and what you can do with it.