Contributions

Article
Should we use almost always auto parameters?
Article
This article shares a bunch of beginner-friendly C++ resources that are known to be of high quality. And hopefully, this list of resources can help learners who are new to C++.
Article
The const type qualifier is one of the jewels of the C++ language design. Surrounding by this feature, we devise the "const correctness" practice to prevent const objects from getting mutated. Unfortunately, due to short-sightedness, the standard library type std::function becomes one of the ill-behaved citizens that doesn't follow the const-correctness rule.