Talks

Effect Systems
Let's live-code some effect systems in Scala. We'll begin by describing an effectful program that we would like to write as a pure value. Then we will write a toy effect system to be able to run it.
Single-Serving Values in Scala with Linear Types
In this talk, we learn about how linear types can be used in Scala programs to prevent runtime errors caused by variable underuse or overuse by detecting them at compile time.
Introduction to Functional Programming
In this workshop, we learn about the basics of functional programming in Scala by building simple algebraic data types and implementing common patterns from category theory.
Microservices in Real Life
In this talk, we explore the implementation and evolution of a set of microservices that have expanded and integrated over time to provide weather information for Web clients and IoT devices.
Functional Electromagnetism
In this talk, we use GNU Radio to examine digital signal processing systems, and explore how we can use our understanding of functional programming to reason about unfamiliar systems such as software-defined radio by looking through the lens of category theory.
Functional JDBC with the Reader Monad
Working with a database means juggling connections and managing transactions. With functional programming, we can abstract it away for cleaner, safer, and more maintainable code.
Functional Infrastructure
In this workshop, you will learn to use Nix, NixOS, and NixOps as a declarative toolbox for reliable, repeatable processes. Hands-on exercises will teach you the basics of the Nix expression language, which you'll use to build, test, and locally run a Haskell Web application, deploy it to the cloud, and maintain it in production.
Purifying Code with Algebra
In this talk, we look at an approach to abstracting IO out of Haskell functions by representing side effects as generalized algebraic data types, and implementing a side-effecting top-level interpreter for them.
Literate Programming with Codedown
In this talk, we look at literate programming's roots, how Haskell provides built-in support for it, and how Codedown enables literate programming in any language.
Functional Refactoring
In this talk, we explore examples of code written in familiar imperative programming patterns, and refactor each one using a counterpart functional programming pattern.
Applicative Validation in Scala
In this talk, we look at Validation: how to use it, why it works, and where in category theory it comes from. We'll see how to use the implementations provided by Scalaz and Cats, as well as how to roll our own from scratch.
Introduction to Monads
This is an informal introduction to monads using Java 8.
Scala via JavaScript
In this talk, we'll go through some of the more compelling examples, and see what one language might learn from the other.
Nix, Plus or Minus Cabal
In this talk, we look at Haskell deveplopment with the Nix package manager, and how to use it in addition to (and in place of) Cabal to make tool installation a breeze, and dependency conflicts a thing of the past.
Types and JavaScript
How to use types to reason about code.
Discovering Knowledge in Linked Data
In this talk, we'll look at how to search Wikidata from a graph database via a domain-specific language.
SOA Proliferation Through Specification
A look at how Swagger specifications can help in the development, adoption, and deployment of services in a service-oriented architecture.
Scala DevOps: Collaborative Development and Continuous Deployment
In this talk, we look at how a Scala development team can work collaboratively to build, test, and deploy their software using GitHub, sbt, Travis CI, Coveralls, and Heroku.
Putting Functional Programming to Work
In this session, we dig into one particular tool: the state monad, to see how it lives up to these promises and helps power the Versal platform.
Real-World Functional Programming
Integrating multiple APIs of different sorts (e.g. Web facing RESTful, internal library, data storage, low level event logging, etc.) into a single application, the complexity of the manifold interactions can very quickly become an obstacle to agility. In this session, engineers from Versal will discuss how their move to a functional programming model allowed them to migrate from an event-sourced architecture and in-memory hierarchical data model to an on-disk relational data model that allowed them to greatly simplify their application development process. Examples of how to apply functional programming concepts to various API designs will be provided.
Rapid Scala Development with sbt
In this talk, we look at a simple way to develop sophisticated software in Scala using these tools together.
Scala in 2018: A Panel with Rod Johnson
In this panel, we debate Rod Johnson's ScalaDays 2013 keynote about obstacles to Scala's widespread adoption.
Hands-On Category Theory
Skip the similes, and muzzle the metaphors. In this talk we take a look at functors and applicative functors. Using a text editor and the REPL, we build from scratch a small library that we can use with our production code.
TDD with FireOtter
In this talk we describe FireOtter, a library for human readable CSV-based specification testing.
Dependency Injection in Scala with Jellyfish
In this talk we describe Jellyfish, an open-source project that decouples the Web framework from logic.
The State Monad
In this talk, we explore the State monad as a way to represent state changes in a purely functional way.
Imperative Web Workflows via Delimited Continuations
In this talk we discuss the use of delimited continuations to build complex, multi-step Web workflows out of easy to follow imperative code.
Functional Reactive UI Thing
In this presentation we'll talk about declarative UI programming using delimited continuations and functional reactive programming. It's a neat way to hide the noise of Java's ActionListener API and to keep UI behavior cleanly defined in one place.
Swarm: Transparent Scalability Through Portable Continuations
In this talk, we present an approach to building transparently scalable applications using Swarm, a framework which enables code execution to follow data within Scala's serializable delimited continuations.