├── Basic_Stuff ├── Code_Practice_Websites.pdf ├── Intro_to_Latex.pdf └── UTCS_Personal_Web_Pages.pdf ├── C_Stuff ├── Intro_To_C.pdf └── colored_printf.c ├── Command_Line ├── Colors.java ├── Intro_to_Bash_Scripting.pdf ├── Intro_to_Linux.pdf ├── Intro_to_bashrc.pdf ├── Recovering_Files.pdf └── dotbashrc.txt ├── Job_Slash_Intership ├── How_to_get_an_Interview.pdf ├── Interview_Tips.pdf ├── Resume_Tips.pdf ├── example_resume.pdf └── example_resume.tex ├── README.md └── Text_Editors ├── Intro_to_Emacs.pdf ├── Intro_to_Vim.pdf └── Sublime_Tricks.pdf /Basic_Stuff/Code_Practice_Websites.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Basic_Stuff/Code_Practice_Websites.pdf -------------------------------------------------------------------------------- /Basic_Stuff/Intro_to_Latex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Basic_Stuff/Intro_to_Latex.pdf -------------------------------------------------------------------------------- /Basic_Stuff/UTCS_Personal_Web_Pages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Basic_Stuff/UTCS_Personal_Web_Pages.pdf -------------------------------------------------------------------------------- /C_Stuff/Intro_To_C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/C_Stuff/Intro_To_C.pdf -------------------------------------------------------------------------------- /C_Stuff/colored_printf.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | //Formatting 5 | #define NORMAL "\033[0m\0" 6 | #define BOLD "\033[1m\0" 7 | #define DIM "\033[2m\0" 8 | #define UNDERLINED "\033[4m\0" 9 | #define INVERT "\033[7m\0" 10 | #define HIDDEN "\033[8m\0" 11 | 12 | //BACK Color 13 | #define TEXT_DEFAULT "\033[39m\0" 14 | #define TEXT_BLACK "\033[30m\0" 15 | #define TEXT_RED "\033[31m\0" 16 | #define TEXT_GREEN "\033[32m\0" 17 | #define TEXT_YELLOW "\033[33m\0" 18 | #define TEXT_BLUE "\033[34m\0" 19 | #define TEXT_MAGENTA "\033[35m\0" 20 | #define TEXT_CYAN "\033[36m\0" 21 | #define TEXT_LIGHT_GREY "\033[37m\0" 22 | #define TEXT_DARK_GREY "\033[90m\0" 23 | #define TEXT_LIGHT_RED "\033[91m\0" 24 | #define TEXT_LIGHT_GREEN "\033[92m\0" 25 | #define TEXT_LIGHT_YELLOW "\033[93m\0" 26 | #define TEXT_LIGHT_BLUE "\033[94m\0" 27 | #define TEXT_LIGHT_MAGENTA "\033[95m\0" 28 | #define TEXT_LIGHT_CYAN "\033[96m\0" 29 | #define TEXT_WHITE "\033[97m\0" 30 | 31 | //Background Color 32 | #define BACK_DEFAULT "\033[49m\0" 33 | #define BACK_BLACK "\033[40m\0" 34 | #define BACK_RED "\033[41m\0" 35 | #define BACK_GREEN "\033[42m\0" 36 | #define BACK_YELLOW "\033[43m\0" 37 | #define BACK_BLUE "\033[44m\0" 38 | #define BACK_MAGENTA "\033[45m\0" 39 | #define BACK_CYAN "\033[46m\0" 40 | #define BACK_LIGHT_GREY "\033[47m\0" 41 | #define BACK_DARK_GREY "\033[100m\0" 42 | #define BACK_LIGHT_RED "\033[101m\0" 43 | #define BACK_LIGHT_GREEN "\033[102m\0" 44 | #define BACK_LIGHT_YELLOW "\033[103m\0" 45 | #define BACK_LIGHT_BLUE "\033[104m\0" 46 | #define BACK_LIGHT_MAGENTA "\033[105m\0" 47 | #define BACK_LIGHT_CYAN "\033[106m\0" 48 | #define BACK_WHITE "\033[107m\0" 49 | 50 | int main() { 51 | printf("Formatting: \n"); 52 | printf(" %s %s %s\n", NORMAL, "NORMAL", NORMAL); 53 | printf(" %s %s %s\n", BOLD, "BOLD", NORMAL); 54 | printf(" %s %s %s\n", DIM, "DIM", NORMAL); 55 | printf(" %s %s %s\n", UNDERLINED, "UNDERLINED", NORMAL); 56 | printf(" %s %s %s\n", INVERT, "INVERT", NORMAL); 57 | printf(" %s %s %s\n", HIDDEN, "HIDDEN", NORMAL); 58 | 59 | printf("Text Color: \n"); 60 | printf(" %s %-20s %s %s %s\n", TEXT_DEFAULT, "TEXT_DEFAULT", BOLD, "BOLD", NORMAL); 61 | printf(" %s %-20s %s %s %s\n", TEXT_BLACK, "TEXT_BLACK", BOLD, "BOLD", NORMAL); 62 | printf(" %s %-20s %s %s %s\n", TEXT_RED, "TEXT_RED", BOLD, "BOLD", NORMAL); 63 | printf(" %s %-20s %s %s %s\n", TEXT_GREEN, "TEXT_GREEN", BOLD, "BOLD", NORMAL); 64 | printf(" %s %-20s %s %s %s\n", TEXT_YELLOW, "TEXT_YELLOW", BOLD, "BOLD", NORMAL); 65 | printf(" %s %-20s %s %s %s\n", TEXT_BLUE, "TEXT_BLUE", BOLD, "BOLD", NORMAL); 66 | printf(" %s %-20s %s %s %s\n", TEXT_MAGENTA, "TEXT_MAGENTA", BOLD, "BOLD", NORMAL); 67 | printf(" %s %-20s %s %s %s\n", TEXT_CYAN, "TEXT_CYAN", BOLD, "BOLD", NORMAL); 68 | printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_GREY, "TEXT_LIGHT_GREY", BOLD, "BOLD", NORMAL); 69 | printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_RED, "TEXT_LIGHT_RED", BOLD, "BOLD", NORMAL); 70 | printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_GREEN, "TEXT_LIGHT_GREEN", BOLD, "BOLD", NORMAL); 71 | printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_YELLOW, "TEXT_LIGHT_YELLOW", BOLD, "BOLD", NORMAL); 72 | printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_BLUE, "TEXT_LIGHT_BLUE", BOLD, "BOLD", NORMAL); 73 | printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_MAGENTA, "TEXT_LIGHT_MAGENTA", BOLD, "BOLD", NORMAL); 74 | printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_CYAN, "TEXT_LIGHT_CYAN", BOLD, "BOLD", NORMAL); 75 | printf(" %s %-20s %s %s %s\n", TEXT_WHITE, "TEXT_WHITE", BOLD, "BOLD", NORMAL); 76 | 77 | printf("Background Color: \n"); 78 | printf(" %s %s %s\n", BACK_DEFAULT, "BACK_DEFAULT", BACK_DEFAULT); 79 | printf(" %s %s %s\n", BACK_BLACK, "BACK_BLACK", BACK_DEFAULT); 80 | printf(" %s %s %s\n", BACK_RED, "BACK_RED", BACK_DEFAULT); 81 | printf(" %s %s %s\n", BACK_GREEN, "BACK_GREEN", BACK_DEFAULT); 82 | printf(" %s %s %s\n", BACK_YELLOW, "BACK_YELLOW", BACK_DEFAULT); 83 | printf(" %s %s %s\n", BACK_BLUE, "BACK_BLUE", BACK_DEFAULT); 84 | printf(" %s %s %s\n", BACK_MAGENTA, "BACK_MAGENTA", BACK_DEFAULT); 85 | printf(" %s %s %s\n", BACK_CYAN, "BACK_CYAN", BACK_DEFAULT); 86 | printf(" %s %s %s\n", BACK_LIGHT_GREY, "BACK_LIGHT_GREY", BACK_DEFAULT); 87 | printf(" %s %s %s\n", BACK_LIGHT_RED, "BACK_LIGHT_RED", BACK_DEFAULT); 88 | printf(" %s %s %s\n", BACK_LIGHT_GREEN, "BACK_LIGHT_GREEN", BACK_DEFAULT); 89 | printf(" %s %s %s\n", BACK_LIGHT_YELLOW, "BACK_LIGHT_YELLOW", BACK_DEFAULT); 90 | printf(" %s %s %s\n", BACK_LIGHT_BLUE, "BACK_LIGHT_BLUE", BACK_DEFAULT); 91 | printf(" %s %s %s\n", BACK_LIGHT_MAGENTA, "BACK_LIGHT_MAGENTA", BACK_DEFAULT); 92 | printf(" %s %s %s\n", BACK_LIGHT_CYAN, "BACK_LIGHT_CYAN", BACK_DEFAULT); 93 | printf(" %s %s %s\n", BACK_WHITE, "BACK_WHITE", BACK_DEFAULT); 94 | 95 | printf("You can mix and match formatting, text coloring and background coloring!\n"); 96 | } 97 | -------------------------------------------------------------------------------- /Command_Line/Colors.java: -------------------------------------------------------------------------------- 1 | import java.util.*; 2 | 3 | public class Colors { 4 | //Formatting 5 | static final String NORMAL = "\033[0m\0"; 6 | static final String BOLD = "\033[1m\0"; 7 | static final String DIM = "\033[2m\0"; 8 | static final String UNDERLINED = "\033[4m\0"; 9 | static final String INVERT = "\033[7m\0"; 10 | static final String HIDDEN = "\033[8m\0"; 11 | 12 | //BACK Color 13 | static final String TEXT_DEFAULT = "\033[39m\0"; 14 | static final String TEXT_BLACK = "\033[30m\0"; 15 | static final String TEXT_RED = "\033[31m\0"; 16 | static final String TEXT_GREEN = "\033[32m\0"; 17 | static final String TEXT_YELLOW = "\033[33m\0"; 18 | static final String TEXT_BLUE = "\033[34m\0"; 19 | static final String TEXT_MAGENTA = "\033[35m\0"; 20 | static final String TEXT_CYAN = "\033[36m\0"; 21 | static final String TEXT_LIGHT_GREY = "\033[37m\0"; 22 | static final String TEXT_DARK_GREY = "\033[90m\0"; 23 | static final String TEXT_LIGHT_RED = "\033[91m\0"; 24 | static final String TEXT_LIGHT_GREEN = "\033[92m\0"; 25 | static final String TEXT_LIGHT_YELLOW = "\033[93m\0"; 26 | static final String TEXT_LIGHT_BLUE = "\033[94m\0"; 27 | static final String TEXT_LIGHT_MAGENTA = "\033[95m\0"; 28 | static final String TEXT_LIGHT_CYAN = "\033[96m\0"; 29 | static final String TEXT_WHITE = "\033[97m\0"; 30 | 31 | //Background Color 32 | static final String BACK_DEFAULT = "\033[49m\0"; 33 | static final String BACK_BLACK = "\033[40m\0"; 34 | static final String BACK_RED = "\033[41m\0"; 35 | static final String BACK_GREEN = "\033[42m\0"; 36 | static final String BACK_YELLOW = "\033[43m\0"; 37 | static final String BACK_BLUE = "\033[44m\0"; 38 | static final String BACK_MAGENTA = "\033[45m\0"; 39 | static final String BACK_CYAN = "\033[46m\0"; 40 | static final String BACK_LIGHT_GREY = "\033[47m\0"; 41 | static final String BACK_DARK_GREY = "\033[100m\0"; 42 | static final String BACK_LIGHT_RED = "\033[101m\0"; 43 | static final String BACK_LIGHT_GREEN = "\033[102m\0"; 44 | static final String BACK_LIGHT_YELLOW = "\033[103m\0"; 45 | static final String BACK_LIGHT_BLUE = "\033[104m\0"; 46 | static final String BACK_LIGHT_MAGENTA = "\033[105m\0"; 47 | static final String BACK_LIGHT_CYAN = "\033[106m\0"; 48 | static final String BACK_WHITE = "\033[107m\0"; 49 | 50 | public static void main(String[] args) { 51 | 52 | System.out.printf("Formatting: \n"); 53 | System.out.printf(" %s %s %s\n", NORMAL, "NORMAL", NORMAL); 54 | System.out.printf(" %s %s %s\n", BOLD, "BOLD", NORMAL); 55 | System.out.printf(" %s %s %s\n", DIM, "DIM", NORMAL); 56 | System.out.printf(" %s %s %s\n", UNDERLINED, "UNDERLINED", NORMAL); 57 | System.out.printf(" %s %s %s\n", INVERT, "INVERT", NORMAL); 58 | System.out.printf(" %s %s %s\n", HIDDEN, "HIDDEN", NORMAL); 59 | 60 | System.out.printf("Text Color: \n"); 61 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_DEFAULT, "TEXT_DEFAULT", BOLD, "BOLD", NORMAL); 62 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_BLACK, "TEXT_BLACK", BOLD, "BOLD", NORMAL); 63 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_RED, "TEXT_RED", BOLD, "BOLD", NORMAL); 64 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_GREEN, "TEXT_GREEN", BOLD, "BOLD", NORMAL); 65 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_YELLOW, "TEXT_YELLOW", BOLD, "BOLD", NORMAL); 66 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_BLUE, "TEXT_BLUE", BOLD, "BOLD", NORMAL); 67 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_MAGENTA, "TEXT_MAGENTA", BOLD, "BOLD", NORMAL); 68 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_CYAN, "TEXT_CYAN", BOLD, "BOLD", NORMAL); 69 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_GREY, "TEXT_LIGHT_GREY", BOLD, "BOLD", NORMAL); 70 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_RED, "TEXT_LIGHT_RED", BOLD, "BOLD", NORMAL); 71 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_GREEN, "TEXT_LIGHT_GREEN", BOLD, "BOLD", NORMAL); 72 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_YELLOW, "TEXT_LIGHT_YELLOW", BOLD, "BOLD", NORMAL); 73 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_BLUE, "TEXT_LIGHT_BLUE", BOLD, "BOLD", NORMAL); 74 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_MAGENTA, "TEXT_LIGHT_MAGENTA", BOLD, "BOLD", NORMAL); 75 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_LIGHT_CYAN, "TEXT_LIGHT_CYAN", BOLD, "BOLD", NORMAL); 76 | System.out.printf(" %s %-20s %s %s %s\n", TEXT_WHITE, "TEXT_WHITE", BOLD, "BOLD", NORMAL); 77 | 78 | System.out.printf("Background Color: \n"); 79 | System.out.printf(" %s %s %s\n", BACK_DEFAULT, "BACK_DEFAULT", BACK_DEFAULT); 80 | System.out.printf(" %s %s %s\n", BACK_BLACK, "BACK_BLACK", BACK_DEFAULT); 81 | System.out.printf(" %s %s %s\n", BACK_RED, "BACK_RED", BACK_DEFAULT); 82 | System.out.printf(" %s %s %s\n", BACK_GREEN, "BACK_GREEN", BACK_DEFAULT); 83 | System.out.printf(" %s %s %s\n", BACK_YELLOW, "BACK_YELLOW", BACK_DEFAULT); 84 | System.out.printf(" %s %s %s\n", BACK_BLUE, "BACK_BLUE", BACK_DEFAULT); 85 | System.out.printf(" %s %s %s\n", BACK_MAGENTA, "BACK_MAGENTA", BACK_DEFAULT); 86 | System.out.printf(" %s %s %s\n", BACK_CYAN, "BACK_CYAN", BACK_DEFAULT); 87 | System.out.printf(" %s %s %s\n", BACK_LIGHT_GREY, "BACK_LIGHT_GREY", BACK_DEFAULT); 88 | System.out.printf(" %s %s %s\n", BACK_LIGHT_RED, "BACK_LIGHT_RED", BACK_DEFAULT); 89 | System.out.printf(" %s %s %s\n", BACK_LIGHT_GREEN, "BACK_LIGHT_GREEN", BACK_DEFAULT); 90 | System.out.printf(" %s %s %s\n", BACK_LIGHT_YELLOW, "BACK_LIGHT_YELLOW", BACK_DEFAULT); 91 | System.out.printf(" %s %s %s\n", BACK_LIGHT_BLUE, "BACK_LIGHT_BLUE", BACK_DEFAULT); 92 | System.out.printf(" %s %s %s\n", BACK_LIGHT_MAGENTA, "BACK_LIGHT_MAGENTA", BACK_DEFAULT); 93 | System.out.printf(" %s %s %s\n", BACK_LIGHT_CYAN, "BACK_LIGHT_CYAN", BACK_DEFAULT); 94 | System.out.printf(" %s %s %s\n", BACK_WHITE, "BACK_WHITE", BACK_DEFAULT); 95 | 96 | System.out.printf("You can mix and match formatting, text coloring and background coloring!\n"); 97 | 98 | } 99 | } 100 | -------------------------------------------------------------------------------- /Command_Line/Intro_to_Bash_Scripting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Command_Line/Intro_to_Bash_Scripting.pdf -------------------------------------------------------------------------------- /Command_Line/Intro_to_Linux.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Command_Line/Intro_to_Linux.pdf -------------------------------------------------------------------------------- /Command_Line/Intro_to_bashrc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Command_Line/Intro_to_bashrc.pdf -------------------------------------------------------------------------------- /Command_Line/Recovering_Files.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Command_Line/Recovering_Files.pdf -------------------------------------------------------------------------------- /Command_Line/dotbashrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Command_Line/dotbashrc.txt -------------------------------------------------------------------------------- /Job_Slash_Intership/How_to_get_an_Interview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Job_Slash_Intership/How_to_get_an_Interview.pdf -------------------------------------------------------------------------------- /Job_Slash_Intership/Interview_Tips.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Job_Slash_Intership/Interview_Tips.pdf -------------------------------------------------------------------------------- /Job_Slash_Intership/Resume_Tips.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Job_Slash_Intership/Resume_Tips.pdf -------------------------------------------------------------------------------- /Job_Slash_Intership/example_resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Job_Slash_Intership/example_resume.pdf -------------------------------------------------------------------------------- /Job_Slash_Intership/example_resume.tex: -------------------------------------------------------------------------------- 1 | \documentclass[a4paper,10pt]{article} 2 | 3 | %A Few Useful Packages 4 | \usepackage{marvosym} 5 | \usepackage{fontspec} %for loading fonts 6 | \usepackage{xunicode,xltxtra,url,parskip} %other packages for formatting 7 | \usepackage[usenames,dvipsnames]{xcolor} 8 | \usepackage[big]{layaureo} %better formatting of the A4 page 9 | \usepackage{titlesec} %custom \section 10 | \usepackage{enumitem} 11 | \setlist{nosep} 12 | 13 | %Font stuff 14 | \defaultfontfeatures{Mapping=tex-text} 15 | %\setmainfont[SmallCapsFont = Fontin SmallCaps]{Fontin} 16 | %%% modified for Karol Kozioł for ShareLaTeX use 17 | \setmainfont[ 18 | SmallCapsFont = Fontin-SmallCaps.otf, 19 | BoldFont = Fontin-Bold.otf, 20 | ItalicFont = Fontin-Italic.otf 21 | ] 22 | {Fontin.otf} 23 | %%% 24 | 25 | %CV Sections inspired by: 26 | %http://stefano.italians.nl/archives/26 27 | \titleformat{\section}{\Large\scshape\raggedright}{}{0em}{}[\titlerule] 28 | \titlespacing{\section}{0pt}{0pt}{0pt} 29 | 30 | %Variables to be used within the document 31 | \newcommand{\leftindent}{.25in} 32 | \newcommand{\subleftindent}{.5in} 33 | \newcommand{\middleindent}{3in} 34 | \newcommand{\rightindent}{6.75in} 35 | \newcommand{\listindent}{.6in} 36 | \newcommand{\sectionseparation}{-.05in} 37 | 38 | %Command that controls the formatting for a single experience entry 39 | \newcommand{\showexperience} { 40 | \begin{tabbing} 41 | \hspace{\leftindent} \= \hspace{\rightindent} \= \kill % set up tab position 42 | \>\textbf{\experienceplace} \> \experiencedate \' \\ 43 | \>\textit{\experiencetitle} 44 | \end{tabbing} 45 | \vspace{\sectionseparation} 46 | \begin{itemize} [leftmargin=\listindent] 47 | \experienceitems 48 | \end{itemize} 49 | } %end of showexperience command 50 | 51 | %Command that controls the formatting for a single project entry 52 | \newcommand{\showproject} { 53 | \begin{tabbing} 54 | \hspace{\leftindent} \= \hspace{\rightindent} \= \kill % set up tab position 55 | \>\textbf{\projectname} \> \projectdate \' 56 | \end{tabbing} 57 | \vspace{\sectionseparation} 58 | \begin{itemize} [leftmargin=\listindent] 59 | \projectitems 60 | \end{itemize} 61 | } %end of showproject command 62 | 63 | %Changes to page margins 64 | \addtolength{\oddsidemargin}{-.75in} 65 | \addtolength{\textwidth}{1.5in} 66 | \addtolength{\topmargin}{-.65in} 67 | \addtolength{\textheight}{1.75in} 68 | 69 | %--------------------BEGIN DOCUMENT---------------------- 70 | \begin{document} 71 | 72 | \pagestyle{empty} % non-numbered pages 73 | 74 | %--------------------TITLE------------- 75 | \begin{center} 76 | \par{\Huge First \textsc{Last}\par} 77 | email@email.com \\ 78 | (555) 555-5555 79 | \end{center} 80 | 81 | %--------------------SECTIONS----------------------------------- 82 | %Section: Education at the top 83 | \section{Education} 84 | \begin{tabbing} 85 | \hspace{\leftindent} \= \hspace{\rightindent}\= \kill % set up tab positions 86 | \>\textbf{University of Texas at Austin} \> \textit{Graduating:} Month XXXX \' \\ 87 | \>Bachelor of [WHATEVER] in Computer Science \> \textit{GPA:} X.XX \' 88 | \end{tabbing} 89 | 90 | %Section: Skills 91 | \vspace{\sectionseparation} 92 | \section{Skills} 93 | \begin{tabbing} 94 | \hspace{\leftindent} \= \kill % set up tab position 95 | \>\textbf{Category 1:} A, B, C, D ... \\ 96 | \>\textbf{Category 2:} Stuffs 97 | \end{tabbing} 98 | 99 | %Section: Courses 100 | \vspace{\sectionseparation} 101 | \section{Courses} 102 | \begin{tabbing} 103 | \hspace{\leftindent} \= \hspace{\middleindent} \= \kill % set up tab position 104 | \>A \> B \\ 105 | \>C \> D \\ 106 | \>E \> F 107 | \end{tabbing} 108 | 109 | %Section: Experience 110 | \vspace{\sectionseparation} 111 | \section{Experience} 112 | 113 | \newcommand{\experienceplace}{Company A} 114 | \newcommand{\experiencedate}{Start - End} 115 | \newcommand{\experiencetitle}{Title} 116 | \newcommand{\experienceitems} { 117 | \item Description 118 | } 119 | \showexperience 120 | 121 | \renewcommand{\experienceplace}{Company B} 122 | \renewcommand{\experiencedate}{Start - End} 123 | \renewcommand{\experiencetitle}{Title} 124 | \renewcommand{\experienceitems} { 125 | \item Description 126 | \item Blah Blah Blah 127 | } 128 | \showexperience 129 | 130 | %Section: Projects 131 | \vspace{\sectionseparation} 132 | \section{Projects} 133 | 134 | \newcommand{\projectname}{Project A Name} 135 | \newcommand{\projectdate}{Date} 136 | \newcommand{\projectitems}{ 137 | \item Description 138 | } 139 | \showproject 140 | 141 | \renewcommand{\projectname}{Project B Name} 142 | \renewcommand{\projectdate}{Date} 143 | \renewcommand{\projectitems}{ 144 | \item Description 145 | } 146 | \showproject 147 | 148 | \renewcommand{\projectname}{Project C Name} 149 | \renewcommand{\projectdate}{Date} 150 | \renewcommand{\projectitems}{ 151 | \item Description 152 | } 153 | \showproject 154 | 155 | %Section: Activities 156 | \vspace{\sectionseparation} 157 | \section{Activities} 158 | \begin{tabbing} 159 | \hspace{\leftindent} \= \hspace{\middleindent} \= \kill % set up tab position 160 | \>A \> B \\ 161 | \>C \> D \\ 162 | \>E \> F \\ 163 | \end{tabbing} 164 | 165 | \end{document} 166 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Base UTCS Knowledge 2 | 3 | This repo contains a lot of information that CS majors are expected to just accumulate along the way. It also has some stuff that is purely extra and ultra nerdy. 4 | 5 | Hopefully some of it will keep you from feeling overwhelmed or stupid as you continue on your CS journey. 6 | 7 | ## Enjoy! :) 8 | 9 | If you want something added feel free to email us at utcs.leanin@gmail.com! 10 | 11 | PS: All the pdfs have a red "SUGGEST AN EDIT" link at the bottom that will send you to the google doc that the pdfs were generated from with comment permissions. (Note: you will have to download the pdf for the link to work) 12 | -------------------------------------------------------------------------------- /Text_Editors/Intro_to_Emacs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Text_Editors/Intro_to_Emacs.pdf -------------------------------------------------------------------------------- /Text_Editors/Intro_to_Vim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Text_Editors/Intro_to_Vim.pdf -------------------------------------------------------------------------------- /Text_Editors/Sublime_Tricks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meganutexas/Base_UTCS_Knowledge/71cd1b35832289a1195011faf62880ab4521b6bc/Text_Editors/Sublime_Tricks.pdf --------------------------------------------------------------------------------