├── .gitignore ├── LICENSE ├── README.md ├── anderson-cv.Rmd ├── anderson-cv.Rproj ├── anderson-cv.css ├── anderson-cv.html ├── anderson-cv.pdf ├── anderson-cv_files ├── accessible-code-block-0.0.1 │ └── empty-anchor.js ├── header-attrs-2.11 │ └── header-attrs.js ├── header-attrs-2.4 │ └── header-attrs.js ├── header-attrs-2.6 │ └── header-attrs.js ├── header-attrs-2.7.4 │ └── header-attrs.js ├── header-attrs-2.7 │ └── header-attrs.js ├── paged-0.12 │ └── js │ │ ├── config.js │ │ ├── hooks.js │ │ └── paged.js ├── paged-0.13 │ └── js │ │ ├── config.js │ │ ├── hooks.js │ │ └── paged.js ├── paged-0.14 │ └── js │ │ ├── config.js │ │ ├── hooks.js │ │ └── paged.js ├── paged-0.15 │ └── js │ │ ├── config.js │ │ ├── hooks.js │ │ └── paged.js ├── paged-0.19 │ └── js │ │ ├── config.js │ │ ├── hooks.js │ │ └── paged.js ├── paged-0.5 │ └── js │ │ ├── config.js │ │ ├── hooks.js │ │ └── paged.js └── paged-0.7.1 │ └── js │ ├── config.js │ ├── hooks.js │ └── paged.js ├── content ├── contact-info.Rmd └── summary.Rmd ├── data ├── courses.xlsx ├── cv_entries.numbers ├── cv_entries.xlsx ├── grants.xlsx ├── in-progress.xlsx ├── pubs.numbers └── pubs.xlsx └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/README.md -------------------------------------------------------------------------------- /anderson-cv.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv.Rmd -------------------------------------------------------------------------------- /anderson-cv.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv.Rproj -------------------------------------------------------------------------------- /anderson-cv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv.css -------------------------------------------------------------------------------- /anderson-cv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv.html -------------------------------------------------------------------------------- /anderson-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv.pdf -------------------------------------------------------------------------------- /anderson-cv_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /anderson-cv_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /anderson-cv_files/header-attrs-2.4/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/header-attrs-2.4/header-attrs.js -------------------------------------------------------------------------------- /anderson-cv_files/header-attrs-2.6/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/header-attrs-2.6/header-attrs.js -------------------------------------------------------------------------------- /anderson-cv_files/header-attrs-2.7.4/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/header-attrs-2.7.4/header-attrs.js -------------------------------------------------------------------------------- /anderson-cv_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.12/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.12/js/config.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.12/js/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.12/js/hooks.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.12/js/paged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.12/js/paged.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.13/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.13/js/config.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.13/js/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.13/js/hooks.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.13/js/paged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.13/js/paged.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.14/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.14/js/config.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.14/js/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.14/js/hooks.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.14/js/paged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.14/js/paged.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.15/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.15/js/config.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.15/js/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.15/js/hooks.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.15/js/paged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.15/js/paged.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.19/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.19/js/config.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.19/js/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.19/js/hooks.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.19/js/paged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.19/js/paged.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.5/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.5/js/config.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.5/js/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.5/js/hooks.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.5/js/paged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.5/js/paged.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.7.1/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.7.1/js/config.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.7.1/js/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.7.1/js/hooks.js -------------------------------------------------------------------------------- /anderson-cv_files/paged-0.7.1/js/paged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/anderson-cv_files/paged-0.7.1/js/paged.js -------------------------------------------------------------------------------- /content/contact-info.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/content/contact-info.Rmd -------------------------------------------------------------------------------- /content/summary.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/content/summary.Rmd -------------------------------------------------------------------------------- /data/courses.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/data/courses.xlsx -------------------------------------------------------------------------------- /data/cv_entries.numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/data/cv_entries.numbers -------------------------------------------------------------------------------- /data/cv_entries.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/data/cv_entries.xlsx -------------------------------------------------------------------------------- /data/grants.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/data/grants.xlsx -------------------------------------------------------------------------------- /data/in-progress.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/data/in-progress.xlsx -------------------------------------------------------------------------------- /data/pubs.numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/data/pubs.numbers -------------------------------------------------------------------------------- /data/pubs.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/data/pubs.xlsx -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalorax/anderson-cv/HEAD/index.html --------------------------------------------------------------------------------