summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2013-10-15 23:06:55 -0400
committerDavid Thompson <dthompson2@worcester.edu>2013-10-15 23:06:55 -0400
commitf5c00baf367599a7ede14158a4a5b2cb6092f8d9 (patch)
treeb22d87e6b2319ff7a80c771f2a74c6502594cb54
First commit!
-rw-r--r--.gitignore6
-rw-r--r--Makefile2
-rw-r--r--README.org9
-rw-r--r--resume.tex55
4 files changed, 72 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..0eac6ff
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+.#*
+~*
+/resume.aux
+/resume.log
+/resume.out
+/resume.pdf
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ceed9cd
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,2 @@
+pdf:
+ pdflatex resume.tex
diff --git a/README.org b/README.org
new file mode 100644
index 0000000..d7e06fe
--- /dev/null
+++ b/README.org
@@ -0,0 +1,9 @@
+* Resume
+ Here is my resume. It is written in LaTeX. Perhaps it will serve as
+ a good example for someone looking to make a similar type of resume.
+
+** License
+ CC-BY-ND
+
+ You are free to copy and redistribute exact copies, but please do
+ not modify my resume.
diff --git a/resume.tex b/resume.tex
new file mode 100644
index 0000000..3130250
--- /dev/null
+++ b/resume.tex
@@ -0,0 +1,55 @@
+\documentclass[sans]{moderncv}
+
+\moderncvstyle{casual}
+\moderncvcolor{blue}
+
+\name{David}{Thompson}
+\title{Software Engineer}
+\address{326 Broadway}{Somerville, Massachusetts 02145}
+\phone[mobile]{+1~(774)~289~6629}
+\email{dthompson2@worcester.edu}
+\homepage{http://dthompson.us}
+\social[github]{https://github.com/davexunit}
+
+\begin{document}
+\makecvtitle
+
+\section{Education}
+\cventry{2008--2012}{Bachelor of Computer Science}{Worcester State
+ University}{Worcester, MA}{\textit{3.7 GPA}}{Recipient of a 2012
+ Academic Achievement award\newline Member of Programming Team
+ (2010-2012)}
+
+\section{Work Experience}
+\cventry{2010--2012}{Intern}{Cyberonic Internet
+ Communications}{Worcester, MA}{}{Web development and GNU/Linux
+ system administration.\newline{}
+\begin{itemize}
+\item Performed MySQL to PostgreSQL database migration for new
+ customer management and billing system.
+\item Administered Debian and CentOS production servers.
+\item Customized free software web applications to meet business
+ requirements.
+\end{itemize}}
+
+\cventry{2012--present}{Web Developer}{Vista Higher Learning}{Boston,
+ MA}{}{Ruby on Rails and AngularJS web development.\newline{}
+ \begin{itemize}
+ \item Worked in large Ruby and Javascript codebase with thousands of
+ active users on production servers.
+ \item Solved scalability problems via SQL optimization, caching with
+ Redis, and HTTP traffic inspection.
+ \item Helped integrate sitewide XMPP chat system with Javascript
+ client.
+\end{itemize}}
+
+\section{Programming Languages}
+Scheme, Python, C, Ruby, Javascript, Java, Emacs Lisp
+
+\section{Free Software}
+\cvitem{Contributor}{GNU Guile, GNU Guix, GNU MediaGoblin, GNU FM, Diaspora}
+\cvitem{Author}{Guile-2D, Yon-chan}
+
+\end{document}
+
+%% end of file 'resume.tex'.