This commit is contained in:
Edith Boles 2025-06-04 16:32:15 -07:00
commit d077dbb4de
No known key found for this signature in database
4 changed files with 125 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
resume.aux
resume.log
resume.out
resume.pdf

BIN
profile.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

40
resume.cls Normal file
View File

@ -0,0 +1,40 @@
\LoadClass[14pt]{extreport}
\usepackage{ifthen}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{geometry}
\usepackage{array}
\usepackage{enumitem}
\usepackage{hyperref}
\usepackage{xltabular}
\usepackage{graphicx}
\usepackage{outlines}
\setlist[itemize]{leftmargin=*}
\linespread{1.15}
\geometry{a4paper,
left={0.5in},
top={0.4in},
right={0.5in},
bottom={0.4in}
}
\newcommand\clink[1]{{\usefont{T1}{lmtt}{m}{n} #1 }}
\pagenumbering{gobble}
\newenvironment{csection}[2]{
\textbf{#1}
\vspace{0.15cm}
\hrule
{#2}
}{}
\newenvironment{frcontent}[4]{
{
\textbf{#1} \leavevmode\newline
{\footnotesize
\ifthenelse{\equal{#2}{}}{}{{#2 \leavevmode\newline}}
\ifthenelse{\equal{#3}{}}{}{{#3 \leavevmode\newline}}
\ifthenelse{\equal{#4}{}}{}{{\textit{#4}}}
}
}
}{}

81
resume.tex Normal file
View File

@ -0,0 +1,81 @@
\documentclass{resume}
\begin{document}
\fontfamily{ppl}\selectfont
\noindent
\begin{tabularx}{\linewidth}{@{}m{0.8\textwidth} m{0.2\textwidth}@{}}
{
\Large{Edith Boles} \newline
\small{
\clink{
\href{mailto:edith@penguinowl.dev}{edith@penguinowl.dev} \textbf{·}
{\fontdimen2\font=0.75ex +1 503 297 2490}
} \newline
Portland, Oregon, USA
}
} &
{
\hfill
\includegraphics[width=2.8cm]{profile.png}
}
\end{tabularx}
\csection{ABOUT}{\small
\vspace{0.8em}
\noindent
Computer Engineering student at Portland State. Specialized in embedded systems, programming and system administration. Maintains home servers as a hobby.
}
\begin{center}
\begin{tabularx}{\linewidth}{@{}*{2}{X}@{}}
% left side %
{
\csection{EDUCATION}{\small
\begin{itemize}
\item \frcontent{Computer Engineering, BS}{}{Oregon State University, Portland State University}{2022 - Present}
\item \frcontent{International Baccalaureate Career Program (Computer Engineering)}{}{Southridge High School}{2020 - 2022}
\item \frcontent{High School Diploma}{}{Southridge High School}{2018 - 2022}
\end{itemize}
}
\csection{EXPERIENCE}{\small
\begin{itemize}
\item \frcontent{BolesBits Consulting, LLC}{Engineering Intern - Portland, OR}{}{2022 - Present}
\item \frcontent{College of Engineering, OSU}{IT Support Technician - Corvallis, OR}{MECM deployments, networking and scripting.}{2023 - 2025}
\item \frcontent{Project Merlin}{Remote Backend Engineer - Durham, NC}{DevOps and web development.}{June 2020 - September 2020}
\end{itemize}
}
}
% end left side %
&
% right side %
{
\csection{SKILLS}{\small
\begin{itemize}
\item \textbf{Systems} \newline
{\footnotesize Linux, Networking, Git, Bash, Self-hosting, Operating System Installation, SSH, Containerization}{}{}
\item \textbf{Programming} \newline
{\footnotesize Ruby, Powershell, Javascript, Java, C++, Crystal, Bash, (System)Verilog, PostgreSQL, Vim}{}{}
\item \textbf{DevOps} \newline
{\footnotesize Git, Automation, Make, CI/CD, Zabbix}
\end{itemize}
}
\csection{PRIMARY EXPERTISE}{\small
\begin{itemize}
\item \textbf{Scripting} \newline
{\footnotesize Self taught programmer with over a decade of experience, mainly in procedural programming.}{}{}
\item \textbf{Linux System Experience} \newline
{\footnotesize Extensive experience maintaining and debugging Linux servers and desktops. Experienced with reading documentation and troubleshooting issues.}{}{}
\item \textbf{Leadership} \newline
{\footnotesize Strong leadership experience with both small and large groups and enjoys helping others with developing new skills.}
\end{itemize}
}
\csection{AWARDS \& RECOGNITION}{\small
\begin{itemize}
\item \frcontent{Eagle Scout}{Scouts BSA}{}{Fall 2021}
% \item \frcontent{All Star Award}{National Science Bowl}{}{2018}
\end{itemize}
}
}
\end{tabularx}
\end{center}
\end{document}