All Posts

  • Published on
    The exec family of functions in Unix systems allows a process to replace its own executable code with a different executable.
  • Published on
    Don't compare yourselves to others. Live your own unique life and be thankful of being alive.
  • Published on
    Learn about the proper scenarios for using move and forward in C++ functions to return values efficiently. Avoid over-optimization and trust the compilers optimizations.
  • Published on
    Understanding when to use std::move and std::forward in C++ is crucial for efficient programming. The rule of thumb is to use std::move for temporary values (rvalue references) and std::forward for universal references.