
Open Source Projects: Tutorials for Code Quality
Quality is not something that can be easily added later. It’s preferable to take care of it from the beginning. Many companies dedicated a b
2 min readC/C++ code quality, architecture and static analysis insights.

Quality is not something that can be easily added later. It’s preferable to take care of it from the beginning. Many companies dedicated a b
2 min read
Design patterns are solutions to software design problems you find again and again in real-world application development. Patterns are about
2 min read
Since 2011 many new features were added to the standards, some of them are now very used like auto and nullptr, some others are rarely used.
5 min read
Maybe almost all C++ developers know the LLVM infrastructure and the Clang compiler. But how many know that Chris Lattner is their creator w
6 min read
How many times do you read "C++ is dead" or "Is the C programming language still used?", but in the reality they still very popula
4 min read
Defensive programming is a form of defensive design intended to ensure the continuing function of a piece of software under unforeseen circu
3 min read
As software developers, we can write a lot of code each day. Each piece of code has its story, the code could be: Inspired by a web resou
6 min read
If you decide to start learning the modern C++ design and you come from the OOP school, you can start by looking inside the loki library. L
3 min read
The Task Scheduler schedules and coordinates tasks at run time. A task is a unit of work that performs a specific job. The Task Scheduler ma
9 min read
Let's first comeback in the past and discover what Bill Gates was doing in his beginning, here's from Wikipedia a brief story: After Gates
5 min read
Each developer wants to have a clean code, easily readable and maintainable and with a few issues and bugs. And there's no magic solution to
4 min read
Every project has its own style guide: a set of conventions about how to write code for that project. Some managers choose basic coding rule
8 min read