White Box Testing is software testing technique in which internal structure, design and coding of software are tested to verify flow of input-output and to improve […]
A shortcut command that combines git add . and git commit -m [commit_message]:-> git commit -am “easy peasy” An even shorter method for creating an alias:-> […]
The [[maybe_unused]] attribute is created for indicating in code that certain logic might not be used. This is often linked to preprocessor conditions where this might […]
Short answer is crontab. crontab files are used to schedule the execution of programs. The file contains instructions for cron daemon in the following simplified manner: […]
Dependency Injections and complicated OOP patterns may result into conflicts of lifetime/ownership relationships in a spaghetti code. Enclosing the ownership of an object in a smart […]
The algorithms library of C++ can sometimes be a little inconvenient since most of them requires a begin and an end iterator to operate (1). Utilizing […]