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…
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…
Today I stumble upon an article These Modern Programming Languages Will Make You Suffer after Twitter outrage. The post is absurd and indeed a suffer to read for me. However, it also receives 1k…
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 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…
Recently, I have seen some people passing complex mutable lambdas to standard algorithms. Those usages usually come from one mindset: "Since we want to follow 'no raw-loop,' and the choice of STL…