gitextract_4ov5u2bm/ ├── .devcontainer/ │ └── devcontainer.json ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── scrape_talks.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _config_docker.yml ├── _data/ │ ├── authors.yml │ ├── comments/ │ │ ├── layout-comments/ │ │ │ ├── comment-1470944006665.yml │ │ │ └── comment-1470944162041.yml │ │ ├── markup-syntax-highlighting/ │ │ │ └── comment-1470969665387.yml │ │ └── welcome-to-jekyll/ │ │ ├── comment-1470942205700.yml │ │ ├── comment-1470942247755.yml │ │ ├── comment-1470942265819.yml │ │ └── comment-1470942493518.yml │ ├── cv.json │ ├── navigation.yml │ └── ui-text.yml ├── _drafts/ │ └── post-draft.md ├── _includes/ │ ├── analytics-providers/ │ │ ├── custom.html │ │ ├── google-analytics-4.html │ │ ├── google-universal.html │ │ └── google.html │ ├── analytics.html │ ├── archive-single-cv.html │ ├── archive-single-talk-cv.html │ ├── archive-single-talk.html │ ├── archive-single.html │ ├── author-profile.html │ ├── base_path │ ├── breadcrumbs.html │ ├── browser-upgrade.html │ ├── category-list.html │ ├── comment.html │ ├── comments-providers/ │ │ ├── custom.html │ │ ├── discourse.html │ │ ├── disqus.html │ │ ├── facebook.html │ │ ├── google-plus.html │ │ ├── scripts.html │ │ └── staticman.html │ ├── comments.html │ ├── cv-template.html │ ├── feature_row │ ├── footer/ │ │ └── custom.html │ ├── footer.html │ ├── gallery │ ├── group-by-array │ ├── head/ │ │ └── custom.html │ ├── head.html │ ├── masthead.html │ ├── nav_list │ ├── page__hero.html │ ├── page__taxonomy.html │ ├── paginator.html │ ├── post_pagination.html │ ├── read-time.html │ ├── scripts.html │ ├── seo.html │ ├── sidebar.html │ ├── social-share.html │ ├── tag-list.html │ └── toc ├── _layouts/ │ ├── archive-taxonomy.html │ ├── archive.html │ ├── compress.html │ ├── cv-layout.html │ ├── default.html │ ├── single.html │ ├── splash.html │ └── talk.html ├── _pages/ │ ├── 404.md │ ├── about.md │ ├── archive-layout-with-content.md │ ├── category-archive.html │ ├── collection-archive.html │ ├── cv-json.md │ ├── cv.md │ ├── markdown.md │ ├── non-menu-page.md │ ├── page-archive.html │ ├── portfolio.html │ ├── publications.html │ ├── sitemap.md │ ├── tag-archive.html │ ├── talkmap.html │ ├── talks.html │ ├── teaching.html │ ├── terms.md │ └── year-archive.html ├── _portfolio/ │ ├── portfolio-1.md │ └── portfolio-2.html ├── _posts/ │ ├── 2012-08-14-blog-post-1.md │ ├── 2013-08-14-blog-post-2.md │ ├── 2014-08-14-blog-post-3.md │ ├── 2015-08-14-blog-post-4.md │ └── 2199-01-01-future-post.md ├── _publications/ │ ├── 2009-10-01-paper-title-number-1.md │ ├── 2010-10-01-paper-title-number-2.md │ ├── 2015-10-01-paper-title-number-3.md │ ├── 2024-02-17-paper-title-number-4.md │ └── 2025-06-08-paper-title-number-5.md ├── _sass/ │ ├── _syntax.scss │ ├── _themes.scss │ ├── include/ │ │ ├── _mixins.scss │ │ └── _utilities.scss │ ├── layout/ │ │ ├── _archive.scss │ │ ├── _base.scss │ │ ├── _buttons.scss │ │ ├── _footer.scss │ │ ├── _forms.scss │ │ ├── _json_cv.scss │ │ ├── _masthead.scss │ │ ├── _navigation.scss │ │ ├── _notices.scss │ │ ├── _page.scss │ │ ├── _reset.scss │ │ ├── _sidebar.scss │ │ └── _tables.scss │ ├── theme/ │ │ ├── _air_dark.scss │ │ ├── _air_light.scss │ │ ├── _contrast_dark.scss │ │ ├── _contrast_light.scss │ │ ├── _default_dark.scss │ │ ├── _default_light.scss │ │ ├── _dirt_dark.scss │ │ ├── _dirt_light.scss │ │ ├── _mint_dark.scss │ │ ├── _mint_light.scss │ │ ├── _sunrise_dark.scss │ │ └── _sunrise_light.scss │ └── vendor/ │ ├── breakpoint/ │ │ ├── _breakpoint.scss │ │ ├── _context.scss │ │ ├── _helpers.scss │ │ ├── _legacy-settings.scss │ │ ├── _no-query.scss │ │ ├── _parsers.scss │ │ ├── _respond-to.scss │ │ ├── _settings.scss │ │ └── parsers/ │ │ ├── _double.scss │ │ ├── _query.scss │ │ ├── _resolution.scss │ │ ├── _single.scss │ │ ├── _triple.scss │ │ ├── double/ │ │ │ ├── _default-pair.scss │ │ │ ├── _default.scss │ │ │ └── _double-string.scss │ │ ├── resolution/ │ │ │ └── _resolution.scss │ │ ├── single/ │ │ │ └── _default.scss │ │ └── triple/ │ │ └── _default.scss │ ├── font-awesome/ │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _functions.scss │ │ ├── _icons.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _shims.scss │ │ ├── _sizing.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ ├── brands.scss │ │ ├── fontawesome.scss │ │ ├── regular.scss │ │ ├── solid.scss │ │ └── v4-shims.scss │ └── susy/ │ ├── _su.scss │ ├── _susy.scss │ ├── _susyone.scss │ └── susy/ │ ├── _su.scss │ ├── language/ │ │ ├── _susy.scss │ │ ├── _susyone.scss │ │ ├── susy/ │ │ │ ├── _background.scss │ │ │ ├── _bleed.scss │ │ │ ├── _box-sizing.scss │ │ │ ├── _breakpoint-plugin.scss │ │ │ ├── _container.scss │ │ │ ├── _context.scss │ │ │ ├── _gallery.scss │ │ │ ├── _grids.scss │ │ │ ├── _gutters.scss │ │ │ ├── _isolate.scss │ │ │ ├── _margins.scss │ │ │ ├── _padding.scss │ │ │ ├── _rows.scss │ │ │ ├── _settings.scss │ │ │ ├── _span.scss │ │ │ └── _validation.scss │ │ └── susyone/ │ │ ├── _background.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _isolation.scss │ │ ├── _margin.scss │ │ ├── _media.scss │ │ ├── _padding.scss │ │ └── _settings.scss │ ├── output/ │ │ ├── _float.scss │ │ ├── _shared.scss │ │ ├── _support.scss │ │ ├── float/ │ │ │ ├── _container.scss │ │ │ ├── _end.scss │ │ │ ├── _isolate.scss │ │ │ └── _span.scss │ │ ├── shared/ │ │ │ ├── _background.scss │ │ │ ├── _container.scss │ │ │ ├── _direction.scss │ │ │ ├── _inspect.scss │ │ │ ├── _margins.scss │ │ │ ├── _output.scss │ │ │ └── _padding.scss │ │ └── support/ │ │ ├── _background.scss │ │ ├── _box-sizing.scss │ │ ├── _clearfix.scss │ │ ├── _prefix.scss │ │ ├── _rem.scss │ │ └── _support.scss │ └── su/ │ ├── _grid.scss │ ├── _settings.scss │ ├── _utilities.scss │ └── _validation.scss ├── _talks/ │ ├── 2012-03-01-talk-1.md │ ├── 2013-03-01-tutorial-1.md │ ├── 2014-02-01-talk-2.md │ └── 2014-03-01-talk-3.md ├── _teaching/ │ ├── 2014-spring-teaching-1.md │ └── 2015-spring-teaching-2.md ├── assets/ │ ├── css/ │ │ ├── academicons.css │ │ ├── collapse.css │ │ └── main.scss │ └── js/ │ ├── _main.js │ ├── collapse.js │ ├── plugins/ │ │ └── jquery.greedy-navigation.js │ └── theme.js ├── docker-compose.yaml ├── files/ │ └── bibtex1.bib ├── images/ │ └── manifest.json ├── markdown_generator/ │ ├── OrcidToBib.ipynb │ ├── PubsFromBib.ipynb │ ├── README.md │ ├── publications.csv │ ├── publications.ipynb │ ├── publications.py │ ├── publications.tsv │ ├── pubsFromBib.py │ ├── talks.ipynb │ ├── talks.py │ └── talks.tsv ├── package.json ├── scripts/ │ ├── cv_markdown_to_json.py │ └── update_cv_json.sh ├── talkmap/ │ ├── leaflet_dist/ │ │ ├── MarkerCluster.Default.css │ │ ├── MarkerCluster.css │ │ ├── leaflet.markercluster-src.js │ │ ├── leaflet.markercluster.js │ │ └── screen.css │ ├── map.html │ └── org-locations.js ├── talkmap.ipynb ├── talkmap.py └── talkmap_out.ipynb