forked from ulyngs/pagedownCV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
website-cv.Rmd
211 lines (173 loc) · 6.24 KB
/
website-cv.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
---
title: "Ulrik Lyngs: CV"
output:
html_document:
css: ["css/make-cv-like-other.css", "css/one-column-cv.css", "css/website-page.css", "css/style.css", "https://use.fontawesome.com/releases/v5.7.2/css/all.css"]
toc: true
toc_float: true
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE)
library(tidyverse)
library(knitr)
library(here)
library(DT)
library(lubridate)
#### publications #####
publications <- read_csv("_content/publications.csv")
#### cv entries #####
cv_entries <- read_csv("_content/cv_entries.csv") %>%
mutate(year_begin = year(date)) %>%
mutate(year_end = case_when(
date_end == "present" ~ date_end,
!is.na(date_end) ~ str_sub(date_end, 1, 4),
is.na(date_end) ~ date_end
)) %>%
mutate(year = ifelse((is.na(year_end) | year_begin == year_end),
year_begin,
str_c(year_begin, " --- ", year_end)))
```
<br>
# Summary
I am passionate about using insights from the behavioural neurosciences to **design digital technology that is sensitive to human limitations and biases**, particularly in relation to attention and self-regulation.
My **academic and professional background** is highly interdisciplinary, and I try to integrate best practices from many work spheres, such as using tools from large-scale event management to structure academic projects.
My **personal interests** include travelling & couchsurfing, samatha meditation, dancing (Cuban salsa and swing), and playing music (whatever instruments I can get my hands on, and ideally with the [Karaoke Collective](https://karaokecollective.com)).
Download a brief version of [my CV as PDF](https://github.com/ulyngs/pagedown-cv/raw/master/_pdfs/lyngs_cv_2019_june.pdf).
<br>
# Academia
## Education {.education .nohead}
```{r}
cv_entries %>%
filter(type == 'education') %>%
mutate(what = str_c(what, ", ", where)) %>%
select(year, what) %>%
kable()
```
## Research {.tabset .output-header}
### Publications {.nohead .publications}
```{r}
publications_table <- publications %>%
arrange(desc(date), type) %>%
mutate(author_year = str_c(authors_full, " (", year(date), "). ")) %>%
mutate(title = ifelse(!is.na(url), str_c("[", title, "](", url, ")"), title)) %>% #turn title into link
mutate(citation = ifelse(!is.na(award),
str_c(author_year, title, venue, "<i class='fas fa-award'></i><em>", award, "</em>", sep = " "),
str_c(author_year, title, venue, sep = " "))) %>%
mutate(citation = str_replace(citation, "Ulrik Lyngs", "_Ulrik Lyngs_")) %>% # make my name italicised
filter(type != "master's thesis") %>%
select(type, citation)
publications_table %>%
knitr::kable()
```
### Talks {}
```{r}
cv_entries %>%
filter(type == 'talk') %>%
mutate(where = str_replace(where, "\\[([^]]*)\\]\\(([^\\s^\\)]*)[\\s\\)]", "<a href='\\2'>\\1</a>")) %>%
mutate(what = str_c("<em>", what, "</em>, ", where)) %>%
select(Date = date, Talk = what) %>%
mutate(Date = as_date(Date)) %>%
arrange(desc(Date)) %>%
mutate(Date = str_c(year(Date),
", ",
month(Date, label = TRUE))) %>%
datatable(rownames = FALSE, escape = FALSE, class = 'row-border', options = list(
pageLength = 10
))
```
### Posters {.nohead .posters}
```{r}
cv_entries %>%
filter(type == 'poster') %>%
mutate(what = str_c("*", what, "*, ", where)) %>%
select(year_begin, what) %>%
arrange(desc(year_begin)) %>%
kable()
```
## Teaching experience {.teaching .service .nohead}
```{r}
cv_entries %>%
filter(type == 'teaching') %>%
mutate(what = ifelse(!is.na(additional_info),
str_c("<span class='work-title'>", what, "</span><br class='work-break'>", where, "<br>", additional_info),
str_c("<span class='work-title'>", what, "</span><br class='work-break'>", where))) %>%
select(year, what) %>%
kable()
```
## Other {.tabset .output-header}
### Grants and Awards {.grants .nohead}
```{r}
cv_entries %>%
filter(type == 'grants_and_awards') %>%
mutate(what = str_c(what, ", ", where)) %>%
select(year_begin, what) %>%
kable()
```
### Media coverage {.media .nohead}
```{r}
cv_entries %>%
filter(type == 'media') %>%
select(year_begin, what) %>%
kable()
```
### Service {.service .nohead}
```{r}
cv_entries %>%
filter(type == 'service') %>%
mutate(year_end = ifelse(year_end == "present", "", year_end)) %>%
mutate(where = ifelse(!is.na(url), str_c("[", where, "](", url, ")"), where)) %>%
mutate(what = ifelse(!is.na(additional_info),
str_c(what, "<br class='work-break'>", where),
str_c(what, "<br class='work-break'>", where))) %>%
select(year, what) %>%
kable()
```
# Work (non-academia)
## Selected work experience {.work .nohead .vertical-top}
```{r}
cv_entries %>%
filter(type == 'work', is.na(website)) %>%
mutate(additional_info = replace_na(additional_info, "")) %>%
mutate(what = str_c("<span class='work-title'>", what, "</span><br class='work-break'>", where, "<br>", additional_info)) %>%
arrange(desc(year_begin)) %>%
select(year, what) %>%
kable()
```
## Professional development {.prof-dev .nohead}
```{r}
cv_entries %>%
filter(type == 'prof-dev') %>%
mutate(what = str_c(what, ", ", where)) %>%
select(year_begin, what) %>%
kable()
```
# Technical
## Software development {.cv-table .nohead .vertical-top}
```{r}
cv_entries %>%
filter(type == 'programming') %>%
replace_na(list(where = "", additional_info = "")) %>%
mutate(what = str_c(what, ", ", where, "<br>", additional_info)) %>%
select(year_begin, what) %>%
arrange(desc(year_begin)) %>%
kable(align = c('l', 'l'))
```
## Skills {.technical .nohead}
```{r}
cv_entries %>%
filter(type == 'technical') %>%
mutate(what = str_c("- *", what, "* ", additional_info)) %>%
select(what) %>%
kable()
```
# Personal
## Skills & volunteering {.personal .service .nohead}
```{r}
cv_entries %>%
filter(type == 'volunteering') %>%
mutate(what = str_c("<span class='work-title'>", what, "</span><br class='work-break'>", where)) %>%
mutate(what = ifelse(!is.na(additional_info), str_c(what, "<br>", additional_info), what)) %>%
arrange(desc(year), desc(year_end)) %>%
select(year, what) %>%
kable()
```