1. Scan the traffic Just capture the network traffic while simulate one sequence of voting. Possible tools you can use
Continue readingAuthor: max-sperling
Unit testing series – Test without double (Part 3)
The first test szenario isn’t using a double. Test App Exec $ g++ -c UserInterface.cpp WindowManager.cpp $ ar rcs libwnd.a
Continue readingCyclic references (C++)
Problem The following code shows the problem of a cyclic reference with shared pointers. When leaving the main function the
Continue readingSoftware development process
1. Linear (Traditional) In the past it was very common to develop software projects that way. It means you have
Continue readingCloning vs. Branching vs. Forking
Cloning – Creating a local copy of a remote repository. – Gets used to build a project or get involved.
Continue readingSoftware Cracking (Example 2)
This time we have got a KeyGenMe, which means the task is to write a KeyGen and not just to
Continue readingObserver (Design pattern)
In this behavioral design pattern all observer getting notified of a change from a subject they are registered at.
Continue readingFocus (Photography 1)
As important as the exposure of pictures (Link) is the right focus and you can as well choose between an
Continue readingFunction pointer vs. std::function vs Function template
Showcase Code ▼ Compiler ▼ – Tool: godbolt.org – Compiler: x86-64 Clang 16.0.0 – Args: -std=c++20 – Output: Intel asm
Continue readingData structures – Overview (libstdc++)
The “C++ standard library” isn’t defining implementation details of the data structures, it just defines their behavior. The libstdc++ is
Continue reading