A linux kernel module adventure Posted on November 30, 2023 In this article I want to share with you what I learned about kernel modules and makefiles. [Read More] Tags: linux kernel makefile
C++ move semantics explained Posted on July 21, 2023 Move semantics, introduced in C++11, is a powerful feature that allows to move data instead of copying it. Is it that simple? Of course not, C++ has to be complicated!. [Read More] Tags: c++ move semantics unique_ptr rvalue reference