Understanding ResourceT
https://www.fpcomplete.com/blog/2017/06/understanding-resourcet
(covers how it works and the surprising number of pitfalls)
miniblog.
Related Posts
Clippy has a delightful lint against 'A'..'Z' because this is an exclusive range, so it only covers 'A' through 'Y'! https://rust-lang.github.io/rust-clippy/master/index.html#/almost_complete_range
Saved me a tedious bug today.
A wonderful tutorial on adding random emojis to your bash prompt. Covers shell script arrays, escape sequences, and even the mysterious $PS2 variable!
Go 2 will explore generics! https://blog.golang.org/go2draft
The discussion of error handling is interesting too. It proposes adding a 'check' keyword along with a handler that covers any errors in that function. It seems spiritually similar to the defer keyword.