Blog

Summary of reading: October - December 2020

I read almost nothing for a few months after the lockdown, but I started to pick up reading more for the last couple of months. "C++ Best Practices" by Jason Turner — Buying Jason's book is a no…

Improve Rust Link Time with lld

Today I start to experiment with the WebGPU API, and I choose to use the wgpu-rs implementation in Rust. I am happy with the experience overall, but one difficulty I met is the long iterative…

Recursive Modules in OCaml

Recursive module is an interesting feature in OCaml. To use it, we need to use the form Explicit signature is required when using recursive modules, as the compiler can no longer deduce the module…