-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.tex
More file actions
120 lines (96 loc) · 4.63 KB
/
Copy pathresume.tex
File metadata and controls
120 lines (96 loc) · 4.63 KB
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
% - - - - - - - - - - -
% License: MIT
% - - - - - - - - - - -
\documentclass[12pt]{article}
\title{Resume}
\author{Taylor Neely}
\usepackage[english]{babel}
\usepackage{verbatim}
\usepackage{fancyhdr}
\usepackage[hidelinks]{hyperref}
\usepackage{geometry}
\usepackage{ifthen}
\usepackage{titlesec}
\usepackage{enumitem}
% Font & encoding
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\input{glyphtounicode}
\pdfgentounicode=1
% Set layout and margins (H, V)
\geometry{letterpaper, margin={0.5in, 0.5in}}
\raggedbottom
\raggedright
\setlength{\tabcolsep}{0in}
% Clear headers
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
% Format overrides
\titleformat{\section}{\scshape \Large \vspace{-5pt}}{}{0em}{}[\titlerule]
% Commands
\newcommand*{\header}[4]{
\begin{tabular*}{\textwidth}{l@{\extracolsep{\fill}}r}
\hspace{-5pt}\textbf{\LARGE{#1}} & \href{mailto:#2}{#2}\\
\href{#3}{#3} & \href{tel:#4}{#4}
\end{tabular*}\vspace{-5pt}
}
\newcommand*{\workSectionStart}[1]{\section{#1}\begin{itemize}[label={}, leftmargin=*]}
\newcommand*{\workItem}[4]{\item
\begin{tabular*}{\linewidth}{l@{\extracolsep{\fill}}r}
\textbf{\large{#1}} & {#2}\\
\textit{#3} & \textit{#4}
\end{tabular*}
}
\newcommand{\workDataStart}{\begin{itemize}[label=$\circ$]\vspace{-4pt}}
\newcommand*{\workDataItem}[2][]{\item\ifthenelse{\equal{#1}{}}{}{\textbf{#1:}} #2}
\newcommand{\workDataEnd}{\end{itemize}}
\newcommand*{\workSectionEnd}{\end{itemize}}
\newcommand*{\simpleItem}[1]{\item #1}
% Whew! All set up now to write the resume below!
\begin{document}
\header
{Taylor Neely}
{tneely417@gmail.com}
{https://tneely.com}
{734-546-4691}
\workSectionStart{Experience}
\workItem{Amazon Web Services (AWS)}{Seattle, WA}
{Senior Software Development Engineer, Aurora DSQL}{Jan. 2024 - Present}
\workDataStart
\workDataItem[Distributed Systems]{Designed and built core components of \textbf{Aurora DSQL}, a distributed, cloud-native PostgreSQL database written in Rust.}
\workDataItem[Networking]{Implemented high-performance networking layers to enable low-latency communication and efficient query routing across a cluster of nodes.}
\workDataItem[Transaction Pooling]{Developed transaction pooling and coordination mechanisms to ensure correctness and scalability under heavy concurrent workloads.}
\workDataItem[Rust Expertise]{Leveraged advanced Rust features for memory safety, concurrency, and performance in a large-scale production system.}
\workDataEnd
\workItem{Amazon Web Services (AWS)}{Seattle, WA}
{Senior Software Development Engineer, Health AI}{Apr. 2021 -- Dec. 2023}
\workDataStart
\workDataItem[Service Leadership]{Led design and launch of \textbf{AWS HealthOmics}, a managed service for genomics data. Grew adoption 10x post-GA while cutting operational overhead 80\%, and drove dozens of feature releases and region launches.}
\workDataItem[Cloud Architecture]{Built event-driven, serverless systems scaling to \textbf{5,000 RPS, 100 Gbps throughput}, and multi-petabyte daily ingestion.}
\workDataEnd
\workItem{Amazon}{Seattle, WA}
{Software Development Engineer, Prime}{Jul. 2019 -- Apr. 2021}
\workDataStart
\workDataItem[]{Delivered scalable personalization, GDPR compliance, and infrastructure-as-code solutions across Prime, driving customer acquisition/retention and pioneering AWS CDK adoption across 10+ teams.}
\workDataEnd
\workItem{Epic Systems}{Verona, WI}
{Software Developer}{Aug. 2016 -- May. 2019}
\workDataStart
\workDataItem[]{Built perioperative electronic health record software for clinical settings, improving patient readiness and reducing surgical delays.}
\workDataEnd
\workSectionEnd
\workSectionStart{Publications \& Patents}
\simpleItem{R. Kogay, \textbf{T. B. Neely}, D. P. Birnbaum, C. R. Hankel, M. Shakya, O. Zhaxybayeva.
\textit{Machine-Learning Classification Suggests That Many Alphaproteobacterial Prophages May Instead Be Gene Transfer Agents.}
Genome Biology and Evolution, 11(10):2941–2953, Oct. 2019.
\href{https://doi.org/10.1093/gbe/evz206}{doi:10.1093/gbe/evz206}}
\workSectionEnd
\workSectionStart{Education}
\workItem{Dartmouth College}{Hanover, NH}
{Bachelor of Arts in Biology, Computer Science with Honors}{2012 - 2016}
\workSectionEnd
\center{\tiny{\href{https://github.com/tneely/resume}{This resume generated on \today}}
\end{document}