├── .github ├── FUNDING.yml ├── preview.webp └── workflows │ ├── deploy.yml │ ├── import-publications.yml │ └── updater-wip.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── assets └── media │ ├── icons │ └── custom │ │ └── .gitkeep │ └── stacked-peaks.svg ├── config └── _default │ ├── hugo.yaml │ ├── languages.yaml │ ├── menus.yaml │ ├── module.yaml │ └── params.yaml ├── content ├── _index.md ├── authors │ ├── _index.md │ └── admin │ │ ├── _index.md │ │ └── avatar.png ├── blog │ ├── _index.md │ ├── data-visualization │ │ ├── featured.jpg │ │ ├── index.md │ │ ├── line-chart.json │ │ └── results.csv │ ├── get-started │ │ ├── featured.jpg │ │ └── index.md │ ├── notebook-onboarding │ │ ├── cover.jpg │ │ ├── featured.jpg │ │ ├── hugoblox-onboarding.ipynb │ │ └── index.md │ ├── project-management │ │ ├── featured.jpg │ │ └── index.md │ ├── second-brain │ │ ├── featured.jpg │ │ └── index.md │ └── teach-courses │ │ ├── ambient-piano.mp3 │ │ ├── featured.jpg │ │ └── index.md ├── courses │ ├── _index.md │ └── hugo-blox │ │ ├── _index.md │ │ ├── featured.jpg │ │ ├── getting-started.md │ │ ├── guide │ │ ├── _index.md │ │ ├── configuration.md │ │ ├── formatting │ │ │ ├── _index.md │ │ │ ├── ambient-piano.mp3 │ │ │ ├── button.md │ │ │ ├── callout.md │ │ │ ├── cards.md │ │ │ ├── media.md │ │ │ ├── steps.md │ │ │ └── toggle.md │ │ └── project-structure.md │ │ └── reference │ │ ├── _index.md │ │ ├── customization.md │ │ └── i18n.md ├── events │ ├── _index.md │ └── example │ │ ├── featured.jpg │ │ └── index.md ├── experience.md ├── projects │ ├── _index.md │ ├── pandas │ │ ├── featured.png │ │ └── index.md │ ├── pytorch │ │ ├── featured.png │ │ └── index.md │ └── scikit │ │ ├── featured.png │ │ └── index.md └── publications │ ├── _index.md │ ├── conference-paper │ ├── cite.bib │ ├── conference-paper.pdf │ ├── featured.jpg │ └── index.md │ ├── journal-article │ ├── cite.bib │ ├── featured.jpg │ └── index.md │ └── preprint │ ├── featured.jpg │ └── index.md ├── go.mod ├── hugoblox.yaml ├── layouts └── _partials │ └── hooks │ └── head-end │ └── github-button.html ├── netlify.toml ├── package.json ├── pnpm-lock.yaml └── static └── uploads └── resume.pdf /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: gcushen 2 | custom: https://hugoblox.com/sponsor/ 3 | -------------------------------------------------------------------------------- /.github/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/.github/preview.webp -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/import-publications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/.github/workflows/import-publications.yml -------------------------------------------------------------------------------- /.github/workflows/updater-wip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/.github/workflows/updater-wip.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/README.md -------------------------------------------------------------------------------- /assets/media/icons/custom/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/media/stacked-peaks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/assets/media/stacked-peaks.svg -------------------------------------------------------------------------------- /config/_default/hugo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/config/_default/hugo.yaml -------------------------------------------------------------------------------- /config/_default/languages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/config/_default/languages.yaml -------------------------------------------------------------------------------- /config/_default/menus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/config/_default/menus.yaml -------------------------------------------------------------------------------- /config/_default/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/config/_default/module.yaml -------------------------------------------------------------------------------- /config/_default/params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/config/_default/params.yaml -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/authors/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/authors/_index.md -------------------------------------------------------------------------------- /content/authors/admin/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/authors/admin/_index.md -------------------------------------------------------------------------------- /content/authors/admin/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/authors/admin/avatar.png -------------------------------------------------------------------------------- /content/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Blog 3 | view: article-grid 4 | --- 5 | -------------------------------------------------------------------------------- /content/blog/data-visualization/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/data-visualization/featured.jpg -------------------------------------------------------------------------------- /content/blog/data-visualization/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/data-visualization/index.md -------------------------------------------------------------------------------- /content/blog/data-visualization/line-chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/data-visualization/line-chart.json -------------------------------------------------------------------------------- /content/blog/data-visualization/results.csv: -------------------------------------------------------------------------------- 1 | customer_id, score 2 | 1,0 3 | 2,0.5 4 | 3,1 5 | -------------------------------------------------------------------------------- /content/blog/get-started/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/get-started/featured.jpg -------------------------------------------------------------------------------- /content/blog/get-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/get-started/index.md -------------------------------------------------------------------------------- /content/blog/notebook-onboarding/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/notebook-onboarding/cover.jpg -------------------------------------------------------------------------------- /content/blog/notebook-onboarding/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/notebook-onboarding/featured.jpg -------------------------------------------------------------------------------- /content/blog/notebook-onboarding/hugoblox-onboarding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/notebook-onboarding/hugoblox-onboarding.ipynb -------------------------------------------------------------------------------- /content/blog/notebook-onboarding/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/notebook-onboarding/index.md -------------------------------------------------------------------------------- /content/blog/project-management/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/project-management/featured.jpg -------------------------------------------------------------------------------- /content/blog/project-management/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/project-management/index.md -------------------------------------------------------------------------------- /content/blog/second-brain/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/second-brain/featured.jpg -------------------------------------------------------------------------------- /content/blog/second-brain/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/second-brain/index.md -------------------------------------------------------------------------------- /content/blog/teach-courses/ambient-piano.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/teach-courses/ambient-piano.mp3 -------------------------------------------------------------------------------- /content/blog/teach-courses/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/teach-courses/featured.jpg -------------------------------------------------------------------------------- /content/blog/teach-courses/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/blog/teach-courses/index.md -------------------------------------------------------------------------------- /content/courses/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/_index.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/_index.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/featured.jpg -------------------------------------------------------------------------------- /content/courses/hugo-blox/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/getting-started.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/guide/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/guide/_index.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/guide/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/guide/configuration.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/guide/formatting/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/guide/formatting/_index.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/guide/formatting/ambient-piano.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/guide/formatting/ambient-piano.mp3 -------------------------------------------------------------------------------- /content/courses/hugo-blox/guide/formatting/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/guide/formatting/button.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/guide/formatting/callout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/guide/formatting/callout.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/guide/formatting/cards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/guide/formatting/cards.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/guide/formatting/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/guide/formatting/media.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/guide/formatting/steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/guide/formatting/steps.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/guide/formatting/toggle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/guide/formatting/toggle.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/guide/project-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/guide/project-structure.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/reference/_index.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/reference/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/reference/customization.md -------------------------------------------------------------------------------- /content/courses/hugo-blox/reference/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/courses/hugo-blox/reference/i18n.md -------------------------------------------------------------------------------- /content/events/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/events/_index.md -------------------------------------------------------------------------------- /content/events/example/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/events/example/featured.jpg -------------------------------------------------------------------------------- /content/events/example/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/events/example/index.md -------------------------------------------------------------------------------- /content/experience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/experience.md -------------------------------------------------------------------------------- /content/projects/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/projects/_index.md -------------------------------------------------------------------------------- /content/projects/pandas/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/projects/pandas/featured.png -------------------------------------------------------------------------------- /content/projects/pandas/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/projects/pandas/index.md -------------------------------------------------------------------------------- /content/projects/pytorch/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/projects/pytorch/featured.png -------------------------------------------------------------------------------- /content/projects/pytorch/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/projects/pytorch/index.md -------------------------------------------------------------------------------- /content/projects/scikit/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/projects/scikit/featured.png -------------------------------------------------------------------------------- /content/projects/scikit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/projects/scikit/index.md -------------------------------------------------------------------------------- /content/publications/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/publications/_index.md -------------------------------------------------------------------------------- /content/publications/conference-paper/cite.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/publications/conference-paper/cite.bib -------------------------------------------------------------------------------- /content/publications/conference-paper/conference-paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/publications/conference-paper/conference-paper.pdf -------------------------------------------------------------------------------- /content/publications/conference-paper/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/publications/conference-paper/featured.jpg -------------------------------------------------------------------------------- /content/publications/conference-paper/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/publications/conference-paper/index.md -------------------------------------------------------------------------------- /content/publications/journal-article/cite.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/publications/journal-article/cite.bib -------------------------------------------------------------------------------- /content/publications/journal-article/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/publications/journal-article/featured.jpg -------------------------------------------------------------------------------- /content/publications/journal-article/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/publications/journal-article/index.md -------------------------------------------------------------------------------- /content/publications/preprint/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/publications/preprint/featured.jpg -------------------------------------------------------------------------------- /content/publications/preprint/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/content/publications/preprint/index.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/go.mod -------------------------------------------------------------------------------- /hugoblox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/hugoblox.yaml -------------------------------------------------------------------------------- /layouts/_partials/hooks/head-end/github-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/layouts/_partials/hooks/head-end/github-button.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /static/uploads/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HugoBlox/theme-academic-cv/HEAD/static/uploads/resume.pdf --------------------------------------------------------------------------------