From 81cb7c3898f56b7722bb3ae43ed25c119d521e37 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 20 Apr 2013 19:41:08 -0400 Subject: [PATCH] Adjust CV content to match me --- Makefile | 16 +++- README | 3 + cv.bib | 154 ++++++++++++++++++++++++++++++ cv.tex | 284 ++++++++++++++++++++++++++++++++++++++++--------------- 4 files changed, 380 insertions(+), 77 deletions(-) create mode 100644 README create mode 100644 cv.bib diff --git a/Makefile b/Makefile index 129ecd8..9b31467 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,18 @@ -cv.pdf: cv.tex +BIBS = bu1 bu2 bu3 + +cv.pdf: cv.tex $(BIBS:%=%.bbl) $(BIBS:%=%.blg) + pdflatex "$<" pdflatex "$<" + +$(BIBS:%=%.aux): %.aux: cv.tex pdflatex "$<" +$(BIBS:%=%.bbl): %.bbl: %.aux + bibtex "$<" + +$(BIBS:%=%.blg): %.blg: %.aux + bibtex "$<" + + clean: - rm -f *.log *.aux *.pdf + rm -f *.aux *.bbl *.blg *.log *.out *.pdf diff --git a/README b/README new file mode 100644 index 0000000..7167395 --- /dev/null +++ b/README @@ -0,0 +1,3 @@ +Dependencies: + dev-tex/currvita currvita + texlive-bibtexextra bibunits diff --git a/cv.bib b/cv.bib new file mode 100644 index 0000000..c4f83d1 --- /dev/null +++ b/cv.bib @@ -0,0 +1,154 @@ +@string{IJBMM = "International Journal of Biological Macromolecules"} + +@string{WKing = "King, W.~Trevor"} +@string{MSu = "Su, Meihong"} +@string{GYang = "Yang, Guoliang"} + +@article { king10, + author = WKing #" and "# MSu #" and "# GYang, + title = "{M}onte {C}arlo simulation of mechanical unfolding of proteins + based on a simple two-state model", + year = 2010, + month = mar, + day = 1, + address = "Department of Physics, Drexel University, 3141 + Chestnut Street, Philadelphia, PA 19104, USA.", + journal = IJBMM, + volume = 46, + number = 2, + pages = "159--166", + issn = "0141-8130", + alternative_issn = "1879-0003", + doi = "10.1016/j.ijbiomac.2009.12.001", + url = "http://www.sciencedirect.com/science/article/B6T7J- + 4XWMND2-1/2/7ef768562b4157fc201d450553e5de5e", + language = "eng", + keywords = "Atomic force microscopy;Mechanical unfolding;Monte Carlo + simulation;Worm-like chain;Single molecule methods", + abstract = "Single molecule methods are becoming routine biophysical + techniques for studying biological macromolecules. In mechanical + unfolding of proteins, an externally applied force is used to induce + the unfolding of individual protein molecules. Such experiments have + revealed novel information that has significantly enhanced our + understanding of the function and folding mechanisms of several types + of proteins. To obtain information on the unfolding kinetics and the + free energy landscape of the protein molecule from mechanical unfolding + data, a Monte Carlo simulation based on a simple two-state kinetic + model is often used. In this paper, we provide a detailed description + of the procedure to perform such simulations and discuss the + approximations and assumptions involved. We show that the appearance of + the force versus extension curves from mechanical unfolding of proteins + is affected by a variety of experimental parameters, such as the length + of the protein polymer and the force constant of the cantilever. We + also analyze the errors associated with different methods of data + pooling and present a quantitative measure of how well the simulation + results fit experimental data. These findings will be helpful in + experimental design, artifact identification, and data analysis for + single molecule studies of various proteins using the mechanical + unfolding method." +} + +% Talks + +@unpublished{ 2013-01-columbia, + title= {Collaborative version control with {G}it}, + author = WKing, + year = 2013, + month = jan, + note= {Software Carpentry boot camp, Columbia University}, + address = {Columbia University}, +} + +@unpublished{ 2009-10-life-cycles, + title= {Software life-cycles and alphabet soup}, + author = WKing, + year = 2009, + month = oct, + note= {Drexel Physics Graduate Student Association}, + address = {Drexel University} +} + +@unpublished{ 2008-06-locks, + title= {Manipulating combination locks & Ray tracing with polarization}, + author = WKing, + year = 2008, + month = jun, + note= {Drexel Physics Graduate Student Association}, + address = {Drexel University} +} + +@unpublished{ 2006-05-quantum-computing, + title= {Quantum Computing}, + author = WKing, + year = 2006, + note= {Rochester Solid State final}, + address = {University of Rochester} +} +% month = may, + +% Posters + +@unpublished{ 2013-04-swc, + title= {Teaching Software Carpentry: Better Science through Science}, + author = WKing, + year = 2013, + month = apr, + note= {Drexel CoAS Research Day}, + address = {Philadelphia, Pennsylvania}, +} + +@unpublished{ 2012-04-calibcant, + title= {Thermally calibrating {AFM} cantilever spring constants}, + author = WKing, + year = 2012, + month = apr, + note= {Drexel CoAS Research Day}, + address = {Philadelphia, Pennsylvania}, +} + +@unpublished{ 2011-04-saswsim, + title= {Flexible parallel simulations and packaging}, + author = WKing, + year = 2011, + month = apr, + note= {Drexel CoAS Research Day}, + address = {Philadelphia, Pennsylvania}, +} + +@unpublished{ 2010-04-open-source, + title= {Open source software in experimental protein unfolding}, + author = WKing, + year = 2010, + month = apr, + note= {Drexel CoAS Research Day}, + address = {Philadelphia, Pennsylvania}, +} + +@unpublished{ 2009-03-roughness, + title= {Experimental Estimation of the Free Energy Landscape + Roughness of Protein Molecules}, + author = WKing, + year = 2009, + month = mar, + note= {Biophysical Society Annual Meeting}, + address = {Philadelphia, Pennsylvania}, +} + +@unpublished{ 2008-04-sawsim, + title= {Simulated mechanical unfolding of single proteins}, + author = WKing, + year = 2008, + month = apr, + note= {Drexel CoAS Research Day}, + address = {Philadelphia, Pennsylvania}, +} + +@unpublished{ 2008-02-stiffness, + title= {Effects of Cantilever Stiffness on Unfolding Force in AFM + Protein Unfolding}, + author = WKing, + year = 2008, + month = feb, + note= {Biophysical Society Annual Meeting}, + address = {Long Beach, California}, +} diff --git a/cv.tex b/cv.tex index ec1ae3e..2b56050 100644 --- a/cv.tex +++ b/cv.tex @@ -1,7 +1,27 @@ -\documentclass[12pt,a4paper]{article} - -\usepackage[german]{babel} -\usepackage{currvita} +\documentclass[12pt]{article} + +\topmargin 0.0in +\headheight 0.0in +\headsep 0.0in +\textheight 9in +\oddsidemargin 0in +\textwidth 6in +\pagestyle{empty} % no room for page numbers + +\usepackage{bibunits} +\usepackage[ManyBibs,LabelsAligned]{currvita} +\usepackage{hyperref} +\hypersetup{colorlinks} +\hypersetup{linkcolor=black} +\hypersetup{anchorcolor=black} +\hypersetup{citecolor=black} +\hypersetup{filecolor=black} +\hypersetup{menucolor=black} +\hypersetup{runcolor=black} +\hypersetup{urlcolor=black} + +\defaultbibliography{cv} +\defaultbibliographystyle{plain} \newcommand*{\ac}[1]{\mbox{#1}} @@ -9,94 +29,208 @@ \begin{document} -\begin{cv}{Lebenslauf} +\begin{cv}{R\'esum\'e} - \begin{cvlist}{Pers"onliche Daten} - \item Axel Reichert\\ - Beethovenstr.~25\\ - 40233~D"usseldorf - \item Tel.:~(02\,11)~6\,91\,24\,15\\ - E"~Mail:~axel.reichert@gmx.de - \item Geb.~am~03.\,08.~1970 in~D"usseldorf\\ - Ledig, deutsch + \begin{cvlist}{Contact} + \item W. Trevor King\\ + 120 Miller St.\\ + Highlands, NJ, 07732 + \item Tel.:~(215)~284~6634\\ + Email:~wking@tremily.us \end{cvlist} - \begin{cvlist}{Schulbildung} - \item[08/1976--05/1989] Grundschule und Gymnasium in Mettmann - (Leistungskurse Mathematik und Physik) - \end{cvlist} + \begin{cvlist}{Education} + \item[09/2000--05/2004] Colgate University, Hamilton, NY + (B.A.~in Physics and Math) - \begin{cvlist}{Wehrdienst} - \item[10/1989--09/1990] Fernmeldeaufkl"arer in Clausthal-Zellerfeld - und Rotenburg/""W"umme - \end{cvlist} + \item[09/2004--05/2006] University of Rochester, Rochester, NY + (M.A.~in Physics) - \begin{cvlist}{Studium} - \item[10/1990--09/1992] Maschinenbauvordiplom an der Universit"at - Hannover - \item[10/1992--06/1993] Wissenschaftliche Hilfskraft am Institut - f"ur Umformtechnik und Umformmaschinen, Hannover; Mitarbeit an - DFG-Projekt: Implementation eines Stoffgesetzes in das - \ac{FEM}-Programm \ac{ABAQUS} - \item[10/1992--08/1996] Maschinenbaudiplom an der Universit"at - Hannover, Ent"-wicklungs"~~und Konstruktionstechnik (Schwerpunkte - Finite Elemente, Schwingungstechnik und Elasto"~/""Plastomechanik) - \item[10/1994--04/1996] Mathematikvordiplom an der Universit"at - Hannover + \item[09/2006--05/2013] Drexel University, Philadelphia, PA + (Ph.D.~track in Physics) \end{cvlist} - \begin{cvlist}{Praktikum} - \item[08/1994--09/1994] Br"uninghaus~\&~Drissner~GmbH, Hilden - (mittelst"andisches Pre"s"~, Stanz"~ und Ziehwerk); Konstruktion - eines kombinierten Roll"~ und Zudr"uckwerkzeuges f"ur - Klemmschellen + \begin{cvlist}{Publications} +% \begin{bibunit}[alpha] +% \nocite{wking10} +% \item[Books] \putbib +% \end{bibunit} + \item [Papers] + \begin{bibunit} + \nocite{ + king10} + \putbib + \end{bibunit} + \item [Talks] + \begin{bibunit} + \nocite{ + 2013-01-columbia, + 2009-10-life-cycles} + %2008-06-locks + \putbib + \end{bibunit} + \item [Posters] + \begin{bibunit} + \nocite{ + 2013-04-swc, + 2011-04-saswsim, + 2010-04-open-source} + %2012-04-calibcant, + %2009-03-roughness, + %2008-04-sawsim, + %2008-02-stiffness + \putbib + \end{bibunit} \end{cvlist} - \begin{cvlist}{Berufserfahrung} - \item[seit~08/1996] Max-Planck-Institut f"ur Eisenforschung~GmbH, - D"usseldorf; wissenschaftlicher Mitarbeiter der Abteilung - Metallurgie - - Promotion "uber "`Soft Reduction beim Stranggie"sen und ihr - Einflu"s auf die Produktqualit"at"' im Rahmen eines Projektes der - Europ"aischen Gemeinschaft f"ur Kohle und Stahl in Zusammenarbeit - mit British Steel, den Dillinger H"uttenwerken und der - TU~Clausthal + \begin{cvlist}{Teaching assistant-ships} + \item[09/2004--05/2005] General Physics I + (Mechanics) + \item[Fall 2006] PHYS 152: Introductory Physics I + (Mechanics) + \item[Winter 2007] PHYS 101: Fundamentals of Physics I + (Mechanics) + \item[Spring 2007] PHYS 102: Fundamentals of Physics II + (Electricity and magnetism) + \item[Spring 2008] PHYS 102: Fundamentals of Physics II + (Electricity and magnetism) + \item[Fall 2008] PHYS 154: Introductory Physics III + (Electricity, magnetism, and quantum mechanics) + \item[Winter 2009] PHYS 201: Fundamentals of Physics III + (Modern physics) + \item[Summer 2009] PHYS 102: Fundamentals of Physics II + (Electricity and magnetism) + \item[Fall 2010] PHYS 405: Advanced Computational + Physics---Parallel Computing + (MPI and CUDA) + \item[Winter 2011] PHYS 101: Fundamentals of Physics I + (Mechanics) + \item[Spring 2011] PHYS 102: Fundamentals of Physics II + (Electricity and magnetism) + \item[Fall 2011] PHYS 106: Introduction to Scientific Computing + (Algorithms in Maple) + \item[Winter 2012] PHYS 305: Computational Physics II + (Algorithms in C and C++) + \item[Spring 2012] PHYS 102: Fundamentals of Physics II + (Electricity and magnetism) + \item[Fall 2012] PHYS 405: Advanced Computational + Physics---Parallel Computing + (MPI and CUDA) + \item[Winter 2013] PHYS 305: Computational Physics II + (Algorithms in C and C++) + \item[Spring 2013] PHYS 102: Fundamentals of Physics II + (Electricity and magnetism) \end{cvlist} - \begin{cvlist}{Fremdsprachen} - \item Englisch, Franz"osisch + \begin{cvlist}{Research} + \item[05/2002--09/2002] Vortex pinning in superconducting thin films. + Wrote experimental control software in LabVIEW and fabricated + samples using Nb sputtering, photolithography, and wet etching. + \item[05/2003--09/2003] Navier--Stokes simulator. + Ported a program simulating two dimensional incompressible + fluid flow from MatLab to C. + \item[09/2003--05/2004] Surface tension and lipid phase separation. + Designed and began construction of an automated system for making + rod pull equilibrium surface pressure measurements on phospholipid + vesicle suspensions. Completed drive chain hardware and LabVIEW + software for sequentially moving samples to the rod pull mechanism + for measurement. + \item[05/2005--05/2006] Superconducting phase qubit quantum computing. + Wrote experiment control software in LabVIEW and data analysis + software in MatLab. Managed the $^3$He dilution refrigerator and + assembled custom circuit boards. + \item[09/2006--07/2013] Single molecule force spectroscopy via AFM. + Designed calibration, experiment control, data processing, and + Monte Carlo simulation software in Python and C. Performed + neccessary hardware troubleshooting and maintenance. \end{cvlist} - \begin{cvlist}{\ac{EDV}} - \item[Betriebssysteme] \ac{UNIX} (Linux, \ac{IRIX}), Windows, Novell - Netware, \ac{DOS} - \item[Sprachen] Perl, Shell-Skripte, \ac{HTML}, Fortran~77, Pascal, - \ac{BASIC} - \item[Anwendungen] \ac{ANSYS}, \ac{MARC}, Word, Excel, Corel"-DRAW, - Designer, LaTeX, XEmacs + \begin{cvlist}{System administration} + \item[09/2009--09/2011] Drexel physics department webmaster. + Maintained and streamlined department website and assisted with + Apache-to-SiteCore migration. + \item[09/2005--Present] Home newtork system adminstrator. + I run Linux systems (primarily Gentoo) at home. I use my home + network to test installation, deployment, and maintenance of the + software infrastructure I'd like to see at work, which has lead to + experience with many packages (highlights below). Since 2008 I've + been publishing my notes on these systems in my blog at + \url{http://blog.tremily.us/}. \end{cvlist} - \begin{cvlist}{Interessen} - \item Klassische Musik, Typographie, Tischtennis, Fotografie + \begin{cvlist}{Software} + \item[Operating systems] + \href{http://www.gentoo.org/}{Linux (Gentoo)} + \item[Languages] + \href{http://python.org/}{Python}, + \href{http://en.wikipedia.org/wiki/C_\%28programming_language\%29}{C}, + \href{http://tiswww.case.edu/php/chet/bash/bashtop.html}{Bash}, + \href{http://www.w3.org/html/wg/drafts/html/master/}{\ac{HTML}}, + \href{http://www.w3.org/XML/}{\ac{XML}}, + \href{http://www.w3.org/Style/CSS/Overview.en.html}{\ac{CSS}}, + \href{http://www.sqlite.org/}{\ac{SQLite}}, + \href{https://www.djangoproject.com/}{Django}, + \href{http://en.wikipedia.org/wiki/JavaScript}{JavaScript}, + \href{http://www.ni.com/labview/}{\ac{LabVIEW}}, + \href{http://us.php.net/}{\ac{PHP}} + \item[Creator] + \href{https://pypi.python.org/pypi/pygrader}{pygrader}, + \href{https://pypi.python.org/pypi/pyassuan}{pyassuan}, + \href{https://pypi.python.org/pypi/pgp-mime}{pgp-mime}, + \href{https://pypi.python.org/pypi/quizzer}{quizzer}, + \href{http://blog.tremily.us/posts/sawsim/}{sawsim}, + \href{https://pypi.python.org/pypi/pycomedi}{pycomedi}, + \href{https://pypi.python.org/pypi/pypiezo}{pypiezo}, + \href{https://pypi.python.org/pypi/stepper}{stepper}, + \href{https://pypi.python.org/pypi/pypid}{pypid}, + \href{https://pypi.python.org/pypi/pyafm}{pyafm}, + \href{https://pypi.python.org/pypi/calibcant}{calibcant}, + \href{https://pypi.python.org/pypi/stepper}{unfold-protein}, + \href{https://pypi.python.org/pypi/chemdb}{chemdb}, + \href{https://pypi.python.org/pypi/igor}{igor}, + \href{https://pypi.python.org/pypi/h5config}{h5config}, + \href{https://pypi.python.org/pypi/FFT-tools}{FFT-tools}, + \href{https://pypi.python.org/pypi/update-copyright}{update-copyright}, + \href{https://pypi.python.org/pypi/mutt-ldap}{mutt-ldap}, + \href{http://blog.tremily.us/posts/Course_website/}{course-website}, + \href{http://blog.tremily.us/posts/problempack/}{problempack}, + \href{http://git.tremily.us/?p=assignment-template.git}{assignment-template}, + \href{http://blog.tremily.us/posts/Gentoo_overlay/}{wtk-overlay}, + \href{https://github.com/wking/dotfiles-framework}{dotfiles-framework} + \item[Maintainer] + \href{http://github.com/wking/rss2email/}{rss2email}, + \href{http://bugseverywhere.org/}{Bugs Everywhere}, + \href{http://blog.tremily.us/posts/drexel-thesis/}{drexel-thesis}, + \href{https://pypi.python.org/pypi/Hooke/}{Hooke} + \item[Contributor] + \href{http://software-carpentry.org/}{Software Carpentry}, + \href{http://git-scm.com/}{Git}, + \href{http://docs.getpelican.com/}{Pelican}, + \href{http://www.gentoo.org/proj/en/releng/catalyst/}{Gentoo catalyst}, + \href{https://github.com/agrover/python-kmod}{python-kmod}, + \href{http://www.comedi.org/}{Comedilib}, + \href{http://web.mit.edu/kerberos/}{Kerberos}, + \href{http://www.kernel.org/}{Linux kernel}, + \href{http://www.cython.org/}{Cython}, + \href{http://ikiwiki.info/}{ikiwiki}, + \href{http://www.gnuplot.info/}{gnuplot}, + \href{https://github.com/wking}{and} + \href{http://www.ohloh.net/accounts/wking}{more} + \href{http://blog.tremily.us/posts/Bugs/}{\ldots} + \item[User] + \href{http://www.gnu.org/software/emacs/}{Emacs}, + \href{http://www.latex-project.org/}{\LaTeX}, + \href{http://nginx.org/}{Nginx}, + \href{http://www.openldap.org/}{OpenLDAP}, + \href{https://www.isc.org/software/bind}{\ac{BIND}}, + \href{http://www.cups.org/}{\ac{CUPS}}, + \href{http://en.wikipedia.org/wiki/Network_File_System#NFSv4}{kerberized + \ac{NFSv4}}, + \href{http://mlmmj.org/}{mlmmj} \end{cvlist} - \begin{cvlist}{Sonstiges} - \item[04/1992--10/1995] Ehrenamtliche Mitarbeit als Rechnerwart bei - der Saalgemeinschaft~"`Exzenter"' (unter studentischer - Selbstverwaltung stehender Arbeits"~~und Zeichensaal f"ur - Ingenieurstudenten) - \item[seit 01/1997] Aktives Mitglied der Deutschen - Anwendervereinigung TeX, Vortr"age und Tutorien auf Konferenzen - \end{cvlist} - -% \changes{v0.9d}{1999-08-25}{% -% \LaTeX{} version of the umlaut is used instead of -% \package{babel}'s~shortcut.% -% } - \cvplace{D\"usseldorf} - \date{13.~September~1999} - + \cvplace{Highlands, NJ} + \date{\today} \end{cv} \end{document} -- 2.26.2