The minutiae of my computational stuff.
- To open things in vs code, use
code <filename>
- To see how the internet connection is doing, use
sudo iftop -B
To print the output of a terminal command to a .txt file, try
SomeCommand 2>&1 | tee SomeFile.txt
To reboot your machine, run
sudo reboot
- Short Tol Colors (3 things):
mycolors = ["#332288", "#117733", "#AA4499"]
- Med Tol Colors (4 things):
mycolors = ["#332288", "#117733", "#44AA99", "#AA4499"]
- Med Tol Colors (5 things):
mycolors = ["#332288", "#117733", "#88CCEE", "#CC6677", "#AA4499"]
- IBM Colors (5 things):
mycolors = ["#FFB000", "#648FFF", "#FE6100", "#785EF0", "#DC267F"]
- Tol Colors (8 things):
mycolors = ["#332288", "#117733", "#44AA99", "#88CCEE", "#DDCC77", "#CC6677", "#AA4499", "#882255"]
Urbana Orange: E84A27 U of I Blue: 13294b
If you mess up your path again, run this:
echo $PATH
And it should be empty because you deleted it, idiot. So, run this:
export PATH=$PATH="/home/nsryan/anaconda3/bin:/home/nsryan/anaconda3/condabin:/home/nsryan/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin"
If you got rid of the temoa-py3 env PATH, run this:
export PATH=$PATH"/home/nsryan/anaconda3/envs/temoa-py3/bin:/home/nsryan/anaconda3/condabin:/home/nsryan/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin"