-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.tex
166 lines (143 loc) · 4.61 KB
/
resume.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
% Resume in LaTeX
% Author: Griffin Hiers
% License: MPL
\documentclass[letterpaper,14pt]{extarticle}
\usepackage[empty]{fullpage}
\usepackage{enumitem}
% FA Icons for the contact info
\usepackage{fontawesome}
% Columns are used in the header and skills
\usepackage{multicol}
\usepackage{titlesec}
% xcolor let's me define the colors beforehand
\usepackage{xcolor}
% tikz draws the rectangle under my name, probably overkill
\usepackage{tikz}
% set the paper size to standard American size
\pdfpageheight=11in
\pdfpagewidth=8.5in
% color1 is used for the section titles and the rectangle
\definecolor{color1}{RGB}{8, 96, 95}
% color2 is used for dates and descriptiony stuff
\definecolor{color2}{RGB}{89, 131, 129}
% Font - Open Sans
\usepackage[sfdefault]{FiraSans} %% option 'sfdefault' activates Fira Sans as the default text font
\usepackage[T1]{fontenc}
\renewcommand*\oldstylenums[1]{{\firaoldstyle{} #1}}
% Adjust margins
\addtolength{\oddsidemargin}{-0.5in}
\addtolength{\evensidemargin}{-0.5in}
\addtolength{\textwidth}{1in}
\addtolength{\topmargin}{-.5in}
\addtolength{\textheight}{1.0in}
\raggedbottom{}
\raggedright{}
% sets the color and fonts of the section titles
\titleformat{\section}
{\normalfont\sffamily\large\bfseries\color{color1}}
{\thesection}{1em}{}
% sets the spacing around the section titles
\titlespacing*{\section}
{0pt}{8pt}{4pt}
\setlength{\multicolsep}{0pt}
%-----------RESUME STARTS HERE--------
\begin{document}
%-----------HEADING-------------------
\begin{multicols}{2}
% first column
% probably a better way to do this
\vspace*{10pt}
% those phantoms are to block ligatures, lol
\huge {\textit{Grif\phantom{}f\phantom{}in Hiers}}
\normalsize \\
% drawing the rectangle
\begin{tikzpicture}
\fill[color1] (0,0) rectangle (250pt,6pt);
\end{tikzpicture}
% second column
\begin{enumerate}[noitemsep]
\item[]{\faHome{} 103 Logan St. Apt. A\\Charleston, SC 29401}
\item[]{\faPhone{} (803) 605--5558}
\item[]{\faEnvelope{} gphiers@gmail.com}
\end{enumerate}
\end{multicols}
\vspace*{13pt}
%-----------SKILLS--------------------
\section*{SKILLS}
\begin{multicols}{4}
React\\
D3.js\\
Python\\
Django\\
Java\\
Angular\\
HTML/CSS/JS\\
SQL\\
\end{multicols}
%-----------EDUCATION-----------------
\section*{EDUCATION}
\textbf{College of Charleston}
\hspace*{\fill}
\textcolor{color2}{August 2015 --- May 2019}
\\
\textcolor{color2}{
\textit{
\qquad{}Bachelor of Science in Computer Science
\\
% for some reason it needs an extra space
\qquad{}\ Minor in Data Science
}
}
%-----------EXPERIENCE----------------
\section*{EXPERIENCE}
\textbf{Booz Allen Hamilton}
\hspace*{\fill}
\textcolor{color2}{August 2019 --- Present}
\\
\textcolor{color2}{
\textit{
\qquad{}Software Developer
}
}
\begin{itemize}[itemsep=0pt, topsep=2pt]
\item{Contributed new features, bug fixes, and tests to multiple projects, including Veteran Benefits Management System, a workflow solution built for the U.S. Department of Veterans Affairs}
\item{Worked within an Agile framework to correspond with and assist clients, organize work, and deliver code on time}
\item{Provided documentation and training for team members}
\end{itemize}
\textbf{Booz Allen Hamilton}
\hspace*{\fill}
\textcolor{color2}{June 2018 --- August 2018}
\\
\textcolor{color2}{
\textit{
\qquad{} Summer Games Intern
}
}
\begin{itemize}[itemsep=0pt, topsep=2pt]
\item{Worked on a team of five interns to create a web application for use by the U.S. Navy to monitor sailor fatigue and proficiency} \end{itemize}
\textbf{Research in Web Development}
\hspace*{\fill}
\textcolor{color2}{September 2017 --- December 2018}
\\
\textcolor{color2}{
\textit{
\qquad{} Research Assistant
}
}
\begin{itemize}[itemsep=0pt, topsep=2pt]
\item{Assisted Dr. Ayman Hajja with several Django based web projects, including a website to enable researchers to label audio files containing stuttering, and other projects to be teaching aides for his classes}
\end{itemize}
\textbf{College of Charleston Computer Science}
\hspace*{\fill}
\textcolor{color2}{January 2017 --- December 2018}
\\
\textcolor{color2}{
\textit{
\qquad{} Introductory Programming Teaching Assistant
}
}
\begin{itemize}[itemsep=0pt, topsep=2pt]
\item{Improved communication skills by helping students work through introductory Python labs}
\item{Taught the fundamentals of programming such as loops and functions as well as more advanced topics like object orientation and sorting algorithms}
\end{itemize}
\end{document}