Awesome! Except I'd probably replace the "Dealing with shared state" with "Don't." 😆
m
marcinmoskala
01/21/2019, 3:13 PM
😛 Sometimes you have to
o
oshai
01/21/2019, 4:39 PM
Isn't unconfined using current thread and is usually not recommended?
t
tmg
01/21/2019, 5:05 PM
dealing is shared state is something for compilers and run time environments/vms. there should be no dealing with shared state in high level programming.
y
yen
01/22/2019, 8:14 AM
Shared immutable state is fine.
Unshared mutable state is fine.
Shared mutable state is not fine.