2017-08-27 02:17:07 +00:00
|
|
|
% possible options include font size ('10pt', '11pt' and '12pt'), paper size
|
|
|
|
% ('a4paper', 'letterpaper', 'a5paper', 'legalpaper', 'executivepaper' and
|
|
|
|
% 'landscape') and font family ('sans' and 'roman')
|
|
|
|
\documentclass[11pt,letterpaper,sans]{moderncv}
|
|
|
|
\newcommand{\comment}[1]{}% create a way to make block comments
|
|
|
|
\usepackage{fontawesome}
|
|
|
|
%\usepackage[T1]{fontenc}
|
|
|
|
\moderncvicons{awesome}
|
|
|
|
|
2017-10-25 03:10:05 +00:00
|
|
|
% modernCV themes
|
2017-08-27 02:17:07 +00:00
|
|
|
% style options are 'casual' (default), 'classic', 'banking', 'oldstyle' and
|
|
|
|
% 'fancy'
|
|
|
|
\moderncvstyle{banking}
|
|
|
|
|
|
|
|
% color options 'black', 'blue' (default), 'burgundy', 'green', 'grey',
|
|
|
|
% 'orange', 'purple' and 'red'
|
2017-11-29 00:19:00 +00:00
|
|
|
\moderncvcolor{customblue}
|
2017-08-27 02:17:07 +00:00
|
|
|
|
|
|
|
% to set the default font; use '\sfdefault' for the default sans serif font,
|
|
|
|
% '\rmdefault' for the default roman one, or any tex font name
|
|
|
|
\renewcommand{\familydefault}{\sfdefault}
|
|
|
|
|
|
|
|
% uncomment to suppress automatic page numbering for CVs longer than one page
|
|
|
|
\nopagenumbers{}
|
|
|
|
|
|
|
|
% character encoding
|
2018-04-25 00:15:47 +00:00
|
|
|
% if you are not using xelatex or lualatex, replace by the encoding you are
|
2017-08-27 02:17:07 +00:00
|
|
|
% using
|
|
|
|
\usepackage[utf8]{inputenc}
|
|
|
|
|
|
|
|
% adjust the page margins
|
|
|
|
%\usepackage[scale=0.75]{geometry}
|
|
|
|
\usepackage[margin=1in]{geometry}
|
|
|
|
|
|
|
|
% if you want to change the width of the column with the dates
|
|
|
|
%\setlength{\hintscolumnwidth}{3cm}
|
|
|
|
|
|
|
|
% for the 'classic' style, if you want to force the width allocated to your name
|
|
|
|
% and avoid line breaks. be careful though, the length is normally calculated to
|
|
|
|
% avoid any overlap with your personal info; use this at your own typographical
|
|
|
|
% risks...
|
|
|
|
%\setlength{\makecvtitlenamewidth}{10pt}
|
|
|
|
|
|
|
|
|
|
|
|
% personal data
|
|
|
|
\name{Neil}{Brommer}
|
|
|
|
|
|
|
|
% optional, remove / comment the line if not wanted
|
|
|
|
%\title{Resume Title}
|
|
|
|
|
|
|
|
% optional, remove / comment the line if not wanted; the "postcode city" and
|
|
|
|
% "country" arguments can be omitted or provided empty
|
|
|
|
\address{Spokane Valley, WA}{}{}
|
|
|
|
|
|
|
|
% optional, remove / comment the line if not wanted; the optional "type" of the
|
|
|
|
% phone can be "mobile" (default), "fixed" or "fax"
|
|
|
|
%\phone[fixed]{123\,--\,456\,--\,7890} % nicer formatting
|
|
|
|
%\phone[mobile]{(123)~456~7890}
|
|
|
|
%\phone[fax]{+3~(456)~789~012}
|
|
|
|
|
|
|
|
% optional, remove / comment the line if not wanted
|
|
|
|
%\email{jdoe@example.com}
|
|
|
|
|
|
|
|
% optional, remove / comment the line if not wanted
|
|
|
|
\homepage{neilbrommer.com}
|
|
|
|
|
|
|
|
% optional, remove / comment the line if not wanted
|
|
|
|
%\social[linkedin]{john.doe}
|
|
|
|
|
|
|
|
% optional, remove / comment the line if not wanted
|
|
|
|
%\social[twitter]{jdoe}
|
|
|
|
|
|
|
|
% optional, remove / comment the line if not wanted
|
|
|
|
% not using this because it shows "username" instead of "github.com/username"
|
|
|
|
%\social[github]{neilbrommer}
|
|
|
|
|
|
|
|
% optional, remove / comment the line if not wanted
|
|
|
|
\extrainfo{\faicon{github-alt}
|
|
|
|
\href{https://github.com/neilbrommer}{github.com/neilbrommer}}
|
|
|
|
|
|
|
|
% optional, remove / comment the line if not wanted; '64pt' is the height the
|
|
|
|
% picture must be resized to, 0.4pt is the thickness of the frame around it (put
|
|
|
|
% it to 0pt for no frame) and 'picture' is the name of the picture file
|
|
|
|
%\photo[64pt][0.4pt]{picture}
|
|
|
|
|
|
|
|
% optional, remove / comment the line if not wanted
|
2017-10-25 03:10:05 +00:00
|
|
|
\quote{Computer Science student at Eastern Washington University graduating in
|
|
|
|
spring quarter 2018.}
|
2017-08-27 02:17:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
% increase width of the title quote
|
2017-11-29 00:19:00 +00:00
|
|
|
\let\originalrecomputecvlengths\recomputecvlengths
|
|
|
|
\renewcommand*{\recomputecvlengths}{%
|
|
|
|
\originalrecomputecvlengths%
|
|
|
|
\setlength{\quotewidth}{1.0\textwidth}}
|
2017-08-27 02:17:07 +00:00
|
|
|
|
|
|
|
% indent list bullets
|
|
|
|
\renewcommand*{\listitemsymbol}{\hspace{0.75em}\labelitemi~}
|
|
|
|
|
|
|
|
% reference formatting macro
|
|
|
|
% Define \cvdoublecolumn, which sets its arguments in two columns without any
|
|
|
|
% labels
|
|
|
|
\newcommand{\cvdoublecolumn}[2]{%
|
|
|
|
\cvitem[0.75em]{}{%
|
|
|
|
\begin{minipage}[t]{\listdoubleitemcolumnwidth}#1\end{minipage}%
|
|
|
|
\hfill%
|
|
|
|
\begin{minipage}[t]{\listdoubleitemcolumnwidth}#2\end{minipage}%
|
|
|
|
}%
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
%----- resume ------------------------------------------------------
|
|
|
|
\makecvtitle{}
|
|
|
|
|
|
|
|
|
|
|
|
% arguments 3 to 6 can be left empty
|
|
|
|
\section{Education}
|
2017-10-25 03:10:05 +00:00
|
|
|
\cventry{2014 -- present} % chktex 8
|
2017-08-27 02:17:07 +00:00
|
|
|
{Bachelor of Science in Computer Science}
|
|
|
|
{Eastern Washington University}
|
|
|
|
{Cheney, Washington}
|
2018-04-25 00:12:26 +00:00
|
|
|
{3.48 GPA}
|
|
|
|
{Graduating in spring 2018}
|
2017-10-25 03:10:05 +00:00
|
|
|
\cventry{2011 -- 2013} % chktex 8
|
2017-08-27 02:17:07 +00:00
|
|
|
{Associate of Applied Science in Network Design and Administration}
|
|
|
|
{Spokane Community College}
|
|
|
|
{Spokane, Washington}
|
|
|
|
{3.13 GPA}
|
|
|
|
{Networking with Cisco switches and routers with basic Windows and Linux
|
|
|
|
administration}
|
|
|
|
|
|
|
|
|
2018-04-25 00:13:21 +00:00
|
|
|
\section{Relevant Coursework and Skills}
|
2017-10-25 03:10:05 +00:00
|
|
|
\cvlistdoubleitem % chktex 1
|
2018-04-25 00:13:21 +00:00
|
|
|
{Object-Oriented Languages -- Java, C\#, C++} % chktex 8
|
2017-08-27 02:17:07 +00:00
|
|
|
{Object-Oriented design patterns}
|
2017-10-25 03:10:05 +00:00
|
|
|
\cvlistdoubleitem % chktex 1
|
|
|
|
{GUI Programming -- JavaFX, WinForms, WPF} % chktex 8
|
2018-04-25 00:13:21 +00:00
|
|
|
{Databases -- SQL, Database Design} % chktex 8
|
2017-10-25 03:10:05 +00:00
|
|
|
\cvlistdoubleitem % chktex 1
|
2018-04-25 00:13:21 +00:00
|
|
|
{Web Development -- HTML, CSS, JavaScript, JQuery, PHP} % chktex 8
|
2017-10-25 03:10:05 +00:00
|
|
|
{Operating Systems -- C, Unix, threads and\\ processes, memory management} % chktex 8
|
|
|
|
\cvlistdoubleitem % chktex 1
|
|
|
|
{Software Engineering} % chktex 8
|
2018-04-25 00:13:21 +00:00
|
|
|
{Data Mining} % chktex 8
|
2017-10-25 03:10:05 +00:00
|
|
|
\cvlistdoubleitem % chktex 1
|
|
|
|
{Network Programming -- Network sockets,\\ binary protocols} % chktex 8
|
2018-04-25 00:13:21 +00:00
|
|
|
{Low Level Systems -- MIPS assembly, digital circuits} % chktex 8
|
2017-10-25 03:10:05 +00:00
|
|
|
\cvlistdoubleitem % chktex 1
|
|
|
|
{Linux Administration -- Basic system\\ maintenance, Email, DNS} % chktex 8
|
|
|
|
{Windows Administration -- MS Exchange, Active Directory} % chktex 8
|
2017-08-27 02:17:07 +00:00
|
|
|
|
|
|
|
|
2018-04-25 00:14:43 +00:00
|
|
|
\section{Projects}
|
|
|
|
\cventry
|
|
|
|
{ % date
|
|
|
|
\faicon{globe}
|
|
|
|
\href{https://start.neilbrommer.com}{start.neilbrommer.com}
|
|
|
|
}
|
|
|
|
{ % subtitle
|
|
|
|
\faicon{github-alt}
|
|
|
|
\href{https://github.com/NeilBrommer/NewTabPage}
|
|
|
|
{github.com/NeilBrommer/NewTabPage}
|
|
|
|
}
|
|
|
|
{New Tab Page} % title
|
|
|
|
{} % location
|
|
|
|
{} % sub subtitle
|
|
|
|
{ % lower text
|
|
|
|
A web page intended for use as a browser's new tab page, keeping groups
|
|
|
|
of links with all data stored client side. This project is being used as
|
|
|
|
a way to learn about JavaScript's more advanced capabilities.
|
|
|
|
}
|
|
|
|
\cventry
|
2017-08-27 02:17:07 +00:00
|
|
|
{}
|
2018-04-25 00:14:43 +00:00
|
|
|
{
|
|
|
|
\faicon{github-alt}
|
|
|
|
\href{https://github.com/NeilBrommer/PictureViewer}
|
|
|
|
{github.com/NeilBrommer/PictureViewer}
|
|
|
|
}
|
|
|
|
{Picture Viewer}
|
2017-08-27 02:17:07 +00:00
|
|
|
{}
|
2018-04-25 00:14:43 +00:00
|
|
|
{}
|
|
|
|
{
|
|
|
|
A small C\# and WPF Windows application for opening and viewing image
|
|
|
|
files. It includes small extra features such as a slideshow function, a
|
|
|
|
queue sidebar, and drag and drop support.
|
|
|
|
}
|
2017-08-27 02:17:07 +00:00
|
|
|
|
2018-04-25 00:15:19 +00:00
|
|
|
|
|
|
|
\section{Work History}
|
|
|
|
\cventry % chktex 1
|
|
|
|
{July - August 2017} % chktex 8
|
|
|
|
{Spotlight Operator}
|
|
|
|
{Spokane Valley Summer Theatre}
|
|
|
|
{Spokane Valley, WA}
|
|
|
|
{The Secret Garden} % sub job title
|
|
|
|
{\faicon{globe} \href{https://svsummertheatre.com}{svsummertheatre.com}
|
|
|
|
\hfill One week of rehearsals and three weeks of performances
|
|
|
|
} % general description, use \newline{} to break
|
|
|
|
\cventry % chktex 1
|
|
|
|
{July - August 2016 and 2017} % chktex 8
|
|
|
|
{Lawnmower}
|
|
|
|
{Valley Park Community Club}
|
|
|
|
{Spokane Valley, WA}
|
|
|
|
{} % sub job title
|
|
|
|
{} % general description, use \newline{} to break
|
|
|
|
|
2017-08-27 02:17:07 +00:00
|
|
|
\clearpage
|
|
|
|
|
|
|
|
%----- references --------------------------------------------------
|
|
|
|
|
|
|
|
\end{document}
|