This page contains some useful commands and shortcuts that I forget regularly.
Command | Description |
---|---|
ctrl + k ctrl + r |
open VSCode cheatsheat pdf in browser |
ctrl + k ctrl + s |
open VSCode keyboard shortcuts |
Command | Description |
---|---|
super + shift + arrow |
Move window between monitors |
ctrl + alt + arrow |
Move between workspaces |
ctrl + alt + shift + arrow |
Move window between workspaces |
Command | Description |
---|---|
conda-export |
Export a Conda environment to a YAML file, including both Conda and pip dependencies. Shell function in .zshrc. |
conda env create -f environment.yml |
Create a new conda environment from a YAML file. |
conda env update -f environment.yml |
Update an existing conda environment with the packages specified in a YAML file. |
conda remove --name myenv --all |
Remove a conda environment named "myenv" and all its packages. |