Added entry for current job.

This commit is contained in:
Warwick 2021-07-06 14:54:07 +01:00
commit fefe2459b4
3 changed files with 517 additions and 0 deletions

288
.gitignore vendored Normal file
View file

@ -0,0 +1,288 @@
## Core latex/pdflatex auxiliary files:
*.aux
*.lof
*.log
*.lot
*.fls
*.out
*.toc
*.fmt
*.fot
*.cb
*.cb2
.*.lb
## Intermediate documents:
*.dvi
*.xdv
*-converted-to.*
# these rules might exclude image files for figures etc.
*.ps
# *.eps
*.pdf
## Generated if empty string is given at "Please type another file name for output:"
.pdf
## Bibliography auxiliary files (bibtex/biblatex/biber):
*.bbl
*.bcf
*.blg
*-blx.aux
*-blx.bib
*.run.xml
## Build tool auxiliary files:
*.fdb_latexmk
*.synctex
*.synctex(busy)
*.synctex.gz
*.synctex.gz(busy)
*.pdfsync
## Build tool directories for auxiliary files
# latexrun
latex.out/
## Auxiliary and intermediate files from other packages:
# algorithms
*.alg
*.loa
# achemso
acs-*.bib
# amsthm
*.thm
# beamer
*.nav
*.pre
*.snm
*.vrb
# changes
*.soc
# comment
*.cut
# cprotect
*.cpt
# elsarticle (documentclass of Elsevier journals)
*.spl
# endnotes
*.ent
# fixme
*.lox
# feynmf/feynmp
*.mf
*.mp
*.t[1-9]
*.t[1-9][0-9]
*.tfm
#(r)(e)ledmac/(r)(e)ledpar
*.end
*.?end
*.[1-9]
*.[1-9][0-9]
*.[1-9][0-9][0-9]
*.[1-9]R
*.[1-9][0-9]R
*.[1-9][0-9][0-9]R
*.eledsec[1-9]
*.eledsec[1-9]R
*.eledsec[1-9][0-9]
*.eledsec[1-9][0-9]R
*.eledsec[1-9][0-9][0-9]
*.eledsec[1-9][0-9][0-9]R
# glossaries
*.acn
*.acr
*.glg
*.glo
*.gls
*.glsdefs
*.lzo
*.lzs
# uncomment this for glossaries-extra (will ignore makeindex's style files!)
# *.ist
# gnuplottex
*-gnuplottex-*
# gregoriotex
*.gaux
*.glog
*.gtex
# htlatex
*.4ct
*.4tc
*.idv
*.lg
*.trc
*.xref
# hyperref
*.brf
# knitr
*-concordance.tex
# TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files
# *.tikz
*-tikzDictionary
# listings
*.lol
# luatexja-ruby
*.ltjruby
# makeidx
*.idx
*.ilg
*.ind
# minitoc
*.maf
*.mlf
*.mlt
*.mtc[0-9]*
*.slf[0-9]*
*.slt[0-9]*
*.stc[0-9]*
# minted
_minted*
*.pyg
# morewrites
*.mw
# newpax
*.newpax
# nomencl
*.nlg
*.nlo
*.nls
# pax
*.pax
# pdfpcnotes
*.pdfpc
# sagetex
*.sagetex.sage
*.sagetex.py
*.sagetex.scmd
# scrwfile
*.wrt
# sympy
*.sout
*.sympy
sympy-plots-for-*.tex/
# pdfcomment
*.upa
*.upb
# pythontex
*.pytxcode
pythontex-files-*/
# tcolorbox
*.listing
# thmtools
*.loe
# TikZ & PGF
*.dpth
*.md5
*.auxlock
# todonotes
*.tdo
# vhistory
*.hst
*.ver
# easy-todo
*.lod
# xcolor
*.xcp
# xmpincl
*.xmpi
# xindy
*.xdy
# xypic precompiled matrices and outlines
*.xyc
*.xyd
# endfloat
*.ttt
*.fff
# Latexian
TSWLatexianTemp*
## Editors:
# WinEdt
*.bak
*.sav
# Texpad
.texpadtmp
# LyX
*.lyx~
# Kile
*.backup
# gummi
.*.swp
# KBibTeX
*~[0-9]*
# TeXnicCenter
*.tps
# auto folder when using emacs and auctex
./auto/*
*.el
# expex forward references with \gathertags
*-tags.tex
# standalone packages
*.sta
# Makeindex log files
*.lpz
# xwatermark package
*.xwm
# REVTeX puts footnotes in the bibliography by default, unless the nofootinbib
# option is specified. Footnotes are the stored in a file with suffix Notes.bib.
# Uncomment the next line to have this generated file ignored.
#*Notes.bib

32
Makefile Normal file
View file

@ -0,0 +1,32 @@
filename=cv
pdf: ps
ps2pdf ${filename}.ps
pdf-print: ps
ps2pdf -dColorConversionStrategy=/LeaveColorUnchanged -dPDFSETTINGS=/printer ${filename}.ps
text: html
html2text -width 100 -style pretty ${filename}/${filename}.html | sed -n '/./,$$p' | head -n-2 >${filename}.txt
html:
@#latex2html -split +0 -info "" -no_navigation ${filename}
htlatex ${filename}
ps: dvi
dvips -t letter ${filename}.dvi
dvi:
latex ${filename}
bibtex ${filename}||true
latex ${filename}
latex ${filename}
read:
evince ${filename}.pdf &
aread:
acroread ${filename}.pdf
clean:
rm -f ${filename}.{ps,pdf,log,aux,out,dvi,bbl,blg}

197
cv.tex Normal file
View file

@ -0,0 +1,197 @@
\documentclass{article}
\usepackage{titlesec}
\usepackage{titling}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=cyan,
}
\usepackage{multicol}
\usepackage{blindtext}
\usepackage[margin=0.75in]{geometry}
\setlength{\parindent}{0cm} % remove paragraph indents
\thispagestyle{empty} %hide page number
\titleformat{\section}
{\Large\bfseries}
{}
{0em}
{}[\titlerule]
\titleformat{\subsection}
{\bfseries}
{}
{0em}
{}
\titleformat{\subsubsection}
{\bfseries}
{}
{0em}
{}
\titlespacing{\subsubsection}
{0em} {0em} {0em}
\renewcommand{\maketitle}{
\begin{center}
{
\huge
\bfseries
\theauthor
}
\end{center}
\vspace{-.3in}
{\raggedleft
Email: \href{mailto:warwick.l.e.new@gmail.com}{warwick.l.e.new@gmail.com} \par
Phone number: \href{tel:07445728181}{07445 728 181} \par
Portfolio Website: \href{http://warwicknew.xyz}{http://warwicknew.xyz} \par
}
\vspace{-.45in}
}
\newcommand{\entry}[4]{
\begin{minipage}[t]{.15\linewidth}
\hfill \textsc{#1}
\end{minipage}
\hfill\vline\hfill
\begin{minipage}[t]{.80\linewidth}
{\bf#2}\\\textit{#3} \footnotesize{#4}
\end{minipage}\\
\vspace{.2cm}}
\newcommand{\itemsubsection}[1]{\vspace{-.9em}\subsubsection{#1}\vspace{-1.25em}}
% Content
\title{Curriculum Vitae}
\author{Warwick New}
\begin{document}
\maketitle
\section{Professional Profile}
A project driven Full-Stack Web-Developer with an academic background in
Computing for Games (BSc hons) and Entrepreneurship (MA). Strong interest
working and learning both high level and low level programming languages and
APIs. Good first hand knowledge of working within and managing scrum/agile in
small multidisciplinary teams. Aims to use his interests in software to
eventually enter the games industry or start his own software company. Interests
lie in technical depth with the key area's being real-time networking and
graphical simulation within code.
% \newline
% \newline
% I plan to use my knowledge and my skill to eventually work my way into a
% technical position within the games industry and/or start a software company of
% my own. With my key interests being real time networking and graphical
% simulation.
\section{Core Skills}
\itemsubsection{Full stack Web Development}
\begin{multicols}{4}
\begin{itemize}
\setlength\itemsep{0em}
\item JavaScript \item Node \item React
\item Terraform \item AWS ECS/ECR, \item Docker
\item Janus audio-bridge \item Linux
\end{itemize}
\end{multicols}
\itemsubsection{Games --- Within Engine}
\begin{multicols}{4}
\begin{itemize}
\setlength\itemsep{0em}
\item Unreal Engine 4 \item C++ \item Blueprints \item AI Behaviour trees
\end{itemize}
\end{multicols}
\itemsubsection{Games --- Without Engine}
\begin{multicols}{4}
\begin{itemize}
\setlength\itemsep{0em}
\item C++ \item OpenGL (GLSL) \item SDL \item Python
\end{itemize}
\end{multicols}
\itemsubsection{Markup Languages \& Version Control}
\begin{multicols}{4}
\begin{itemize}
\setlength\itemsep{0em}
\item Git \item {\LaTeX} \item Markdown \item Org
\end{itemize}
\end{multicols}
\vspace{-1.9em}
\begin{itemize}
\item Scrum/Agile
\end{itemize}
\section{Career Summary}
\entry{2020--Present}{Assistant Lecturer}{Falmouth University -- Games Academy}
{
Here I am working with lecturers in the games academy to develop course
materials for Computing For Games students. I hope to use my time here
teaching students to further hone my skills in a direction that leads me back
to working with video games whilst imparting some of my knowledge from
developing with modern web technologies back to the course.
}
\entry{2019--2020}{Co-Founder and Full Stack Web Developer}{Ramble Media LTD}
{
Wrote and maintained a live audio broadcasting website with a talented
co-founder in the hopes of disrupting the podcast industry. We hoped to
achieve this by creating the ability for pod-casters to host call shows.
Unfortunately our first to market advantage was taken by several pre-existing
podcasting apps and services with larger and more efficient development teams.
\newline
\newline
The key takeaway from this project was a more developed understanding of how
software teams work in a more professional setting and developed a deeper
understanding of the agile/scrum in the environment it was designed for. And a
broad skill-set in the web development industry including
recording/broadcasting live media entirely in the web browser and a decent
understanding of modern web development frameworks like react.
}
% \entry{2013--2015}{Waiter}{Bayleaf Indian Resturant}
% {
% This work placement is only mentioned as it was where I initially developed
% some of my initial soft skills before entering higher education.
% }
\section{Education and Qualifications}
\entry{2018--2019}{MA Entrepreneurship --- Launchpad Program}{Falmouth University}
{
In this program I helped research the market surrounding a software product I
then helped create, in and attempt to disrupt the podcasting industry. See
{\bfseries Career Summary --- Co-Founder and Full Stack Web Developer} for more
information.
\newline
\newline
The core skills I took away from the more academic side of the project include
the ability to plan and produce much larger and more complex plans for
creating software that include using live daemons and services to complete
functionality without duplicating work.
}
\entry{2015--2018}{BSc (Hons) Computing for Games}{Falmouth University}
{
During this degree I not only developed all of the core skills based on
video game production, but also because of the coursework based structure of
the program worked in several multidisciplinary teams. The most successful
project of which I was a made a part of was the first company I hoped to help
start. I joined this group of students hoping to create and self publish what
would be thier final year and my second year game called Monq
\href{https://d-tail-entertainment.itch.io/monq}{https://d-tail-entertainment.itch.io/monq}.
\newline
\newline
But I found that the most interesting part of the course for me was creating my
own graphics engine to display and allow one to traverse a simple procedurally
generated landscape. This is due to my love of trying to gain a deep
understanding of how more minimalist systems work. %TODO link
}
% \section{Hobbies and Interests}
% In my free time I am six months into the process of learning Japanese as a second
% language though it is not at a level where I feel comfortable putting it as a
% professional skill at this current time.
\end{document}