Source code Debugging Visual result |———————-| | shared_ptr sPtr1 | |———————-| |Pointer to the Object |—|——-> Object | | |
Continue readingAuthor: max-sperling
Martial arts ordered by their focus (Selection)
Stand-up striking: Boxing, Kickboxing, Muay Thai, Taekwondo, Karate Control & Takedown: Wrestling, Judo, Sambo Ground fighting: Brazilian Jiu-Jitsu, Luta Livre
Continue readingBIOS resetted after every cold reboot
Issue: The most common reason that the BIOS is resetted after every cold reboot is a flat CMOS battery. If
Continue readingMount points (Linux)
Linux differs from Windows with creating just a single directory tree for all partitions. Request all mount points user@DeveloperVM:~$ df
Continue readingChange owner, group and permissions (Linux)
Change owner/group chown [options] [owner][:[group]] file Examples chown root file.txt // For file.txt set owner to root chown -R root:admin
Continue readingAuthentication – Session-based vs. Token-based
Session-based The client logs into the server and gets a session id. The server caches all sessions to be able
Continue readingResolve conflicts for binary files (Git)
There are common scenarios where you possibly have to resolve conflicts. They are cherry-pick, merge, rebase and revert. If those
Continue readingSandboxing (Linux)
There are multiple possibilities with Linux to sandbox applications. chroot … Changed file system root namespaces … Separated namespaces (e.g.
Continue readingLambda captures (C++)
auto func = [/*capures*/](/*arguments*/){/*body*/}; Captures: <var> … Local variable by value &<var> … Local variable by reference = … All
Continue readingVisualize branches (Git)
Git command All branches $ git log –all –decorate –oneline –graph Specific branch $ git log {branch-name} –decorate –oneline –graph
Continue reading