├── .gitignore ├── Anaconda_Setup.pdf ├── Conda Setup ├── acp.png ├── conda-update.png ├── latexmkrc ├── macros-Fall2018.tex ├── main.tex ├── p2.png └── py2tex.py ├── Linear Algebra Review.pdf ├── Linear Algebra Review ├── Makefile ├── figures │ └── figure.png ├── latexmkrc ├── linalg2.tex └── linalg2.toc ├── Linux Git Guide ├── Linux Git Guide │ ├── Linux and Git Guide.pdf │ ├── latexmkrc │ └── main.tex ├── latexmkrc └── main.tex ├── Linux and Git Guide.pdf ├── Probability Review.pdf ├── Probability Review ├── Report.tex ├── fig1.png ├── fig2.png ├── latexmkrc ├── nips07submit_e.sty └── prob_slides.tex ├── README.md └── Useful Links ├── README.md └── XCS234 └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/.gitignore -------------------------------------------------------------------------------- /Anaconda_Setup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Anaconda_Setup.pdf -------------------------------------------------------------------------------- /Conda Setup/acp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Conda Setup/acp.png -------------------------------------------------------------------------------- /Conda Setup/conda-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Conda Setup/conda-update.png -------------------------------------------------------------------------------- /Conda Setup/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Conda Setup/latexmkrc -------------------------------------------------------------------------------- /Conda Setup/macros-Fall2018.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Conda Setup/macros-Fall2018.tex -------------------------------------------------------------------------------- /Conda Setup/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Conda Setup/main.tex -------------------------------------------------------------------------------- /Conda Setup/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Conda Setup/p2.png -------------------------------------------------------------------------------- /Conda Setup/py2tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Conda Setup/py2tex.py -------------------------------------------------------------------------------- /Linear Algebra Review.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Linear Algebra Review.pdf -------------------------------------------------------------------------------- /Linear Algebra Review/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Linear Algebra Review/Makefile -------------------------------------------------------------------------------- /Linear Algebra Review/figures/figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Linear Algebra Review/figures/figure.png -------------------------------------------------------------------------------- /Linear Algebra Review/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Linear Algebra Review/latexmkrc -------------------------------------------------------------------------------- /Linear Algebra Review/linalg2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Linear Algebra Review/linalg2.tex -------------------------------------------------------------------------------- /Linear Algebra Review/linalg2.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Linear Algebra Review/linalg2.toc -------------------------------------------------------------------------------- /Linux Git Guide/Linux Git Guide/Linux and Git Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Linux Git Guide/Linux Git Guide/Linux and Git Guide.pdf -------------------------------------------------------------------------------- /Linux Git Guide/Linux Git Guide/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Linux Git Guide/Linux Git Guide/latexmkrc -------------------------------------------------------------------------------- /Linux Git Guide/Linux Git Guide/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Linux Git Guide/Linux Git Guide/main.tex -------------------------------------------------------------------------------- /Linux Git Guide/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Linux Git Guide/latexmkrc -------------------------------------------------------------------------------- /Linux Git Guide/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Linux Git Guide/main.tex -------------------------------------------------------------------------------- /Linux and Git Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Linux and Git Guide.pdf -------------------------------------------------------------------------------- /Probability Review.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Probability Review.pdf -------------------------------------------------------------------------------- /Probability Review/Report.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Probability Review/Report.tex -------------------------------------------------------------------------------- /Probability Review/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Probability Review/fig1.png -------------------------------------------------------------------------------- /Probability Review/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Probability Review/fig2.png -------------------------------------------------------------------------------- /Probability Review/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Probability Review/latexmkrc -------------------------------------------------------------------------------- /Probability Review/nips07submit_e.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Probability Review/nips07submit_e.sty -------------------------------------------------------------------------------- /Probability Review/prob_slides.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Probability Review/prob_slides.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/README.md -------------------------------------------------------------------------------- /Useful Links/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Useful Links/README.md -------------------------------------------------------------------------------- /Useful Links/XCS234/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scpd-proed/General_Handouts/HEAD/Useful Links/XCS234/README.md --------------------------------------------------------------------------------