-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.Rmd
More file actions
141 lines (100 loc) · 3.18 KB
/
resume.Rmd
File metadata and controls
141 lines (100 loc) · 3.18 KB
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
---
title: "Erin Grand's Resume"
author: Erin Grand
date: "`r Sys.Date()`"
params:
pdf_mode:
value: true
output:
pagedown::html_resume:
css: ['css/custom_resume.css', 'css/dd_cv.css', 'resume']
# set it to true for a self-contained HTML page but it'll take longer to render
self_contained: true
---
```{r, include=FALSE}
knitr::opts_chunk$set(
results='asis',
echo = FALSE
)
source("cv_printing_functions.r")
googlesheets4::gs4_auth(email = "eringrand@gmail.com",
cache = TRUE,
use_oob = TRUE)
# Read in all data and initialize a CV printer object
CV <- create_CV_object(
data_location = "https://docs.google.com/spreadsheets/d/1x4O3YQoz8cr99gD4v7wLec2e61Pqfim6Qm2J-10AM90",
sheet_is_publicly_readable = FALSE,
pdf_mode = params$pdf_mode,
resume_mode = TRUE
)
```
```{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}
# Build interactive network of positions colored by section
# and connected if they occurred in the same year
# datadrivencv::build_network_logo(CV$entries_data)
```
<!-- ```{r} -->
<!-- if(params$pdf_mode){ -->
<!-- cat("View this CV online with links at _eringrand.github.io_") -->
<!-- } else { -->
<!-- cat("[<i class='fas fa-download'></i> Download a PDF of this CV](https://github.com/eringrand/cv/raw/master/resume.pdf)") -->
<!-- } -->
<!-- ``` -->
Contact {#contact}
--------------------------------------------------------------------------------
```{r}
CV |> print_contact_info()
```
Language Skills {#skills}
--------------------------------------------------------------------------------
```{r}
CV |> print_skill_bars()
```
Relevant Skills
--------------------------------------------------------------------------------
```{r}
CV |> print_text_block('skills_aside')
```
<!-- Relevant Courses -->
<!-- -------------------------------------------------------------------------------- -->
<!-- ```{r} -->
<!-- CV |> print_text_block('courses_aside') -->
<!-- ``` -->
<!-- Memberships {#other} -->
<!-- -------------------------------------------------------------------------------- -->
<!-- #### R-Ladies NYC board member 2020 -->
Main
================================================================================
Erin Grand {#title}
--------------------------------------------------------------------------------
<!-- ```{r} -->
<!-- CV <- print_text_block(CV, "intro") -->
<!-- ``` -->
Tech Experience {data-icon=suitcase data-concise=true}
--------------------------------------------------------------------------------
```{r}
CV <- print_section(CV, 'industry_positions')
```
Education {data-icon=graduation-cap data-concise=true}
--------------------------------------------------------------------------------
```{r}
CV <- print_section(CV, 'education')
```
Research Experience {data-icon=laptop}
--------------------------------------------------------------------------------
```{r}
CV <- print_section(CV, 'research_positions')
```