- ED25519
ssh-keygen -o -a 100 -t ed25519 -C [email protected]
- RSA
ssh-keygen -o -a 100 -t rsa -b 4096 -C [email protected]
- Private (includes public key)
ssh-keygen -o -a 100 -t ed25519 -C [email protected]ssh-keygen -o -a 100 -t rsa -b 4096 -C [email protected]base environmentPROJECT_NAME-envpip in each environment to avoid using the system default versionenvironment.yml file| // code courtesy of Toby team | |
| chrome.storage.local.get("state", o => ( | |
| ((f, t) => { | |
| let e = document.createElement("a"); | |
| e.setAttribute("href", `data:text/plain;charset=utf-8,${encodeURIComponent(t)}`); | |
| e.setAttribute("download", f); | |
| e.click(); | |
| })(`TobyBackup${Date.now()}.json`, o.state) | |
| )); |
When installing a package from a non-defaults channel, we usually do:
conda install -c conda-forge packagename
This has the side effect of adding conda-forge as a higher priority channel then defaults
Alternatively, we can now use
conda install conda-forge::packagename
to only have the specified packagename to be installed from conda-forge, or one could do: