body {
font-size: 14px;
font-family: Helvetica, Arial, sans-serif;
line-height: 1.4;
}
.header {
color: red;
- run
ssh-keygen
and press enter repeatedly until done. This creates a public/private key pair in~/.ssh/
- run
cat ~/.ssh/id_rsa.pub
to print out the public key - copy the key to your clipboard
- visit https://github.com/settings/keys and click [New SSH key] and paste your key when prompted
- You're done!
Now you can git clone
via ssh (make sure to copy the repository url for cloning using SSH instead of HTTPS).
The repository url should look like: [email protected]:user/repo.git
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
########## | |
# contents | |
########## | |
# contents | |
# notes | |
# script setup | |
# git config files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conda install -c conda-forge jupyter_contrib_nbextensions | |
conda install -c conda-forge jupyter_nbextensions_configurator | |
conda install -c conda-forge gensim | |
conda install -c conda-forge spacy | |
python -m spacy download en_core_web_sm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\usepackage{inconsolata} % very nice fixed-width font included with texlive-full | |
\usepackage[usenames,dvipsnames]{color} % more flexible names for syntax highlighting colors | |
\usepackage{listings} | |
\lstset{ | |
basicstyle=\ttfamily, | |
columns=fullflexible, % make sure to use fixed-width font, CM typewriter is NOT fixed width | |
numbers=left, | |
numberstyle=\small\ttfamily\color{Gray}, | |
stepnumber=1, |
NewerOlder