-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
162 lines (107 loc) · 4.12 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
153
154
155
156
157
158
159
160
161
---
title: "Manuel Alcalá Kovalski's CV"
author: Manuel Alcalá Kovalski
date: "`r Sys.Date()`"
params:
pdf_mode:
value: true
output:
pagedown::html_resume:
css: ['dd_cv.css','custom.css', 'resume']
self_contained: true
---
```{r, include=FALSE}
knitr::opts_chunk$set(
results='asis',
echo = FALSE
)
library(magrittr) # For the pipe
source("cv_printing_functions.r")
# Read in all data and initialize a CV printer object
CV <- create_CV_object(
data_location = "https://docs.google.com/spreadsheets/d/1XTvyiIEKFMMvLIQnL5shIUXv2_Y1atyEqZNkEUtZIs4/edit?usp=sharing",
pdf_mode = params$pdf_mode,
)
```
<!-- inicio font awesome -->
<script src="https://kit.fontawesome.com/1f72d6921a.js" crossorigin="anonymous"></script>
```{r}
# When in pdf export mode the little dots are unaligned, so fix that with some conditional CSS.
if(params$pdf_mode) {
cat("
<style>
:root{
--decorator-outer-offset-left: -6.5px;
}
</style>")
}
```
Aside
================================================================================
```{r}
if(params$pdf_mode){
#cat("View this CV online with links at _nickstrayer.me/datadrivencv/_")
} else {
cat(" ")
# cat("[<i class='fas fa-download'></i> Download a PDF of this CV](https://github.com/malcalakovalski/cv/raw/master/alcala_kovalski_cv.pdf)")
}
```
Contact {#contact}
--------------------------------------------------------------------------------
```{r}
CV %>% print_contact_info()
```
Open source {#opensource}
--------------------------------------------------------------------------------
<i class="fas fa-box-open"></i> [Package {ggbrookings}](https://brookingsinstitution.github.io/ggbrookings/) - Author, maintainer.
Programming skills {#skills}
--------------------------------------------------------------------------------
<i class="fab fa-r-project"></i> `R` using the <i class="fa fa-area-chart" aria-hidden="true"></i>
`tidyverse`
<i class="fas fa-code-branch"></i> `Git` and <i class="fab fa-github"></i> `GitHub`
<i class='fab fa-markdown fa-fw fa-1x'></i> `Markdown`
<i class="fab fa-html5"></i> `HTML` and <i class="fab fa-css3-alt"></i> `CSS`
<i class="fab fa-python"></i> `Python`
Languages {#languages}
--------------------------------------------------------------------------------
**English:** Native
**Spanish:** Native
**Portuguese:** Proficient
Data Science Projects {#projects}
--------------------------------------------------------------------------------
My contributions to the `#TidyTuesday` project are available [on github.com/malcalakovalski/tidy-tuesday](https://github.com/malcalakovalski/tidy-tuesday)
Disclaimer {#disclaimer style="width: var(--sidebar-width); padding-left: var(--sidebar-horizontal-padding);"}
--------------------------------------------------------------------------------
Made with the R packages [**pagedown**](https://github.com/rstudio/pagedown) and [***datadrivencv***](https://github.com/nstrayer/datadrivencv).
The source code is available [on github.com/malcalakovalski/cv](https://github.com/malcalakovalski/cv).
Main
================================================================================
Manuel Alcalá Kovalski {#title}
--------------------------------------------------------------------------------
```{r}
# Note the special double pipe so we modify the CV object in place
# CV %<>% print_text_block("intro")
```
Education {data-icon=graduation-cap data-concise=true}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('education', resume = TRUE)
```
Work Experience {data-icon=laptop}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('work_experience', resume = TRUE)
```
Academic Articles {data-concise=false}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('academic_articles', resume = TRUE)
```
Blog Posts {data-icon=pen data-concise=false}
--------------------------------------------------------------------------------
```{r}
CV %<>% print_section('blog_posts', resume = TRUE)
```
```{r}
# CV %<>% print_links()
```