├── .gitignore ├── README.md ├── ccgilroy-resume.Rproj ├── css └── styles.css ├── fix_icons.html ├── gilroy_resume.pdf ├── index.Rmd ├── index.html ├── logo.R ├── logo.png └── make_pdf.R /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | .Rproj.user/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/resume/HEAD/README.md -------------------------------------------------------------------------------- /ccgilroy-resume.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/resume/HEAD/ccgilroy-resume.Rproj -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/resume/HEAD/css/styles.css -------------------------------------------------------------------------------- /fix_icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/resume/HEAD/fix_icons.html -------------------------------------------------------------------------------- /gilroy_resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/resume/HEAD/gilroy_resume.pdf -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/resume/HEAD/index.Rmd -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/resume/HEAD/index.html -------------------------------------------------------------------------------- /logo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/resume/HEAD/logo.R -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgilroy/resume/HEAD/logo.png -------------------------------------------------------------------------------- /make_pdf.R: -------------------------------------------------------------------------------- 1 | pagedown::chrome_print("index.html", "gilroy_resume.pdf") 2 | --------------------------------------------------------------------------------