Today I feature to you a quick introduction about RUST. I am preparing more and more posts (and then, a new section) about this great programming language. First, we will review quickly the characteristics of ​this language. Don’t hesitate to ...

Read More

Did you already use RAII in C++?RAII for "Resource Acquisition Is Initialization". Or SBRM for "Scope-Bound Resource Management". Or even “automatic variables”.Behind those strange names, there is a powerful concept. It is an idiom which helps you to improve the scalability ...

Read More

Do you train your programming skills? Do you follow any programs to keep your programming skills up to date?It was not the case for me one year ago. Currently, I am maintaining my level and learning some new programming languages! ...

Read More

Today I feature to you a quick review of my previous posts. I feature to you two posts I appreciated with some special experiences about them. Don’t hesitate to review and enjoy them!WSL and IDE.I discovered the WSL (Windows Subsystem ...

Read More

Did you experienced a case where your header depends on another one? Why in that other C++ file, it compiles correctly without the same dependencies? If you encountered this default, maybe your header is not buildable as standalone. This default ...

Read More

Did you already put a large file on git?Do you know it can decrease your performance? ​Unluckily, a large file stored on git ​is not a good practice. Many developers don't recommend this and propose alternatives. A binary under control ...

Read More