mirror of
https://github.com/MSWS/Resume.git
synced 2025-12-05 20:40:29 -08:00
84 lines
2.9 KiB
TeX
84 lines
2.9 KiB
TeX
% resume.tex
|
|
% sample template copied from https://web.archive.org/web/20150807054721/http://www.toofishes.net/media/extra/sample-resume.pdf
|
|
% vim:set ft=tex spell:
|
|
|
|
\documentclass[10pt,letterpaper]{article}
|
|
\usepackage[letterpaper,margin=0.75in]{geometry}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{mdwlist}
|
|
\usepackage[T1]{fontenc}
|
|
\usepackage{textcomp}
|
|
\usepackage{tgpagella}
|
|
\usepackage{hyperref}
|
|
|
|
\pagestyle{empty}
|
|
\setlength{\tabcolsep}{0em}
|
|
|
|
% indentsection style, used for sections that aren't already in lists
|
|
% that need indentation to the level of all text in the document
|
|
\newenvironment{indentsection}[1]%
|
|
{\begin{list}{}%
|
|
{\setlength{\leftmargin}{#1}}%
|
|
\item[]%
|
|
}
|
|
{\end{list}}
|
|
|
|
% opposite of above; bump a section back toward the left margin
|
|
\newenvironment{unindentsection}[1]%
|
|
{\begin{list}{}%
|
|
{\setlength{\leftmargin}{-0.5#1}}%
|
|
\item[]%
|
|
}
|
|
{\end{list}}
|
|
|
|
% format two pieces of text, one left aligned and one right aligned
|
|
\newcommand{\headerrow}[2]
|
|
{\begin{tabular*}{\linewidth}{l@{\extracolsep{\fill}}r}
|
|
#1 &
|
|
#2 \\
|
|
\end{tabular*}}
|
|
|
|
% make "C++" look pretty when used in text by touching up the plus signs
|
|
% \newcommand{\CPP}
|
|
% {C\nolinebreak[4]\hspace{-.05em}\raisebox{.22ex}{\footnotesize\bf ++}}
|
|
|
|
% and the actual content starts here
|
|
\begin{document}
|
|
|
|
\begin{center}
|
|
\vspace*{-2.5em}
|
|
{\LARGE \textbf{Isaac K. Boaz}}
|
|
|
|
\ \ Seattle, WA\ \ \textbullet
|
|
\ \ (208) 473-6497\ \ \textbullet
|
|
\ \ isaac.k.boaz@gmail.com
|
|
\end{center}
|
|
|
|
\hrule
|
|
\vspace{0.8em}
|
|
|
|
\begin{indentsection}{\parindent}
|
|
Dear Linda Sterling, \\[1em]
|
|
\indent\indent As a Computer-Science Major, I am excited to apply for the Web Developer position for the Sustainability Engagement Institute.
|
|
My current employment with our Ridgeway Dining Hall as a Student Manager has shown me the amount of food waste and work that needs to be done to ensure we keep our practices sustainable.
|
|
|
|
\indent\indent Alongside my major-related coursework, I have many projects that I learn from:
|
|
\begin{itemize}
|
|
\item Personal website showcasing my basic projects, profile, and other information about me (\href{https://msws.xyz}{msws.xyz}).
|
|
\item Xenforo Forums for the EdgeGamers Community (\href{https://edgegamers.com}{edgegamers.com}).
|
|
\item Grafana statistics tracking (\href{https://msws.xyz/stats}{msws.xyz/stats}).
|
|
\end{itemize}
|
|
|
|
With my familiarity in Git (and GitHub + GitLab), dedication to quality clean code, and understanding of the softwares that go into web development,
|
|
I believe I can exceed the requirements laid out for this position. My work experience alongside my years of working with a gaming community has
|
|
shown me how important teamwork and sustainability is.
|
|
|
|
I would be thrilled to assist in spreading the importance of sustainability in all areas of our university. I look forward to speaking with you.
|
|
|
|
Sincerely, \\
|
|
Isaac Boaz
|
|
\end{indentsection}
|
|
|
|
|
|
\end{document}
|