-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.Rmd
152 lines (99 loc) · 4.45 KB
/
index.Rmd
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
---
title: "Willian's CV"
author: Willian Vieira
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/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-envelope"></i> [email protected]
- <i class="fa fa-twitter"></i> [WillVieira90](https://twitter.com/willvieira90)
- <i class="fa fa-github"></i> [WillVieira](https://github.com/willvieira)
<!-- - <i class="fa fa-globe"></i> [willvieira.github.io/](https://willvieira.github.io/) -->
- <i class="ai ai-orcid"></i> [0000-0003-0283-4570](https://orcid.org/0000-0003-0283-4570)
- <i class="ai ai-google-scholar"></i> [Publications](https://scholar.google.com/citations?user=GyChlIoAAAAJ&hl=en)
Quantitative skills
------------------------------------
Bayesian statistics, Hierarchical models, Random Forest, Mathematical modelling, Regression
Programming skills
------------------------------------
<span style="font-weight:600;">Data analysis</span>: <br>R, Python, Stan, HPC, QGIS<br>
<span style="font-weight:600;">Data base</span>: SQLite<br>
<span style="font-weight:600;">Automation/reports</span>: <br>markdown, pandoc, Quarto,<br>LateX, bash, makefile<br>
<span style="font-weight:600;">Web</span>: HTML/CSS, ShinyApp<br>
<span style="font-weight:600;">DevOps (CI/CD)</span>: Git, GitHub, Docker, GitHub Actions
Languages
------------------------------------
**Portuguese**<span style="font-size:11px;"> Native</span><br>
**French**<span style="font-size:11px;"> Full Professional</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/willvieira/cv](https://github.com/willvieira/cv).
Last updated on `r Sys.Date()`.
[<i class='fas fa-download'></i> Download a PDF of this CV](https://willvieira.github.io/cv/WillianVieira.pdf)
Main
================================================================================
<span style="font-weight:600">Willian Vieira</span> <span style="font-size: 13px;">PhD candidate</span>{#title}
--------------------------------------------------------------------------------
<span style="font-size: 1rem;">< <i class="fa fa-chart-bar"></i> + <i class="fa fa-robot"></i> > Quantitative ecologist | I love to automate stuff </span>
Education {data-icon=graduation-cap data-concise=true}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'education')
```
Consulting Experience {data-icon=briefcase}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'consult_positions')
```
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')
```
Publications {data-icon=book}
--------------------------------------------------------------------------------
```{r, warning = FALSE,message = FALSE}
myORCID <- '0000-0003-0283-4570'
underlineName <- 'Vieira, W.'
# get edited publications from ORCID id
pubs <- get_publications(myORCID, underlineName)
print_publications(pubs)
```
Selected Talks and Posters {data-icon=chalkboard-teacher}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'talk_poster')
```