From c234aa390d67a7e217b2eaed45879fa5e7f5b991 Mon Sep 17 00:00:00 2001 From: Mike Vink Date: Fri, 15 Sep 2023 22:02:42 +0200 Subject: update --- cv.tex | 54 ++++++++++++++++++++++++++++++++++++++++++++ flake.lock | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ flake.nix | 31 ++++++++++++++++++++++++++ 3 files changed, 160 insertions(+) create mode 100644 cv.tex create mode 100644 flake.lock create mode 100644 flake.nix diff --git a/cv.tex b/cv.tex new file mode 100644 index 0000000..4714567 --- /dev/null +++ b/cv.tex @@ -0,0 +1,54 @@ +%%% Local Variables: +%%% mode: latex +%%% TeX-master: t +%%% End: +\documentclass{cv} +\usepackage{enumitem} +\usepackage{etaremune} +\usepackage{amsmath} +\usepackage[colorlinks = true, linkcolor = blue, urlcolor = blue, citecolor = blue, anchorcolor = blue]{hyperref} + +\begin{document} +\contact{Mike Vink} +{Utrecht} +{+31 6 40970634} +{mike1994vinkm@gmail.com} +{www.vinkland.xyz} + +\section{Summary} +\section{Experience} + +\experience +{November 2019}{November 2020} +{Research Intern at the Structural Neurobiology group of Dr. ir. Bert Janssen} +{Utrecht University}{ +\item Researched the structure of a neuronal protein using crystallisation and X-ray diffraction. Designed primers and purified protein constructs. Performed biophysical tests to research protein protein interactions for constructs (mostly SEC, SEC-MALS, AUC). Designed and set up crystallisation trials for constructs. Fished for crystals and prepared samples for synchotron. Wrote a thesis giving a literature review and summarising results. +} + +\experience +{Februari 2018}{May 2018} +{Research Intern at the X-Ray and Crystallography group of Dr. Piet Gros} +{Utrecht University}{ +\item +} + +\section{Skills} +\section{Education} + +\experience +{September 2019}{May 2021} +{Molecular and Cellular Life Sciences, MSc.} +{Utrecht University}{ +\item Enrolled in the biophysics and molecular imaging major and got a 7.8/10 grade average over the entire masters. Completed crystallography and molecular dynamics courses. Wrote an article reviewing different protein cavity detection algorithms. +\item Enrolled in the applied datascience minor and got a 8.6/10 grade over the projects and courses in the minor. Completed courses about programming machine learning algorithms "deep learning" and "data mining". Applied machine learning algorithms in research projects "Comparative study of state-of-the-art GANs" and "a data exploration using the FluPrint database". +} + +\experience +{September 2014}{May 2018} +{Molecular Life Sciences, BSc.} +{Utrecht University}{ +\item Enrolled in courses related to molecular imaging techniques (crystallography, NMR, and molecular dynamics). Part of multiple student organisations, biology and chemistry student groups, utrecht student rugby society (USRS) for 1 year, and student rowing club ORCA for 1 year. Made final round for high level rowing competition try outs. +} + +\section{Certifications} +\end{document} diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..caec498 --- /dev/null +++ b/flake.lock @@ -0,0 +1,75 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1694529238, + "narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "ff7b65b44d01cf9ba6a71320833626af21126384", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nix-filter": { + "locked": { + "lastModified": 1694434370, + "narHash": "sha256-7yfdTR4mCvWZ39Q6HUcsa18tr0mg+fJZSaHE/63rwoo=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "d6381c442f79f2f1fdfde00521c3d15d6c21218e", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1694593561, + "narHash": "sha256-WSaIQZ5s9N9bDFkEMTw6P9eaZ9bv39ZhsiW12GtTNM0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1697b7d480449b01111e352021f46e5879e47643", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils", + "nix-filter": "nix-filter", + "nixpkgs": "nixpkgs" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..b967b92 --- /dev/null +++ b/flake.nix @@ -0,0 +1,31 @@ +{ + inputs = { + nixpkgs.url = "nixpkgs"; + nix-filter.url = "github:numtide/nix-filter"; + flake-utils.url = "github:numtide/flake-utils"; + }; + outputs = { + self, + flake-utils, + ... + } @ inputs: + flake-utils.lib.eachDefaultSystem (system: let + pkgs = + import inputs.nixpkgs + { + inherit system; + }; + tex = pkgs.texlive.combine { + inherit (pkgs.texlive) scheme-medium latex-bin latexmk + enumitem etaremune hyperref amsmath titlesec pbox; + }; + in { + devShells.default = pkgs.mkShell { + name = "dev"; + buildInputs = [ + pkgs.coreutils + tex + ]; + }; + }); +} -- cgit v1.2.3