-
Notifications
You must be signed in to change notification settings - Fork 1
/
richardhanna_resume.Rmd
141 lines (97 loc) · 3.98 KB
/
richardhanna_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
---
title: Richard S. Hanna's Resume"
author: Richard Hanna
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)
# Set this to true to have links turned into footnotes at the end of the document
PDF_EXPORT <- FALSE
# Holds all the links that were inserted for placement at the end
links <- c()
source('parsing_functions.R')
# First let's get the data, filtering to only the items tagged as
# Resume items
position_data <- read_csv('positions - rhanna.csv') %>%
filter(in_resume) %>%
mutate(
# Build some custom sections by collapsing others
section = case_when(
section %in% c('research_positions', 'industry_positions') ~ 'positions',
section %in% c('publications', 'posters') ~ 'publications',
TRUE ~ section
)
)
```
Aside
================================================================================
![Rich Hanna](rhanna_avatar.png){width=100%}
Contact {#contact}
--------------------------------------------------------------------------------
- <i class="fa fa-envelope"></i> <[email protected]>
- <i class="fa fa-twitter"></i> [richard_s_hanna](https://twitter.com/Richard_S_Hanna)
- <i class="fa fa-github"></i> [github.com/rsh52](https://github.com/rsh52)
- <i class="fa fa-link"></i> [richardshanna.com](https://www.richardshanna.com/)
- <i class="fa fa-phone"></i> (609) 320-2923
Skills {#skills}
--------------------------------------------------------------------------------
```{r}
skills <- tribble(
~skill, ~level,
"R", 5,
"REDCap", 5,
"SQL", 4,
"AWS", 3.5,
"Linux", 3,
"Python", 3,
"MATLAB", 3
)
build_skill_bars(skills)
```
Certifications {#certifications}
--------------------------------------------------------------------------------
- [AWS Solutions Architect](https://www.credly.com/badges/44361ea8-9eb9-4f27-99ca-05b582f5b962?source=linked_in_profile)
- [FE/EIT Certified by NCEES](https://account.ncees.org/rn/1522538-735396-d9a0ace)
Disclaimer {#disclaimer}
--------------------------------------------------------------------------------
Made in **R** using the [**pagedown**](https://github.com/rstudio/pagedown) package.
Last updated on `r Sys.Date()`.
Main
================================================================================
Richard S. Hanna {#title}
--------------------------------------------------------------------------------
```{r}
intro_text <- "As a Data Scientist on the Cell & Gene Therapy Informatics team at the Children’s Hospital of Philadelphia, I develop novel applications, dashboards, packages, reports, and tools to support clinical research and drive innovative solutions. I am excited to work in such a fast-paced, evolving field that provides opportunities to create change and meet modern day clinical challenges. Prior to this role, I have worked in critical care, biomechanics, and medical device development.
"
cat(sanitize_links(intro_text))
```
Education {data-icon=graduation-cap data-concise=true}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section('education')
```
Experience {data-icon=cogs}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section('positions')
```
Selected Publications & Posters {data-icon=chart-bar}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section('publications')
```
Related Experience {data-icon=project-diagram}
--------------------------------------------------------------------------------
```{r}
position_data %>% print_section('related_experience')
```