initial commit with 2020 cv
This commit is contained in:
commit
4b8658f2a6
5 changed files with 220 additions and 0 deletions
47
.gitignore
vendored
Normal file
47
.gitignore
vendored
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
~## Core latex/pdflatex auxiliary files:
|
||||||
|
*.aux
|
||||||
|
*.lof
|
||||||
|
*.log
|
||||||
|
*.lot
|
||||||
|
*.fls
|
||||||
|
*.out
|
||||||
|
*.toc
|
||||||
|
*.fmt
|
||||||
|
*.fot
|
||||||
|
*.cb
|
||||||
|
*.cb2
|
||||||
|
*.loe
|
||||||
|
|
||||||
|
## Intermediate documents:
|
||||||
|
*.dvi
|
||||||
|
*-converted-to.*
|
||||||
|
|
||||||
|
## Bibliography auxiliary files (bibtex/biblatex/biber):
|
||||||
|
*.bbl
|
||||||
|
*.bcf
|
||||||
|
*.blg
|
||||||
|
*-blx.aux
|
||||||
|
*-blx.bib
|
||||||
|
*.brf
|
||||||
|
*.run.xml
|
||||||
|
*.latexmain
|
||||||
|
|
||||||
|
## Build tool auxiliary files:
|
||||||
|
*.fdb_latexmk
|
||||||
|
*.synctex
|
||||||
|
*.synctex.gz
|
||||||
|
*.synctex.gz(busy)
|
||||||
|
*.pdfsync
|
||||||
|
*.tdo
|
||||||
|
|
||||||
|
##swap files
|
||||||
|
*.swp
|
||||||
|
|
||||||
|
##other help files
|
||||||
|
*.idx
|
||||||
|
*.ilg
|
||||||
|
*.ind
|
||||||
|
*.lec
|
||||||
|
*.cnt
|
||||||
|
|
||||||
|
##pdf files
|
BIN
JSaunders_CV.pdf
Normal file
BIN
JSaunders_CV.pdf
Normal file
Binary file not shown.
173
JSaunders_CV.tex
Normal file
173
JSaunders_CV.tex
Normal file
|
@ -0,0 +1,173 @@
|
||||||
|
\documentclass[11pt]{article}
|
||||||
|
\usepackage[english]{babel}
|
||||||
|
\usepackage{fontspec}
|
||||||
|
\usepackage[explicit]{titlesec}
|
||||||
|
\usepackage[usenames, svgnames]{xcolor}
|
||||||
|
\usepackage{geometry}
|
||||||
|
\usepackage[colorlinks = true,
|
||||||
|
urlcolor = Red,
|
||||||
|
citecolor = Red]{hyperref}
|
||||||
|
\usepackage{tabularx}
|
||||||
|
\usepackage{booktabs}
|
||||||
|
\usepackage{soul} % underlining
|
||||||
|
\usepackage{ifthen}
|
||||||
|
\usepackage{fontawesome5}
|
||||||
|
%
|
||||||
|
\geometry{
|
||||||
|
top=0.75in,
|
||||||
|
left=1in,
|
||||||
|
right=1in,
|
||||||
|
bottom=0.75in
|
||||||
|
}
|
||||||
|
%
|
||||||
|
\newfontface\titlefont{Marian 1554}
|
||||||
|
\newfontface\subtitlefont{Neutra Text Light SC}
|
||||||
|
\newfontface\headingfont{Neutraface 2 Display Bold}[
|
||||||
|
BoldFont = Neutraface 2 Display Titling
|
||||||
|
]
|
||||||
|
\newfontface\bodyfont{Graphik Light}[
|
||||||
|
BoldFont = Graphik Medium
|
||||||
|
]
|
||||||
|
\newfontface\keywordfont{FagoCo-MediumCaps}
|
||||||
|
|
||||||
|
\setmainfont{Graphik Light}[
|
||||||
|
BoldFont = Graphik Medium
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
% restyle sections
|
||||||
|
\titleformat{\section}
|
||||||
|
[block]
|
||||||
|
{\fontsize{22pt}{22pt}\headingfont\bfseries\color{white}}
|
||||||
|
{}
|
||||||
|
{0pt}
|
||||||
|
{\colorbox{DimGray}{\parbox{\textwidth}{#1}}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
% environment for year cv entries
|
||||||
|
\newenvironment{yearlist}{%
|
||||||
|
\renewcommand\item[4][]{
|
||||||
|
\large {##1} & \large\bodyfont\textbf{##2} \\
|
||||||
|
\ifthenelse{\equal{##4}{}}{
|
||||||
|
& {##3}
|
||||||
|
}{
|
||||||
|
& {\small\keywordfont{##4}}\\[2pt]
|
||||||
|
& {##3} \\[-6pt]
|
||||||
|
}\\[6pt]}%
|
||||||
|
% \noindent
|
||||||
|
\noindent\tabularx{\textwidth}{@{}lX}
|
||||||
|
|
||||||
|
}{\endtabularx}
|
||||||
|
|
||||||
|
|
||||||
|
%
|
||||||
|
% Restyle Title
|
||||||
|
|
||||||
|
% set underlining closer to text
|
||||||
|
\setul{7pt}{0.7pt}
|
||||||
|
|
||||||
|
% remove indent
|
||||||
|
\setlength{\parindent}{0pt}
|
||||||
|
|
||||||
|
\makeatletter
|
||||||
|
\renewcommand{\maketitle}{\bgroup
|
||||||
|
\begin{flushright}
|
||||||
|
\noindent\fontsize{64pt}{64pt}\titlefont\ul{Jonny Saunders}\break
|
||||||
|
% \vspace{-20pt}%
|
||||||
|
%
|
||||||
|
\normalsize\subtitlefont\appname\hspace{6pt}\faInfoCircle\break
|
||||||
|
\contactemail\hspace{6pt}\faEnvelope\break
|
||||||
|
\github\hspace{6pt}\faGithub\break
|
||||||
|
\twitter\hspace{6pt}\faTwitter\break
|
||||||
|
\contactphone\hspace{6pt}\faPhone\break
|
||||||
|
\vspace{0pt}
|
||||||
|
\end{flushright}\normalfont
|
||||||
|
}
|
||||||
|
\makeatother
|
||||||
|
%
|
||||||
|
% Hanging paragraphs
|
||||||
|
\newenvironment{hangingpar}[1]
|
||||||
|
{\begin{list}
|
||||||
|
{}
|
||||||
|
{\setlength{\itemindent}{-#1}%%'
|
||||||
|
\setlength{\leftmargin}{#1}%%'
|
||||||
|
\setlength{\itemsep}{0pt}%%'
|
||||||
|
\setlength{\parsep}{\parskip}%%'
|
||||||
|
\setlength{\topsep}{\parskip}%%'
|
||||||
|
}
|
||||||
|
\setlength{\parindent}{-#1}%%
|
||||||
|
\item[]
|
||||||
|
}
|
||||||
|
{\end{list}}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\title{Jonny Saunders}
|
||||||
|
\def\appname{Ph.D Student, Wehr Lab, University of Oregon}
|
||||||
|
\def\contactemail{\href{mailto:jsaunder@uoregon.edu}{jsaunder@uoregon.edu}}
|
||||||
|
\def\contactphone{208.794.1109}
|
||||||
|
\def\github{\href{https://github.com/sneakers-the-rat}{sneakers-the-rat}}
|
||||||
|
\def\twitter{\href{https://twitter.com/json_dirs}{json\_dirs}}
|
||||||
|
\date{}
|
||||||
|
\maketitle
|
||||||
|
|
||||||
|
\section{Research}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{yearlist}
|
||||||
|
\item[2020 - Present]{\href{https://ventilator.readthedocs.io}{PVP}: The People's Ventilator Project}{An open-source low-cost, easily-manufactured, supply-chain resilient mechanical ventilator for emergency deployment during the Covid-19 pandemic.}{User Experience Design, Realtime embedded systems}
|
||||||
|
\item[2017 - Present]{\href{https://auto-pi-lot.com}{Autopilot}: Distributed Behavioral Experiments}{A Python framework for performing hardware-intensive behavioral neuroscience experiments by distributing them over a swarm of Raspberry Pis}{Python, Linux, Web Design, Circuit Design, 2D/3D CAD}
|
||||||
|
\item[2015 - Present]{Speech Perception in Auditory Cortex}{Computational mechanisms of phonetic discrimination and complex auditory category learning in mouse Auditory Cortex}{Animal Behavior, Mesoscopic Multiphoton Imaging, Geometric Neural Analysis}
|
||||||
|
\item[2013-2015]{Rapid Corticosteroidal Gating of Reproductive Behavior}{Rapid costicosterone modulation of ion channel dynamics in medullary reticular neurons gating courtship clasping}{Whole-cell patch clamp electrophysiology}
|
||||||
|
\end{yearlist}
|
||||||
|
|
||||||
|
|
||||||
|
\section{Education \& Training}
|
||||||
|
|
||||||
|
\begin{yearlist}
|
||||||
|
\item[2015 - Present]{University of Oregon}{Ph.D Student, Systems Neuroscience}{}
|
||||||
|
\item[2018]{Marine Biological Laboratory}{Neural Systems \& Behavior Course}{}
|
||||||
|
\item[2017]{University of Oregon}{MSc., Psychology}{}
|
||||||
|
\item[2015]{Willamette University}{B.A. Neuroscience}{}
|
||||||
|
|
||||||
|
\end{yearlist}
|
||||||
|
|
||||||
|
\section{Publications}
|
||||||
|
|
||||||
|
\begin{tabularx}{\textwidth}{llX}
|
||||||
|
\textbf{Year} & \textbf{Status} & \textbf{Paper} \\
|
||||||
|
2020 & In-Prep & LaChance J., Schottdorf M., Saunders JL., Zajdel TJ., Dvali S., Notterman D., Cohen D. (2020). \textbf{PVP1 - The People's Ventilator Project: A fully open-source pressure-controlled ventilator}. \textit{submitting to bioRxiv during August 2020}.\\
|
||||||
|
2020 & Submitted & Kane, G., Lopes, G. Saunders JL., Mathis A., Mathis MW. (2020). \textbf{Real-time, low-latency closed-loop feedback using markerless posture tracking} \textit{submitted to bioRxiv 2020-08-04}.\\
|
||||||
|
2019 & \href{https://github.com/wehr-lab/SaundersWehr-Autopilot2019}{BIORX2019} & Saunders, J. L., \& Wehr, M. (2019). \textbf{Autopilot: Automating behavioral experiments with lots of Raspberry Pis.} \textit{bioRxiv}, 807693. \url{https://doi.org/10.1101/807693} \\
|
||||||
|
2019 & & Saunders, JL., Comerford, A., \& Williams, G. \textbf{Detecting Deep Fakes With Mice: Machines vs Biology.} \textit{Presented at Black Hat USA Cybersecurity Conference.} \url{https://www.blackhat.com/us-19/briefings/schedule/\#detecting-deep-fakes-with-mice-14467} \\
|
||||||
|
2019 & \href{https://github.com/wehr-lab/SaundersWehr-JASA2019}{JASA2019} & Saunders, J. L., \& Wehr, M. (2019). \textbf{Mice can learn phonetic categories.} \textit{The Journal of the Acoustical Society of America, 145(3)}, 1168-1177. \url{ https://doi.org/10.1121/1.5091776}
|
||||||
|
\end{tabularx}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\section{Awards}
|
||||||
|
|
||||||
|
\begin{yearlist}
|
||||||
|
|
||||||
|
\item[2017 - Present]{Graduate Research Fellowship}{National Science Foundation}{}
|
||||||
|
\item[2019]{Best Panel}{University of Oregon: Graduate Research Forum}{}
|
||||||
|
\item[2018]{Peter O'Day Fellowship}{University of Oregon}{}
|
||||||
|
\item[2018]{Society for General Physiology Scholar}{Society for General Physiology}{}
|
||||||
|
\item[2015]{Best Poster}{Oregon Society for Neuroscience}{}
|
||||||
|
\item[2014]{Science Collaborative Research Program}{Willamette University \& M.J. Murdock Charitable Trust}{}
|
||||||
|
|
||||||
|
\end{yearlist}
|
||||||
|
|
||||||
|
\section{Teaching \& Mentorship}
|
||||||
|
|
||||||
|
\begin{yearlist}
|
||||||
|
\item[2017 - 2019]{Mentor - GRFP Writing Workshop}{University of Oregon}{}
|
||||||
|
\item[2016 - 2019]{Instructor - UO Data Science Club}{University of Oregon}{}
|
||||||
|
\item[2016, 2019]{Instructor - Music and the Brain}{University of Oregon}{}
|
||||||
|
|
||||||
|
|
||||||
|
\end{yearlist}
|
||||||
|
|
||||||
|
\end{document}
|
BIN
JSaunders_CV.xdv
Normal file
BIN
JSaunders_CV.xdv
Normal file
Binary file not shown.
BIN
JSaunders_CV_2020-08-04.pdf
Normal file
BIN
JSaunders_CV_2020-08-04.pdf
Normal file
Binary file not shown.
Loading…
Reference in a new issue