We talk about how to speed up your program if your program is taking time to allocate or release memory.
All posts in July 2020
Lessons in debugging: observe how programs interact with the Linux kernel with STRACE
There are a subset of problems in software development that can be traced back to system calls or signals. Learn about STRACE, tool that let you trace system calls and signals and that can help you quickly figure out the origin of those problems.
How branches influence the performance of your code and what can you do about it?
In this articles we investigate on how branches influence the performance of the code and what can we do to improve the speed of our branchfull code.