-
Notifications
You must be signed in to change notification settings - Fork 2
/
data-driven-resume-pt-br.Rmd
80 lines (61 loc) · 1.76 KB
/
data-driven-resume-pt-br.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
---
name: Tarcísio
surname: Giroldo
position: "Engenheiro de Software Senior"
www: "giroldo.dev"
email: "[email protected]"
github: girordo
linkedin: targiroldo
date: "`r format(Sys.time(), '%B %Y')`"
headcolor: CC5500
aboutme: "Eu sou um engenheiro de software senior com mais de 6 anos de experiência em diversos tipos de negócios. Tenho foco em React e seu ecossistema. Tenho experiência em testes unitários, reescrita e refatoração de aplicações React e desempenho no frontend. Também gosto de estudar novas tecnologias como Rust e Elixir. No meu tempo livre, gosto de passar tempo com meu cachorro, família e amigos."
docname: Resume
output: vitae::moderncv
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE,
warning = FALSE,
message = FALSE)
require(xfun)
packages <- c('vitae' # The CV's LaTeX Template
,'tibble' # Data structure for tribbles
,'magrittr' # The Pipe %>%
,'here' # Relative File Paths
,'readr' # Data Loading
,'glue' # String Manipulation
)
xfun::pkg_attach2(packages, message = FALSE)
source(file = here("data","data-pt-br.R"))
```
# Experiência
```{r EMPLOYMENT}
work %>%
detailed_entries(
with = title,
what = unit,
why = detail,
when = glue::glue("{startMonth} {startYear} -- {endMonth} {endYear}",.na = ""),
where = where
)
```
# Educação
```{r EDUCATION}
edu %>%
detailed_entries(
with = inst,
what = degree,
why = detail,
when = glue::glue("{startYear} -- {endYear}",.na = ""),
where = where
)
```
\pagebreak
# Competências
```{r SKILLS}
skills %>%
detailed_entries(
with = area,
what = skills,
why = detail
)
```