├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── astro.config.mjs ├── in_episode.db.json ├── package.json ├── public ├── JellyBellyDev.png ├── brainrepo.png ├── chumkiu.png ├── dottor-blaster.png ├── favicon.ico ├── guabanal.png ├── leo.png ├── mauro.png └── raibaz.png ├── src ├── components │ ├── BackButton.astro │ ├── Card.astro │ ├── EpisodeCard.astro │ ├── Header.astro │ ├── Hosts.astro │ ├── LinkPreview.astro │ ├── Matomo.astro │ ├── Menu.astro │ ├── NormalLinkPreview.astro │ ├── Pagination.astro │ ├── ProseTitle.astro │ ├── SEO.astro │ └── searchAdvanced.tsx ├── env.d.ts ├── layouts │ └── Layout.astro ├── libs │ └── markdown │ │ ├── Markdown.astro │ │ ├── env.d.ts │ │ └── utils.ts ├── pages │ ├── advanced-search.astro │ ├── contact.astro │ ├── episodes │ │ ├── [page].astro │ │ └── [slug].astro │ ├── index.astro │ ├── speakers │ │ ├── [slug].astro │ │ └── index.astro │ └── support.astro ├── plugins │ └── lyra_in_episode.ts ├── podcast-feed-parser.d.ts ├── transcriptions │ ├── 120.json │ ├── 121.json │ ├── 123.json │ ├── 124.json │ ├── 125.json │ ├── 126.json │ ├── 127.json │ ├── 128.json │ ├── 129.json │ ├── 130.json │ ├── 131.json │ ├── 132.json │ ├── 133.json │ ├── 134.json │ ├── 135.json │ ├── 136.json │ ├── 137.json │ ├── 138.json │ ├── 139.json │ ├── 140.json │ ├── 141.json │ ├── 142.json │ ├── 143.json │ ├── 144.json │ ├── 145.json │ ├── 146.json │ ├── 147.json │ ├── 148.json │ ├── 149.json │ ├── 150.json │ ├── 151.json │ ├── 152.json │ ├── 153.json │ ├── 154.json │ ├── 155.json │ ├── 156.json │ ├── 157.json │ ├── 158.json │ ├── 159.json │ ├── 160.json │ └── 161.json └── utils │ ├── index.ts │ └── time.ts ├── tailwind.config.cjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /in_episode.db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/in_episode.db.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/package.json -------------------------------------------------------------------------------- /public/JellyBellyDev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/public/JellyBellyDev.png -------------------------------------------------------------------------------- /public/brainrepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/public/brainrepo.png -------------------------------------------------------------------------------- /public/chumkiu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/public/chumkiu.png -------------------------------------------------------------------------------- /public/dottor-blaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/public/dottor-blaster.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/guabanal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/public/guabanal.png -------------------------------------------------------------------------------- /public/leo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/public/leo.png -------------------------------------------------------------------------------- /public/mauro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/public/mauro.png -------------------------------------------------------------------------------- /public/raibaz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/public/raibaz.png -------------------------------------------------------------------------------- /src/components/BackButton.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/BackButton.astro -------------------------------------------------------------------------------- /src/components/Card.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/Card.astro -------------------------------------------------------------------------------- /src/components/EpisodeCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/EpisodeCard.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/Hosts.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/Hosts.astro -------------------------------------------------------------------------------- /src/components/LinkPreview.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/LinkPreview.astro -------------------------------------------------------------------------------- /src/components/Matomo.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/Matomo.astro -------------------------------------------------------------------------------- /src/components/Menu.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/Menu.astro -------------------------------------------------------------------------------- /src/components/NormalLinkPreview.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/NormalLinkPreview.astro -------------------------------------------------------------------------------- /src/components/Pagination.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/Pagination.astro -------------------------------------------------------------------------------- /src/components/ProseTitle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/ProseTitle.astro -------------------------------------------------------------------------------- /src/components/SEO.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/SEO.astro -------------------------------------------------------------------------------- /src/components/searchAdvanced.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/components/searchAdvanced.tsx -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/libs/markdown/Markdown.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/libs/markdown/Markdown.astro -------------------------------------------------------------------------------- /src/libs/markdown/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/libs/markdown/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/libs/markdown/utils.ts -------------------------------------------------------------------------------- /src/pages/advanced-search.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/pages/advanced-search.astro -------------------------------------------------------------------------------- /src/pages/contact.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/pages/contact.astro -------------------------------------------------------------------------------- /src/pages/episodes/[page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/pages/episodes/[page].astro -------------------------------------------------------------------------------- /src/pages/episodes/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/pages/episodes/[slug].astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/speakers/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/pages/speakers/[slug].astro -------------------------------------------------------------------------------- /src/pages/speakers/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/pages/speakers/index.astro -------------------------------------------------------------------------------- /src/pages/support.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/pages/support.astro -------------------------------------------------------------------------------- /src/plugins/lyra_in_episode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/plugins/lyra_in_episode.ts -------------------------------------------------------------------------------- /src/podcast-feed-parser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/podcast-feed-parser.d.ts -------------------------------------------------------------------------------- /src/transcriptions/120.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/120.json -------------------------------------------------------------------------------- /src/transcriptions/121.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/121.json -------------------------------------------------------------------------------- /src/transcriptions/123.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/123.json -------------------------------------------------------------------------------- /src/transcriptions/124.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/124.json -------------------------------------------------------------------------------- /src/transcriptions/125.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/125.json -------------------------------------------------------------------------------- /src/transcriptions/126.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/126.json -------------------------------------------------------------------------------- /src/transcriptions/127.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/127.json -------------------------------------------------------------------------------- /src/transcriptions/128.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/128.json -------------------------------------------------------------------------------- /src/transcriptions/129.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/129.json -------------------------------------------------------------------------------- /src/transcriptions/130.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/130.json -------------------------------------------------------------------------------- /src/transcriptions/131.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/131.json -------------------------------------------------------------------------------- /src/transcriptions/132.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/132.json -------------------------------------------------------------------------------- /src/transcriptions/133.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/133.json -------------------------------------------------------------------------------- /src/transcriptions/134.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/134.json -------------------------------------------------------------------------------- /src/transcriptions/135.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/135.json -------------------------------------------------------------------------------- /src/transcriptions/136.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/136.json -------------------------------------------------------------------------------- /src/transcriptions/137.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/137.json -------------------------------------------------------------------------------- /src/transcriptions/138.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/138.json -------------------------------------------------------------------------------- /src/transcriptions/139.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/139.json -------------------------------------------------------------------------------- /src/transcriptions/140.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/140.json -------------------------------------------------------------------------------- /src/transcriptions/141.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/141.json -------------------------------------------------------------------------------- /src/transcriptions/142.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/142.json -------------------------------------------------------------------------------- /src/transcriptions/143.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/143.json -------------------------------------------------------------------------------- /src/transcriptions/144.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/144.json -------------------------------------------------------------------------------- /src/transcriptions/145.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/145.json -------------------------------------------------------------------------------- /src/transcriptions/146.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/146.json -------------------------------------------------------------------------------- /src/transcriptions/147.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/147.json -------------------------------------------------------------------------------- /src/transcriptions/148.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/148.json -------------------------------------------------------------------------------- /src/transcriptions/149.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/149.json -------------------------------------------------------------------------------- /src/transcriptions/150.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/150.json -------------------------------------------------------------------------------- /src/transcriptions/151.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/151.json -------------------------------------------------------------------------------- /src/transcriptions/152.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/152.json -------------------------------------------------------------------------------- /src/transcriptions/153.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/153.json -------------------------------------------------------------------------------- /src/transcriptions/154.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/154.json -------------------------------------------------------------------------------- /src/transcriptions/155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/155.json -------------------------------------------------------------------------------- /src/transcriptions/156.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/156.json -------------------------------------------------------------------------------- /src/transcriptions/157.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/157.json -------------------------------------------------------------------------------- /src/transcriptions/158.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/158.json -------------------------------------------------------------------------------- /src/transcriptions/159.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/159.json -------------------------------------------------------------------------------- /src/transcriptions/160.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/160.json -------------------------------------------------------------------------------- /src/transcriptions/161.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/transcriptions/161.json -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/src/utils/time.ts -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainrepo/gitbar-2023/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/base" 3 | } 4 | --------------------------------------------------------------------------------