-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.tex
299 lines (273 loc) · 8.7 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
% Marshall Bruner's resume
\documentclass[11pt,a4paper]{article}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{fontawesome5} % cool emojis
\RequirePackage{fontawesome5}
\usepackage[hidelinks]{hyperref}
\usepackage{tabularx}
\usepackage{listofitems} % list of command arguments
\usepackage{sectsty} % section formatting
\usepackage{xcolor}
\usepackage{soul}
% \usepackage{fontspec}
% \setmonofont{JetBrains Mono}[Contextuals=Alternate]
\usepackage{geometry}
\geometry{
a4paper,
left=6mm,
right=6mm,
top=10mm,
bottom=10mm
}
\pagestyle{empty}
% Section formatting
\sectionfont{
\large
\sectionrule{0pt}{0pt}{-5pt}{0.5pt}
}
\DeclareRobustCommand{\boldblue}[1]{{\textcolor{blue}{\textbf{#1}}}}
% Name
% Arguments:
% - name
% - address
% - phone number
% - email
% - linkedin
% - github
\newcommand{\name}[7]{
\begin{center}
{\Huge \scshape \texttt{#1}} \\ \vspace{1mm}
#2 \\ \vspace{1mm}
\small \raisebox{-0.1\height}\faPhone \ \underline{#3} ~
\href{mailto:#4}{\raisebox{-0.1\height} \faEnvelope \ \underline{#4}} ~
\href{https://linkedin.com/in/#5}{\raisebox{-0.1\height} \faLinkedin \ \underline{#5}} ~
\href{https://github.com/#6}{\raisebox{-0.1\height} \faGithub \ \underline{#6}} ~
% \href{https://gitlab.com/#7}{\raisebox{-0.1\height} \faGitlab \ \underline{#7}}
\end{center}\par
}
% Name - no location
% Arguments:
% - name
% - address
% - phone number
% - email
% - linkedin
% - github
\newcommand{\namenoloc}[6]{
\begin{center}
{\Huge \scshape \texttt{#1}} \\ \vspace{4mm}
\small \raisebox{-0.1\height}\faPhone \ \underline{#2} ~
\href{mailto:#3}{\raisebox{-0.1\height} \faEnvelope \ \underline{#3}} ~
\href{https://linkedin.com/in/#4}{\raisebox{-0.1\height} \faLinkedin \ \underline{#4}} ~
\href{https://github.com/#5}{\raisebox{-0.1\height} \faGithub \ \underline{#5}} ~
% \href{https://gitlab.com/#6}{\raisebox{-0.1\height} \faGitlab \ \underline{#6}}
\end{center}\par
}
% School
% Arguments:
% - school
% - degree
% - GPA
% - start date
% - end date
% - other
% - location
\newcommand{\school}[7]{
\vspace{-1.5mm}
% \readlist*\bulletslist{#6}
\begin{tabularx}{\textwidth}{
p{10cm}
>{\raggedleft\arraybackslash}X
}
\textbf{#1} & \textbf{#4 \textemdash \ #5} \\
\textit{#2} \textemdash \ \textbf{\textit{GPA: #3}} & \textit{#7} \\
\textit{#6} \\
% \multicolumn{2}{l}{\textit{#6}} \\
% \begin{itemize}
% \foreachitem\bullet\in\bulletslist{\item \bullet\vspace{-0.3cm}}
% \end{itemize} \\
% \textit{#6} & \\
\end{tabularx}
}
% Job
% Arguments:
% - company
% - start date
% - end date
% - location
% - position
% - bullet points (comma-separated list)
\newcommand{\job}[6]{
\readlist*\bulletslist{#6}
\vspace{-1.5mm}
\begin{tabularx}{\textwidth}{
p{14.5cm}
>{\raggedleft\arraybackslash}X
}
\textbf{#1} & \textbf{#2} \textemdash\ \textbf{#3} \\
\textit{\underline{#4}} & \textit{#5} \\
\vspace{-0.7cm}
\begin{itemize}
\foreachitem\bullet\in\bulletslist{\item \bullet\vspace{-0.3cm}}
\end{itemize} \\
\end{tabularx}
}
% Project
% Arguments:
% - project title
% - start date
% - end date
% - bullet points (comma-separated list)
% - link to project
\newcommand{\project}[5]{
\readlist*\bulletslist{#4}
\vspace{-1.5mm}
\begin{tabularx}{\textwidth}{
p{14cm}
>{\raggedleft\arraybackslash}X
}
\href{#5}{\underline{\textbf{#1}}} & \textbf{#2} \textemdash\ \textbf{#3} \\
\vspace{-0.7cm}
\begin{itemize}
\foreachitem\bullet\in\bulletslist{\item \bullet \vspace{-0.3cm}}
\end{itemize}
\end{tabularx}
}
% Project
% Arguments:
% - project title
% - date
% - bullet points (comma-separated list)
% - link to project
\newcommand{\projectsingle}[4]{
\readlist*\bulletslist{#3}
\vspace{-1.5mm}
\begin{tabularx}{\textwidth}{
p{14cm}
>{\raggedleft\arraybackslash}X
}
\href{#4}{\underline{\textbf{#1}}} & \textbf{#2} \\
\vspace{-0.7cm}
\begin{itemize}
\foreachitem\bullet\in\bulletslist{\item \bullet \vspace{-0.3cm}}
\end{itemize}
\end{tabularx}
}
% Skill
% Arguments:
% - group
% - skills (comma-separated list)
\newcommand{\skill}[2]{
\begin{tabularx}{\textwidth}{>{\raggedright}X}
\textbf{#1:} #2
\end{tabularx}
}
\begin{document}
\namenoloc{Marshall Bruner}
{+1 719-553-9497}
{marshall-bruner}
{brunerm99}
% {brunerm99}
% \vspace{-0.65cm}
% \section*{OBJECTIVE}
% \vspace{-0.2cm}
% % I am pursuing a transition into the Data Science industry.
% % My motivation has pushed me to learn the necessary tools and apply them to personal projects alongside my demanding job in the aerospace industry.
% % I believe my expertise as an RF engineer, specifically in the signal processing field, gives me an interesting perspective to contribute to a team.
% I am pursuing a transition to a software-centered role.
% My experience in this area ranges from writing firmware for electronics used in flight to
% configuring webservers for radar data visualization and analysis.
% I would like to use this experience as a baseline for contributing to a team and
% developing my skills further.
\vspace{-0.3cm}
\section*{EXPERIENCE}
\job{Ball Aerospace (\boldblue{DoD Clearance})}
{Jun 2021}
{Jul 2023}
{RF Engineer}
{Broomfield, CO}
{
{\boldblue{Designed and debugged multiple complex, mission-critical RF boards under strict time constraints}},
{Simulated, designed, and tested an RF Front-End PCB at extreme temperatures},
{\boldblue{Schematic capture and layout of RF T/R systems} (RF, digital, power), antenna range test equipment, component testing coupons, etc.},
% {Built data visualization and analysis tools in Python},
{Built an embedded webpage used to control/monitor phased array electronics},
{High sensitivity testing (noise, high power, etc.) of electonics}
}
\job{Colorado State University}
{Jan 2021}
{May 2022}
{Graduate Research Assistant | Thesis focused on Radar}
{Fort Collins, CO}
{
{\boldblue{Design, schematic, and layout} of a modular, X-band, FMCW drone radar},
{\boldblue{Signal processing / data visualization} for Analog Device’s FMCW Phaser Radar Board},
{Presented the work at the IEEE International Phased Array Symposium},
{Phaser board work was presented by ADI at IMS 2022 and IEEE-APS 2022}
}
\job{CHILL Radar Lab}
{May 2020}
{May 2021}
{Lab Assistant}
{Greeley, CO}
{
% {Built a real-time radar display to easily display and animate radar data},
{Built a server to host and display real-time and historical radar data using PostGreSQL, Flask, Python},
{Performed characterizations and measurements of radar equipment}
}
\vspace{-0.5cm}
\section*{EDUCATION}
\school{Colorado State University}
{M.S. Electrical Engineering}
{3.9}
{Jan 2021}
{May 2022}
{Thesis - Design, Deployment, and Cost Considerations for DARMA; A Low-Cost and Lightweight FMCW Radar}
{Fort Collins, CO}
\school{Colorado State University}
{B.S. Electrical Engineering}
{3.47}
{Aug 2017}
{May 2021}
{}
{Fort Collins, CO}
\vspace{-0.7cm}
\section*{PROJECTS}
\projectsingle{FMCW Radar Bootcamp}
{Mar 2023}
{{\boldblue{Developed signal processing software and a presentation for an FMCW radar} to present at the 2022 AESS Radar Bootcamp}}
{https://radar2023.ieee-radarconf.org/radar-boot-camp}
\project{5G Electronics Senior Design Project}
{Jun 2020}
{May 2021}
{
{\boldblue{Simulated, assembled, and measured a full 5G receiver system}},
{Created teaching documentation for a 5G transmitter and receiver for FR1 and FR2 frequency bands},
{Experience using FieldFox, EMPro, ADS, SystemVue}
}
{https://drive.google.com/file/d/1jnmEm4owg6Irm8_FP4LNQ6NCM40VRgA7/view?usp=sharing}
\project{Fuzzy Logic Clutter Filter}
{Nov 2020}
{Dec 2020}
{{Applied the Fuzzy Logic machine learning technique as a radar clutter filter}}
{https://drive.google.com/file/d/1ZUYzztMVOXb6Fy5-VPBcrxMdchSZ3y8y/view}
% \project{Environment-Mapping Car}
% {Nov. 2020}
% {Dec. 2020}
% {Built and programmed a battery-powered car with attached ultrasonic sensor for mobile mapping of the surrounding environment}
% {https://drive.google.com/file/d/1jjRZd7_2CnEgP2Gu1lF2XtPDVP_Ej0Gg/view}
\vspace{-0.5cm}
\section*{SKILLS \& ABILITIES}
\vspace{-0.2cm}
\skill{Languages}
{Python, Rust, C, Bash, SQL, Matlab, NuShell, JavaScript}
\skill{Design / Simulation Tools}
{AWR Microwave Office, HFSS, KiCad, AutoCAD, QucsStudio, LTSpice, Cadence}
\skill{Technologies / Tools}
{Benchtop measurement equipment (VNA, Oscilloscope, etc.), Git, \LaTeX, Linux, Docker, PostGreSQL, Flask, Celery}
\skill{Communication}
{Worked with customers through pre- and post-sales phases, Excellent Technical Communication and Presentation Skills, Experience Presenting PDR/CDRs, Technical Presentation Formatting}
% \skill{Interesting Fact}{Traveled to 16 countries in the past year.}
\end{document}