
5 Common reasons of using namespaces in C++ projects
Namespaces were introduced to the C++ Standard in 1995 and usually they are defined like this: A namespace defines a new scope. They provide
3 min readC/C++ code quality, architecture and static analysis insights.

Namespaces were introduced to the C++ Standard in 1995 and usually they are defined like this: A namespace defines a new scope. They provide
3 min read
How many times do you already discover a code like this: Maybe in some cases it's not a big issue to have such code. But if this coding h
2 min read
Coding is fun for many developers and as coder you are guaranteed to not be bored, each year many new languages, technologies, frameworks an
5 min read
Form wikipedia we can discover a brief explanation about the technical debt: Technical debt (also known as design debt[1] or code debt) is
2 min read
Every project has its own style guide: a set of conventions about how to write code for that project. Some managers choose a basic coding ru
6 min read
Six years ago Facebook released their C++ library named Folly , it's a large collection of reusable C++ library components that internally a
6 min read
When the processes running on your machine attempt to allocate more memory than your system has available, the kernel begins to swap memory
5 min read
16 years after its first checkin, SQLite is the most widely deployed database engine in the world. such open source project is a good candid
4 min read
Static code analysis is the process of detecting flaws in software’s source code. The static analysis tools are useful to detect common cod
5 min read
If you search on the web for the best C++ source code. The Doom3 source code is mentioned many times, with testimonials like this one. I sp
6 min read