forked from nstrayer/cv
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.Rmd
246 lines (158 loc) · 6.07 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
---
title: "Rich Pauloo's CV"
author: Rich Pauloo
date: "`r Sys.Date()`"
output:
pagedown::html_resume:
css: ['css/styles.css', 'resume']
# set it to true for a self-contained HTML page but it'll take longer to render
self_contained: true
---
<!-- import Monserrat and PT Serif Google fonts -->
<style>
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css?family=PT+Serif&display=swap');
</style>
```{r, include=FALSE}
knitr::opts_chunk$set(
results='asis',
echo = FALSE
)
library(glue)
library(tidyverse)
# Set this to true to have links turned into footnotes at the end of the document
PDF_EXPORT <- FALSE
# Holds all the links that were inserted for placement at the end
links <- c()
source('parsing_functions.R')
# Load csv with position info
position_data <- read_csv('positions.csv')
```
```{r}
# When in export mode the little dots are unaligned, so fix that.
if(PDF_EXPORT){
cat("
<style>
:root{
--decorator-outer-offset-left: -6.5px;
}
</style>")
}
```
Aside
================================================================================
![Rich Pauloo, PhD](headshot.jpg){width=80%}
```{r}
# When in export mode the little dots are unaligned, so fix that.
if(PDF_EXPORT){
cat("View this CV online with links at [_richpauloo.com/cv_](https://www.richpauloo.com/cv)")
} else {
cat("[<i class='fas fa-download'></i> Download a PDF of this CV](https://github.com/richpauloo/cv/raw/master/pauloo_cv.pdf)")
}
```
Contact {#contact}
--------------------------------------------------------------------------------
- <i class="fa fa-envelope"></i> richpauloo@gmail.com
- <i class="fa fa-twitter"></i> [RichPauloo](https://twitter.com/RichPauloo)
- <i class="fa fa-github"></i> [github.com/richpauloo](https://github.com/richpauloo/)
- <i class="fa fa-link"></i> [richpauloo.com](https://www.richpauloo.com/)
- <i class="fa fa-phone"></i> (415) 275-4981
Foreign Language Skills {#foreign-language}
--------------------------------------------------------------------------------
Conversational Spanish
<!-- Language Skills {#skills} -->
<!-- -------------------------------------------------------------------------------- -->
<!-- ```{r} -->
<!-- skills <- tribble( -->
<!-- ~skill, ~level, -->
<!-- "R", 5, -->
<!-- "SQL", 3, -->
<!-- "Python", 3, -->
<!-- "Bash", 3 -->
<!-- ) -->
<!-- build_skill_bars(skills) -->
<!-- ``` -->
<!-- <br> -->
<!-- <br> -->
Disclaimer {#disclaimer}
--------------------------------------------------------------------------------
<!-- Made with [**pagedown**](https://github.com/rstudio/pagedown) in R. -->
The source code is available at [github.com/richpauloo/cv](https://github.com/richpauloo/cv).
Last updated on `r Sys.Date()`.
Main
================================================================================
Rich Pauloo, PhD {#title}
--------------------------------------------------------------------------------
```{r}
intro_text <- "I spend most of my days writing code (mostly `R`, `Python`, `SQL`) to clean, visualize, and model data. I have a PhD in computational hydrogeology, where I simulated and visualized 3D contaminant transport in aquifers.
I'm an exert-level #rstats user. A few projects I'm proud of include `R` packages to [query water quality data 📦](https://caopenwater.github.io/sdwisard/) and [text yourself from `R` 📱](https://github.com/richpauloo/textme), [`R` data science curriculum 📚](https://r4wrds.com/), a dashboard that makes [millions of water quality observations understandable 📈](http://calwaterquality.com/), and a model that [predicts the risk of wells going dry 💧](https://www.gspdrywells.com/) funded by Microsoft's AI for Earth Grant.
"
cat(sanitize_links(intro_text))
```
Education {data-icon=graduation-cap data-concise=true}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'education')
```
<br>
<br>
Professional & Research Experience {data-icon=calculator}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'professional_research_positions')
```
<br>
<br>
<!-- Teaching & Leadership Experience {data-icon=tree} -->
<!-- -------------------------------------------------------------------------------- -->
<!-- ::: aside -->
<!-- Before pursuing my PhD, I spent 3 years teaching diverse audiences in environmental education. I worked in Yosemite, Thailand and the Marin Headlands, and honed skills in public speaking, interpersonal team development, group facilitation, and critical listening. Living with my coworkers in tight teams taught me patience and cooperation. During summers I guided expeditions in the wilderness and abroad with National Geographic. -->
<!-- ::: -->
<!-- ```{r} -->
<!-- print_section(position_data, 'teaching_leadership_positions') -->
<!-- ``` -->
<!-- <br> -->
<!-- <br> -->
Publications {data-icon=book}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'academic_articles')
```
<br>
<br>
Grants and Awards {data-icon=award}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'awards')
```
<br>
<br>
Selected Data Science Writing {data-icon=chart-line}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'data_science_writings')
```
::: aside
View all of my [blog posts here](https://www.richpauloo.com/post).
:::
<br>
<br>
Certifications {data-icon=star}
--------------------------------------------------------------------------------
```{r}
print_section(position_data, 'certifications')
```
<br>
<br>
```{r}
if(PDF_EXPORT){
cat("
Links {data-icon=link}
--------------------------------------------------------------------------------
<br>
")
walk2(links, 1:length(links), function(link, index){
print(glue('{index}. {link}'))
})
}
```