Skip to content

Feel at home and work fast no matter which host you're working on.

Notifications You must be signed in to change notification settings

anilkeshwani/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

Feel at home and work fast no matter which host you're working on.

Conda

Remember you can set up Conda via something like the following Bash snippet available as a Gist when on Linux:

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh &&
    bash miniconda.sh -b -u -p "${HAFH:-${HOME}}/miniconda3" &&
    "${HAFH:-${HOME}}"/miniconda3/bin/conda init bash &&
    export PATH="${HAFH:-${HOME}}/miniconda3/bin:${PATH}" &&
    rm -rf miniconda.sh

Remember that you want to also create a main environment to keep the base Conda environment clean:

conda create --name main --clone base --copy

SSH Keys

When spinning up a new machine, you need to set up SSH keys to authenticate with GitHub

  1. Create a new SSH public-private key pair:
ssh-keygen -t ed25519 -C "[email protected]" &&
    cat "${HOME}/.ssh/id_ed25519.pub"
  1. Add the public key as a new SSH key on GitHub

About

Feel at home and work fast no matter which host you're working on.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published