Skip to content

Commit 36c6aae

Browse files
committed
update resume
1 parent 6c2d301 commit 36c6aae

File tree

5 files changed

+68094
-106
lines changed

5 files changed

+68094
-106
lines changed

gather_data.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if(using_googlesheets){
77
if(sheet_is_publicly_readable){
88
# This tells google sheets to not try and authenticate. Note that this will only
99
# work if your sheet has sharing set to "anyone with link can view"
10-
sheets_deauth()
10+
# sheets_deauth()
1111
} else {
1212
# My info is in a public sheet so there's no need to do authentication but if you want
1313
# to use a private sheet, then this is the way you need to do it.

index.Rmd

+5-4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ knitr::opts_chunk$set(
2020
2121
library(glue)
2222
library(tidyverse)
23+
library(googlesheets4)
2324
2425
# ======================================================================
2526
# These variables determine how the the data is loaded and how the exports are
@@ -118,16 +119,16 @@ Last updated on `r Sys.Date()`.
118119
print_text_block(text_blocks, 'intro_full')
119120
```
120121

121-
## Education {data-icon="graduation-cap" data-concise="true"}
122+
## Positions {data-icon="suitcase"}
122123

123124
```{r}
124-
print_section(position_data, 'education')
125+
position_data %>% print_section('positions')
125126
```
126127

127-
## Positions {data-icon="suitcase"}
128+
## Education {data-icon="graduation-cap" data-concise="true"}
128129

129130
```{r}
130-
position_data %>% print_section('positions')
131+
print_section(position_data, 'education')
131132
```
132133

133134
## Independent Projects {data-icon="bar-chart"}

index.html

+34,013-37
Large diffs are not rendered by default.

resume.Rmd

+11-17
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ knitr::opts_chunk$set(
1919
)
2020
library(tidyverse)
2121
library(glue)
22+
library(googlesheets4)
2223
2324
# ======================================================================
2425
# These variables determine how the the data is loaded and how the exports are
@@ -133,18 +134,6 @@ Riccardo Esclapon {#title}
133134
```{r}
134135
print_text_block(text_blocks, 'intro_1')
135136
```
136-
<!-- `r emo::ji('heart')` disabled because not professional--> loves
137-
```{r}
138-
print_text_block(text_blocks, 'intro_2')
139-
```
140-
141-
Education {data-icon=graduation-cap data-concise=true}
142-
--------------------------------------------------------------------------------
143-
144-
```{r}
145-
position_data %>% print_section('education')
146-
```
147-
148137

149138

150139
Positions {data-icon=suitcase}
@@ -155,16 +144,21 @@ position_data %>% print_section('positions')
155144
```
156145

157146

147+
Education {data-icon=graduation-cap data-concise=true}
148+
--------------------------------------------------------------------------------
158149

150+
```{r}
151+
position_data %>% print_section('education')
152+
```
159153

160-
Independent Projects {data-icon=bar-chart}
161-
--------------------------------------------------------------------------------
162154

163155

156+
<!-- Independent Projects {data-icon=bar-chart} -->
157+
<!-- -------------------------------------------------------------------------------- -->
164158

165-
```{r}
166-
position_data %>% print_section('other-experience')
167-
```
159+
<!-- ```{r} -->
160+
<!-- position_data %>% print_section('other-experience') -->
161+
<!-- ``` -->
168162

169163

170164
<!-- Learning Certificates {data-icon=book} -->

resume.html

+34,064-47
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)