How can I get the actual \"username\" without using the environment (getenv, ...) in a program?
working a little bit through modern c++ specs
static auto whoAmI = [](){ struct passwd *tmp = getpwuid (geteuid ()); return tmp ? tmp->pw_name : "onlyGodKnows"; }