gitextract_4a7sb44i/ ├── .cursorindexingignore ├── .devcontainer/ │ └── base.Dockerfile ├── .editorconfig ├── .github/ │ ├── CLA.md │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yml │ │ ├── config.yml │ │ └── feature-request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── SECURITY.md │ ├── SUPPORT.md │ ├── dependabot.yml │ ├── labeler.yml │ └── workflows/ │ ├── ci-build-starters-matrix.yml │ ├── ci-lint.yml │ ├── ci-pr-labeler.yml │ ├── codeql.yml │ ├── community-welcome.yml │ ├── devcontainer-image.yml │ ├── maintenance-stale.yml │ ├── release-hugoblox-modules.yml │ ├── release-package-splitter.yml │ └── security-codeql.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── .stylelintignore ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── README.zh.md ├── biome.json ├── hugoblox.code-workspace ├── modules/ │ ├── README.md │ ├── analytics/ │ │ ├── README.md │ │ ├── go.mod │ │ ├── hugo.yaml │ │ └── layouts/ │ │ └── _partials/ │ │ └── blox-analytics/ │ │ ├── index.html │ │ ├── services/ │ │ │ ├── baidu_tongji.html │ │ │ ├── fathom.html │ │ │ ├── google_analytics.html │ │ │ ├── google_tag_manager.html │ │ │ ├── index.html │ │ │ ├── microsoft_clarity.html │ │ │ ├── pirsch.html │ │ │ └── plausible.html │ │ └── verification.html │ ├── blox/ │ │ ├── .npmrc │ │ ├── README.md │ │ ├── archetypes/ │ │ │ ├── faq.md │ │ │ └── questions.md │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ ├── README.md │ │ │ │ ├── animations.css │ │ │ │ ├── blox/ │ │ │ │ │ ├── all.css │ │ │ │ │ ├── biography.css │ │ │ │ │ ├── navbar.css │ │ │ │ │ └── skills.css │ │ │ │ ├── chroma.css │ │ │ │ ├── color-utilities.css │ │ │ │ ├── components/ │ │ │ │ │ ├── all.css │ │ │ │ │ ├── author-notes.css │ │ │ │ │ ├── cards.css │ │ │ │ │ ├── charts.css │ │ │ │ │ ├── copy.css │ │ │ │ │ ├── cover.css │ │ │ │ │ ├── glassmorphism.css │ │ │ │ │ ├── math.css │ │ │ │ │ ├── notebook.css │ │ │ │ │ ├── page.css │ │ │ │ │ ├── sidebar-left.css │ │ │ │ │ ├── steps.css │ │ │ │ │ └── task-list.css │ │ │ │ ├── config/ │ │ │ │ │ ├── safelist.css │ │ │ │ │ ├── tailwind.css │ │ │ │ │ └── theme.css │ │ │ │ ├── framework/ │ │ │ │ │ ├── base.css │ │ │ │ │ └── components.css │ │ │ │ ├── hb-search.css │ │ │ │ ├── layout-utilities.css │ │ │ │ ├── libs/ │ │ │ │ │ └── chroma/ │ │ │ │ │ ├── dark.css │ │ │ │ │ └── light.css │ │ │ │ ├── main.css │ │ │ │ ├── themes/ │ │ │ │ │ ├── amber.css │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── cyan.css │ │ │ │ │ ├── emerald.css │ │ │ │ │ ├── fuchsia.css │ │ │ │ │ ├── green.css │ │ │ │ │ ├── indigo.css │ │ │ │ │ ├── lime.css │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── red.css │ │ │ │ │ ├── rose.css │ │ │ │ │ ├── sky.css │ │ │ │ │ ├── slate.css │ │ │ │ │ ├── stone.css │ │ │ │ │ ├── teal.css │ │ │ │ │ ├── violet.css │ │ │ │ │ ├── yellow.css │ │ │ │ │ └── zinc.css │ │ │ │ └── views/ │ │ │ │ ├── all.css │ │ │ │ └── attachments.css │ │ │ ├── dist/ │ │ │ │ └── lib/ │ │ │ │ ├── markmap/ │ │ │ │ │ └── index.js │ │ │ │ └── vendor-libs.mjs │ │ │ └── js/ │ │ │ ├── hb-animations.js │ │ │ ├── hb-citation.js │ │ │ ├── hb-clipboard.js │ │ │ ├── hb-code-copy.js │ │ │ ├── hb-head.js │ │ │ ├── hb-i18n.js │ │ │ ├── hb-init.js │ │ │ ├── hb-mermaid-config.js │ │ │ ├── hb-nav.js │ │ │ ├── hb-notifier.js │ │ │ ├── hb-search.js │ │ │ ├── hb-sidebar.js │ │ │ ├── hb-theme.js │ │ │ ├── katex-config.js │ │ │ └── vendor-libs.js │ │ ├── blox/ │ │ │ ├── collection/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── contact-info/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── cta-button-list/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── cta-card/ │ │ │ │ ├── README.md │ │ │ │ ├── client.jsx │ │ │ │ ├── component.jsx │ │ │ │ └── manifest.json │ │ │ ├── cta-image-paragraph/ │ │ │ │ ├── README.md │ │ │ │ ├── client.jsx │ │ │ │ ├── component.jsx │ │ │ │ └── manifest.json │ │ │ ├── dev-hero/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── faq/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── features/ │ │ │ │ ├── README.md │ │ │ │ ├── client.jsx │ │ │ │ ├── component.jsx │ │ │ │ └── manifest.json │ │ │ ├── hero/ │ │ │ │ ├── README.md │ │ │ │ ├── client.jsx │ │ │ │ ├── component.jsx │ │ │ │ └── manifest.json │ │ │ ├── knowledge-categories/ │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── logos/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── markdown/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── portfolio/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── research-areas/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── resume-awards/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── resume-biography/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── resume-biography-3/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── resume-experience/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── resume-languages/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── resume-skills/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── search-hero/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── shared/ │ │ │ │ └── js/ │ │ │ │ └── components/ │ │ │ │ └── Icon.jsx │ │ │ ├── stats/ │ │ │ │ ├── README.md │ │ │ │ ├── client.jsx │ │ │ │ ├── component.jsx │ │ │ │ └── manifest.json │ │ │ ├── team-showcase/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── tech-stack/ │ │ │ │ ├── README.md │ │ │ │ ├── block.html │ │ │ │ └── manifest.json │ │ │ ├── testimonials/ │ │ │ │ ├── README.md │ │ │ │ ├── client.jsx │ │ │ │ ├── component.jsx │ │ │ │ └── manifest.json │ │ │ └── trending-questions/ │ │ │ ├── block.html │ │ │ └── manifest.json │ │ ├── data/ │ │ │ ├── address_formats.toml │ │ │ ├── blox_aliases.yaml │ │ │ ├── fonts/ │ │ │ │ ├── academic.yaml │ │ │ │ ├── developer.yaml │ │ │ │ ├── editorial.yaml │ │ │ │ ├── geometric.yaml │ │ │ │ ├── humanist.yaml │ │ │ │ ├── modern.yaml │ │ │ │ └── system.yaml │ │ │ ├── hugoblox.yaml │ │ │ ├── icons/ │ │ │ │ ├── academicons.json │ │ │ │ ├── brands.yaml │ │ │ │ ├── devicon.json │ │ │ │ ├── hb.yaml │ │ │ │ └── hero.json │ │ │ ├── languages.yaml │ │ │ ├── link_types.yaml │ │ │ ├── page_sharer.yaml │ │ │ └── themes/ │ │ │ ├── coffee.yaml │ │ │ ├── contrast.yaml │ │ │ ├── cupcake.yaml │ │ │ ├── default.yaml │ │ │ ├── dracula.yaml │ │ │ ├── marine.yaml │ │ │ ├── matcha.yaml │ │ │ ├── minimal.yaml │ │ │ ├── retro.yaml │ │ │ ├── solar.yaml │ │ │ └── synthwave.yaml │ │ ├── go.mod │ │ ├── hugo.yaml │ │ ├── i18n/ │ │ │ ├── ar.yaml │ │ │ ├── bn.yaml │ │ │ ├── ca.yaml │ │ │ ├── cs.yaml │ │ │ ├── da.yaml │ │ │ ├── de.yaml │ │ │ ├── el.yaml │ │ │ ├── en.yaml │ │ │ ├── es.yaml │ │ │ ├── et.yaml │ │ │ ├── eu.yaml │ │ │ ├── fa.yaml │ │ │ ├── fi.yaml │ │ │ ├── fr.yaml │ │ │ ├── he.yaml │ │ │ ├── hi.yaml │ │ │ ├── hr.yaml │ │ │ ├── ht.yaml │ │ │ ├── hu.yaml │ │ │ ├── id.yaml │ │ │ ├── it.yaml │ │ │ ├── ja.yaml │ │ │ ├── km.yaml │ │ │ ├── ko.yaml │ │ │ ├── lt.yaml │ │ │ ├── lv.yaml │ │ │ ├── mg.yaml │ │ │ ├── ms-Arab.yaml │ │ │ ├── ms.yaml │ │ │ ├── nb.yaml │ │ │ ├── nl.yaml │ │ │ ├── pl.yaml │ │ │ ├── pt.yaml │ │ │ ├── ro.yaml │ │ │ ├── ru.yaml │ │ │ ├── so.yaml │ │ │ ├── sv.yaml │ │ │ ├── tr.yaml │ │ │ ├── uk.yaml │ │ │ ├── vi.yaml │ │ │ ├── zh-Hant.yaml │ │ │ └── zh.yaml │ │ ├── layouts/ │ │ │ ├── 404.html │ │ │ ├── _markup/ │ │ │ │ ├── render-blockquote.html │ │ │ │ ├── render-codeblock-markmap.html │ │ │ │ ├── render-codeblock-mermaid.html │ │ │ │ ├── render-image.html │ │ │ │ ├── render-link.backlinks.json │ │ │ │ └── render-link.html │ │ │ ├── _partials/ │ │ │ │ ├── blox/ │ │ │ │ │ ├── contact-info/ │ │ │ │ │ │ └── config.html │ │ │ │ │ ├── dev-hero/ │ │ │ │ │ │ └── config.html │ │ │ │ │ ├── portfolio/ │ │ │ │ │ │ └── config.html │ │ │ │ │ ├── preact-wrapper.html │ │ │ │ │ └── tech-stack/ │ │ │ │ │ └── config.html │ │ │ │ ├── comments/ │ │ │ │ │ ├── disqus.html │ │ │ │ │ └── giscus.html │ │ │ │ ├── comments.html │ │ │ │ ├── components/ │ │ │ │ │ ├── backlinks.html │ │ │ │ │ ├── breadcrumb.html │ │ │ │ │ ├── cover.html │ │ │ │ │ ├── feedback.html │ │ │ │ │ ├── footers/ │ │ │ │ │ │ ├── columns.html │ │ │ │ │ │ └── minimal.html │ │ │ │ │ ├── headers/ │ │ │ │ │ │ ├── floating-theme-toggler.html │ │ │ │ │ │ ├── navbar-simple.html │ │ │ │ │ │ └── navbar.html │ │ │ │ │ ├── language-chooser.html │ │ │ │ │ ├── last-edited.html │ │ │ │ │ ├── next-in-series.html │ │ │ │ │ ├── page_sharer.html │ │ │ │ │ ├── paginator.html │ │ │ │ │ ├── search-modal.html │ │ │ │ │ ├── sidebar.html │ │ │ │ │ ├── slides-embed.html │ │ │ │ │ └── toc.html │ │ │ │ ├── css.html │ │ │ │ ├── docs_layout.html │ │ │ │ ├── functions/ │ │ │ │ │ ├── build_links.html │ │ │ │ │ ├── coerce_bool.html │ │ │ │ │ ├── coerce_int.html │ │ │ │ │ ├── deep_merge.html │ │ │ │ │ ├── demo_theme_styles.html │ │ │ │ │ ├── embed/ │ │ │ │ │ │ ├── github.html │ │ │ │ │ │ ├── hbx_content_section.html │ │ │ │ │ │ ├── hbx_platform_icon.html │ │ │ │ │ │ ├── hbx_title_section.html │ │ │ │ │ │ └── huggingface.html │ │ │ │ │ ├── generate_color_scale.html │ │ │ │ │ ├── get-block-scripts.html │ │ │ │ │ ├── get-build-id.html │ │ │ │ │ ├── get_address.html │ │ │ │ │ ├── get_author_name.html │ │ │ │ │ ├── get_author_profile.html │ │ │ │ │ ├── get_authors_data.html │ │ │ │ │ ├── get_branding.html │ │ │ │ │ ├── get_cover_image.html │ │ │ │ │ ├── get_event_dates.html │ │ │ │ │ ├── get_featured_image.html │ │ │ │ │ ├── get_hook.html │ │ │ │ │ ├── get_icon.html │ │ │ │ │ ├── get_icon_data.html │ │ │ │ │ ├── get_logo.html │ │ │ │ │ ├── get_logo_url.html │ │ │ │ │ ├── get_page_title.html │ │ │ │ │ ├── get_site_icon.html │ │ │ │ │ ├── get_sort_by_parameter.html │ │ │ │ │ ├── get_summary.html │ │ │ │ │ ├── get_theme_config.html │ │ │ │ │ ├── has_attachments.html │ │ │ │ │ ├── hbx_verify.html │ │ │ │ │ ├── layout_tokens.html │ │ │ │ │ ├── load_font_pack.html │ │ │ │ │ ├── load_theme_pack.html │ │ │ │ │ ├── logger.html │ │ │ │ │ ├── notebook/ │ │ │ │ │ │ └── render.html │ │ │ │ │ ├── parse_block_v3.html │ │ │ │ │ ├── process_responsive_image.html │ │ │ │ │ ├── render_callout.html │ │ │ │ │ ├── render_view.html │ │ │ │ │ ├── theme_generator.html │ │ │ │ │ ├── theme_variables.html │ │ │ │ │ ├── typography.html │ │ │ │ │ └── uid.html │ │ │ │ ├── hbx/ │ │ │ │ │ ├── resolve-block-param.html │ │ │ │ │ ├── resolve.html │ │ │ │ │ └── sections.html │ │ │ │ ├── hooks/ │ │ │ │ │ └── body-end/ │ │ │ │ │ ├── hbx-debug-export.html │ │ │ │ │ └── hbx-debug-hud.html │ │ │ │ ├── init.html │ │ │ │ ├── jsonld/ │ │ │ │ │ ├── article.html │ │ │ │ │ ├── breadcrumbs.html │ │ │ │ │ ├── business.html │ │ │ │ │ ├── collectionpage.html │ │ │ │ │ ├── event.html │ │ │ │ │ ├── faqpage.html │ │ │ │ │ ├── main.html │ │ │ │ │ ├── qapage.html │ │ │ │ │ ├── webpage.html │ │ │ │ │ └── website.html │ │ │ │ ├── landing_page.html │ │ │ │ ├── libraries.html │ │ │ │ ├── notification-container.html │ │ │ │ ├── page_author.html │ │ │ │ ├── page_author_card.html │ │ │ │ ├── page_edit.html │ │ │ │ ├── page_footer.html │ │ │ │ ├── page_links.html │ │ │ │ ├── page_links_div.html │ │ │ │ ├── page_metadata_authors.html │ │ │ │ ├── page_related.html │ │ │ │ ├── site_footer.html │ │ │ │ ├── site_footer_license.html │ │ │ │ ├── site_head.html │ │ │ │ ├── social_links.html │ │ │ │ ├── tags.html │ │ │ │ ├── tailwind_sources.html │ │ │ │ └── views/ │ │ │ │ ├── article-grid--end.html │ │ │ │ ├── article-grid--start.html │ │ │ │ ├── article-grid.html │ │ │ │ ├── card--end.html │ │ │ │ ├── card--start.html │ │ │ │ ├── card.html │ │ │ │ ├── citation--end.html │ │ │ │ ├── citation--start.html │ │ │ │ ├── citation.html │ │ │ │ ├── date-title-summary--end.html │ │ │ │ ├── date-title-summary--start.html │ │ │ │ ├── date-title-summary.html │ │ │ │ ├── slides-gallery--end.html │ │ │ │ ├── slides-gallery--start.html │ │ │ │ └── slides-gallery.html │ │ │ ├── _shortcodes/ │ │ │ │ ├── audio.html │ │ │ │ ├── bilibili.html │ │ │ │ ├── button.html │ │ │ │ ├── callout.html │ │ │ │ ├── card.html │ │ │ │ ├── cards.html │ │ │ │ ├── chart.html │ │ │ │ ├── cite.html │ │ │ │ ├── embed.html │ │ │ │ ├── icon.html │ │ │ │ ├── include.html │ │ │ │ ├── math.html │ │ │ │ ├── mention.html │ │ │ │ ├── notebook.html │ │ │ │ ├── spoiler.html │ │ │ │ ├── steps.html │ │ │ │ ├── table.html │ │ │ │ ├── toc.html │ │ │ │ └── video.html │ │ │ ├── authors/ │ │ │ │ └── term.html │ │ │ ├── baseof.html │ │ │ ├── docs/ │ │ │ │ ├── list.html │ │ │ │ └── single.html │ │ │ ├── events/ │ │ │ │ └── page.html │ │ │ ├── faq/ │ │ │ │ ├── list.html │ │ │ │ └── single.html │ │ │ ├── home.backlinks.json │ │ │ ├── home.html │ │ │ ├── index.llm.txt │ │ │ ├── index.webmanifest │ │ │ ├── landing/ │ │ │ │ ├── list.html │ │ │ │ └── single.html │ │ │ ├── list.html │ │ │ ├── questions/ │ │ │ │ ├── list.html │ │ │ │ └── single.html │ │ │ ├── robots.txt │ │ │ ├── rss.xml │ │ │ ├── single.html │ │ │ ├── sitemap.xml │ │ │ ├── taxonomy.html │ │ │ └── terms.html │ │ ├── package.json │ │ ├── pnpm-workspace.yaml │ │ ├── schemas/ │ │ │ └── blocks.json │ │ └── theme.toml │ ├── integrations/ │ │ └── netlify/ │ │ ├── README.md │ │ ├── config.yaml │ │ ├── go.mod │ │ └── src/ │ │ └── layouts/ │ │ ├── index.headers │ │ └── index.redirects │ └── slides/ │ ├── README.md │ ├── assets/ │ │ ├── css/ │ │ │ ├── libs/ │ │ │ │ └── chroma/ │ │ │ │ ├── dracula.css │ │ │ │ ├── github-dark.css │ │ │ │ └── github-light.css │ │ │ └── slides-branding.css │ │ └── js/ │ │ └── hugoblox-slides.js │ ├── config/ │ │ └── _default/ │ │ └── hugo.yaml │ ├── go.mod │ └── layouts/ │ ├── _partials/ │ │ ├── components/ │ │ │ └── slide-branding.html │ │ ├── functions/ │ │ │ └── slides_get_hook.html │ │ ├── hooks/ │ │ │ ├── slide-body-end/ │ │ │ │ └── _example.html │ │ │ ├── slide-footer/ │ │ │ │ └── _example.html │ │ │ ├── slide-head-end/ │ │ │ │ └── _example.html │ │ │ └── slide-header/ │ │ │ └── _example.html │ │ └── slides.html │ ├── _shortcodes/ │ │ ├── fragment.html │ │ ├── slide.html │ │ └── speaker_note.html │ └── slides/ │ ├── baseof.html │ ├── baseof.present.html │ ├── list.html │ ├── presenter.html │ ├── single.html │ └── single.present.html ├── package.json ├── pyproject.toml ├── scripts/ │ ├── list_language_packs.py │ ├── release_modules.py │ ├── rm-hugo-cache.sh │ ├── sync_i18n.py │ ├── test_release_modules.py │ ├── update_template_hugo.py │ ├── view-starter-dev.sh │ ├── view-starter-prod.sh │ └── view-test.sh ├── templates/ │ ├── academic-cv/ │ │ ├── .devcontainer/ │ │ │ └── devcontainer.json │ │ ├── .github/ │ │ │ ├── FUNDING.yml │ │ │ └── workflows/ │ │ │ ├── build.yml │ │ │ ├── deploy.yml │ │ │ ├── import-publications.yml │ │ │ ├── internal-readme-news.yml │ │ │ └── upgrade.yml │ │ ├── .gitignore │ │ ├── .vscode/ │ │ │ └── extensions.json │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── assets/ │ │ │ └── media/ │ │ │ └── icons/ │ │ │ └── custom/ │ │ │ └── .gitkeep │ │ ├── config/ │ │ │ └── _default/ │ │ │ ├── hugo.yaml │ │ │ ├── languages.yaml │ │ │ ├── menus.yaml │ │ │ ├── module.yaml │ │ │ └── params.yaml │ │ ├── content/ │ │ │ ├── _index.md │ │ │ ├── authors/ │ │ │ │ └── _index.md │ │ │ ├── blog/ │ │ │ │ ├── _index.md │ │ │ │ ├── data-visualization/ │ │ │ │ │ ├── index.md │ │ │ │ │ ├── line-chart.json │ │ │ │ │ └── results.csv │ │ │ │ ├── get-started/ │ │ │ │ │ └── index.md │ │ │ │ ├── notebook-onboarding/ │ │ │ │ │ ├── hugoblox-onboarding.ipynb │ │ │ │ │ └── index.md │ │ │ │ ├── project-management/ │ │ │ │ │ └── index.md │ │ │ │ ├── second-brain/ │ │ │ │ │ └── index.md │ │ │ │ └── teach-courses/ │ │ │ │ └── index.md │ │ │ ├── courses/ │ │ │ │ ├── _index.md │ │ │ │ └── hugo-blox/ │ │ │ │ ├── _index.md │ │ │ │ ├── getting-started.md │ │ │ │ ├── guide/ │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── configuration.md │ │ │ │ │ ├── formatting/ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── 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/ │ │ │ │ └── index.md │ │ │ ├── experience.md │ │ │ ├── projects/ │ │ │ │ ├── _index.md │ │ │ │ ├── pandas/ │ │ │ │ │ └── index.md │ │ │ │ ├── pytorch/ │ │ │ │ │ └── index.md │ │ │ │ └── scikit/ │ │ │ │ └── index.md │ │ │ ├── publications/ │ │ │ │ ├── _index.md │ │ │ │ ├── conference-paper/ │ │ │ │ │ ├── cite.bib │ │ │ │ │ └── index.md │ │ │ │ ├── journal-article/ │ │ │ │ │ ├── cite.bib │ │ │ │ │ └── index.md │ │ │ │ └── preprint/ │ │ │ │ └── index.md │ │ │ └── slides/ │ │ │ └── example/ │ │ │ └── index.md │ │ ├── data/ │ │ │ └── authors/ │ │ │ └── me.yaml │ │ ├── go.mod │ │ ├── hugoblox.yaml │ │ ├── layouts/ │ │ │ └── _partials/ │ │ │ └── hooks/ │ │ │ └── head-end/ │ │ │ └── github-button.html │ │ ├── netlify.toml │ │ └── package.json │ ├── data-science-blog/ │ │ ├── .devcontainer/ │ │ │ └── devcontainer.json │ │ ├── .github/ │ │ │ ├── FUNDING.yml │ │ │ └── workflows/ │ │ │ ├── build.yml │ │ │ ├── deploy.yml │ │ │ ├── import-notebooks.yml │ │ │ └── upgrade.yml │ │ ├── .gitignore │ │ ├── .vscode/ │ │ │ └── extensions.json │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── assets/ │ │ │ └── media/ │ │ │ └── icons/ │ │ │ └── custom/ │ │ │ └── .gitkeep │ │ ├── config/ │ │ │ └── _default/ │ │ │ ├── hugo.yaml │ │ │ ├── languages.yaml │ │ │ ├── menus.yaml │ │ │ ├── module.yaml │ │ │ └── params.yaml │ │ ├── content/ │ │ │ ├── _index.md │ │ │ ├── authors/ │ │ │ │ └── _index.md │ │ │ ├── blog/ │ │ │ │ ├── _index.md │ │ │ │ ├── data-visualization/ │ │ │ │ │ ├── index.md │ │ │ │ │ ├── line-chart.json │ │ │ │ │ └── results.csv │ │ │ │ ├── get-started/ │ │ │ │ │ └── index.md │ │ │ │ ├── project-management/ │ │ │ │ │ └── index.md │ │ │ │ ├── second-brain/ │ │ │ │ │ └── index.md │ │ │ │ └── teach-courses/ │ │ │ │ └── index.md │ │ │ ├── tags/ │ │ │ │ └── _index.md │ │ │ └── uses.md │ │ ├── data/ │ │ │ └── authors/ │ │ │ └── me.yaml │ │ ├── go.mod │ │ ├── hugoblox.yaml │ │ ├── netlify.toml │ │ ├── notebooks/ │ │ │ └── blog-with-jupyter.ipynb │ │ └── package.json │ ├── dev-portfolio/ │ │ ├── .devcontainer/ │ │ │ └── devcontainer.json │ │ ├── .github/ │ │ │ ├── FUNDING.yml │ │ │ └── workflows/ │ │ │ ├── build.yml │ │ │ ├── deploy.yml │ │ │ └── upgrade.yml │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── assets/ │ │ │ └── media/ │ │ │ └── icons/ │ │ │ └── custom/ │ │ │ └── .gitkeep │ │ ├── config/ │ │ │ └── _default/ │ │ │ ├── hugo.yaml │ │ │ ├── languages.yaml │ │ │ ├── menus.yaml │ │ │ ├── module.yaml │ │ │ └── params.yaml │ │ ├── content/ │ │ │ ├── _index.md │ │ │ ├── authors/ │ │ │ │ └── _index.md │ │ │ ├── blog/ │ │ │ │ ├── _index.md │ │ │ │ ├── building-rest-api/ │ │ │ │ │ └── index.md │ │ │ │ ├── docker-deployment/ │ │ │ │ │ └── index.md │ │ │ │ └── react-performance/ │ │ │ │ └── index.md │ │ │ └── projects/ │ │ │ ├── _index.md │ │ │ ├── ecommerce-platform/ │ │ │ │ └── index.md │ │ │ ├── task-manager/ │ │ │ │ └── index.md │ │ │ └── weather-app/ │ │ │ └── index.md │ │ ├── data/ │ │ │ └── authors/ │ │ │ └── me.yaml │ │ ├── go.mod │ │ ├── hugoblox.yaml │ │ ├── netlify.toml │ │ └── package.json │ ├── documentation/ │ │ ├── .devcontainer/ │ │ │ └── devcontainer.json │ │ ├── .editorconfig │ │ ├── .github/ │ │ │ ├── FUNDING.yml │ │ │ └── workflows/ │ │ │ ├── build.yml │ │ │ ├── deploy.yml │ │ │ └── upgrade.yml │ │ ├── .gitignore │ │ ├── .vscode/ │ │ │ └── extensions.json │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── assets/ │ │ │ └── media/ │ │ │ └── icons/ │ │ │ └── custom/ │ │ │ └── .gitkeep │ │ ├── config/ │ │ │ └── _default/ │ │ │ ├── hugo.yaml │ │ │ ├── languages.yaml │ │ │ ├── menus.yaml │ │ │ ├── module.yaml │ │ │ └── params.yaml │ │ ├── content/ │ │ │ ├── _index.md │ │ │ ├── authors/ │ │ │ │ └── _index.md │ │ │ ├── blog/ │ │ │ │ ├── _index.md │ │ │ │ ├── v1.0.0/ │ │ │ │ │ └── index.md │ │ │ │ └── v2.0.0/ │ │ │ │ └── index.md │ │ │ ├── community/ │ │ │ │ └── index.md │ │ │ ├── docs/ │ │ │ │ ├── _index.md │ │ │ │ ├── getting-started.md │ │ │ │ ├── guide/ │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── configuration.md │ │ │ │ │ ├── project-structure.md │ │ │ │ │ └── shortcodes/ │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── button.md │ │ │ │ │ ├── callout.md │ │ │ │ │ ├── cards.md │ │ │ │ │ ├── steps.md │ │ │ │ │ └── toggle.md │ │ │ │ └── reference/ │ │ │ │ ├── _index.md │ │ │ │ ├── customization.md │ │ │ │ └── i18n.md │ │ │ └── showcase/ │ │ │ ├── _index.md │ │ │ └── nvidia/ │ │ │ └── index.md │ │ ├── data/ │ │ │ └── authors/ │ │ │ └── me.yaml │ │ ├── go.mod │ │ ├── hugoblox.yaml │ │ ├── netlify.toml │ │ ├── package.json │ │ ├── static/ │ │ │ └── uploads/ │ │ │ └── .gitkeep │ │ └── theme.toml │ ├── link-in-bio/ │ │ ├── .devcontainer/ │ │ │ └── devcontainer.json │ │ ├── .github/ │ │ │ ├── FUNDING.yml │ │ │ └── workflows/ │ │ │ ├── build.yml │ │ │ ├── deploy.yml │ │ │ └── upgrade.yml │ │ ├── .gitignore │ │ ├── .vscode/ │ │ │ └── extensions.json │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── assets/ │ │ │ └── media/ │ │ │ └── icons/ │ │ │ └── custom/ │ │ │ └── .gitkeep │ │ ├── config/ │ │ │ └── _default/ │ │ │ ├── hugo.yaml │ │ │ ├── languages.yaml │ │ │ ├── module.yaml │ │ │ └── params.yaml │ │ ├── content/ │ │ │ ├── _index.md │ │ │ └── authors/ │ │ │ └── _index.md │ │ ├── data/ │ │ │ └── authors/ │ │ │ └── me.yaml │ │ ├── go.mod │ │ ├── hugoblox.yaml │ │ ├── layouts/ │ │ │ └── _partials/ │ │ │ └── hooks/ │ │ │ └── body-end/ │ │ │ └── change-background-color.html │ │ ├── netlify.toml │ │ └── package.json │ ├── markdown-slides/ │ │ ├── .devcontainer/ │ │ │ └── devcontainer.json │ │ ├── .github/ │ │ │ ├── FUNDING.yml │ │ │ └── workflows/ │ │ │ ├── build.yml │ │ │ ├── deploy.yml │ │ │ └── upgrade.yml │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── config/ │ │ │ └── _default/ │ │ │ ├── hugo.yaml │ │ │ ├── menus.yaml │ │ │ ├── module.yaml │ │ │ └── params.yaml │ │ ├── content/ │ │ │ ├── _index.md │ │ │ └── slides/ │ │ │ ├── _index.md │ │ │ ├── example/ │ │ │ │ └── index.md │ │ │ ├── hugo-static-sites/ │ │ │ │ └── index.md │ │ │ └── ml-research-overview/ │ │ │ └── index.md │ │ ├── data/ │ │ │ └── authors/ │ │ │ └── me.yaml │ │ ├── go.mod │ │ ├── hugoblox.yaml │ │ ├── netlify.toml │ │ └── package.json │ ├── resume/ │ │ ├── .devcontainer/ │ │ │ └── devcontainer.json │ │ ├── .github/ │ │ │ ├── FUNDING.yml │ │ │ └── workflows/ │ │ │ ├── build.yml │ │ │ ├── deploy.yml │ │ │ └── upgrade.yml │ │ ├── .gitignore │ │ ├── .vscode/ │ │ │ └── extensions.json │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── assets/ │ │ │ └── media/ │ │ │ └── icons/ │ │ │ └── custom/ │ │ │ └── .gitkeep │ │ ├── config/ │ │ │ └── _default/ │ │ │ ├── hugo.yaml │ │ │ ├── languages.yaml │ │ │ ├── menus.yaml │ │ │ ├── module.yaml │ │ │ └── params.yaml │ │ ├── content/ │ │ │ ├── _index.md │ │ │ └── authors/ │ │ │ └── _index.md │ │ ├── data/ │ │ │ └── authors/ │ │ │ └── me.yaml │ │ ├── go.mod │ │ ├── hugoblox.yaml │ │ ├── netlify.toml │ │ └── package.json │ └── startup-landing-page/ │ ├── .devcontainer/ │ │ └── devcontainer.json │ ├── .github/ │ │ ├── FUNDING.yml │ │ └── workflows/ │ │ ├── build.yml │ │ ├── deploy.yml │ │ └── upgrade.yml │ ├── .gitignore │ ├── .vscode/ │ │ └── extensions.json │ ├── LICENSE.md │ ├── README.md │ ├── assets/ │ │ └── media/ │ │ └── icons/ │ │ └── custom/ │ │ └── .gitkeep │ ├── config/ │ │ └── _default/ │ │ ├── hugo.yaml │ │ ├── languages.yaml │ │ ├── menus.yaml │ │ ├── module.yaml │ │ └── params.yaml │ ├── content/ │ │ ├── _index.md │ │ ├── authors/ │ │ │ ├── _content.gotmpl │ │ │ └── _index.md │ │ ├── blog/ │ │ │ ├── _index.md │ │ │ ├── data-visualization/ │ │ │ │ ├── index.md │ │ │ │ ├── line-chart.json │ │ │ │ └── results.csv │ │ │ ├── get-started/ │ │ │ │ └── index.md │ │ │ ├── project-management/ │ │ │ │ └── index.md │ │ │ ├── second-brain/ │ │ │ │ └── index.md │ │ │ └── teach-courses/ │ │ │ └── index.md │ │ ├── changelog/ │ │ │ ├── _index.md │ │ │ ├── v1.0/ │ │ │ │ └── index.md │ │ │ └── v1.1/ │ │ │ └── index.md │ │ ├── privacy.md │ │ └── terms.md │ ├── data/ │ │ └── authors/ │ │ └── me.yaml │ ├── go.mod │ ├── hugoblox.yaml │ ├── netlify.toml │ ├── package.json │ └── theme.toml ├── test/ │ ├── config.yaml │ ├── content/ │ │ ├── _index.md │ │ └── linked/ │ │ └── index.md │ ├── data/ │ │ ├── blocks/ │ │ │ ├── features_basic.yaml │ │ │ └── hero_basic.yaml │ │ └── pages/ │ │ └── home.yaml │ ├── go.mod │ └── package.json └── vite.config.js