-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.Rmd
More file actions
128 lines (82 loc) · 3.83 KB
/
index.Rmd
File metadata and controls
128 lines (82 loc) · 3.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
---
title: "Vincent's CV"
author: Vincent Bellavance
date: "`r Sys.Date()`"
output:
pagedown::html_resume:
css: ['css/styles.css', 'resume', 'https://cdn.rawgit.com/jpswalsh/academicons/master/css/academicons.min.css']
self_contained: true
includes:
after_body: ["assets/preloader.js", "assets/google-analytics.js"]
---
```{r, include=FALSE, cache = F}
knitr::opts_chunk$set(
results='asis',
echo = FALSE
)
library(glue)
library(tidyverse)
# Holds all the links that were inserted for placement at the end
PDF_EXPORT <- FALSE
source('R/parsing_functions.R')
# Load csv with position info
position_data <- readr::read_csv('data/positions.csv')
```
Aside
================================================================================
Contact {#contact}
--------------------------------------------------------------------------------
- <i class="fa fa-gmail"></i> <a href="mailto:Vincent.Bellavance.92@gmail.com">Vincent.Bellavance.92</a>
- <i class="fa fa-twitter" style="color:#1DA1F2;"></i> [V_Bellavance](https://twitter.com/v_bellavance)
- <i class="fa fa-github" style="color:#FFFFFF;"></i> [VincentBellavance](https://github.com/VincentBellavance)
<!-- - <i class="fa fa-globe"></i> -->
<!-- - <i class="ai ai-google-scholar"></i> [Publications](https://scholar.google.com/citations?user=GyChlIoAAAAJ&hl=en)-->
- <i class="ai ai-orcid" style="color:#a9c518;"></i> [0000-0002-3263-8784](https://orcid.org/0000-0002-3263-8784)
<br>
Quantitative skills
------------------------------------
Regression, Mathematical modelling, Random Forest, Hierarchical models, Bayesian statistics, Species distribution models
<br>
Programming
------------------------------------
<span style="font-weight:600;">Data analysis</span>: R, HPC<br>
<span style="font-weight:600;">Database</span>: PostgreSQL<br>
<span style="font-weight:600;">Automation/reports</span>: <br>markdown, LaTeX, bash,<br> GNU make<br>
<span style="font-weight:600;">Web</span>: HTML/CSS, ShinyApp,<br>
<span style="font-weight:600;">DevOps (CI/CD)</span>: Git, Docker, GitHub Actions
<br>
Languages
------------------------------------
**French**<span style="font-size:11px;"> Native</span><br>
**English**<span style="font-size:11px;"> Full Professional</span><br>
Disclaimer {#disclaimer}
--------------------------------------------------------------------------------
Made with [**pagedown**](https://github.com/rstudio/pagedown).
The source code is available at [github.com/VincentBellavance/cv](https://github.com/VincentBellavance/cv).
Last updated on `r Sys.Date()`.
[<i class='fas fa-download' style="color:#FCEF7E;"></i> Download a PDF of this CV](https://VincentBellavance.github.io/cv/VincentBellavance.pdf)
Main
================================================================================
<span style="font-weight:600">Vincent Bellavance</span> <span style="font-size: 13px;">Master student</span>{#title}
--------------------------------------------------------------------------------
<span style="font-size: 1rem;">< <i class="fa fa-chart-bar"></i> + <i class="fa fa-robot"></i> > Aspiring Eco-informatician | I like managing data </span>
Education {data-icon=graduation-cap data-concise=true}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'education')
```
Research Experience {data-icon=laptop}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'research_positions')
```
Teaching Experience {data-icon=chalkboard-teacher}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'teaching_positions')
```
Training {data-icon=certificate}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'training')
```