Day 02

Written on: 06 April, 2025. 📝 Comments in C++ We use comments to explain what a code do. It is ignored by compiler and is used for other developers: ⛶// This is a single-line comment /* ...
0 Read More

Motivation behind C++ Concepts

Motivation behind C++ Concepts
C++ 20 introduced concepts. What are they? Why should I care about them? How do I use them?Concepts are a powerful tool to help you write generic code with restrictions evaluated at compile time. What...
0 Read More

Exploring Nau Engine codebase: pt.3

Exploring Nau Engine codebase: pt.3
In the final part of our trilogy on Nau Engine, we'll focus on errors that occur when implementing classes. The examples in this article show how even small defects can lead to serious issues in the a...
0 Read More

Automatize Projetos SFML com Pro++

Já faz um tempo que fico fazendo muitas coisas com SFML como testes para o game que estou desenvolvendo, além de animações, testes, ... e entre outras coisas.E cansado de criar projetos do zero, e...
0 Read More

Automate SFML Projects with Pro++

For a while now, I've been doing a lot of things with SFML such as tests for the game that I'm developing, as well as animations, tests, ... and other things.And tired of creating projects from scratc...
0 Read More

Parameters combinations in GoogleTest

Welcome to the next pikoTutorial !Parameterized unit tests are priceless. They help to test code thoroughly through multiple possible input values, without having to write multiple and almost the same...
0 Read More

Tree++, a tree command with icons

I created another command with Modern C++ just to pass the time. It's another tree option, but with icons =) 🌳 Build ans install ⛶git clone https://github.com/terroo/treepp cmake -B build...
0 Read More