-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkyle_resume.Rmd
executable file
·192 lines (146 loc) · 4.19 KB
/
kyle_resume.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
---
title: Kyle Simpson's CV"
author: Kyle Simpson
date: "`r Sys.Date()`"
output:
pagedown::html_resume:
css: ['css/custom_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
---
```{r, include=FALSE}
knitr::opts_chunk$set(
results='asis',
echo = FALSE
)
library(tidyverse)
library(glue)
library(here)
PDF_EXPORT <- FALSE # Set this to true to have links turned into footnotes at the end of the document
links <- c() # Holds all the links that were inserted for placement at the end
source(here('R', 'parsing_functions.R')) # Functions for building sections from CSV data
source(here('R', 'common_variables.R')) # Small variables for non-csv data such as intro text
position_data <- read_csv(here('data', 'positions.csv')) %>% # First let's get the data, filtering to only the items tagged as resume items
filter(in_resume)
```
Aside
================================================================================
{#contact}
--------------------------------------------------------------------------------
```{r}
cat(sanitize_links(my_contacts))
```
Technical Skills {#skills}
--------------------------------------------------------------------------------
```{r}
build_skill_bars(skills)
```
Additional Skills {#add-skills}
--------------------------------------------------------------------------------
```{r other_skills}
other_skills
```
Education {#education_1}
--------------------------------------------------------------------------------
```{r edu_degree}
cat(sanitize_links(edu_degree))
```
```{r edu_location}
cat(sanitize_links(edu_location))
```
```{r edu_date}
cat(sanitize_links(edu_date))
```
```{r edu_city}
cat(sanitize_links(edu_city))
```
Certification {#certificate}
--------------------------------------------------------------------------------
```{r cert_degree}
cat(sanitize_links(cert_degree))
```
```{r cert_location}
cat(sanitize_links(cert_location))
```
```{r cert_date}
cat(sanitize_links(cert_date))
```
```{r cert_city}
cat(sanitize_links(cert_city))
```
Disclaimer {#disclaimer}
--------------------------------------------------------------------------------
Page 1 of 1
Main
================================================================================
Kyle PATRICK Simpson {#title}
--------------------------------------------------------------------------------
```{r my_title}
cat(sanitize_links(my_title))
```
```{r intro_text}
cat(sanitize_links(intro_text))
```
Relevant Work History {data-icon=laptop}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section('work_history')
```
\newpage <br>
Additional Work Experience {data-icon=briefcase}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section('work_history_2')
```
Service & Internships {data-icon=bookmark}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section('service')
```
Second page sidebar {.aside .extra-sidebar}
================================================================================
{#contact}
--------------------------------------------------------------------------------
```{r}
my_contacts
```
Licences & Certificates {#l_and_c}
--------------------------------------------------------------------------------
```{r}
licenses
```
Languages {#my_languages}
--------------------------------------------------------------------------------
```{r}
cat(sanitize_links(language_1))
```
```{r}
cat(sanitize_links(proficiency_1))
```
```{r}
cat(sanitize_links(language_2))
```
```{r}
cat(sanitize_links(proficiency_2))
```
```{r}
cat(sanitize_links(language_3))
```
```{r}
cat(sanitize_links(proficiency_3))
```
Hobbies & <br> Interests {#hobbies}
--------------------------------------------------------------------------------
```{r}
hobbies
```
References {#references}
--------------------------------------------------------------------------------
```{r}
my_references
```
Disclaimer {#disclaimer}
--------------------------------------------------------------------------------
```{r}
my_disclaimer
```