After years using only Windows and Linux, I finally decided to try some Apple stuff now. I used to have a Windows PC for "everything bureucratic" and my Debian for studying/developing, but I started to feel quite tired to keep switching be ... read more →

TIL about C++ initializer lists and how it is (usually) more performant than standard initialization. Example: class Account { private: std::string number; std::string full_name; float balance; public: // Standard initialization ... read more →