Basics 1. Fetch the requested HTML file (via HTTP GET). 2. Parse (creating the DOM) that file (using DFS). 3.
Continue readingAuthor: max-sperling
Yoko-Ukemi (in detail)
The basic post describes yoko ukemi in general, but here you will find way more details. Details – Body (before
Continue readingChess – Strategies & Tactics
Chess is way less about strategies than about tactics. Strategies (selection) Involve all pieces Control the center Protect the king
Continue readingGarbage collection (Basics)
A garbage collector is a hidden background tool that cleans unused application memory automatically. It’s necessary for languages which aren’t
Continue readingLayout of std::shared_ptr (libstdc++)
Source code Debugging Visual result |———————-| | shared_ptr sPtr1 | |———————-| |Pointer to the Object |—|——-> Object | | |
Continue readingMartial 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}|{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 reading