Ask HN: What are best practices setting up a dev env on a new Linux laptop?
- e.g. some suggest to install language runtimes, or things like k8s, into a separate VMs, etc.
- another good practice is to create local git repos before changing any dot-files.
- etc.
4 comments
[ 3.7 ms ] story [ 21.2 ms ] threadI prefer to have the build and runtime environments be independent of the host machine to some degree, so there are docker images available for executing the build, these contain stuff like compilers and libraries and even npm cache for nodejs stuff
2. There is also an issue of hardening the system.