Skip to content

Commit

Permalink
switch from ORCID to local csv for education
Browse files Browse the repository at this point in the history
Avoids authentication and horrible field names.

closes #1
  • Loading branch information
kalenkovich committed Oct 14, 2021
1 parent 4d723f2 commit 8d58788
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
15 changes: 7 additions & 8 deletions cv/cv.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ library(magrittr)
```

```{r get-data, include = FALSE}
# Education from Orcid
education.data <- rorcid::orcid_educations("0000-0002-4606-4179")$`0000-0002-4606-4179`$`affiliation-group`$summaries %>%
dplyr::bind_rows()
education.data <- read_csv(
here::here('data', 'education.csv'),
col_types = cols(.default = "c"))
jobs.briefly <- read_csv(
here::here('data', 'jobs_briefly.csv'),
Expand Down Expand Up @@ -118,11 +118,10 @@ skills %>%
```{r show-education}
education.data %>%
detailed_entries(
what = `education-summary.role-title`,
when = glue::glue("{`education-summary.start-date.year.value`} - {`education-summary.end-date.year.value`}"),
with = glue::glue("{`education-summary.organization.name`},
{`education-summary.department-name`}"),
where = `education-summary.organization.address.city`
what = title,
when = glue::glue("{start_date} - {end_date}"),
with = glue::glue("{university}, {department}"),
where = city
)
```

Expand Down
9 changes: 3 additions & 6 deletions cv/cv.tex
Original file line number Diff line number Diff line change
Expand Up @@ -177,12 +177,9 @@ \section{Skills}\label{skills}}
\section{Education}\label{education}}

\begin{cventries}
\cventry{MSc in Cognitive Science}{HSE University,
School of Psychology}{Moscow}{2015 - 2017}{}\vspace{-4.0mm}
\cventry{MSc in Financial and Actuarial Mathematics}{Charles University,
Faculty of Mathematics and Physics}{Prague}{2008 - 2010}{}\vspace{-4.0mm}
\cventry{BSc in Financial Mathematics}{Charles University,
Faculty of Mathematics and Physics}{Prague}{2005 - 2008}{}\vspace{-4.0mm}
\cventry{MSc in Cognitive Science}{HSE University, School of Psychology}{Moscow}{2015 - 2017}{}\vspace{-4.0mm}
\cventry{MSc in Financial and Actuarial Mathematics}{Charles University, Faculty of Mathematics and Physics}{Prague}{2008 - 2010}{}\vspace{-4.0mm}
\cventry{BSc in Financial Mathematics}{Charles University, Faculty of Mathematics and Physics}{Prague}{2005 - 2008}{}\vspace{-4.0mm}
\end{cventries}

\pagebreak
Expand Down
4 changes: 4 additions & 0 deletions data/education.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
title,start_date,end_date,university,department,city,thesis_title
MSc in Cognitive Science,2015,2017,HSE University,School of Psychology,Moscow,"Solving the EEG and MEG Inverse Problem Using Physiologically Plausible Priors"
MSc in Financial and Actuarial Mathematics,2008,2010,Charles University,Faculty of Mathematics and Physics,Prague,"Sharing of probabilistic information of Bayesian agents"
BSc in Financial Mathematics,2005,2008,Charles University,Faculty of Mathematics and Physics,Prague,"Methodical Collection of Solved Examples from Probability Theory I (in Czech)"

0 comments on commit 8d58788

Please sign in to comment.