Welcome to my PinkLetter. A short, weekly, technology-agnostic, and pink newsletter where we cultivate timeless skills about web development.
How do you make people grok type-thinking or type-driven-development?
I’m obsessed with that question because I want to help the TypeScript community.
I interviewed several developers coming from a JavaScript-ish background and noticed a stark trend: many write JavaScript first and add the types later. That’s a problem.
I know because It’s what I do with Polish: I think in English first and translate literally to Polish later. My sentences come out awkward and I’m not as fluid as in English where I speak what I think.
Describing TypeScript as a superset of JavaScript doesn’t help. The message I get is: “keep writing JavaScript and reap all the benefits of a type system.” Except, it doesn’t work like that and I’m not surprised newcomers to TypeScript are confused and frustrated.
What I do with types is to keep massaging them until I have a viable model with the lowest cardinality possible.
Let’s say you are coding an HTTP request and throw isFetching
and isErrored
at your model. Two booleans give you a cardinality of four (i.e., true/true, false/false, true/false, false/true) but do they all make sense? I’m pretty sure isFetching=true
and isErrored=true
is an invalid state and it’d be better to use a type that has a cardinality of three.
With the types in place, I move to see how ergonomic and correct the model is when thrown at the problem.
Do you think that’s a good approach?
TypeScript Tips by Riccardo Odone
Make Bugs Impossible. One TypeScript Tip At A Time.
(Riccardo: Shameless plug.)
Denotational Design: From Meanings To Programs by Conal Elliott
In this talk, I’ll share a methodology that I have applied many times over the last 20+ years when designing high-level libraries for functional programming. Functional libraries are usually organized around small collections of domain-specific data types together with operations for forming and combining values of those types. When done well, the result has the elegance and precision of algebra on numbers while capturing much larger and more interesting ideas.
(Riccardo: Watched it multiple times and each time I feel I’m getting closer to a big revelation.)
The Unison Programming Language with Rúnar Bjarnason by Richard Feldman
Richard talks with Unison Programming Language co-creator Rúnar Bjarnason about the things that make Unison unlike any other programming language in the world.
(Riccardo: Sounds cool. Here’s the Big Idea page from the Unison docs.)