Article
The reason you should test your personal projects
Small critique in nowaday testing in software development.
Article
Memory alignment and layout in Rust
Explanation of how to implement different memory layouts in Rust programming language
Article
Custom conversions in C++
Article discussing implicit vs explicit conversion and defining your own conversions in c++
Article
ADL (Argument-dependent lookup) explained
ADL work is to set a couple of rules to lookup for functions based on their namespaces parameters provided, e.g:
Article
return false vs return true
Introduction You might think that this is a stupid debate, and maybe you are right but let me take a moment to explain to you if we should care whether to return true or false. True and false are the …