The Eric Normand Podcast

च्यानल विवरणहरू

The Eric Normand Podcast

The Eric Normand Podcast

सिर्जनाकर्ता: Eric Normand

An off-the-cuff stream of Functional Programming ideas, skills, patterns, and news from Functional Programming expert Eric Normand of LispCast. Formerly known as Thoughts on Functional Programming.

EN-US United States प्रविधि

हालैका एपिसोडहरू

242 एपिसोडहरू
All about the stratified design lens

All about the stratified design lens

In this episode, I introduce the stratified design lens, which talks about how and why we split things into layers.

2023-09-25 06:15:51 744
All about the time lens

All about the time lens

In this episode, I introduce the time lens, and I posit a law about representing time in complex domains.

2023-09-19 07:02:58 636
All about the volatility lens

All about the volatility lens

In this episode, I introduce the volatility lens, which seeks to help us write code that deals with a changing world.

2023-09-10 20:00:00 1108
All about the architecture lens

All about the architecture lens

In this episode, I introduce the architecture lens, its questions, and its goal of modeling architectural domains to manage complexity.

2023-07-30 21:00:00 1460
All about the executable specification lens

All about the executable specification lens

In this episode, I introduce the executable specification lens, its questions, and its goal of getting to runnable, testable code as quickly as possib...

2023-07-23 21:00:00 918
All about the composition lens

All about the composition lens

In this episode, I introduce the composition lens, its questions, and its goal of figuring what's true when you perform multiple operations in a row.

2023-07-09 20:00:00 824
All about the operation lens

All about the operation lens

In this episode, I introduce the operation lens, its questions, and its goal of capturing the use cases of your software.

2023-07-02 20:00:00 1180
Data lens

Data lens

In this episode, I introduce the data lens, its questions, and its goals of capturing relationships among data values in data.

2023-06-25 20:00:00 1398
All about the domain lens

All about the domain lens

In this episode, I introduce the domain lens, its questions, and its goal.

2023-06-19 06:01:39 1194
How does executable specifications compare with other modeling paradigms?

How does executable specifications compare with other modeling paradigms?

In this episode, I compare executable specifications to UML, DDD, and software design.

2023-06-12 06:10:55 1405
What is the title of my new book?

What is the title of my new book?

I've found a better title for my book: Executable Specifications. Listen to find out why it's better.

2023-06-04 20:00:00 446
What are the domain modeling lenses?

What are the domain modeling lenses?

I'm organizing my new book in terms of lenses. Each lens focuses our attention on one important aspect of software design. In this episode, I briefly...

2023-05-28 20:00:00 1258
How is domain modeling evolving these days?

How is domain modeling evolving these days?

I talk about the progress I've made on my book and why I'm throwing it away and starting over.

2023-05-21 20:00:00 1220
Why don't I encounter more type errors when programming in Clojure?

Why don't I encounter more type errors when programming in Clojure?

I give another reason why I don't encounter so many type errors in Clojure.

2023-05-14 21:00:00 437
What is the "reify to an interpreter" refactoring?

What is the "reify to an interpreter" refactoring?

Watch the creation of a simple refactoring to turn functions into data.

2023-05-08 10:50:26 433
How to teach an essential skill in domain modeling?

How to teach an essential skill in domain modeling?

One important skill in domain modeling is learning to see the semantics of your language, past the habits you've developed. To do that, it helps to se...

2023-04-24 06:11:41 725
What is an isomorphism?

What is an isomorphism?

An isomorphism is a one-to-one mapping from two sets, and encoding your domain model involves finding a mapping between the real world and your code....

2023-04-16 20:00:00 312
Applying domain modeling to an existing data structure

Applying domain modeling to an existing data structure

Domain modeling also works after you've already got lots of code. How can we apply domain modeling analysis to existing data structures?

2023-04-09 20:00:00 584
What is the commutative property?

What is the commutative property?

We discuss the commutative property, why we use it, and three different possible meanings.

2023-02-19 21:00:00 381
Why is the associative property important?

Why is the associative property important?

We look at several examples where the associative property gives us expressive power.

2023-02-12 20:00:00 751
What is the process for coming up with a good conceptual model?

What is the process for coming up with a good conceptual model?

We describe a three-step process for discovering conceptual models.

2023-01-29 20:00:00 889
What is the closure property?

What is the closure property?

I discuss the closure property, which creates operations that can be nested. It's one thing that makes an API feel like a DSL.

2023-01-22 20:00:00 465
All about level three, algebraic modeling

All about level three, algebraic modeling

What do I mean by algebra? And how do we get from level 0 to level 3?

2023-01-08 20:00:00 757
Why do we need to model time?

Why do we need to model time?

All sophisticated models need to include time. We discuss two main ways to do that.

2022-12-25 21:00:00 659
How do you make a function total?

How do you make a function total?

It is easier to reason about total functions. And you can make any pure function total using three techniques!

2022-12-18 20:00:00 726
What is a mutation function?

What is a mutation function?

Mutation functions let you represent changing state over time. They are easily reified, used as reducing functions, and can operate on nested data.

2022-12-11 21:00:00 367
What is Signature-Driven Development?

What is Signature-Driven Development?

Signature-Driven Development means starting with function signatures before you
implement them. I also discuss why we implement the hardest fun...

2022-12-06 06:36:10 674
What's the problem with using arrays for pizza toppings?

What's the problem with using arrays for pizza toppings?

2022-11-27 20:00:00 416
Is deferring decisions about our domain a good idea?

Is deferring decisions about our domain a good idea?

I wonder when to deal with business rules. Do they belong in the domain layer?

2022-11-20 20:00:00 338
Can domain modeling be taught?

Can domain modeling be taught?

I answer a listener's questions about whether domain modeling is a skill that can be taught.

2022-11-13 20:00:00 541
Why domain modeling?

Why domain modeling?

We explore why focusing on the domain model can improve your software quality.

2022-11-06 20:00:00 359
How do we evaluate a data model?

How do we evaluate a data model?

We talk about how you can evaluate the two parts of a domain model.

2022-10-30 21:00:00 1864
What is a domain model and how do we think about them?

What is a domain model and how do we think about them?

In this episode, I talk about the three-part model of domain modeling and what it means about how they are used.

2022-10-23 20:00:00 1477
When do we want to refer to things by name?

When do we want to refer to things by name?

In a domain model, when should we refer to things by name, and when should we nest a subcomponent?

2022-10-16 20:00:00 710
Collections in domain models

Collections in domain models

When do we use collections in domain models, and how do we think about the states they represent?

2022-10-09 21:00:00 1079
Layout of Domain Modeling book

Layout of Domain Modeling book

In this episode, I talk about the three parts of my book, which mirror the three levels of domain modeling.

2022-10-03 06:41:38 1507
The power of runnable specifications

The power of runnable specifications

I talk about the advantages of writing a spec directly in your production language.

2022-08-29 01:42:06 879
What is a domain model?

What is a domain model?

In this episode, I continue the exploration of the definition of domain model to serve as a base layer of understanding to write my next book.

2022-08-21 15:00:00 608
What is a high-level language?

What is a high-level language?

We've all heard the term _high-level language_. Initially, it referred to the
step from assembly languages to compiled languages. But it has an...

2022-08-14 15:00:00 413
Rewrites

Rewrites

How is Smalltalk so small? Four rewrites.

2022-08-07 15:00:00 574
0:00
0:00
Episode
home.no_title_available
home.no_channel_info