Is it a git feature? First of all it isn’t a feature from git itself it’s provided by tools like
Continue readingPosition of const (C++)
“West-Const vs. East-Const” West-Const (The common one) int * num = new int(42); // Mutable ptr to a mutable int
Continue readingCreate for x last commits a child branch
Let’s asume you have worked on the develop branch and done some commits there. Now you want to create a
Continue readingFlowcharts for BJJ
The following list shows flowcharts for the main ground positions. Guard Closed Guard ▼ Open Guard ▼ Half Guard ▼
Continue readingstd::recursive_mutex (C++)
The std::mutex is a non-recursive mutex and therefore can’t be locked again from the same thread before getting unlocked. This
Continue readingWhat to consider when buying a monitor
There are plenty of things you should consider when buying a new monitor. I will consider just a few, but
Continue readingCentral Gateway
These days cars have multiple fieldbuses to distribute (less bandwidth) and to seperate (increased security) the happening communication. To realise
Continue readingOn-/Off-Gassing
… happens depening on the difference between the ambient pressure and the tissue saturation. On-Gassing: Lung gas –> Blood –>
Continue readingBranching concept
The following branching concept is commonly used these days for software development. Source: https://nvie.com/posts/a-successful-git-branching-model/ (by Vincent Driessen)
Continue readingVariant managment – Macros vs. Branching
Via Macros A way to realise different variants is to work with variant flags within the code itself. The big
Continue reading