Just finished the whole burrito, and it was delicious. 0ne suggestion is to eschew the use of function captures. Your audience probably isn’t super comfortable with:
update(socket, :artist, &%{&1 | followed_by_me: true})
and so on. If you must keep them, maybe an inset explaining wtf is going on for the more tender among us.
update(socket, :artist, fn x-> x[:followed_by_me]=true end)
is kinder to my smooth brain.
Thanks for the great book!