In this section I will collect short things that have taken me some time to figure out. The intent is that I would be able to avoid wasting time in the future after I have forgotten about them.
05.10.2018
You want to install a snap package under Windows Subsystem for Linux.
That doesn’t seem to be possible at the moment.
04.10.2018
When pushing in Mercurial under SSH, it says that TortoisePlink.exe is not found, although TortoiseHG is installed.
TortoiseHG installation has changed so that the TortoisePlink.exe is located under the \lib directory of TortoiseHG installation directory. Add that subdirectory to Windows’ path.
04.10.2018
You want to use SSH keys with GitHub under Windows.
plink for SSH (not OpenSSH).plink path points under PuTTy installation. 08.02.2018
You run npm install, but packages that are listed in package.json are not installed, despite there being no errors.
Usually npm update helps.
11.01.2018
Running npm install produces an error npm ERR! Cannot read property 'find' of undefined.
Usually npm cache verify helps. If not, rm package-lock.json. If that does not help either, remove node_modules.