diff --git a/public/images/podcast/episode/.gitkeep b/public/images/podcast/episode/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/public/images/testimonials/quote-down-yellow.svg b/public/images/testimonials/quote-down-yellow.svg deleted file mode 100644 index 32335da7..00000000 --- a/public/images/testimonials/quote-down-yellow.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/public/images/testimonials/quote-top-yellow.svg b/public/images/testimonials/quote-top-yellow.svg deleted file mode 100644 index bb7d9b9f..00000000 --- a/public/images/testimonials/quote-top-yellow.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/scripts/podcast_feed_to_content.py b/scripts/podcast_feed_to_content.py index 6fb51723..11dc81dc 100644 --- a/scripts/podcast_feed_to_content.py +++ b/scripts/podcast_feed_to_content.py @@ -28,7 +28,7 @@ # Global variables PODCAST_RSS_FEED = "https://feeds.redcircle.com/0ecfdfd7-fda1-4c3d-9515-476727f9df5e" PATH_MARKDOWN_FILES = 'src/content/podcast' -PATH_IMAGE_FILES = 'public/images/podcast/episode' +PATH_IMAGE_FILES = 'src/content/podcast' TOML_FILE = 'netlify.toml' REDIRECT_PREFIX = '/episodes/' diff --git a/src/components/BlogPostPreview.astro b/src/components/BlogPostPreview.astro index 84f20ba6..1a7e0b8a 100644 --- a/src/components/BlogPostPreview.astro +++ b/src/components/BlogPostPreview.astro @@ -1,5 +1,6 @@ --- import type { CollectionEntry } from 'astro:content'; +import { Image } from "astro:assets"; export interface Props { post: CollectionEntry<'blog'>; @@ -41,7 +42,7 @@ let tags = data.tags.map((element) => URLify(element));
- {data.title} + {data.title}

diff --git a/src/components/HostPreview.astro b/src/components/HostPreview.astro index eae6d252..250d4ae0 100644 --- a/src/components/HostPreview.astro +++ b/src/components/HostPreview.astro @@ -1,4 +1,6 @@ --- +import { Image } from "astro:assets"; + export interface Props { avatar: string; name: string; @@ -12,12 +14,15 @@ export interface Props { } const { avatar, name, subtitle, description, github, twitter, linkedin, website, profileLink } = Astro.props; +const imageAvatar = (await import(`../images/teams/${avatar}.jpg`)).default + +// TODO We might want to migrate the Hosts to a "People" Content Collection ---

- {name} + {name}

diff --git a/src/components/Organizer.astro b/src/components/Organizer.astro index eea11a50..8f66df39 100644 --- a/src/components/Organizer.astro +++ b/src/components/Organizer.astro @@ -1,4 +1,6 @@ --- +import { Image } from "astro:assets"; + export interface Props { avatar: string; name: string; @@ -11,11 +13,12 @@ export interface Props { } const { avatar, name, subtitle, description, github, twitter, linkedin, website } = Astro.props; +const imageAvatar = (await import(`../images/teams/${avatar}.jpg`)).default ---
- {name} + {name}

{name} diff --git a/src/components/PodcastEpisodeBlogpostAd.astro b/src/components/PodcastEpisodeBlogpostAd.astro index fa7f9af6..5727461e 100644 --- a/src/components/PodcastEpisodeBlogpostAd.astro +++ b/src/components/PodcastEpisodeBlogpostAd.astro @@ -4,6 +4,7 @@ export interface Props { } import { getCollection } from "astro:content"; +import { Image } from "astro:assets"; import { cutText } from '../scripts/strings.js'; const { episode } = Astro.props; @@ -24,7 +25,7 @@ const description = cutText(data.description, 200); diff --git a/src/components/PodcastEpisodePreview.astro b/src/components/PodcastEpisodePreview.astro index a3371979..3c4f5377 100644 --- a/src/components/PodcastEpisodePreview.astro +++ b/src/components/PodcastEpisodePreview.astro @@ -1,5 +1,6 @@ --- import type { CollectionEntry } from 'astro:content'; +import { Image } from "astro:assets"; export interface Props { episode: CollectionEntry<'podcast'>; @@ -21,7 +22,7 @@ let description = cutText(data.description, descriptionChars);
- {`Details + {`Details { tags.map((element) => ( diff --git a/src/components/meetup-alps/Team.astro b/src/components/meetup-alps/Team.astro index 1b4aeaa3..351f4493 100644 --- a/src/components/meetup-alps/Team.astro +++ b/src/components/meetup-alps/Team.astro @@ -1,7 +1,7 @@ --- - import Organizer from '../Organizer.astro' +// TODO We might want to migrate the Organizer to a "People" Content Collection ---
@@ -14,9 +14,9 @@ import Organizer from '../Organizer.astro'

- - - + + +
diff --git a/public/images/blog-content/eigene-website/podcast-episode-overview.png b/src/content/blog/die-engineering-kiosk-website-header.png similarity index 100% rename from public/images/blog-content/eigene-website/podcast-episode-overview.png rename to src/content/blog/die-engineering-kiosk-website-header.png diff --git a/public/images/blog-content/eigene-website/brands.png b/src/content/blog/die-engineering-kiosk-website-thumbnail.png similarity index 100% rename from public/images/blog-content/eigene-website/brands.png rename to src/content/blog/die-engineering-kiosk-website-thumbnail.png diff --git a/src/content/blog/die-engineering-kiosk-website.mdx b/src/content/blog/die-engineering-kiosk-website.mdx index eeec638a..90b36738 100644 --- a/src/content/blog/die-engineering-kiosk-website.mdx +++ b/src/content/blog/die-engineering-kiosk-website.mdx @@ -4,11 +4,13 @@ subtitle: Der Engineering Kiosk hat eine eigene Website. Warum jetzt erst, was w description: 'tl:dr: Der Engineering Kiosk hat nach 22 Podcast-Episoden eine eigene Website. Gebaut mit dem static site builder [Astro](https://astro.build/). Source code ist auf [GitHub:EngineeringKiosk/webpage](https://github.com/EngineeringKiosk/webpage) verfügbar.' tags: ['Engineering Kiosk'] pubDate: 2022-06-20 -thumbnail: /images/blog-content/eigene-website/brands.png -headerimage: /images/blog-content/eigene-website/podcast-episode-overview.png +thumbnail: ./die-engineering-kiosk-website-thumbnail.png +headerimage: ./die-engineering-kiosk-website-header.png --- import PodcastEpisodeBlogpostAd from '../../components/PodcastEpisodeBlogpostAd.astro'; +import { Image } from "astro:assets"; +import imageBrands from './die-engineering-kiosk-website-thumbnail.png'; Nach fünf Monaten und 22 Podcast-Episoden mit insgesamt über 20 Stunden Audio-Content, launcht der Engineering Kiosk seine eigene Website. @@ -72,7 +74,7 @@ Warum? - Astro hat trotz hoher Flexibilität einen [simplen Content und Routing Ansatz](https://docs.astro.build/en/core-concepts/routing/) - Astro verfolgt einen [Partial Hydration](https://docs.astro.build/en/core-concepts/partial-hydration/) Ansatz, der eine Webseite ohne JavaScript auf der Client-Seite erlaubt. -![Eingesetzte Technologien: Astro, tailwind css, Netlify und GitHub](/images/blog-content/eigene-website/brands.png 'Eingesetzte Technologien: Astro, tailwind css, Netlify und GitHub') +Eingesetzte Technologien: Astro, tailwind css, Netlify und GitHub Beim Hosting verlassen wir uns [Netlify](https://www.netlify.com/). Mit der direkten [Anbindung an GitHub](https://github.com/apps/netlify) werden sogar bei [Pull Requests Vorschau-Umgebungen automatisch erzeugt](https://github.com/EngineeringKiosk/webpage/pull/54). diff --git a/src/content/config.ts b/src/content/config.ts index 31b82a4c..a67de000 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -3,7 +3,7 @@ import { z, defineCollection } from 'astro:content'; // Schema for Podcast Episodes const podcastEpisodeCollection = defineCollection({ type: 'content', - schema: z.object({ + schema: ({ image }) => z.object({ amazon_music: z.string(), apple_podcasts: z.string(), audio: z.string(), @@ -17,7 +17,7 @@ const podcastEpisodeCollection = defineCollection({ description: z.string(), google_podcasts: z.string(), headlines: z.string(), - image: z.string(), + image: image(), length_second: z.number(), pubDate: z.date(), rtlplus: z.string(), @@ -38,14 +38,14 @@ const podcastEpisodeCollection = defineCollection({ // Schema for Blog Entries const blogEntryCollection = defineCollection({ type: 'content', - schema: z.object({ + schema: ({ image }) => z.object({ title: z.string(), subtitle: z.string(), description: z.string(), tags: z.array(z.string()), pubDate: z.date(), - thumbnail: z.string(), - headerimage: z.string(), + thumbnail: image(), + headerimage: image(), }), }); diff --git a/public/images/podcast/episode/-1-wrap-up-2022-und-1-geburtstag-learnings-statistiken-und-was-2023-geplant-ist.jpg b/src/content/podcast/-1-wrap-up-2022-und-1-geburtstag-learnings-statistiken-und-was-2023-geplant-ist.jpg similarity index 100% rename from public/images/podcast/episode/-1-wrap-up-2022-und-1-geburtstag-learnings-statistiken-und-was-2023-geplant-ist.jpg rename to src/content/podcast/-1-wrap-up-2022-und-1-geburtstag-learnings-statistiken-und-was-2023-geplant-ist.jpg diff --git a/src/content/podcast/-1-wrap-up-2022-und-1-geburtstag-learnings-statistiken-und-was-2023-geplant-ist.md b/src/content/podcast/-1-wrap-up-2022-und-1-geburtstag-learnings-statistiken-und-was-2023-geplant-ist.md index bb8ec2d0..17d72ef8 100644 --- a/src/content/podcast/-1-wrap-up-2022-und-1-geburtstag-learnings-statistiken-und-was-2023-geplant-ist.md +++ b/src/content/podcast/-1-wrap-up-2022-und-1-geburtstag-learnings-statistiken-und-was-2023-geplant-ist.md @@ -33,7 +33,7 @@ description: "1 Jahr Engineering Kiosk: Ein Wrap-up mit Learnings, Statistiken u google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ZTBhMzljYTMtNDUyMi00YmI0LWIzNDgtMzdhZTZlM2UyMDNi?sa=X&ved=0CAUQkfYCahcKEwjw_fyq8K_8AhUAAAAAHQAAAAAQAQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/-1-wrap-up-2022-und-1-geburtstag-learnings-statistiken-und-was-2023-geplant-ist.jpg +image: ./-1-wrap-up-2022-und-1-geburtstag-learnings-statistiken-und-was-2023-geplant-ist.jpg length_second: 1847 pubDate: 2023-01-05 05:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/00-developer-fangen-bei-0-an-zu-z\303\244hlen.jpg" "b/src/content/podcast/00-developer-fangen-bei-0-an-zu-z\303\244hlen.jpg" similarity index 100% rename from "public/images/podcast/episode/00-developer-fangen-bei-0-an-zu-z\303\244hlen.jpg" rename to "src/content/podcast/00-developer-fangen-bei-0-an-zu-z\303\244hlen.jpg" diff --git "a/src/content/podcast/00-developer-fangen-bei-0-an-zu-z\303\244hlen.md" "b/src/content/podcast/00-developer-fangen-bei-0-an-zu-z\303\244hlen.md" index f4e66473..9d693032 100644 --- "a/src/content/podcast/00-developer-fangen-bei-0-an-zu-z\303\244hlen.md" +++ "b/src/content/podcast/00-developer-fangen-bei-0-an-zu-z\303\244hlen.md" @@ -59,7 +59,7 @@ description: "Software Engineers fangen bei 0 an zu z\xE4hlen. Das Engineering K \ Rosinen gemacht wird." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YzZmYTYwMzItNjMxOC00NmY5LTljMDQtM2I5ZTUxYTU3NmFj?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: "/images/podcast/episode/00-developer-fangen-bei-0-an-zu-z\xE4hlen.jpg" +image: "./00-developer-fangen-bei-0-an-zu-z\xE4hlen.jpg" length_second: 1751 pubDate: 2022-02-08 05:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/01-side-projects-fluch-oder-segen-f\303\274r-die-karriere.jpg" "b/src/content/podcast/01-side-projects-fluch-oder-segen-f\303\274r-die-karriere.jpg" similarity index 100% rename from "public/images/podcast/episode/01-side-projects-fluch-oder-segen-f\303\274r-die-karriere.jpg" rename to "src/content/podcast/01-side-projects-fluch-oder-segen-f\303\274r-die-karriere.jpg" diff --git "a/src/content/podcast/01-side-projects-fluch-oder-segen-f\303\274r-die-karriere.md" "b/src/content/podcast/01-side-projects-fluch-oder-segen-f\303\274r-die-karriere.md" index 7ac86cae..03fc526c 100644 --- "a/src/content/podcast/01-side-projects-fluch-oder-segen-f\303\274r-die-karriere.md" +++ "b/src/content/podcast/01-side-projects-fluch-oder-segen-f\303\274r-die-karriere.md" @@ -51,7 +51,7 @@ description: "Zwei Engineering Manager \xFCber Side Projects: Wie diese den Recr \ Der Unterschied zwischen Schnacken und Schnackseln" google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NTA2NGE1MTMtOWNlMC00NzNlLWEyN2ItOWY5NDY3ODkwNGQw?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: "sprungmarken::Sprungmarken||erwahnte-personen::Erw\xE4hnte Personen||hosts::Hosts" -image: "/images/podcast/episode/01-side-projects-fluch-oder-segen-f\xFCr-die-karriere.jpg" +image: "./01-side-projects-fluch-oder-segen-f\xFCr-die-karriere.jpg" length_second: 2782 pubDate: 2022-01-03 12:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/02-technologienzoo-side-projects.jpg b/src/content/podcast/02-technologienzoo-side-projects.jpg similarity index 100% rename from public/images/podcast/episode/02-technologienzoo-side-projects.jpg rename to src/content/podcast/02-technologienzoo-side-projects.jpg diff --git a/src/content/podcast/02-technologienzoo-side-projects.md b/src/content/podcast/02-technologienzoo-side-projects.md index 09323cc7..706066d5 100644 --- a/src/content/podcast/02-technologienzoo-side-projects.md +++ b/src/content/podcast/02-technologienzoo-side-projects.md @@ -76,7 +76,7 @@ description: "Wolfgang und Andy erz\xE4hlen ein wenig was \xFCber ihre eigenen S google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NTYxZjhlNmQtZTg2OS00MmIxLTg1MzYtMzE5ZTk1MDI5NGRh?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: "sprungmarken::Sprungmarken||erwahnte-side-projects::Erw\xE4hnte Side Projects||erwahnte-technologien::Erw\xE4\ hnte Technologien||anderes::Anderes||erwahnte-personen::Erw\xE4hnte Personen||hosts::Hosts" -image: /images/podcast/episode/02-technologienzoo-side-projects.jpg +image: ./02-technologienzoo-side-projects.jpg length_second: 2690 pubDate: 2022-01-10 15:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/03-over-engineering-das-werkzeug-des-teufels.jpg b/src/content/podcast/03-over-engineering-das-werkzeug-des-teufels.jpg similarity index 100% rename from public/images/podcast/episode/03-over-engineering-das-werkzeug-des-teufels.jpg rename to src/content/podcast/03-over-engineering-das-werkzeug-des-teufels.jpg diff --git a/src/content/podcast/03-over-engineering-das-werkzeug-des-teufels.md b/src/content/podcast/03-over-engineering-das-werkzeug-des-teufels.md index 812ded8a..688c75a4 100644 --- a/src/content/podcast/03-over-engineering-das-werkzeug-des-teufels.md +++ b/src/content/podcast/03-over-engineering-das-werkzeug-des-teufels.md @@ -62,7 +62,7 @@ description: "Was ist eigentlich Over-Engineering? Und wann ist es einfach nur g \ Wolfgang seine Kletterschuhe nach Tschechien sendet" google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YzI4MzgwODQtNDNlMy00Y2I2LTkwMTMtYTQ4MDQyOWI4NTQ3?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: sprungmarken::Sprungmarken||artikel::Artikel||konzepte::Konzepte||projekte::Projekte -image: /images/podcast/episode/03-over-engineering-das-werkzeug-des-teufels.jpg +image: ./03-over-engineering-das-werkzeug-des-teufels.jpg length_second: 3079 pubDate: 2022-01-18 10:50:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/04-lohnt-der-einstieg-in-open-source.jpg b/src/content/podcast/04-lohnt-der-einstieg-in-open-source.jpg similarity index 100% rename from public/images/podcast/episode/04-lohnt-der-einstieg-in-open-source.jpg rename to src/content/podcast/04-lohnt-der-einstieg-in-open-source.jpg diff --git a/src/content/podcast/04-lohnt-der-einstieg-in-open-source.md b/src/content/podcast/04-lohnt-der-einstieg-in-open-source.md index 9e413a81..525ec202 100644 --- a/src/content/podcast/04-lohnt-der-einstieg-in-open-source.md +++ b/src/content/podcast/04-lohnt-der-einstieg-in-open-source.md @@ -71,7 +71,7 @@ google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbG headlines: "sprungmarken::Sprungmarken||erwahnte-artikel::Erw\xE4hnte Artikel||erwahnte-personen::Erw\xE4\ hnte Personen||erwahnte-projekte::Erw\xE4hnte Projekte||erwahnte-events::Erw\xE4\ hnte Events||erwahnte-lizenzen::Erw\xE4hnte Lizenzen||hosts::Hosts" -image: /images/podcast/episode/04-lohnt-der-einstieg-in-open-source.jpg +image: ./04-lohnt-der-einstieg-in-open-source.jpg length_second: 3044 pubDate: 2022-01-25 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/05-team-lead-der-einzige-ausweg.jpg b/src/content/podcast/05-team-lead-der-einzige-ausweg.jpg similarity index 100% rename from public/images/podcast/episode/05-team-lead-der-einzige-ausweg.jpg rename to src/content/podcast/05-team-lead-der-einzige-ausweg.jpg diff --git a/src/content/podcast/05-team-lead-der-einzige-ausweg.md b/src/content/podcast/05-team-lead-der-einzige-ausweg.md index b7d1ea01..c68a8937 100644 --- a/src/content/podcast/05-team-lead-der-einzige-ausweg.md +++ b/src/content/podcast/05-team-lead-der-einzige-ausweg.md @@ -51,7 +51,7 @@ description: "Engineering Manager oder Team-Lead: Eine Position die sehr motivie google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NWY3ZmIxNzUtNDM4MS00ZGQ0LWEyMDctZDVlZjZjNjc5NzA2?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: "erwahnte-artikel::Erw\xE4hnte Artikel||bucher-uber-das-engineering-management::B\xFC\ cher \xFCber das Engineering Management||sprungmarken::Sprungmarken||hosts::Hosts" -image: /images/podcast/episode/05-team-lead-der-einzige-ausweg.jpg +image: ./05-team-lead-der-einzige-ausweg.jpg length_second: 2412 pubDate: 2022-02-01 10:05:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/06-hype-oder-hope-job-titel-und-bef\303\266rderungen.jpg" "b/src/content/podcast/06-hype-oder-hope-job-titel-und-bef\303\266rderungen.jpg" similarity index 100% rename from "public/images/podcast/episode/06-hype-oder-hope-job-titel-und-bef\303\266rderungen.jpg" rename to "src/content/podcast/06-hype-oder-hope-job-titel-und-bef\303\266rderungen.jpg" diff --git "a/src/content/podcast/06-hype-oder-hope-job-titel-und-bef\303\266rderungen.md" "b/src/content/podcast/06-hype-oder-hope-job-titel-und-bef\303\266rderungen.md" index 1542e076..7055423f 100644 --- "a/src/content/podcast/06-hype-oder-hope-job-titel-und-bef\303\266rderungen.md" +++ "b/src/content/podcast/06-hype-oder-hope-job-titel-und-bef\303\266rderungen.md" @@ -43,7 +43,7 @@ description: "Sind Machine Learning und Artificial Intelligence nur Hypes oder s \ hat." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ZWJkNDBlZDgtNWE5OC00OTIxLWE2YjItMWJmNmE2ODE4YjUx?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: "links::Links||erwahnte-personen::Erw\xE4hnte Personen||sprungmarken::Sprungmarken||hosts::Hosts" -image: "/images/podcast/episode/06-hype-oder-hope-job-titel-und-bef\xF6rderungen.jpg" +image: "./06-hype-oder-hope-job-titel-und-bef\xF6rderungen.jpg" length_second: 3133 pubDate: 2022-02-15 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/07-die-freelance-freiheit.jpg b/src/content/podcast/07-die-freelance-freiheit.jpg similarity index 100% rename from public/images/podcast/episode/07-die-freelance-freiheit.jpg rename to src/content/podcast/07-die-freelance-freiheit.jpg diff --git a/src/content/podcast/07-die-freelance-freiheit.md b/src/content/podcast/07-die-freelance-freiheit.md index 1d8378a5..ec45445e 100644 --- a/src/content/podcast/07-die-freelance-freiheit.md +++ b/src/content/podcast/07-die-freelance-freiheit.md @@ -64,7 +64,7 @@ description: "Sein eigener Chef zu sein, sich die Projekte aussuchen k\xF6nnen u \ beim Krafttraining im Fitnessstudio akquiriert hat, ohne selbst Gewichte zu stemmen." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MjZiMDkyOTktY2UwMS00ZWMwLTg0MDEtZjZkOGIyMzQ2MWVk?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||anderes::Anderes||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/07-die-freelance-freiheit.jpg +image: ./07-die-freelance-freiheit.jpg length_second: 3841 pubDate: 2022-02-22 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/08-vergiss-doch-datenbanken.jpg b/src/content/podcast/08-vergiss-doch-datenbanken.jpg similarity index 100% rename from public/images/podcast/episode/08-vergiss-doch-datenbanken.jpg rename to src/content/podcast/08-vergiss-doch-datenbanken.jpg diff --git a/src/content/podcast/08-vergiss-doch-datenbanken.md b/src/content/podcast/08-vergiss-doch-datenbanken.md index 4283cb40..0ec9f4f9 100644 --- a/src/content/podcast/08-vergiss-doch-datenbanken.md +++ b/src/content/podcast/08-vergiss-doch-datenbanken.md @@ -58,7 +58,7 @@ description: "Datenbanken, besonders relationale Datenbanken und im Web ganz bes \ Buchautor war." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NzBjYjE3YTktNjA3ZC00ZmFlLWI4YWQtY2QxZjA2M2NhZmRh?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: "links::Links||erwahnte-personen::Erw\xE4hnte Personen||sprungmarken::Sprungmarken||hosts::Hosts" -image: /images/podcast/episode/08-vergiss-doch-datenbanken.jpg +image: ./08-vergiss-doch-datenbanken.jpg length_second: 3167 pubDate: 2022-03-01 11:30:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/09-ukraine.jpg b/src/content/podcast/09-ukraine.jpg similarity index 100% rename from public/images/podcast/episode/09-ukraine.jpg rename to src/content/podcast/09-ukraine.jpg diff --git a/src/content/podcast/09-ukraine.md b/src/content/podcast/09-ukraine.md index dd88952d..1ada10e6 100644 --- a/src/content/podcast/09-ukraine.md +++ b/src/content/podcast/09-ukraine.md @@ -55,7 +55,7 @@ description: "Es wird politisch: Der Angriffskrieg auf die Ukraine und eine m\xF \ wir ein Projekt, das lustige Geschichten hinter Open-Source Projekten sammelt." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/Y2QyNDRiYjEtODdmNy00MjI2LTg1MmQtY2I2ZWNkNjQ4YjRj?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/09-ukraine.jpg +image: ./09-ukraine.jpg length_second: 2250 pubDate: 2022-03-08 10:55:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/10-das-karriere-booster-meeting-11s.jpg b/src/content/podcast/10-das-karriere-booster-meeting-11s.jpg similarity index 100% rename from public/images/podcast/episode/10-das-karriere-booster-meeting-11s.jpg rename to src/content/podcast/10-das-karriere-booster-meeting-11s.jpg diff --git a/src/content/podcast/10-das-karriere-booster-meeting-11s.md b/src/content/podcast/10-das-karriere-booster-meeting-11s.md index 1fba4d88..a049de5a 100644 --- a/src/content/podcast/10-das-karriere-booster-meeting-11s.md +++ b/src/content/podcast/10-das-karriere-booster-meeting-11s.md @@ -44,7 +44,7 @@ description: "1on1s - Zeitverschwendung oder eins der wertvollsten Meetings dein \ Andy abgebrochen hat." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YzgxNmY3NjAtYTYwYy00OTAyLTgwN2MtODgwYzNlZWEzMGNm?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/10-das-karriere-booster-meeting-11s.jpg +image: ./10-das-karriere-booster-meeting-11s.jpg length_second: 2756 pubDate: 2022-03-15 05:30:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/11-die-suche-nach-dem-it-traumjob.jpg b/src/content/podcast/11-die-suche-nach-dem-it-traumjob.jpg similarity index 100% rename from public/images/podcast/episode/11-die-suche-nach-dem-it-traumjob.jpg rename to src/content/podcast/11-die-suche-nach-dem-it-traumjob.jpg diff --git a/src/content/podcast/11-die-suche-nach-dem-it-traumjob.md b/src/content/podcast/11-die-suche-nach-dem-it-traumjob.md index fc549536..10bd0f8c 100644 --- a/src/content/podcast/11-die-suche-nach-dem-it-traumjob.md +++ b/src/content/podcast/11-die-suche-nach-dem-it-traumjob.md @@ -61,7 +61,7 @@ description: "Den richtigen Arbeitgeber und die richtige Firma finden: Eine Mamm \ zu tun hat und was ein Mottek ist." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MmZjNzUwNTYtZDEwZC00OTdiLTk2MTMtNDQ3ODI3Zjk1Nzg2?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/11-die-suche-nach-dem-it-traumjob.jpg +image: ./11-die-suche-nach-dem-it-traumjob.jpg length_second: 3531 pubDate: 2022-03-22 12:45:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/12-make-oder-buy.jpg b/src/content/podcast/12-make-oder-buy.jpg similarity index 100% rename from public/images/podcast/episode/12-make-oder-buy.jpg rename to src/content/podcast/12-make-oder-buy.jpg diff --git a/src/content/podcast/12-make-oder-buy.md b/src/content/podcast/12-make-oder-buy.md index 3186f56f..74bc8e3e 100644 --- a/src/content/podcast/12-make-oder-buy.md +++ b/src/content/podcast/12-make-oder-buy.md @@ -55,7 +55,7 @@ description: "Make oder Buy: Alles einkaufen oder doch lieber selber machen? Ein \ aus Wanne-Eickel hat und warum Wolfgang Google mehr vertraut als sich selber." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MWJiOThjNjMtZmFkYy00MzVhLWExZGYtYTExMjE5MzdkN2Ri?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/12-make-oder-buy.jpg +image: ./12-make-oder-buy.jpg length_second: 3583 pubDate: 2022-03-29 09:40:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/13-produktivit\303\244t.jpg" "b/src/content/podcast/13-produktivit\303\244t.jpg" similarity index 100% rename from "public/images/podcast/episode/13-produktivit\303\244t.jpg" rename to "src/content/podcast/13-produktivit\303\244t.jpg" diff --git "a/src/content/podcast/13-produktivit\303\244t.md" "b/src/content/podcast/13-produktivit\303\244t.md" index 0fe65dcd..ebc41bf9 100644 --- "a/src/content/podcast/13-produktivit\303\244t.md" +++ "b/src/content/podcast/13-produktivit\303\244t.md" @@ -50,7 +50,7 @@ description: "Zeit- und Produktivit\xE4tsmanagement: Buzzword-Bingo oder bringt \ tun hat und wieso Andy ab und zu knatsch mit seiner Frau hat." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MzMyYzRkZTYtNjc5OC00OGYyLTlkNDktZTNlZTdmMjZjN2Jh?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: "links::Links||bucher::B\xFCcher||sprungmarken::Sprungmarken||hosts::Hosts" -image: "/images/podcast/episode/13-produktivit\xE4t.jpg" +image: "./13-produktivit\xE4t.jpg" length_second: 3529 pubDate: 2022-04-05 04:25:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/14-async-und-await-asynchrones-arbeiten-im-alltag.jpg b/src/content/podcast/14-async-und-await-asynchrones-arbeiten-im-alltag.jpg similarity index 100% rename from public/images/podcast/episode/14-async-und-await-asynchrones-arbeiten-im-alltag.jpg rename to src/content/podcast/14-async-und-await-asynchrones-arbeiten-im-alltag.jpg diff --git a/src/content/podcast/14-async-und-await-asynchrones-arbeiten-im-alltag.md b/src/content/podcast/14-async-und-await-asynchrones-arbeiten-im-alltag.md index a9ec2c2e..c220bea5 100644 --- a/src/content/podcast/14-async-und-await-asynchrones-arbeiten-im-alltag.md +++ b/src/content/podcast/14-async-und-await-asynchrones-arbeiten-im-alltag.md @@ -53,7 +53,7 @@ description: "Remote-Work, asynchrone und parallele Arbeit und die eigene Work-L \ ist." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MWM3ZDY2YTYtZjg2YS00ZjdlLWJmYjktOTNhY2YyZjlkYmEz?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/14-async-und-await-asynchrones-arbeiten-im-alltag.jpg +image: ./14-async-und-await-asynchrones-arbeiten-im-alltag.jpg length_second: 3389 pubDate: 2022-04-12 04:30:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/15-source-code-kommentare-git-commits-messages-merge-commits-und-branch-visualisierungs-kunst.jpg b/src/content/podcast/15-source-code-kommentare-git-commits-messages-merge-commits-und-branch-visualisierungs-kunst.jpg similarity index 100% rename from public/images/podcast/episode/15-source-code-kommentare-git-commits-messages-merge-commits-und-branch-visualisierungs-kunst.jpg rename to src/content/podcast/15-source-code-kommentare-git-commits-messages-merge-commits-und-branch-visualisierungs-kunst.jpg diff --git a/src/content/podcast/15-source-code-kommentare-git-commits-messages-merge-commits-und-branch-visualisierungs-kunst.md b/src/content/podcast/15-source-code-kommentare-git-commits-messages-merge-commits-und-branch-visualisierungs-kunst.md index 56dc36b2..4538ea1e 100644 --- a/src/content/podcast/15-source-code-kommentare-git-commits-messages-merge-commits-und-branch-visualisierungs-kunst.md +++ b/src/content/podcast/15-source-code-kommentare-git-commits-messages-merge-commits-und-branch-visualisierungs-kunst.md @@ -71,7 +71,7 @@ description: "Kommentare im Quellcode und Git Commit Messages - Liest die \xFCbe \ und Wolfgang lieber seinen Code angreift, anstatt Ihn zu entwickeln." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/M2NhMGI4OWMtNzU0NS00MDNkLTg4NWQtZTk5ODFhNDYyYTll?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/15-source-code-kommentare-git-commits-messages-merge-commits-und-branch-visualisierungs-kunst.jpg +image: ./15-source-code-kommentare-git-commits-messages-merge-commits-und-branch-visualisierungs-kunst.jpg length_second: 3904 pubDate: 2022-04-19 04:30:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/16-code-reviews-n\303\274tzlich-oder-bremsen-nur-ein-gutes-team.jpg" "b/src/content/podcast/16-code-reviews-n\303\274tzlich-oder-bremsen-nur-ein-gutes-team.jpg" similarity index 100% rename from "public/images/podcast/episode/16-code-reviews-n\303\274tzlich-oder-bremsen-nur-ein-gutes-team.jpg" rename to "src/content/podcast/16-code-reviews-n\303\274tzlich-oder-bremsen-nur-ein-gutes-team.jpg" diff --git "a/src/content/podcast/16-code-reviews-n\303\274tzlich-oder-bremsen-nur-ein-gutes-team.md" "b/src/content/podcast/16-code-reviews-n\303\274tzlich-oder-bremsen-nur-ein-gutes-team.md" index fbd4fe10..3c80a2c1 100644 --- "a/src/content/podcast/16-code-reviews-n\303\274tzlich-oder-bremsen-nur-ein-gutes-team.md" +++ "b/src/content/podcast/16-code-reviews-n\303\274tzlich-oder-bremsen-nur-ein-gutes-team.md" @@ -74,7 +74,7 @@ description: "Code Reviews: Jeder will schnelles Feedback, doch niemand hat Zeit \ Blubberwasser den Charakter verdirbt." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/Y2MwYWY4MTUtNDhhZC00YjRhLThhYzgtYWRhMmQ1YWJkNzc5?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: "/images/podcast/episode/16-code-reviews-n\xFCtzlich-oder-bremsen-nur-ein-gutes-team.jpg" +image: "./16-code-reviews-n\xFCtzlich-oder-bremsen-nur-ein-gutes-team.jpg" length_second: 3543 pubDate: 2022-04-26 04:30:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/17-was-k\303\266nnen-wir-beim-incident-management-von-der-feuerwehr-lernen.jpg" "b/src/content/podcast/17-was-k\303\266nnen-wir-beim-incident-management-von-der-feuerwehr-lernen.jpg" similarity index 100% rename from "public/images/podcast/episode/17-was-k\303\266nnen-wir-beim-incident-management-von-der-feuerwehr-lernen.jpg" rename to "src/content/podcast/17-was-k\303\266nnen-wir-beim-incident-management-von-der-feuerwehr-lernen.jpg" diff --git "a/src/content/podcast/17-was-k\303\266nnen-wir-beim-incident-management-von-der-feuerwehr-lernen.md" "b/src/content/podcast/17-was-k\303\266nnen-wir-beim-incident-management-von-der-feuerwehr-lernen.md" index 2838a19a..2597609b 100644 --- "a/src/content/podcast/17-was-k\303\266nnen-wir-beim-incident-management-von-der-feuerwehr-lernen.md" +++ "b/src/content/podcast/17-was-k\303\266nnen-wir-beim-incident-management-von-der-feuerwehr-lernen.md" @@ -81,7 +81,7 @@ description: "Was haben die Methoden der Feuerwehr zur Bek\xE4mpfung von Gro\xDF fen damit zu tun haben und wieso Kaffee holen doch eine Strategie sein kann." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YjZlMDAyYTktZTBkNC00NzM2LTkyNzMtZDljOTAxMWQzOGRj?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: "/images/podcast/episode/17-was-k\xF6nnen-wir-beim-incident-management-von-der-feuerwehr-lernen.jpg" +image: "./17-was-k\xF6nnen-wir-beim-incident-management-von-der-feuerwehr-lernen.jpg" length_second: 4174 pubDate: 2022-05-03 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/18-ziele-und-performance-metriken-f\303\274r-teams-und-mich-selbst.jpg" "b/src/content/podcast/18-ziele-und-performance-metriken-f\303\274r-teams-und-mich-selbst.jpg" similarity index 100% rename from "public/images/podcast/episode/18-ziele-und-performance-metriken-f\303\274r-teams-und-mich-selbst.jpg" rename to "src/content/podcast/18-ziele-und-performance-metriken-f\303\274r-teams-und-mich-selbst.jpg" diff --git "a/src/content/podcast/18-ziele-und-performance-metriken-f\303\274r-teams-und-mich-selbst.md" "b/src/content/podcast/18-ziele-und-performance-metriken-f\303\274r-teams-und-mich-selbst.md" index 13989b01..5e662220 100644 --- "a/src/content/podcast/18-ziele-und-performance-metriken-f\303\274r-teams-und-mich-selbst.md" +++ "b/src/content/podcast/18-ziele-und-performance-metriken-f\303\274r-teams-und-mich-selbst.md" @@ -62,7 +62,7 @@ description: "Ziel-Definitionen und Mitarbeiter-Metriken: Sinnvoll oder totaler \ und das Sams mit der ganzen Sache zu tun hat." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YjU0NzFhNTAtYzRhMS00ZjZmLTk1NDQtMTBmMDUyYTFjYzk1?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: "/images/podcast/episode/18-ziele-und-performance-metriken-f\xFCr-teams-und-mich-selbst.jpg" +image: "./18-ziele-und-performance-metriken-f\xFCr-teams-und-mich-selbst.jpg" length_second: 4248 pubDate: 2022-05-10 04:30:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/19-datenbank-deepdive-oder-das-ende-einer-\303\244ra-von-redis-bis-clickhouse.jpg" "b/src/content/podcast/19-datenbank-deepdive-oder-das-ende-einer-\303\244ra-von-redis-bis-clickhouse.jpg" similarity index 100% rename from "public/images/podcast/episode/19-datenbank-deepdive-oder-das-ende-einer-\303\244ra-von-redis-bis-clickhouse.jpg" rename to "src/content/podcast/19-datenbank-deepdive-oder-das-ende-einer-\303\244ra-von-redis-bis-clickhouse.jpg" diff --git "a/src/content/podcast/19-datenbank-deepdive-oder-das-ende-einer-\303\244ra-von-redis-bis-clickhouse.md" "b/src/content/podcast/19-datenbank-deepdive-oder-das-ende-einer-\303\244ra-von-redis-bis-clickhouse.md" index 1c64a833..8e2e73bc 100644 --- "a/src/content/podcast/19-datenbank-deepdive-oder-das-ende-einer-\303\244ra-von-redis-bis-clickhouse.md" +++ "b/src/content/podcast/19-datenbank-deepdive-oder-das-ende-einer-\303\244ra-von-redis-bis-clickhouse.md" @@ -75,7 +75,7 @@ description: "Der zweite Datenbank-Deepdive im Engineering Kiosk. Indirekt kn\xF \ haben und warum MySQL ein besseres Adressbuch mit SQL Interface ist." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/OGIzZWIwNTYtMjVlMy00MWUzLTk0ZjMtZWZhNDAwOTdiNmZi?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: "/images/podcast/episode/19-datenbank-deepdive-oder-das-ende-einer-\xE4ra-von-redis-bis-clickhouse.jpg" +image: "./19-datenbank-deepdive-oder-das-ende-einer-\xE4ra-von-redis-bis-clickhouse.jpg" length_second: 3842 pubDate: 2022-05-17 04:30:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/20-off-boarding-und-on-boarding-wie-verlasse-ich-eine-firma-richtig.jpg b/src/content/podcast/20-off-boarding-und-on-boarding-wie-verlasse-ich-eine-firma-richtig.jpg similarity index 100% rename from public/images/podcast/episode/20-off-boarding-und-on-boarding-wie-verlasse-ich-eine-firma-richtig.jpg rename to src/content/podcast/20-off-boarding-und-on-boarding-wie-verlasse-ich-eine-firma-richtig.jpg diff --git a/src/content/podcast/20-off-boarding-und-on-boarding-wie-verlasse-ich-eine-firma-richtig.md b/src/content/podcast/20-off-boarding-und-on-boarding-wie-verlasse-ich-eine-firma-richtig.md index f2ef84f7..d6212221 100644 --- a/src/content/podcast/20-off-boarding-und-on-boarding-wie-verlasse-ich-eine-firma-richtig.md +++ b/src/content/podcast/20-off-boarding-und-on-boarding-wie-verlasse-ich-eine-firma-richtig.md @@ -49,7 +49,7 @@ description: "Firmenwechsel. K\xFCndigung ist raus. Wie gehts weiter? Offboardin \ was ein Weckmann mit dem Podcast zu tun hat." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NTQ3YTU0YjMtNTNlZC00NmExLTk2ODAtNGEwMTMxNDI3OTdm?sa=X&ved=0CAUQkfYCahcKEwi4xMSxj4L4AhUAAAAAHQAAAAAQNQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/20-off-boarding-und-on-boarding-wie-verlasse-ich-eine-firma-richtig.jpg +image: ./20-off-boarding-und-on-boarding-wie-verlasse-ich-eine-firma-richtig.jpg length_second: 4402 pubDate: 2022-05-24 04:30:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/21-static-site-generators-die-webseite.jpg b/src/content/podcast/21-static-site-generators-die-webseite.jpg similarity index 100% rename from public/images/podcast/episode/21-static-site-generators-die-webseite.jpg rename to src/content/podcast/21-static-site-generators-die-webseite.jpg diff --git a/src/content/podcast/21-static-site-generators-die-webseite.md b/src/content/podcast/21-static-site-generators-die-webseite.md index 7bfbd556..9f1d17ef 100644 --- a/src/content/podcast/21-static-site-generators-die-webseite.md +++ b/src/content/podcast/21-static-site-generators-die-webseite.md @@ -47,7 +47,7 @@ description: "Statische Websites sind wieder cool und wir springen mit der eigen \ \xD6sterreich so gut im Marketing ist." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/N2Q5NzExODItNWEwMi00ZDU5LWExOTgtODJhZWQzZDFiZGM4?sa=X&ved=0CAUQkfYCahcKEwi4xqzSkon4AhUAAAAAHQAAAAAQAg headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/21-static-site-generators-die-webseite.jpg +image: ./21-static-site-generators-die-webseite.jpg length_second: 3214 pubDate: 2022-05-31 04:35:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/22-nosql-acid-base-ende-einer-\303\244ra-teil-2.jpg" "b/src/content/podcast/22-nosql-acid-base-ende-einer-\303\244ra-teil-2.jpg" similarity index 100% rename from "public/images/podcast/episode/22-nosql-acid-base-ende-einer-\303\244ra-teil-2.jpg" rename to "src/content/podcast/22-nosql-acid-base-ende-einer-\303\244ra-teil-2.jpg" diff --git "a/src/content/podcast/22-nosql-acid-base-ende-einer-\303\244ra-teil-2.md" "b/src/content/podcast/22-nosql-acid-base-ende-einer-\303\244ra-teil-2.md" index 1254ce0d..1ed33efe 100644 --- "a/src/content/podcast/22-nosql-acid-base-ende-einer-\303\244ra-teil-2.md" +++ "b/src/content/podcast/22-nosql-acid-base-ende-einer-\303\244ra-teil-2.md" @@ -63,7 +63,7 @@ description: "Neben relationalen Datenbanken gibt es noch eine ganz andere Welt: \ f\xE4hrt." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MGE3YzM5ZjMtYmY1NC00Mjk5LWE4MTQtNTNhMjZmM2YwOTkw?sa=X&ved=2ahUKEwiKkL-Alrn4AhUXB0QIHdtQCXMQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: "/images/podcast/episode/22-nosql-acid-base-ende-einer-\xE4ra-teil-2.jpg" +image: "./22-nosql-acid-base-ende-einer-\xE4ra-teil-2.jpg" length_second: 3636 pubDate: 2022-06-07 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/23-schaltest-du-noch-oder-automatisiert-du-schon-home-automation.jpg b/src/content/podcast/23-schaltest-du-noch-oder-automatisiert-du-schon-home-automation.jpg similarity index 100% rename from public/images/podcast/episode/23-schaltest-du-noch-oder-automatisiert-du-schon-home-automation.jpg rename to src/content/podcast/23-schaltest-du-noch-oder-automatisiert-du-schon-home-automation.jpg diff --git a/src/content/podcast/23-schaltest-du-noch-oder-automatisiert-du-schon-home-automation.md b/src/content/podcast/23-schaltest-du-noch-oder-automatisiert-du-schon-home-automation.md index b6cffdea..eece747f 100644 --- a/src/content/podcast/23-schaltest-du-noch-oder-automatisiert-du-schon-home-automation.md +++ b/src/content/podcast/23-schaltest-du-noch-oder-automatisiert-du-schon-home-automation.md @@ -58,7 +58,7 @@ description: "Machst du noch selbst das Licht an oder automatisiert du schon? In \ durch ihre Wohnung rennen." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NDdiNDNmMjYtMzQ1Ni00YmMxLWIwZTAtZWMyOGE1ZWEwZmRl?sa=X&ved=2ahUKEwiKkL-Alrn4AhUXB0QIHdtQCXMQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/23-schaltest-du-noch-oder-automatisiert-du-schon-home-automation.jpg +image: ./23-schaltest-du-noch-oder-automatisiert-du-schon-home-automation.jpg length_second: 3812 pubDate: 2022-06-14 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/24-infrastructure-as-code-oder-old-man-yells-at-cloud.jpg b/src/content/podcast/24-infrastructure-as-code-oder-old-man-yells-at-cloud.jpg similarity index 100% rename from public/images/podcast/episode/24-infrastructure-as-code-oder-old-man-yells-at-cloud.jpg rename to src/content/podcast/24-infrastructure-as-code-oder-old-man-yells-at-cloud.jpg diff --git a/src/content/podcast/24-infrastructure-as-code-oder-old-man-yells-at-cloud.md b/src/content/podcast/24-infrastructure-as-code-oder-old-man-yells-at-cloud.md index 751f7762..bf01589a 100644 --- a/src/content/podcast/24-infrastructure-as-code-oder-old-man-yells-at-cloud.md +++ b/src/content/podcast/24-infrastructure-as-code-oder-old-man-yells-at-cloud.md @@ -55,7 +55,7 @@ description: "Old man yells at cloud - Oder: Wie managed man seine Infrastruktur \ Holz-Clogs tr\xE4gt und wie Deutschland mit dem 9\u20AC Ticket umgeht." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YTA5OWNlMmUtZjY4My00MWU0LWI5M2YtNTUzZDJmNjY2ZmY0?sa=X&ved=2ahUKEwjN_tn_9b34AhXnM1kFHQKtDH8QkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/24-infrastructure-as-code-oder-old-man-yells-at-cloud.jpg +image: ./24-infrastructure-as-code-oder-old-man-yells-at-cloud.jpg length_second: 3712 pubDate: 2022-06-21 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/25-tech-entlassungswellen-job-interview-skills.jpg b/src/content/podcast/25-tech-entlassungswellen-job-interview-skills.jpg similarity index 100% rename from public/images/podcast/episode/25-tech-entlassungswellen-job-interview-skills.jpg rename to src/content/podcast/25-tech-entlassungswellen-job-interview-skills.jpg diff --git a/src/content/podcast/25-tech-entlassungswellen-job-interview-skills.md b/src/content/podcast/25-tech-entlassungswellen-job-interview-skills.md index a9d6bc69..3e499fce 100644 --- a/src/content/podcast/25-tech-entlassungswellen-job-interview-skills.md +++ b/src/content/podcast/25-tech-entlassungswellen-job-interview-skills.md @@ -57,7 +57,7 @@ description: "Interviews als Bewerber zu f\xFChren ist nicht immer leicht. Oft h \ und Klettersteig gemeinsam haben." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YzdhNDA3ZjQtYWM3MS00ZjJkLTllOWMtOTUyMGU5NTdhMjYw?sa=X&ved=2ahUKEwjExMXrgtD4AhVJrnIEHekVANQQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/25-tech-entlassungswellen-job-interview-skills.jpg +image: ./25-tech-entlassungswellen-job-interview-skills.jpg length_second: 4376 pubDate: 2022-06-28 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/26-my-english-is-not-the-yellow-from-the-egg-arbeiten-in-internationalen-teams.jpg b/src/content/podcast/26-my-english-is-not-the-yellow-from-the-egg-arbeiten-in-internationalen-teams.jpg similarity index 100% rename from public/images/podcast/episode/26-my-english-is-not-the-yellow-from-the-egg-arbeiten-in-internationalen-teams.jpg rename to src/content/podcast/26-my-english-is-not-the-yellow-from-the-egg-arbeiten-in-internationalen-teams.jpg diff --git a/src/content/podcast/26-my-english-is-not-the-yellow-from-the-egg-arbeiten-in-internationalen-teams.md b/src/content/podcast/26-my-english-is-not-the-yellow-from-the-egg-arbeiten-in-internationalen-teams.md index 708b5c55..11ff8c00 100644 --- a/src/content/podcast/26-my-english-is-not-the-yellow-from-the-egg-arbeiten-in-internationalen-teams.md +++ b/src/content/podcast/26-my-english-is-not-the-yellow-from-the-egg-arbeiten-in-internationalen-teams.md @@ -61,7 +61,7 @@ description: "Der Gro\xDFteil der IT-Ressourcen wie Dokumentationen, Websites, P \ die Vertonung von Hollywood Filmen und schnelle deutsche ALDI Kassierer." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NjdmNDdhNDEtNGE2OC00ZGY3LWJkZWEtMjliZDg4ZTg2NDk3?sa=X&ved=2ahUKEwipgfnykOH4AhU1VTUKHcYQDHcQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: /images/podcast/episode/26-my-english-is-not-the-yellow-from-the-egg-arbeiten-in-internationalen-teams.jpg +image: ./26-my-english-is-not-the-yellow-from-the-egg-arbeiten-in-internationalen-teams.jpg length_second: 3970 pubDate: 2022-07-05 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/27-sicherheit-in-der-dependency-h\303\266lle.jpg" "b/src/content/podcast/27-sicherheit-in-der-dependency-h\303\266lle.jpg" similarity index 100% rename from "public/images/podcast/episode/27-sicherheit-in-der-dependency-h\303\266lle.jpg" rename to "src/content/podcast/27-sicherheit-in-der-dependency-h\303\266lle.jpg" diff --git "a/src/content/podcast/27-sicherheit-in-der-dependency-h\303\266lle.md" "b/src/content/podcast/27-sicherheit-in-der-dependency-h\303\266lle.md" index d3619c7a..5a4c6657 100644 --- "a/src/content/podcast/27-sicherheit-in-der-dependency-h\303\266lle.md" +++ "b/src/content/podcast/27-sicherheit-in-der-dependency-h\303\266lle.md" @@ -60,7 +60,7 @@ description: "Was haben die JavaScript Pakete left-pad, color, faker und cross-e google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NDVkOTA4NTItZmUyYi00MTkyLWI4OTctY2VlMWZjMGMxZjky?sa=X&ved=2ahUKEwig3e-E1PL4AhUmGVkFHYtJBAsQkfYCegQIARAF headlines: links::Links||weitere-nicht-behandelte-incidents::Weitere nicht behandelte Incidents||sprungmarken::Sprungmarken||hosts::Hosts -image: "/images/podcast/episode/27-sicherheit-in-der-dependency-h\xF6lle.jpg" +image: "./27-sicherheit-in-der-dependency-h\xF6lle.jpg" length_second: 3378 pubDate: 2022-07-12 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/28-o1-olog-n-on2-ist-die-komplexit\303\244t-von-algorithmen-im-entwickler-alltag-relevant.jpg" "b/src/content/podcast/28-o1-olog-n-on2-ist-die-komplexit\303\244t-von-algorithmen-im-entwickler-alltag-relevant.jpg" similarity index 100% rename from "public/images/podcast/episode/28-o1-olog-n-on2-ist-die-komplexit\303\244t-von-algorithmen-im-entwickler-alltag-relevant.jpg" rename to "src/content/podcast/28-o1-olog-n-on2-ist-die-komplexit\303\244t-von-algorithmen-im-entwickler-alltag-relevant.jpg" diff --git "a/src/content/podcast/28-o1-olog-n-on2-ist-die-komplexit\303\244t-von-algorithmen-im-entwickler-alltag-relevant.md" "b/src/content/podcast/28-o1-olog-n-on2-ist-die-komplexit\303\244t-von-algorithmen-im-entwickler-alltag-relevant.md" index f9b14af0..e9c77ff4 100644 --- "a/src/content/podcast/28-o1-olog-n-on2-ist-die-komplexit\303\244t-von-algorithmen-im-entwickler-alltag-relevant.md" +++ "b/src/content/podcast/28-o1-olog-n-on2-ist-die-komplexit\303\244t-von-algorithmen-im-entwickler-alltag-relevant.md" @@ -64,7 +64,7 @@ description: "Beim Programmieren ist alles ein Algorithmus. Irgendwie zumindest. \ zu tun haben." google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NWY4ZThjMGUtYzE2ZS00YzVlLWIxMmItMTNmZGY0YjI0YTM5?sa=X&ved=0CAUQkfYCahcKEwjw8_PxqoT5AhUAAAAAHQAAAAAQAQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts -image: "/images/podcast/episode/28-o1-olog-n-on2-ist-die-komplexit\xE4t-von-algorithmen-im-entwickler-alltag-relevant.jpg" +image: "./28-o1-olog-n-on2-ist-die-komplexit\xE4t-von-algorithmen-im-entwickler-alltag-relevant.jpg" length_second: 3333 pubDate: 2022-07-19 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/29-die-andere-seite-meetups-konferenzen-organisieren.jpg b/src/content/podcast/29-die-andere-seite-meetups-konferenzen-organisieren.jpg similarity index 100% rename from public/images/podcast/episode/29-die-andere-seite-meetups-konferenzen-organisieren.jpg rename to src/content/podcast/29-die-andere-seite-meetups-konferenzen-organisieren.jpg diff --git a/src/content/podcast/29-die-andere-seite-meetups-konferenzen-organisieren.md b/src/content/podcast/29-die-andere-seite-meetups-konferenzen-organisieren.md index 05062a56..11dc0236 100644 --- a/src/content/podcast/29-die-andere-seite-meetups-konferenzen-organisieren.md +++ b/src/content/podcast/29-die-andere-seite-meetups-konferenzen-organisieren.md @@ -71,7 +71,7 @@ description: "Meetups und Konferenzen: Ein wichtiger Bestandteil der Tech-Commun google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MzAwNzYwMGYtYjNkNS00NWRiLTg4YzItZDUwMWVmZjMyYjQx?sa=X&ved=2ahUKEwjFjIyQ75X5AhUun3IEHe8YA_kQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/29-die-andere-seite-meetups-konferenzen-organisieren.jpg +image: ./29-die-andere-seite-meetups-konferenzen-organisieren.jpg length_second: 4128 pubDate: 2022-07-26 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/30-ist-ein-informatikstudium-sinnvoll-welche-ausbildung-f\303\274r-devs.jpg" "b/src/content/podcast/30-ist-ein-informatikstudium-sinnvoll-welche-ausbildung-f\303\274r-devs.jpg" similarity index 100% rename from "public/images/podcast/episode/30-ist-ein-informatikstudium-sinnvoll-welche-ausbildung-f\303\274r-devs.jpg" rename to "src/content/podcast/30-ist-ein-informatikstudium-sinnvoll-welche-ausbildung-f\303\274r-devs.jpg" diff --git "a/src/content/podcast/30-ist-ein-informatikstudium-sinnvoll-welche-ausbildung-f\303\274r-devs.md" "b/src/content/podcast/30-ist-ein-informatikstudium-sinnvoll-welche-ausbildung-f\303\274r-devs.md" index 2a8cf78f..d1e82390 100644 --- "a/src/content/podcast/30-ist-ein-informatikstudium-sinnvoll-welche-ausbildung-f\303\274r-devs.md" +++ "b/src/content/podcast/30-ist-ein-informatikstudium-sinnvoll-welche-ausbildung-f\303\274r-devs.md" @@ -63,7 +63,7 @@ description: "Wie wichtig ist die Universit\xE4t und ein Studium f\xFCr den heut google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/M2Y5ZTJjN2ItOGYwZC00MTcwLWE4MGYtZTVkZmZkMjBlMzEw?sa=X&ved=0CAUQkfYCahcKEwiIjdzarrT5AhUAAAAAHQAAAAAQAQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/30-ist-ein-informatikstudium-sinnvoll-welche-ausbildung-f\xFC\ +image: "./30-ist-ein-informatikstudium-sinnvoll-welche-ausbildung-f\xFC\ r-devs.jpg" length_second: 3936 pubDate: 2022-08-02 04:00:00+00:00 diff --git "a/public/images/podcast/episode/31-ich-automatisiere-mir-die-welt-wie-sie-mir-gef\303\244llt-mit-github-actions.jpg" "b/src/content/podcast/31-ich-automatisiere-mir-die-welt-wie-sie-mir-gef\303\244llt-mit-github-actions.jpg" similarity index 100% rename from "public/images/podcast/episode/31-ich-automatisiere-mir-die-welt-wie-sie-mir-gef\303\244llt-mit-github-actions.jpg" rename to "src/content/podcast/31-ich-automatisiere-mir-die-welt-wie-sie-mir-gef\303\244llt-mit-github-actions.jpg" diff --git "a/src/content/podcast/31-ich-automatisiere-mir-die-welt-wie-sie-mir-gef\303\244llt-mit-github-actions.md" "b/src/content/podcast/31-ich-automatisiere-mir-die-welt-wie-sie-mir-gef\303\244llt-mit-github-actions.md" index 11830456..5f17180a 100644 --- "a/src/content/podcast/31-ich-automatisiere-mir-die-welt-wie-sie-mir-gef\303\244llt-mit-github-actions.md" +++ "b/src/content/podcast/31-ich-automatisiere-mir-die-welt-wie-sie-mir-gef\303\244llt-mit-github-actions.md" @@ -55,7 +55,7 @@ description: "Schuftest du noch oder automatisierst du schon? Heute gehts um die google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ZDY1OWIwOGUtYTgzNy00NGI0LWI4YTYtZWI2YTA2ZGFhMTAz?sa=X&ved=2ahUKEwjsjMXi7bz5AhXdnf0HHTHSB4YQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/31-ich-automatisiere-mir-die-welt-wie-sie-mir-gef\xE4\ +image: "./31-ich-automatisiere-mir-die-welt-wie-sie-mir-gef\xE4\ llt-mit-github-actions.jpg" length_second: 3675 pubDate: 2022-08-09 04:00:00+00:00 diff --git a/public/images/podcast/episode/32-die-richtigen-leute-anstellen-die-recruiting-pipeline.jpg b/src/content/podcast/32-die-richtigen-leute-anstellen-die-recruiting-pipeline.jpg similarity index 100% rename from public/images/podcast/episode/32-die-richtigen-leute-anstellen-die-recruiting-pipeline.jpg rename to src/content/podcast/32-die-richtigen-leute-anstellen-die-recruiting-pipeline.jpg diff --git a/src/content/podcast/32-die-richtigen-leute-anstellen-die-recruiting-pipeline.md b/src/content/podcast/32-die-richtigen-leute-anstellen-die-recruiting-pipeline.md index 32bac8fe..8ef32083 100644 --- a/src/content/podcast/32-die-richtigen-leute-anstellen-die-recruiting-pipeline.md +++ b/src/content/podcast/32-die-richtigen-leute-anstellen-die-recruiting-pipeline.md @@ -48,7 +48,7 @@ description: "Recruiting: Einer der wichtigsten Aufgaben einer Firma - Doch wora google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MWVmMzEwMWMtMWYzNi00NmQ1LTg1OTQtZWYyZTM5ODFmNWEz?sa=X&ved=2ahUKEwiyvMa20sr5AhWmkGoFHRKaARkQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/32-die-richtigen-leute-anstellen-die-recruiting-pipeline.jpg +image: ./32-die-richtigen-leute-anstellen-die-recruiting-pipeline.jpg length_second: 3868 pubDate: 2022-08-16 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/33-andy-im-team-lead-bewerbungsgespr\303\244ch.jpg" "b/src/content/podcast/33-andy-im-team-lead-bewerbungsgespr\303\244ch.jpg" similarity index 100% rename from "public/images/podcast/episode/33-andy-im-team-lead-bewerbungsgespr\303\244ch.jpg" rename to "src/content/podcast/33-andy-im-team-lead-bewerbungsgespr\303\244ch.jpg" diff --git "a/src/content/podcast/33-andy-im-team-lead-bewerbungsgespr\303\244ch.md" "b/src/content/podcast/33-andy-im-team-lead-bewerbungsgespr\303\244ch.md" index 53caec73..4d938c67 100644 --- "a/src/content/podcast/33-andy-im-team-lead-bewerbungsgespr\303\244ch.md" +++ "b/src/content/podcast/33-andy-im-team-lead-bewerbungsgespr\303\244ch.md" @@ -49,7 +49,7 @@ description: "Wie k\xF6nnen Engineering Manager und Tech-Lead-Interviews aussehe google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ODc2N2YwMDEtN2I5My00Yjc5LTk0MjktODQwNjM4NDk1MTNj?sa=X&ved=2ahUKEwiWrriyn9z5AhXwDUQIHSawDF0QkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/33-andy-im-team-lead-bewerbungsgespr\xE4ch.jpg" +image: "./33-andy-im-team-lead-bewerbungsgespr\xE4ch.jpg" length_second: 3654 pubDate: 2022-08-23 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/34-wie-cloudy-bist-du.jpg b/src/content/podcast/34-wie-cloudy-bist-du.jpg similarity index 100% rename from public/images/podcast/episode/34-wie-cloudy-bist-du.jpg rename to src/content/podcast/34-wie-cloudy-bist-du.jpg diff --git a/src/content/podcast/34-wie-cloudy-bist-du.md b/src/content/podcast/34-wie-cloudy-bist-du.md index f4401a62..7d83ac3b 100644 --- a/src/content/podcast/34-wie-cloudy-bist-du.md +++ b/src/content/podcast/34-wie-cloudy-bist-du.md @@ -51,7 +51,7 @@ description: "Die Cloud Native Infrastruktur vs. ein dicker Server - Ein Dauerst google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ZDMxNzY2YTUtMDhkMC00Nzk1LTgyZjctNWVhOWM2Zjk0NzY0?sa=X&ved=2ahUKEwje9pOf8O35AhUmrWoFHSSxDaEQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/34-wie-cloudy-bist-du.jpg +image: ./34-wie-cloudy-bist-du.jpg length_second: 2959 pubDate: 2022-08-30 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/35-knowledge-sharing-oder-die-person-die-nie-gehen-sollte.jpg b/src/content/podcast/35-knowledge-sharing-oder-die-person-die-nie-gehen-sollte.jpg similarity index 100% rename from public/images/podcast/episode/35-knowledge-sharing-oder-die-person-die-nie-gehen-sollte.jpg rename to src/content/podcast/35-knowledge-sharing-oder-die-person-die-nie-gehen-sollte.jpg diff --git a/src/content/podcast/35-knowledge-sharing-oder-die-person-die-nie-gehen-sollte.md b/src/content/podcast/35-knowledge-sharing-oder-die-person-die-nie-gehen-sollte.md index 786ad093..55034586 100644 --- a/src/content/podcast/35-knowledge-sharing-oder-die-person-die-nie-gehen-sollte.md +++ b/src/content/podcast/35-knowledge-sharing-oder-die-person-die-nie-gehen-sollte.md @@ -53,7 +53,7 @@ description: "Der Dauerbrenner in jedem Team: Wie bekommt man ordentliches Knowl google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NjBhNDQ3YTEtMTQ5YS00MmY5LWI0NTgtNzAyZGQ5Y2IxNDQw?sa=X&ved=2ahUKEwjeu6nktv_5AhWtn3IEHXvKDBcQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/35-knowledge-sharing-oder-die-person-die-nie-gehen-sollte.jpg +image: ./35-knowledge-sharing-oder-die-person-die-nie-gehen-sollte.jpg length_second: 3784 pubDate: 2022-09-06 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/36-sechs-stellige-it-geh\303\244lter-wie-was-wo-fair.jpg" "b/src/content/podcast/36-sechs-stellige-it-geh\303\244lter-wie-was-wo-fair.jpg" similarity index 100% rename from "public/images/podcast/episode/36-sechs-stellige-it-geh\303\244lter-wie-was-wo-fair.jpg" rename to "src/content/podcast/36-sechs-stellige-it-geh\303\244lter-wie-was-wo-fair.jpg" diff --git "a/src/content/podcast/36-sechs-stellige-it-geh\303\244lter-wie-was-wo-fair.md" "b/src/content/podcast/36-sechs-stellige-it-geh\303\244lter-wie-was-wo-fair.md" index a4877f8a..8218219d 100644 --- "a/src/content/podcast/36-sechs-stellige-it-geh\303\244lter-wie-was-wo-fair.md" +++ "b/src/content/podcast/36-sechs-stellige-it-geh\303\244lter-wie-was-wo-fair.md" @@ -47,7 +47,7 @@ description: "Geh\xE4lter als Software-Engineer: Wie sind diese aufgebaut? IT-Ge google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ODI0YWMyNjYtYmI4MS00NGJiLWJkNmItZGVjN2IzZGU0NDUz?sa=X&ved=2ahUKEwiC5vu3g5H6AhV2kI4IHSKiDQcQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/36-sechs-stellige-it-geh\xE4lter-wie-was-wo-fair.jpg" +image: "./36-sechs-stellige-it-geh\xE4lter-wie-was-wo-fair.jpg" length_second: 3255 pubDate: 2022-09-13 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/37-mit-it-b\303\274chern-geld-verdienen-wer-liest-\303\274berhaupt-noch-b\303\274cher.jpg" "b/src/content/podcast/37-mit-it-b\303\274chern-geld-verdienen-wer-liest-\303\274berhaupt-noch-b\303\274cher.jpg" similarity index 100% rename from "public/images/podcast/episode/37-mit-it-b\303\274chern-geld-verdienen-wer-liest-\303\274berhaupt-noch-b\303\274cher.jpg" rename to "src/content/podcast/37-mit-it-b\303\274chern-geld-verdienen-wer-liest-\303\274berhaupt-noch-b\303\274cher.jpg" diff --git "a/src/content/podcast/37-mit-it-b\303\274chern-geld-verdienen-wer-liest-\303\274berhaupt-noch-b\303\274cher.md" "b/src/content/podcast/37-mit-it-b\303\274chern-geld-verdienen-wer-liest-\303\274berhaupt-noch-b\303\274cher.md" index 5f753e99..3965740e 100644 --- "a/src/content/podcast/37-mit-it-b\303\274chern-geld-verdienen-wer-liest-\303\274berhaupt-noch-b\303\274cher.md" +++ "b/src/content/podcast/37-mit-it-b\303\274chern-geld-verdienen-wer-liest-\303\274berhaupt-noch-b\303\274cher.md" @@ -65,7 +65,7 @@ description: "Lohnt es sich ein IT-Fachbuch zu schreiben? Es gibt zu jeder Softw google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NGQxNDliMjQtYmMxNi00M2MzLWE3YTYtZWNmNWZjOThmOWUz?sa=X&ved=2ahUKEwiCtLnZz6L6AhUun3IEHSOHAdoQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/37-mit-it-b\xFCchern-geld-verdienen-wer-liest-\xFC\ +image: "./37-mit-it-b\xFCchern-geld-verdienen-wer-liest-\xFC\ berhaupt-noch-b\xFCcher.jpg" length_second: 3621 pubDate: 2022-09-20 04:00:00+00:00 diff --git a/public/images/podcast/episode/38-monitoring-metriken-tracing-alerting-observability.jpg b/src/content/podcast/38-monitoring-metriken-tracing-alerting-observability.jpg similarity index 100% rename from public/images/podcast/episode/38-monitoring-metriken-tracing-alerting-observability.jpg rename to src/content/podcast/38-monitoring-metriken-tracing-alerting-observability.jpg diff --git a/src/content/podcast/38-monitoring-metriken-tracing-alerting-observability.md b/src/content/podcast/38-monitoring-metriken-tracing-alerting-observability.md index 3702b1ff..43ecd495 100644 --- a/src/content/podcast/38-monitoring-metriken-tracing-alerting-observability.md +++ b/src/content/podcast/38-monitoring-metriken-tracing-alerting-observability.md @@ -49,7 +49,7 @@ description: "Wie w\xFCrde heutzutage ein moderner Logging, Metriken, Monitoring google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NDY1Y2FkN2MtMDI4NC00OWI1LWE0NWMtZmU4OGY3OTY1YjI4?sa=X&ved=2ahUKEwiSwdWPm7T6AhUxYzUKHRUoCgAQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/38-monitoring-metriken-tracing-alerting-observability.jpg +image: ./38-monitoring-metriken-tracing-alerting-observability.jpg length_second: 3350 pubDate: 2022-09-27 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/39-gemischte-t\303\274te-software-engineer-github-opensource-git-und-homeoffice.jpg" "b/src/content/podcast/39-gemischte-t\303\274te-software-engineer-github-opensource-git-und-homeoffice.jpg" similarity index 100% rename from "public/images/podcast/episode/39-gemischte-t\303\274te-software-engineer-github-opensource-git-und-homeoffice.jpg" rename to "src/content/podcast/39-gemischte-t\303\274te-software-engineer-github-opensource-git-und-homeoffice.jpg" diff --git "a/src/content/podcast/39-gemischte-t\303\274te-software-engineer-github-opensource-git-und-homeoffice.md" "b/src/content/podcast/39-gemischte-t\303\274te-software-engineer-github-opensource-git-und-homeoffice.md" index 608c5b38..470e62cb 100644 --- "a/src/content/podcast/39-gemischte-t\303\274te-software-engineer-github-opensource-git-und-homeoffice.md" +++ "b/src/content/podcast/39-gemischte-t\303\274te-software-engineer-github-opensource-git-und-homeoffice.md" @@ -31,7 +31,7 @@ description: "Ein neues Format: Die gemischte T\xFCte mit Software Engineers, Gi google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MDU0ZWY3NTAtMzVkYi00OGJkLThjYmYtZDUzMTVkMDBhNDA0?sa=X&ved=2ahUKEwif0-WG48X6AhVQrXIEHemqChQQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/39-gemischte-t\xFCte-software-engineer-github-opensource-git-und-homeoffice.jpg" +image: "./39-gemischte-t\xFCte-software-engineer-github-opensource-git-und-homeoffice.jpg" length_second: 2866 pubDate: 2022-10-04 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/40-wie-wird-man-und-frau-zum-senior-dev.jpg b/src/content/podcast/40-wie-wird-man-und-frau-zum-senior-dev.jpg similarity index 100% rename from public/images/podcast/episode/40-wie-wird-man-und-frau-zum-senior-dev.jpg rename to src/content/podcast/40-wie-wird-man-und-frau-zum-senior-dev.jpg diff --git a/src/content/podcast/40-wie-wird-man-und-frau-zum-senior-dev.md b/src/content/podcast/40-wie-wird-man-und-frau-zum-senior-dev.md index 17231299..36e07e7b 100644 --- a/src/content/podcast/40-wie-wird-man-und-frau-zum-senior-dev.md +++ b/src/content/podcast/40-wie-wird-man-und-frau-zum-senior-dev.md @@ -57,7 +57,7 @@ description: "Was ist eigentlich ein Senior Engineer und wie werde ich zu einem? google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MGYxMGNjMTktMDExNS00Njc4LThkYmMtOWMxYmRhYzM5MTQ2?sa=X&ved=2ahUKEwjJpJPctdf6AhUIrXIEHd9zDtgQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/40-wie-wird-man-und-frau-zum-senior-dev.jpg +image: ./40-wie-wird-man-und-frau-zum-senior-dev.jpg length_second: 2983 pubDate: 2022-10-11 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/41-sql-injections-ein-untersch\303\244tztes-risiko.jpg" "b/src/content/podcast/41-sql-injections-ein-untersch\303\244tztes-risiko.jpg" similarity index 100% rename from "public/images/podcast/episode/41-sql-injections-ein-untersch\303\244tztes-risiko.jpg" rename to "src/content/podcast/41-sql-injections-ein-untersch\303\244tztes-risiko.jpg" diff --git "a/src/content/podcast/41-sql-injections-ein-untersch\303\244tztes-risiko.md" "b/src/content/podcast/41-sql-injections-ein-untersch\303\244tztes-risiko.md" index 421e9400..ab2dace5 100644 --- "a/src/content/podcast/41-sql-injections-ein-untersch\303\244tztes-risiko.md" +++ "b/src/content/podcast/41-sql-injections-ein-untersch\303\244tztes-risiko.md" @@ -57,7 +57,7 @@ description: "SQL Injections: Eine der weitverbreitetsten Sicherheitsl\xFCcken i google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YzM1NDVhMmMtNzM2ZC00MzU0LTllZGItMThkNDg2MzBlZTA5?sa=X&ved=2ahUKEwiVlYfKhOn6AhUDsGoFHa6aAZ4QkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/41-sql-injections-ein-untersch\xE4tztes-risiko.jpg" +image: "./41-sql-injections-ein-untersch\xE4tztes-risiko.jpg" length_second: 4117 pubDate: 2022-10-18 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/42-lexer-parser-und-open-source-in-counterstrike.jpg b/src/content/podcast/42-lexer-parser-und-open-source-in-counterstrike.jpg similarity index 100% rename from public/images/podcast/episode/42-lexer-parser-und-open-source-in-counterstrike.jpg rename to src/content/podcast/42-lexer-parser-und-open-source-in-counterstrike.jpg diff --git a/src/content/podcast/42-lexer-parser-und-open-source-in-counterstrike.md b/src/content/podcast/42-lexer-parser-und-open-source-in-counterstrike.md index 2bb7ab56..0038e2cc 100644 --- a/src/content/podcast/42-lexer-parser-und-open-source-in-counterstrike.md +++ b/src/content/podcast/42-lexer-parser-und-open-source-in-counterstrike.md @@ -51,7 +51,7 @@ description: "Was haben Lexer, Parser und Counter-Strike gemeinsam? Richtig! Ein google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NTQwYWZkNGYtZGU5Yy00NTIzLWJlNjItZjE0ZDEyZTI0Mjdk?sa=X&ved=2ahUKEwierqGd0vr6AhVpFmIAHU0WCGYQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/42-lexer-parser-und-open-source-in-counterstrike.jpg +image: ./42-lexer-parser-und-open-source-in-counterstrike.jpg length_second: 3218 pubDate: 2022-10-25 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/43-cloud-vs-on-premise-die-entscheidungshilfe.jpg b/src/content/podcast/43-cloud-vs-on-premise-die-entscheidungshilfe.jpg similarity index 100% rename from public/images/podcast/episode/43-cloud-vs-on-premise-die-entscheidungshilfe.jpg rename to src/content/podcast/43-cloud-vs-on-premise-die-entscheidungshilfe.jpg diff --git a/src/content/podcast/43-cloud-vs-on-premise-die-entscheidungshilfe.md b/src/content/podcast/43-cloud-vs-on-premise-die-entscheidungshilfe.md index dbcfe291..07bd7ce8 100644 --- a/src/content/podcast/43-cloud-vs-on-premise-die-entscheidungshilfe.md +++ b/src/content/podcast/43-cloud-vs-on-premise-die-entscheidungshilfe.md @@ -51,7 +51,7 @@ description: "Wann ist die Cloud das richtige f\xFCr dich und deine Applikation? google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NTVhNjNjMzMtMzgzOS00ZGFhLWFiNjQtM2E1OTgzZDdjMGVm?sa=X&ved=2ahUKEwi8pdD3moz7AhUdrGoFHeTZB0sQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/43-cloud-vs-on-premise-die-entscheidungshilfe.jpg +image: ./43-cloud-vs-on-premise-die-entscheidungshilfe.jpg length_second: 4264 pubDate: 2022-11-01 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/44-der-weg-zum-hochperformanten-team.jpg b/src/content/podcast/44-der-weg-zum-hochperformanten-team.jpg similarity index 100% rename from public/images/podcast/episode/44-der-weg-zum-hochperformanten-team.jpg rename to src/content/podcast/44-der-weg-zum-hochperformanten-team.jpg diff --git a/src/content/podcast/44-der-weg-zum-hochperformanten-team.md b/src/content/podcast/44-der-weg-zum-hochperformanten-team.md index 3623146a..032447b0 100644 --- a/src/content/podcast/44-der-weg-zum-hochperformanten-team.md +++ b/src/content/podcast/44-der-weg-zum-hochperformanten-team.md @@ -52,7 +52,7 @@ description: "Psychologie, Team-Dynamiken und hochperformante Teams: Zuf\xE4llig google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MDk3NTFlNTUtZmI2Zi00ZjdiLTg5YjAtMjRkMWFlOTJiN2Ey?sa=X&ved=2ahUKEwi2zcDi9p37AhXCPlkFHcmSARYQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/44-der-weg-zum-hochperformanten-team.jpg +image: ./44-der-weg-zum-hochperformanten-team.jpg length_second: 3380 pubDate: 2022-11-08 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/45-datengetriebene-entscheidungen-und-der-perfekte-dashboard-stack.jpg b/src/content/podcast/45-datengetriebene-entscheidungen-und-der-perfekte-dashboard-stack.jpg similarity index 100% rename from public/images/podcast/episode/45-datengetriebene-entscheidungen-und-der-perfekte-dashboard-stack.jpg rename to src/content/podcast/45-datengetriebene-entscheidungen-und-der-perfekte-dashboard-stack.jpg diff --git a/src/content/podcast/45-datengetriebene-entscheidungen-und-der-perfekte-dashboard-stack.md b/src/content/podcast/45-datengetriebene-entscheidungen-und-der-perfekte-dashboard-stack.md index 9c13bd7d..0fa8169e 100644 --- a/src/content/podcast/45-datengetriebene-entscheidungen-und-der-perfekte-dashboard-stack.md +++ b/src/content/podcast/45-datengetriebene-entscheidungen-und-der-perfekte-dashboard-stack.md @@ -66,7 +66,7 @@ description: "Datengetriebene Entscheidungen oder auch \"Glaube keiner Statistik google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NmYwYjIzYmEtY2E3OS00MDQ0LTk2MjgtMmM0OGQwMjMxMzQw?sa=X&ved=2ahUKEwjH2ZOjyK_7AhVpUDUKHcDDAIMQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/45-datengetriebene-entscheidungen-und-der-perfekte-dashboard-stack.jpg +image: ./45-datengetriebene-entscheidungen-und-der-perfekte-dashboard-stack.jpg length_second: 3068 pubDate: 2022-11-15 05:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/46-welches-problem-l\303\266st-docker.jpg" "b/src/content/podcast/46-welches-problem-l\303\266st-docker.jpg" similarity index 100% rename from "public/images/podcast/episode/46-welches-problem-l\303\266st-docker.jpg" rename to "src/content/podcast/46-welches-problem-l\303\266st-docker.jpg" diff --git "a/src/content/podcast/46-welches-problem-l\303\266st-docker.md" "b/src/content/podcast/46-welches-problem-l\303\266st-docker.md" index 25772422..b054bd7b 100644 --- "a/src/content/podcast/46-welches-problem-l\303\266st-docker.md" +++ "b/src/content/podcast/46-welches-problem-l\303\266st-docker.md" @@ -49,7 +49,7 @@ description: "Docker und Container: Buzzwords der letzten Dekade - Doch was ist google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ODI4MTA2ZTgtYTM3OS00MDk5LWExZjAtNjU4NDQ0YWRlMWJk?sa=X&ved=2ahUKEwj85f3DksH7AhXdn3IEHYQ3BiEQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/46-welches-problem-l\xF6st-docker.jpg" +image: "./46-welches-problem-l\xF6st-docker.jpg" length_second: 3305 pubDate: 2022-11-22 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/47-wer-visionen-hat-soll-zum-arzt.jpg b/src/content/podcast/47-wer-visionen-hat-soll-zum-arzt.jpg similarity index 100% rename from public/images/podcast/episode/47-wer-visionen-hat-soll-zum-arzt.jpg rename to src/content/podcast/47-wer-visionen-hat-soll-zum-arzt.jpg diff --git a/src/content/podcast/47-wer-visionen-hat-soll-zum-arzt.md b/src/content/podcast/47-wer-visionen-hat-soll-zum-arzt.md index 031f3574..be65e9e9 100644 --- a/src/content/podcast/47-wer-visionen-hat-soll-zum-arzt.md +++ b/src/content/podcast/47-wer-visionen-hat-soll-zum-arzt.md @@ -64,7 +64,7 @@ description: "Eine Vision und Mission f\xFCr die Firma und das Team: Notwendig o google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/OGNmYTMzY2ItMjExZi00YjNjLWI1MTYtYzEwZGM1YWJkNWY4?sa=X&ved=2ahUKEwiWxvbRwtL7AhVGlY4IHej2AsYQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/47-wer-visionen-hat-soll-zum-arzt.jpg +image: ./47-wer-visionen-hat-soll-zum-arzt.jpg length_second: 2633 pubDate: 2022-11-29 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/48-der-layer-unter-docker-containerd-kubernetes-container-runtime-interface-cri-o-und-open-container-initiative-oci.jpg b/src/content/podcast/48-der-layer-unter-docker-containerd-kubernetes-container-runtime-interface-cri-o-und-open-container-initiative-oci.jpg similarity index 100% rename from public/images/podcast/episode/48-der-layer-unter-docker-containerd-kubernetes-container-runtime-interface-cri-o-und-open-container-initiative-oci.jpg rename to src/content/podcast/48-der-layer-unter-docker-containerd-kubernetes-container-runtime-interface-cri-o-und-open-container-initiative-oci.jpg diff --git a/src/content/podcast/48-der-layer-unter-docker-containerd-kubernetes-container-runtime-interface-cri-o-und-open-container-initiative-oci.md b/src/content/podcast/48-der-layer-unter-docker-containerd-kubernetes-container-runtime-interface-cri-o-und-open-container-initiative-oci.md index 5cd8dc56..b18c927f 100644 --- a/src/content/podcast/48-der-layer-unter-docker-containerd-kubernetes-container-runtime-interface-cri-o-und-open-container-initiative-oci.md +++ b/src/content/podcast/48-der-layer-unter-docker-containerd-kubernetes-container-runtime-interface-cri-o-und-open-container-initiative-oci.md @@ -53,7 +53,7 @@ description: "Wie sieht eigentlich der Layer unter Docker aus? Und wie interagie google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ZmUyODU1YmYtNTFiMS00NWZhLThkYWUtNDRmMTQ3MTZhNzBj?sa=X&ved=2ahUKEwjm0I7M1uT7AhVVjo4IHcWIABwQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/48-der-layer-unter-docker-containerd-kubernetes-container-runtime-interface-cri-o-und-open-container-initiative-oci.jpg +image: ./48-der-layer-unter-docker-containerd-kubernetes-container-runtime-interface-cri-o-und-open-container-initiative-oci.jpg length_second: 2264 pubDate: 2022-12-06 09:21:47+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/49-die-zukunft-software-repository-mining.jpg b/src/content/podcast/49-die-zukunft-software-repository-mining.jpg similarity index 100% rename from public/images/podcast/episode/49-die-zukunft-software-repository-mining.jpg rename to src/content/podcast/49-die-zukunft-software-repository-mining.jpg diff --git a/src/content/podcast/49-die-zukunft-software-repository-mining.md b/src/content/podcast/49-die-zukunft-software-repository-mining.md index 399933c4..e0ecaa0b 100644 --- a/src/content/podcast/49-die-zukunft-software-repository-mining.md +++ b/src/content/podcast/49-die-zukunft-software-repository-mining.md @@ -66,7 +66,7 @@ description: "Die Analyse von Metadaten aus dem Software-Entwicklungsprozess: Ye google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/Mjg4MzE1MmQtM2RjNi00YTc3LWE0YzUtN2IzYzhlNGMyYmIz?sa=X&ved=2ahUKEwj28c2x9fX7AhWjrGoFHaLLB6MQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/49-die-zukunft-software-repository-mining.jpg +image: ./49-die-zukunft-software-repository-mining.jpg length_second: 3295 pubDate: 2022-12-13 05:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/50-dei-erh\303\266ht-innovation-und-den-finanziellen-erfolg.jpg" "b/src/content/podcast/50-dei-erh\303\266ht-innovation-und-den-finanziellen-erfolg.jpg" similarity index 100% rename from "public/images/podcast/episode/50-dei-erh\303\266ht-innovation-und-den-finanziellen-erfolg.jpg" rename to "src/content/podcast/50-dei-erh\303\266ht-innovation-und-den-finanziellen-erfolg.jpg" diff --git "a/src/content/podcast/50-dei-erh\303\266ht-innovation-und-den-finanziellen-erfolg.md" "b/src/content/podcast/50-dei-erh\303\266ht-innovation-und-den-finanziellen-erfolg.md" index 99337ff6..251cb36b 100644 --- "a/src/content/podcast/50-dei-erh\303\266ht-innovation-und-den-finanziellen-erfolg.md" +++ "b/src/content/podcast/50-dei-erh\303\266ht-innovation-und-den-finanziellen-erfolg.md" @@ -56,7 +56,7 @@ description: "Diversity: Das Thema mit hoher Relevanz - Nicht nur in der Gesells google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NjkyM2Y1NTEtMjgwMC00N2NhLTlhMzctMWRlYjU3NjEyMDEx?sa=X&ved=2ahUKEwjz-rmZz4f8AhWCIGIAHYqeCqQQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/50-dei-erh\xF6ht-innovation-und-den-finanziellen-erfolg.jpg" +image: "./50-dei-erh\xF6ht-innovation-und-den-finanziellen-erfolg.jpg" length_second: 3450 pubDate: 2022-12-20 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/51-was-ist-das-staff-engineer-level.jpg b/src/content/podcast/51-was-ist-das-staff-engineer-level.jpg similarity index 100% rename from public/images/podcast/episode/51-was-ist-das-staff-engineer-level.jpg rename to src/content/podcast/51-was-ist-das-staff-engineer-level.jpg diff --git a/src/content/podcast/51-was-ist-das-staff-engineer-level.md b/src/content/podcast/51-was-ist-das-staff-engineer-level.md index 2015b9c9..cf4c88b8 100644 --- a/src/content/podcast/51-was-ist-das-staff-engineer-level.md +++ b/src/content/podcast/51-was-ist-das-staff-engineer-level.md @@ -58,7 +58,7 @@ description: "Was ist ein Staff-Engineer und wo ist der essentielle Unterschied google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/Yjc0NTM1ODctYTBkYS00OTg5LWJmNzYtM2QyNDg0OGEyYzhh?sa=X&ved=2ahUKEwjaoeXtr5n8AhWDFmIAHeULDX0QkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/51-was-ist-das-staff-engineer-level.jpg +image: ./51-was-ist-das-staff-engineer-level.jpg length_second: 3101 pubDate: 2022-12-27 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/52-asynchrone-verarbeitung-durch-message-queues-vor-und-nachteile.jpg b/src/content/podcast/52-asynchrone-verarbeitung-durch-message-queues-vor-und-nachteile.jpg similarity index 100% rename from public/images/podcast/episode/52-asynchrone-verarbeitung-durch-message-queues-vor-und-nachteile.jpg rename to src/content/podcast/52-asynchrone-verarbeitung-durch-message-queues-vor-und-nachteile.jpg diff --git a/src/content/podcast/52-asynchrone-verarbeitung-durch-message-queues-vor-und-nachteile.md b/src/content/podcast/52-asynchrone-verarbeitung-durch-message-queues-vor-und-nachteile.md index 39745efd..b943f1cd 100644 --- a/src/content/podcast/52-asynchrone-verarbeitung-durch-message-queues-vor-und-nachteile.md +++ b/src/content/podcast/52-asynchrone-verarbeitung-durch-message-queues-vor-und-nachteile.md @@ -59,7 +59,7 @@ description: "Asynchrone Verarbeitung durch Message Queues: Was ist das und wof\ google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YmQyZmVmZmUtMTdlNC00YzNhLTg1ZmItYjJhN2I5ZDlmNmU0?sa=X&ved=0CAUQkfYCahcKEwj49_v986r8AhUAAAAAHQAAAAAQAQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/52-asynchrone-verarbeitung-durch-message-queues-vor-und-nachteile.jpg +image: ./52-asynchrone-verarbeitung-durch-message-queues-vor-und-nachteile.jpg length_second: 3409 pubDate: 2023-01-03 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/53-cloud-nocode-ai-chatgpt-ersetzen-unsere-jobs.jpg b/src/content/podcast/53-cloud-nocode-ai-chatgpt-ersetzen-unsere-jobs.jpg similarity index 100% rename from public/images/podcast/episode/53-cloud-nocode-ai-chatgpt-ersetzen-unsere-jobs.jpg rename to src/content/podcast/53-cloud-nocode-ai-chatgpt-ersetzen-unsere-jobs.jpg diff --git a/src/content/podcast/53-cloud-nocode-ai-chatgpt-ersetzen-unsere-jobs.md b/src/content/podcast/53-cloud-nocode-ai-chatgpt-ersetzen-unsere-jobs.md index b66d6257..c509042e 100644 --- a/src/content/podcast/53-cloud-nocode-ai-chatgpt-ersetzen-unsere-jobs.md +++ b/src/content/podcast/53-cloud-nocode-ai-chatgpt-ersetzen-unsere-jobs.md @@ -32,7 +32,7 @@ description: "Werden Software-Engineers sich selbst durch neue Entwicklungen arb google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ZjU0M2JiMTYtMDExOS00OWU3LTk5YzctZTBiMjUwMDRjZjZl?sa=X&ved=2ahUKEwjYiJHrtrz8AhXwn3IEHTZ-B_AQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/53-cloud-nocode-ai-chatgpt-ersetzen-unsere-jobs.jpg +image: ./53-cloud-nocode-ai-chatgpt-ersetzen-unsere-jobs.jpg length_second: 3959 pubDate: 2023-01-10 05:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/54-key-value-store-redis-einsatzm\303\266glichkeiten-fallstricke-datenstrukturen-hyperloglog-und-fl\303\274chtige-persistenz.jpg" "b/src/content/podcast/54-key-value-store-redis-einsatzm\303\266glichkeiten-fallstricke-datenstrukturen-hyperloglog-und-fl\303\274chtige-persistenz.jpg" similarity index 100% rename from "public/images/podcast/episode/54-key-value-store-redis-einsatzm\303\266glichkeiten-fallstricke-datenstrukturen-hyperloglog-und-fl\303\274chtige-persistenz.jpg" rename to "src/content/podcast/54-key-value-store-redis-einsatzm\303\266glichkeiten-fallstricke-datenstrukturen-hyperloglog-und-fl\303\274chtige-persistenz.jpg" diff --git "a/src/content/podcast/54-key-value-store-redis-einsatzm\303\266glichkeiten-fallstricke-datenstrukturen-hyperloglog-und-fl\303\274chtige-persistenz.md" "b/src/content/podcast/54-key-value-store-redis-einsatzm\303\266glichkeiten-fallstricke-datenstrukturen-hyperloglog-und-fl\303\274chtige-persistenz.md" index e70e38b4..252bdb0e 100644 --- "a/src/content/podcast/54-key-value-store-redis-einsatzm\303\266glichkeiten-fallstricke-datenstrukturen-hyperloglog-und-fl\303\274chtige-persistenz.md" +++ "b/src/content/podcast/54-key-value-store-redis-einsatzm\303\266glichkeiten-fallstricke-datenstrukturen-hyperloglog-und-fl\303\274chtige-persistenz.md" @@ -64,7 +64,7 @@ description: "Redis - Der open source, in-memory data structure server Viele Sof google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/OGM2NmYzYWMtYzE0NS00ZGYxLThhNzUtY2Q2ZjIzNjgwMjI5?sa=X&ved=2ahUKEwjwvLCQi878AhUaunIEHcFQDCAQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/54-key-value-store-redis-einsatzm\xF6glichkeiten-fallstricke-datenstrukturen-hyperloglog-und-fl\xFC\ +image: "./54-key-value-store-redis-einsatzm\xF6glichkeiten-fallstricke-datenstrukturen-hyperloglog-und-fl\xFC\ chtige-persistenz.jpg" length_second: 3727 pubDate: 2023-01-17 05:00:00+00:00 diff --git a/public/images/podcast/episode/55-weiterbildung-zertifizierung-newsletter-konferenzen-wie-warum-und-wer-zahlt-das-ganze.jpg b/src/content/podcast/55-weiterbildung-zertifizierung-newsletter-konferenzen-wie-warum-und-wer-zahlt-das-ganze.jpg similarity index 100% rename from public/images/podcast/episode/55-weiterbildung-zertifizierung-newsletter-konferenzen-wie-warum-und-wer-zahlt-das-ganze.jpg rename to src/content/podcast/55-weiterbildung-zertifizierung-newsletter-konferenzen-wie-warum-und-wer-zahlt-das-ganze.jpg diff --git a/src/content/podcast/55-weiterbildung-zertifizierung-newsletter-konferenzen-wie-warum-und-wer-zahlt-das-ganze.md b/src/content/podcast/55-weiterbildung-zertifizierung-newsletter-konferenzen-wie-warum-und-wer-zahlt-das-ganze.md index 2dbf13ef..b010f1d5 100644 --- a/src/content/podcast/55-weiterbildung-zertifizierung-newsletter-konferenzen-wie-warum-und-wer-zahlt-das-ganze.md +++ b/src/content/podcast/55-weiterbildung-zertifizierung-newsletter-konferenzen-wie-warum-und-wer-zahlt-das-ganze.md @@ -43,7 +43,7 @@ description: "Wie notwendig ist Weiterbildung und welche M\xF6glichkeiten gibt e google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ZmEwYWYzNTgtMGZmNC00N2VmLThhYjktN2U5OTdlNzJmNzJl?sa=X&ved=2ahUKEwiszuCc4N_8AhUXElkFHfgqCeYQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/55-weiterbildung-zertifizierung-newsletter-konferenzen-wie-warum-und-wer-zahlt-das-ganze.jpg +image: ./55-weiterbildung-zertifizierung-newsletter-konferenzen-wie-warum-und-wer-zahlt-das-ganze.jpg length_second: 3621 pubDate: 2023-01-24 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/56-applikations-skalierung-wann-wieso-was-kostet-es-stateless-und-stateful-horizontal-vs-vertikal.jpg b/src/content/podcast/56-applikations-skalierung-wann-wieso-was-kostet-es-stateless-und-stateful-horizontal-vs-vertikal.jpg similarity index 100% rename from public/images/podcast/episode/56-applikations-skalierung-wann-wieso-was-kostet-es-stateless-und-stateful-horizontal-vs-vertikal.jpg rename to src/content/podcast/56-applikations-skalierung-wann-wieso-was-kostet-es-stateless-und-stateful-horizontal-vs-vertikal.jpg diff --git a/src/content/podcast/56-applikations-skalierung-wann-wieso-was-kostet-es-stateless-und-stateful-horizontal-vs-vertikal.md b/src/content/podcast/56-applikations-skalierung-wann-wieso-was-kostet-es-stateless-und-stateful-horizontal-vs-vertikal.md index 9d15f1fe..4d7d1415 100644 --- a/src/content/podcast/56-applikations-skalierung-wann-wieso-was-kostet-es-stateless-und-stateful-horizontal-vs-vertikal.md +++ b/src/content/podcast/56-applikations-skalierung-wann-wieso-was-kostet-es-stateless-und-stateful-horizontal-vs-vertikal.md @@ -46,7 +46,7 @@ description: "Die App muss skalieren. Das kann doch nicht so schwer sein, oder? google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ZjRlOWVkN2MtNTMzOC00MGZkLWE0YjItMDQwZTcyNDA3OTky?sa=X&ved=2ahUKEwjnsJ7JovH8AhVdI2IAHVs1DHkQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/56-applikations-skalierung-wann-wieso-was-kostet-es-stateless-und-stateful-horizontal-vs-vertikal.jpg +image: ./56-applikations-skalierung-wann-wieso-was-kostet-es-stateless-und-stateful-horizontal-vs-vertikal.jpg length_second: 3026 pubDate: 2023-01-31 05:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/57-servant-leadership-f\303\274hrungsstil-der-neuen-generation.jpg" "b/src/content/podcast/57-servant-leadership-f\303\274hrungsstil-der-neuen-generation.jpg" similarity index 100% rename from "public/images/podcast/episode/57-servant-leadership-f\303\274hrungsstil-der-neuen-generation.jpg" rename to "src/content/podcast/57-servant-leadership-f\303\274hrungsstil-der-neuen-generation.jpg" diff --git "a/src/content/podcast/57-servant-leadership-f\303\274hrungsstil-der-neuen-generation.md" "b/src/content/podcast/57-servant-leadership-f\303\274hrungsstil-der-neuen-generation.md" index 1783389e..93952056 100644 --- "a/src/content/podcast/57-servant-leadership-f\303\274hrungsstil-der-neuen-generation.md" +++ "b/src/content/podcast/57-servant-leadership-f\303\274hrungsstil-der-neuen-generation.md" @@ -52,7 +52,7 @@ description: "Servant Leadership, die dienende F\xFChrung: Hei\xDFe Luft oder ei google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ZDY4NTgzNmItNzBmMy00N2YzLWJlYTAtODUyYzNlY2MzNDA5?sa=X&ved=2ahUKEwjRvbGD-4L9AhW3j44IHTRKBiwQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/57-servant-leadership-f\xFChrungsstil-der-neuen-generation.jpg" +image: "./57-servant-leadership-f\xFChrungsstil-der-neuen-generation.jpg" length_second: 3462 pubDate: 2023-02-07 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/58-software-updates-alte-software-long-term-support-und-end-of-life-dates.jpg b/src/content/podcast/58-software-updates-alte-software-long-term-support-und-end-of-life-dates.jpg similarity index 100% rename from public/images/podcast/episode/58-software-updates-alte-software-long-term-support-und-end-of-life-dates.jpg rename to src/content/podcast/58-software-updates-alte-software-long-term-support-und-end-of-life-dates.jpg diff --git a/src/content/podcast/58-software-updates-alte-software-long-term-support-und-end-of-life-dates.md b/src/content/podcast/58-software-updates-alte-software-long-term-support-und-end-of-life-dates.md index 8aeda3f8..7d17a98d 100644 --- a/src/content/podcast/58-software-updates-alte-software-long-term-support-und-end-of-life-dates.md +++ b/src/content/podcast/58-software-updates-alte-software-long-term-support-und-end-of-life-dates.md @@ -52,7 +52,7 @@ description: "Alte Software akzeptieren oder lieber jedem Update hinterherjagen? google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/M2M4YmIxYmEtNmFjNi00ZWE5LWIzNzUtOTM1NTAxM2FjOTE4?sa=X&ved=2ahUKEwis0vGZzpT9AhW0CVkFHQrTAeoQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/58-software-updates-alte-software-long-term-support-und-end-of-life-dates.jpg +image: ./58-software-updates-alte-software-long-term-support-und-end-of-life-dates.jpg length_second: 3399 pubDate: 2023-02-14 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/59-kann-man-mit-open-source-geld-verdienen.jpg b/src/content/podcast/59-kann-man-mit-open-source-geld-verdienen.jpg similarity index 100% rename from public/images/podcast/episode/59-kann-man-mit-open-source-geld-verdienen.jpg rename to src/content/podcast/59-kann-man-mit-open-source-geld-verdienen.jpg diff --git a/src/content/podcast/59-kann-man-mit-open-source-geld-verdienen.md b/src/content/podcast/59-kann-man-mit-open-source-geld-verdienen.md index fea7a5ce..60f768a1 100644 --- a/src/content/podcast/59-kann-man-mit-open-source-geld-verdienen.md +++ b/src/content/podcast/59-kann-man-mit-open-source-geld-verdienen.md @@ -52,7 +52,7 @@ description: "Finanzierung von Open-Source-Projekten ist essentiell - Doch welch google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MDU1ZGQ2N2UtOTljMi00OWY3LWIzMzMtOWUxYTY4OWQ3OTAx?sa=X&ved=2ahUKEwj26fDEkqb9AhV2Et4AHeIwASoQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/59-kann-man-mit-open-source-geld-verdienen.jpg +image: ./59-kann-man-mit-open-source-geld-verdienen.jpg length_second: 3251 pubDate: 2023-02-21 05:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/60-on-call-warum-auch-software-engineers-auf-rufbereitschaft-sein-sollten.jpg b/src/content/podcast/60-on-call-warum-auch-software-engineers-auf-rufbereitschaft-sein-sollten.jpg similarity index 100% rename from public/images/podcast/episode/60-on-call-warum-auch-software-engineers-auf-rufbereitschaft-sein-sollten.jpg rename to src/content/podcast/60-on-call-warum-auch-software-engineers-auf-rufbereitschaft-sein-sollten.jpg diff --git a/src/content/podcast/60-on-call-warum-auch-software-engineers-auf-rufbereitschaft-sein-sollten.md b/src/content/podcast/60-on-call-warum-auch-software-engineers-auf-rufbereitschaft-sein-sollten.md index 7cdaea1b..4a1433ad 100644 --- a/src/content/podcast/60-on-call-warum-auch-software-engineers-auf-rufbereitschaft-sein-sollten.md +++ b/src/content/podcast/60-on-call-warum-auch-software-engineers-auf-rufbereitschaft-sein-sollten.md @@ -60,7 +60,7 @@ description: "On-Call bzw. Rufbereitschaft: Eine ewige Hass-Liebe? Software-Engi google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/OGFhMTI2ZjQtNWI1MS00ODcxLTlkNDQtMmU4YWJiYzc3NDBm?sa=X&ved=0CAUQkfYCahcKEwjYjoi1z7r9AhUAAAAAHQAAAAAQAQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/60-on-call-warum-auch-software-engineers-auf-rufbereitschaft-sein-sollten.jpg +image: ./60-on-call-warum-auch-software-engineers-auf-rufbereitschaft-sein-sollten.jpg length_second: 3571 pubDate: 2023-02-28 05:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/61-schwierige-1-on-1-situationen-und-l\303\266sungsvorschl\303\244ge.jpg" "b/src/content/podcast/61-schwierige-1-on-1-situationen-und-l\303\266sungsvorschl\303\244ge.jpg" similarity index 100% rename from "public/images/podcast/episode/61-schwierige-1-on-1-situationen-und-l\303\266sungsvorschl\303\244ge.jpg" rename to "src/content/podcast/61-schwierige-1-on-1-situationen-und-l\303\266sungsvorschl\303\244ge.jpg" diff --git "a/src/content/podcast/61-schwierige-1-on-1-situationen-und-l\303\266sungsvorschl\303\244ge.md" "b/src/content/podcast/61-schwierige-1-on-1-situationen-und-l\303\266sungsvorschl\303\244ge.md" index 290d3155..be34409a 100644 --- "a/src/content/podcast/61-schwierige-1-on-1-situationen-und-l\303\266sungsvorschl\303\244ge.md" +++ "b/src/content/podcast/61-schwierige-1-on-1-situationen-und-l\303\266sungsvorschl\303\244ge.md" @@ -60,7 +60,7 @@ google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbG headlines: links::Links||beispiel-fragen-zur-1on1-bestandsaufnahme::Beispiel-Fragen zur 1on1 Bestandsaufnahme||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/61-schwierige-1-on-1-situationen-und-l\xF6sungsvorschl\xE4\ +image: "./61-schwierige-1-on-1-situationen-und-l\xF6sungsvorschl\xE4\ ge.jpg" length_second: 3331 pubDate: 2023-03-07 05:00:00+00:00 diff --git a/public/images/podcast/episode/62-technologien-konsolidieren-oder-wie-startups-sammeln.jpg b/src/content/podcast/62-technologien-konsolidieren-oder-wie-startups-sammeln.jpg similarity index 100% rename from public/images/podcast/episode/62-technologien-konsolidieren-oder-wie-startups-sammeln.jpg rename to src/content/podcast/62-technologien-konsolidieren-oder-wie-startups-sammeln.jpg diff --git a/src/content/podcast/62-technologien-konsolidieren-oder-wie-startups-sammeln.md b/src/content/podcast/62-technologien-konsolidieren-oder-wie-startups-sammeln.md index 9c221620..bcc02e4c 100644 --- a/src/content/podcast/62-technologien-konsolidieren-oder-wie-startups-sammeln.md +++ b/src/content/podcast/62-technologien-konsolidieren-oder-wie-startups-sammeln.md @@ -51,7 +51,7 @@ description: "Was ist der richtige Ansatz? Ein Stack f\xFCr die ganze Firma oder google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MDUzMDAxOWEtZWFlNS00OGQ2LWJjNzQtNjMyZjRhMTU2Y2Ex?sa=X&ved=2ahUKEwiEuPeMgdv9AhX4GVkFHcxFB90QkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/62-technologien-konsolidieren-oder-wie-startups-sammeln.jpg +image: ./62-technologien-konsolidieren-oder-wie-startups-sammeln.jpg length_second: 4100 pubDate: 2023-03-14 05:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/63-spa\303\237-mit-zahlen-under-und-overflows-r\303\274ckw\303\244rtslaufende-zeit-negative-modulos-und-w\303\244hrungsbetr\303\244ge.jpg" "b/src/content/podcast/63-spa\303\237-mit-zahlen-under-und-overflows-r\303\274ckw\303\244rtslaufende-zeit-negative-modulos-und-w\303\244hrungsbetr\303\244ge.jpg" similarity index 100% rename from "public/images/podcast/episode/63-spa\303\237-mit-zahlen-under-und-overflows-r\303\274ckw\303\244rtslaufende-zeit-negative-modulos-und-w\303\244hrungsbetr\303\244ge.jpg" rename to "src/content/podcast/63-spa\303\237-mit-zahlen-under-und-overflows-r\303\274ckw\303\244rtslaufende-zeit-negative-modulos-und-w\303\244hrungsbetr\303\244ge.jpg" diff --git "a/src/content/podcast/63-spa\303\237-mit-zahlen-under-und-overflows-r\303\274ckw\303\244rtslaufende-zeit-negative-modulos-und-w\303\244hrungsbetr\303\244ge.md" "b/src/content/podcast/63-spa\303\237-mit-zahlen-under-und-overflows-r\303\274ckw\303\244rtslaufende-zeit-negative-modulos-und-w\303\244hrungsbetr\303\244ge.md" index 0f0bf75d..4db682f0 100644 --- "a/src/content/podcast/63-spa\303\237-mit-zahlen-under-und-overflows-r\303\274ckw\303\244rtslaufende-zeit-negative-modulos-und-w\303\244hrungsbetr\303\244ge.md" +++ "b/src/content/podcast/63-spa\303\237-mit-zahlen-under-und-overflows-r\303\274ckw\303\244rtslaufende-zeit-negative-modulos-und-w\303\244hrungsbetr\303\244ge.md" @@ -52,7 +52,7 @@ description: "Herausforderungen mit Zahlen in der Programmierung: Hidden bugs, E google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MTMyOTE1OTUtYjI4NS00MzdiLWJkNjMtMjRjMjc3ZDM3ZWQ3?sa=X&ved=2ahUKEwi87Lylk-z9AhUez8kDHdtdAYQQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/63-spa\xDF-mit-zahlen-under-und-overflows-r\xFCckw\xE4\ +image: "./63-spa\xDF-mit-zahlen-under-und-overflows-r\xFCckw\xE4\ rtslaufende-zeit-negative-modulos-und-w\xE4hrungsbetr\xE4ge.jpg" length_second: 3667 pubDate: 2023-03-21 04:00:00+00:00 diff --git a/public/images/podcast/episode/64-infrastruktur-bingo-forward-reverse-socks-proxy-load-balancing-und-gibt-es-einen-unterschied-zwischen-load-balancer-und-reverse-proxy.jpg b/src/content/podcast/64-infrastruktur-bingo-forward-reverse-socks-proxy-load-balancing-und-gibt-es-einen-unterschied-zwischen-load-balancer-und-reverse-proxy.jpg similarity index 100% rename from public/images/podcast/episode/64-infrastruktur-bingo-forward-reverse-socks-proxy-load-balancing-und-gibt-es-einen-unterschied-zwischen-load-balancer-und-reverse-proxy.jpg rename to src/content/podcast/64-infrastruktur-bingo-forward-reverse-socks-proxy-load-balancing-und-gibt-es-einen-unterschied-zwischen-load-balancer-und-reverse-proxy.jpg diff --git a/src/content/podcast/64-infrastruktur-bingo-forward-reverse-socks-proxy-load-balancing-und-gibt-es-einen-unterschied-zwischen-load-balancer-und-reverse-proxy.md b/src/content/podcast/64-infrastruktur-bingo-forward-reverse-socks-proxy-load-balancing-und-gibt-es-einen-unterschied-zwischen-load-balancer-und-reverse-proxy.md index 4ab2ad73..64420d1a 100644 --- a/src/content/podcast/64-infrastruktur-bingo-forward-reverse-socks-proxy-load-balancing-und-gibt-es-einen-unterschied-zwischen-load-balancer-und-reverse-proxy.md +++ b/src/content/podcast/64-infrastruktur-bingo-forward-reverse-socks-proxy-load-balancing-und-gibt-es-einen-unterschied-zwischen-load-balancer-und-reverse-proxy.md @@ -53,7 +53,7 @@ description: "Forward-Proxy, Reverse-Proxy, Bastion-Host, Load Balancer, SOCKS5- google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NmM3Yzg4ZTktMWIyYi00ZDQwLTkxNTktN2Q0ZjE3MGY3MzIw?sa=X&ved=2ahUKEwidtN6t4P39AhU6vWoFHaxxDj8QkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/64-infrastruktur-bingo-forward-reverse-socks-proxy-load-balancing-und-gibt-es-einen-unterschied-zwischen-load-balancer-und-reverse-proxy.jpg +image: ./64-infrastruktur-bingo-forward-reverse-socks-proxy-load-balancing-und-gibt-es-einen-unterschied-zwischen-load-balancer-und-reverse-proxy.jpg length_second: 3417 pubDate: 2023-03-28 03:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/65-clean-code-macht-software-langsam.jpg b/src/content/podcast/65-clean-code-macht-software-langsam.jpg similarity index 100% rename from public/images/podcast/episode/65-clean-code-macht-software-langsam.jpg rename to src/content/podcast/65-clean-code-macht-software-langsam.jpg diff --git a/src/content/podcast/65-clean-code-macht-software-langsam.md b/src/content/podcast/65-clean-code-macht-software-langsam.md index ed0afd4a..9a451673 100644 --- a/src/content/podcast/65-clean-code-macht-software-langsam.md +++ b/src/content/podcast/65-clean-code-macht-software-langsam.md @@ -52,7 +52,7 @@ description: "Zerst\xF6rt die Anwendung von Clean Code die Performance deiner Ap google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YjBmOWE1M2QtNjQyMS00OWNhLWIwNDItYjk1N2MwZTAyNDU0?sa=X&ved=2ahUKEwiMuKihrY_-AhVtB1kFHZcbAhMQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/65-clean-code-macht-software-langsam.jpg +image: ./65-clean-code-macht-software-langsam.jpg length_second: 3357 pubDate: 2023-04-04 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/66-stressfreie-produktivit\303\244t-in-der-hektischen-welt-mit-getting-things-done.jpg" "b/src/content/podcast/66-stressfreie-produktivit\303\244t-in-der-hektischen-welt-mit-getting-things-done.jpg" similarity index 100% rename from "public/images/podcast/episode/66-stressfreie-produktivit\303\244t-in-der-hektischen-welt-mit-getting-things-done.jpg" rename to "src/content/podcast/66-stressfreie-produktivit\303\244t-in-der-hektischen-welt-mit-getting-things-done.jpg" diff --git "a/src/content/podcast/66-stressfreie-produktivit\303\244t-in-der-hektischen-welt-mit-getting-things-done.md" "b/src/content/podcast/66-stressfreie-produktivit\303\244t-in-der-hektischen-welt-mit-getting-things-done.md" index df648dcf..53c84407 100644 --- "a/src/content/podcast/66-stressfreie-produktivit\303\244t-in-der-hektischen-welt-mit-getting-things-done.md" +++ "b/src/content/podcast/66-stressfreie-produktivit\303\244t-in-der-hektischen-welt-mit-getting-things-done.md" @@ -45,7 +45,7 @@ description: "Muss man immer um 5 Uhr morgens aufstehen, um heutzutage produktiv google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YjM2MDYyNTMtZDEzMi00MzYzLTg0N2ItNzZmOGJmNzZmZmZj?sa=X&ved=2ahUKEwi3xL-h-qD-AhVsJGIAHb7NARkQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/66-stressfreie-produktivit\xE4t-in-der-hektischen-welt-mit-getting-things-done.jpg" +image: "./66-stressfreie-produktivit\xE4t-in-der-hektischen-welt-mit-getting-things-done.jpg" length_second: 3660 pubDate: 2023-04-11 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/67-die-netz-entlastung-des-internets-content-delivery-networks-cdns.jpg b/src/content/podcast/67-die-netz-entlastung-des-internets-content-delivery-networks-cdns.jpg similarity index 100% rename from public/images/podcast/episode/67-die-netz-entlastung-des-internets-content-delivery-networks-cdns.jpg rename to src/content/podcast/67-die-netz-entlastung-des-internets-content-delivery-networks-cdns.jpg diff --git a/src/content/podcast/67-die-netz-entlastung-des-internets-content-delivery-networks-cdns.md b/src/content/podcast/67-die-netz-entlastung-des-internets-content-delivery-networks-cdns.md index df82bf7d..3ed9e0c3 100644 --- a/src/content/podcast/67-die-netz-entlastung-des-internets-content-delivery-networks-cdns.md +++ b/src/content/podcast/67-die-netz-entlastung-des-internets-content-delivery-networks-cdns.md @@ -58,7 +58,7 @@ description: "Content Delivery Networks (CDNs): Die Netz-Entlastung des Internet google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NTA0N2NlYjQtMGZhOS00YmJmLWIyMGQtOWIzNzY3MTgwYzdh?sa=X&ved=2ahUKEwiDoJC0x7L-AhX01ckDHQcABYEQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/67-die-netz-entlastung-des-internets-content-delivery-networks-cdns.jpg +image: ./67-die-netz-entlastung-des-internets-content-delivery-networks-cdns.jpg length_second: 4002 pubDate: 2023-04-18 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/68-im-flow-und-deepwork-mit-kirill-sivy.jpg b/src/content/podcast/68-im-flow-und-deepwork-mit-kirill-sivy.jpg similarity index 100% rename from public/images/podcast/episode/68-im-flow-und-deepwork-mit-kirill-sivy.jpg rename to src/content/podcast/68-im-flow-und-deepwork-mit-kirill-sivy.jpg diff --git a/src/content/podcast/68-im-flow-und-deepwork-mit-kirill-sivy.md b/src/content/podcast/68-im-flow-und-deepwork-mit-kirill-sivy.md index 226275dd..1f184cb5 100644 --- a/src/content/podcast/68-im-flow-und-deepwork-mit-kirill-sivy.md +++ b/src/content/podcast/68-im-flow-und-deepwork-mit-kirill-sivy.md @@ -60,7 +60,7 @@ description: "Der Flow, der Tunnel, die Zone - Der Zustand nach dem viele Softwa google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ZmJiYTE0Y2MtOTMxNi00MjZiLWI3NGUtMTUwMTcwNTk0NDg3?sa=X&ved=2ahUKEwi3iOm6tsT-AhVhrmoFHbGtA_QQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/68-im-flow-und-deepwork-mit-kirill-sivy.jpg +image: ./68-im-flow-und-deepwork-mit-kirill-sivy.jpg length_second: 4178 pubDate: 2023-04-25 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/69-mysql-vs-mariadb.jpg b/src/content/podcast/69-mysql-vs-mariadb.jpg similarity index 100% rename from public/images/podcast/episode/69-mysql-vs-mariadb.jpg rename to src/content/podcast/69-mysql-vs-mariadb.jpg diff --git a/src/content/podcast/69-mysql-vs-mariadb.md b/src/content/podcast/69-mysql-vs-mariadb.md index 9d544b8d..6f129c29 100644 --- a/src/content/podcast/69-mysql-vs-mariadb.md +++ b/src/content/podcast/69-mysql-vs-mariadb.md @@ -56,7 +56,7 @@ description: "Wie viel MySQL Drop In-Replacement steckt wirklich in MariaDB? Mar google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MWFhMWQzYzgtOTM0Ny00N2Y2LTk1MjUtZDVlNjU5ZWQyODMw?sa=X&ved=2ahUKEwjTqM6p99X-AhXBFmIAHSucAxkQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/69-mysql-vs-mariadb.jpg +image: ./69-mysql-vs-mariadb.jpg length_second: 4259 pubDate: 2023-05-02 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/70-alan-turing-der-vater-der-heutigen-informatik-turing-complete-turing-test-halting-problem-turing-maschine-captcha.jpg b/src/content/podcast/70-alan-turing-der-vater-der-heutigen-informatik-turing-complete-turing-test-halting-problem-turing-maschine-captcha.jpg similarity index 100% rename from public/images/podcast/episode/70-alan-turing-der-vater-der-heutigen-informatik-turing-complete-turing-test-halting-problem-turing-maschine-captcha.jpg rename to src/content/podcast/70-alan-turing-der-vater-der-heutigen-informatik-turing-complete-turing-test-halting-problem-turing-maschine-captcha.jpg diff --git a/src/content/podcast/70-alan-turing-der-vater-der-heutigen-informatik-turing-complete-turing-test-halting-problem-turing-maschine-captcha.md b/src/content/podcast/70-alan-turing-der-vater-der-heutigen-informatik-turing-complete-turing-test-halting-problem-turing-maschine-captcha.md index 8ea756c3..313fb41c 100644 --- a/src/content/podcast/70-alan-turing-der-vater-der-heutigen-informatik-turing-complete-turing-test-halting-problem-turing-maschine-captcha.md +++ b/src/content/podcast/70-alan-turing-der-vater-der-heutigen-informatik-turing-complete-turing-test-halting-problem-turing-maschine-captcha.md @@ -38,7 +38,7 @@ description: "Wenn man sich eigentlich mal fragt, auf wen die ganze heutige Entw google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MjY5YjJmMDYtZTQ0Yy00ZGQxLWI0ZmQtYTFiMjdlZTczYzNj?sa=X&ved=2ahUKEwi0gprJruf-AhXjM1kFHeQ2B1kQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/70-alan-turing-der-vater-der-heutigen-informatik-turing-complete-turing-test-halting-problem-turing-maschine-captcha.jpg +image: ./70-alan-turing-der-vater-der-heutigen-informatik-turing-complete-turing-test-halting-problem-turing-maschine-captcha.jpg length_second: 3419 pubDate: 2023-05-09 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/71-tim-berners-lee-was-ist-das-world-wide-web-und-was-ist-seine-zukunft.jpg b/src/content/podcast/71-tim-berners-lee-was-ist-das-world-wide-web-und-was-ist-seine-zukunft.jpg similarity index 100% rename from public/images/podcast/episode/71-tim-berners-lee-was-ist-das-world-wide-web-und-was-ist-seine-zukunft.jpg rename to src/content/podcast/71-tim-berners-lee-was-ist-das-world-wide-web-und-was-ist-seine-zukunft.jpg diff --git a/src/content/podcast/71-tim-berners-lee-was-ist-das-world-wide-web-und-was-ist-seine-zukunft.md b/src/content/podcast/71-tim-berners-lee-was-ist-das-world-wide-web-und-was-ist-seine-zukunft.md index 334a45cf..85bb30d2 100644 --- a/src/content/podcast/71-tim-berners-lee-was-ist-das-world-wide-web-und-was-ist-seine-zukunft.md +++ b/src/content/podcast/71-tim-berners-lee-was-ist-das-world-wide-web-und-was-ist-seine-zukunft.md @@ -44,7 +44,7 @@ description: "\"Open Data now\" - Dazu ruft der Turing Award Gewinner Sir Tim Be google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/OGEzN2ZkZjUtN2JlOC00NGM5LWI5ZGYtNzk5OGNhY2E0YjIz?sa=X&ved=2ahUKEwjN_fTNkPn-AhXMGGIAHUtLB-IQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/71-tim-berners-lee-was-ist-das-world-wide-web-und-was-ist-seine-zukunft.jpg +image: ./71-tim-berners-lee-was-ist-das-world-wide-web-und-was-ist-seine-zukunft.jpg length_second: 3710 pubDate: 2023-05-16 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/72-meetings-jeder-hat-sie-keiner-will-sie.jpg b/src/content/podcast/72-meetings-jeder-hat-sie-keiner-will-sie.jpg similarity index 100% rename from public/images/podcast/episode/72-meetings-jeder-hat-sie-keiner-will-sie.jpg rename to src/content/podcast/72-meetings-jeder-hat-sie-keiner-will-sie.jpg diff --git a/src/content/podcast/72-meetings-jeder-hat-sie-keiner-will-sie.md b/src/content/podcast/72-meetings-jeder-hat-sie-keiner-will-sie.md index f3239d52..7e7003fa 100644 --- a/src/content/podcast/72-meetings-jeder-hat-sie-keiner-will-sie.md +++ b/src/content/podcast/72-meetings-jeder-hat-sie-keiner-will-sie.md @@ -47,7 +47,7 @@ description: "Meetings: Ein essentieller Teil unseres Arbeitsalltages und doch w google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MGRkOWNkMjQtNTM4Yy00MjJiLTlkZWItNTNhZjc2YTViMDNj?sa=X&ved=2ahUKEwiRm97dlZz_AhUiM1kFHYB3ACsQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/72-meetings-jeder-hat-sie-keiner-will-sie.jpg +image: ./72-meetings-jeder-hat-sie-keiner-will-sie.jpg length_second: 3866 pubDate: 2023-05-23 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/73-cache-freundliches-programmieren-cpu-caches-ersetzungsstrategien-und-cache-invalidierung.jpg b/src/content/podcast/73-cache-freundliches-programmieren-cpu-caches-ersetzungsstrategien-und-cache-invalidierung.jpg similarity index 100% rename from public/images/podcast/episode/73-cache-freundliches-programmieren-cpu-caches-ersetzungsstrategien-und-cache-invalidierung.jpg rename to src/content/podcast/73-cache-freundliches-programmieren-cpu-caches-ersetzungsstrategien-und-cache-invalidierung.jpg diff --git a/src/content/podcast/73-cache-freundliches-programmieren-cpu-caches-ersetzungsstrategien-und-cache-invalidierung.md b/src/content/podcast/73-cache-freundliches-programmieren-cpu-caches-ersetzungsstrategien-und-cache-invalidierung.md index 284deb54..78a508c9 100644 --- a/src/content/podcast/73-cache-freundliches-programmieren-cpu-caches-ersetzungsstrategien-und-cache-invalidierung.md +++ b/src/content/podcast/73-cache-freundliches-programmieren-cpu-caches-ersetzungsstrategien-und-cache-invalidierung.md @@ -43,7 +43,7 @@ description: "There are only two hard things in Computer Science: cache invalida google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/N2Y3OTQyNWQtMTY4MC00NWQwLTkzNmQtYjYxMjk0MWI4Mzky?sa=X&ved=2ahUKEwiqyb2qppz_AhUgB1kFHcANBNoQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/73-cache-freundliches-programmieren-cpu-caches-ersetzungsstrategien-und-cache-invalidierung.jpg +image: ./73-cache-freundliches-programmieren-cpu-caches-ersetzungsstrategien-und-cache-invalidierung.jpg length_second: 3583 pubDate: 2023-05-30 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/74-rest-das-oft-falsch-verstandene-architektur-paradigma.jpg b/src/content/podcast/74-rest-das-oft-falsch-verstandene-architektur-paradigma.jpg similarity index 100% rename from public/images/podcast/episode/74-rest-das-oft-falsch-verstandene-architektur-paradigma.jpg rename to src/content/podcast/74-rest-das-oft-falsch-verstandene-architektur-paradigma.jpg diff --git a/src/content/podcast/74-rest-das-oft-falsch-verstandene-architektur-paradigma.md b/src/content/podcast/74-rest-das-oft-falsch-verstandene-architektur-paradigma.md index f5d4dfd6..ee77c39b 100644 --- a/src/content/podcast/74-rest-das-oft-falsch-verstandene-architektur-paradigma.md +++ b/src/content/podcast/74-rest-das-oft-falsch-verstandene-architektur-paradigma.md @@ -49,7 +49,7 @@ description: "Das REST-API Architektur-Paradigma: Oft verwendet und oft nicht ko google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/Mjg5OTU5MzMtODY2Yi00ZjkyLWI4YzktNjNjNTM1Nzk0MWUy?sa=X&ved=2ahUKEwi06-DXh67_AhWtnWoFHcsIAkwQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/74-rest-das-oft-falsch-verstandene-architektur-paradigma.jpg +image: ./74-rest-das-oft-falsch-verstandene-architektur-paradigma.jpg length_second: 3775 pubDate: 2023-06-06 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/75-evaluierung-deiner-job-performance-team-feedback-und-lno-framework.jpg b/src/content/podcast/75-evaluierung-deiner-job-performance-team-feedback-und-lno-framework.jpg similarity index 100% rename from public/images/podcast/episode/75-evaluierung-deiner-job-performance-team-feedback-und-lno-framework.jpg rename to src/content/podcast/75-evaluierung-deiner-job-performance-team-feedback-und-lno-framework.jpg diff --git a/src/content/podcast/75-evaluierung-deiner-job-performance-team-feedback-und-lno-framework.md b/src/content/podcast/75-evaluierung-deiner-job-performance-team-feedback-und-lno-framework.md index f7bf3928..825bb2f2 100644 --- a/src/content/podcast/75-evaluierung-deiner-job-performance-team-feedback-und-lno-framework.md +++ b/src/content/podcast/75-evaluierung-deiner-job-performance-team-feedback-und-lno-framework.md @@ -57,7 +57,7 @@ description: "Woher wei\xDFt du eigentlich, ob du einen guten Job machst? Wie er google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/OGEwOTg3NjAtOTA4MS00NTg2LTlmOWEtZTZkOTRhOWE4ZDJj?sa=X&ved=2ahUKEwi5z5T90b__AhUrElkFHZ4qBV0QkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/75-evaluierung-deiner-job-performance-team-feedback-und-lno-framework.jpg +image: ./75-evaluierung-deiner-job-performance-team-feedback-und-lno-framework.jpg length_second: 3699 pubDate: 2023-06-13 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/76-mit-open-source-100000-verdienen-sponsorware-und-platform-risiken-bei-github-mit-martin-donath.jpg b/src/content/podcast/76-mit-open-source-100000-verdienen-sponsorware-und-platform-risiken-bei-github-mit-martin-donath.jpg similarity index 100% rename from public/images/podcast/episode/76-mit-open-source-100000-verdienen-sponsorware-und-platform-risiken-bei-github-mit-martin-donath.jpg rename to src/content/podcast/76-mit-open-source-100000-verdienen-sponsorware-und-platform-risiken-bei-github-mit-martin-donath.jpg diff --git a/public/images/podcast/episode/76-mit-open-source-100000-verdienen-sponsorware-und-plattform-risiken-bei-github-mit-martin-donath.jpg b/src/content/podcast/76-mit-open-source-100000-verdienen-sponsorware-und-plattform-risiken-bei-github-mit-martin-donath.jpg similarity index 100% rename from public/images/podcast/episode/76-mit-open-source-100000-verdienen-sponsorware-und-plattform-risiken-bei-github-mit-martin-donath.jpg rename to src/content/podcast/76-mit-open-source-100000-verdienen-sponsorware-und-plattform-risiken-bei-github-mit-martin-donath.jpg diff --git a/src/content/podcast/76-mit-open-source-100000-verdienen-sponsorware-und-plattform-risiken-bei-github-mit-martin-donath.md b/src/content/podcast/76-mit-open-source-100000-verdienen-sponsorware-und-plattform-risiken-bei-github-mit-martin-donath.md index e47eb2f9..7dcb02c7 100644 --- a/src/content/podcast/76-mit-open-source-100000-verdienen-sponsorware-und-plattform-risiken-bei-github-mit-martin-donath.md +++ b/src/content/podcast/76-mit-open-source-100000-verdienen-sponsorware-und-plattform-risiken-bei-github-mit-martin-donath.md @@ -59,7 +59,7 @@ description: "Kann man von einem Open-Source-Projekt seinen Lebensunterhalt verd google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MThmNDQzNGUtNzM1My00MDgzLTgzYTctODk2MDdlMTJjMjY2?sa=X&ved=2ahUKEwjm85OcyuL_AhUOm44IHWV9CrYQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/76-mit-open-source-100000-verdienen-sponsorware-und-plattform-risiken-bei-github-mit-martin-donath.jpg +image: ./76-mit-open-source-100000-verdienen-sponsorware-und-plattform-risiken-bei-github-mit-martin-donath.jpg length_second: 4694 pubDate: 2023-06-20 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung-mit-diana-knodel.jpg b/src/content/podcast/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung-mit-diana-knodel.jpg similarity index 100% rename from public/images/podcast/episode/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung-mit-diana-knodel.jpg rename to src/content/podcast/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung-mit-diana-knodel.jpg diff --git a/src/content/podcast/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung-mit-diana-knodel.md b/src/content/podcast/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung-mit-diana-knodel.md index 63536720..5086700e 100644 --- a/src/content/podcast/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung-mit-diana-knodel.md +++ b/src/content/podcast/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung-mit-diana-knodel.md @@ -83,7 +83,7 @@ description: "Wie bringen wir der n\xE4chsten Generation, unseren Kindern, die W google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/OWEyMTM5NjItOWJhNS00MDFkLTk2NDMtZGVlZTg4ZDlkMDIy?sa=X&ved=2ahUKEwjixbf---z_AhXyE1kFHRNJA-QQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung-mit-diana-knodel.jpg +image: ./77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung-mit-diana-knodel.jpg length_second: 3678 pubDate: 2023-06-27 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung.jpg b/src/content/podcast/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung.jpg similarity index 100% rename from public/images/podcast/episode/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung.jpg rename to src/content/podcast/77-kinder-coding-und-ai-die-zukunft-der-informatik-bildung.jpg diff --git a/public/images/podcast/episode/78-microservice-monolith-was-die-industrie-in-den-letzten-9-jahren-gelernt-hat.jpg b/src/content/podcast/78-microservice-monolith-was-die-industrie-in-den-letzten-9-jahren-gelernt-hat.jpg similarity index 100% rename from public/images/podcast/episode/78-microservice-monolith-was-die-industrie-in-den-letzten-9-jahren-gelernt-hat.jpg rename to src/content/podcast/78-microservice-monolith-was-die-industrie-in-den-letzten-9-jahren-gelernt-hat.jpg diff --git a/src/content/podcast/78-microservice-monolith-was-die-industrie-in-den-letzten-9-jahren-gelernt-hat.md b/src/content/podcast/78-microservice-monolith-was-die-industrie-in-den-letzten-9-jahren-gelernt-hat.md index 7b74ad87..69945e1d 100644 --- a/src/content/podcast/78-microservice-monolith-was-die-industrie-in-den-letzten-9-jahren-gelernt-hat.md +++ b/src/content/podcast/78-microservice-monolith-was-die-industrie-in-den-letzten-9-jahren-gelernt-hat.md @@ -59,7 +59,7 @@ description: "Monolithen und Microservices: Ein Evergreen der Software-Industrie google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NDMzODRmYTMtNzhkNS00Yzc5LWFkNDctMDFiZmQyY2E4M2E4?sa=X&ved=2ahUKEwiI0qCll_T_AhU3m44IHcNiBlgQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/78-microservice-monolith-was-die-industrie-in-den-letzten-9-jahren-gelernt-hat.jpg +image: ./78-microservice-monolith-was-die-industrie-in-den-letzten-9-jahren-gelernt-hat.jpg length_second: 3685 pubDate: 2023-07-04 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/79-font-engineering-und-schriftarten-f\303\274rs-programmieren-mit-philipp-acsany.jpg" "b/src/content/podcast/79-font-engineering-und-schriftarten-f\303\274rs-programmieren-mit-philipp-acsany.jpg" similarity index 100% rename from "public/images/podcast/episode/79-font-engineering-und-schriftarten-f\303\274rs-programmieren-mit-philipp-acsany.jpg" rename to "src/content/podcast/79-font-engineering-und-schriftarten-f\303\274rs-programmieren-mit-philipp-acsany.jpg" diff --git "a/src/content/podcast/79-font-engineering-und-schriftarten-f\303\274rs-programmieren-mit-philipp-acsany.md" "b/src/content/podcast/79-font-engineering-und-schriftarten-f\303\274rs-programmieren-mit-philipp-acsany.md" index 321f00ac..7a0c825c 100644 --- "a/src/content/podcast/79-font-engineering-und-schriftarten-f\303\274rs-programmieren-mit-philipp-acsany.md" +++ "b/src/content/podcast/79-font-engineering-und-schriftarten-f\303\274rs-programmieren-mit-philipp-acsany.md" @@ -66,7 +66,7 @@ description: "Font Engineering und die Welt der Programmier-Schriftarten. Wie wi google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MzM5M2EyYTgtMzUwMC00ZGJhLWEyMDMtOGIxMzg1ZTMxNzJi?sa=X&ved=2ahUKEwi-y86u5IWAAxXCn44IHXDbAGAQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/79-font-engineering-und-schriftarten-f\xFCrs-programmieren-mit-philipp-acsany.jpg" +image: "./79-font-engineering-und-schriftarten-f\xFCrs-programmieren-mit-philipp-acsany.jpg" length_second: 4195 pubDate: 2023-07-11 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/80-junior-devs-steckt-das-wahre-potential-in-unerfahrenen-talenten.jpg b/src/content/podcast/80-junior-devs-steckt-das-wahre-potential-in-unerfahrenen-talenten.jpg similarity index 100% rename from public/images/podcast/episode/80-junior-devs-steckt-das-wahre-potential-in-unerfahrenen-talenten.jpg rename to src/content/podcast/80-junior-devs-steckt-das-wahre-potential-in-unerfahrenen-talenten.jpg diff --git a/src/content/podcast/80-junior-devs-steckt-das-wahre-potential-in-unerfahrenen-talenten.md b/src/content/podcast/80-junior-devs-steckt-das-wahre-potential-in-unerfahrenen-talenten.md index 827d9d3b..0da5b82e 100644 --- a/src/content/podcast/80-junior-devs-steckt-das-wahre-potential-in-unerfahrenen-talenten.md +++ b/src/content/podcast/80-junior-devs-steckt-das-wahre-potential-in-unerfahrenen-talenten.md @@ -54,7 +54,7 @@ description: "Alle Firmen suchen nur Senior-Engineers - Steckt in Junior-Enginee google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YTliZjkxZWMtM2NkMi00MWNkLTk1ZTEtYTBjNjQ1ZDQxZTdh?sa=X&ved=2ahUKEwik8IO53peAAxUOoWoFHQicC9IQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/80-junior-devs-steckt-das-wahre-potential-in-unerfahrenen-talenten.jpg +image: ./80-junior-devs-steckt-das-wahre-potential-in-unerfahrenen-talenten.jpg length_second: 4077 pubDate: 2023-07-18 07:07:16+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/81-copilot-ai-im-dev-test-produktivit\303\244ts-boost-oder-nur-hype.jpg" "b/src/content/podcast/81-copilot-ai-im-dev-test-produktivit\303\244ts-boost-oder-nur-hype.jpg" similarity index 100% rename from "public/images/podcast/episode/81-copilot-ai-im-dev-test-produktivit\303\244ts-boost-oder-nur-hype.jpg" rename to "src/content/podcast/81-copilot-ai-im-dev-test-produktivit\303\244ts-boost-oder-nur-hype.jpg" diff --git "a/src/content/podcast/81-copilot-ai-im-dev-test-produktivit\303\244ts-boost-oder-nur-hype.md" "b/src/content/podcast/81-copilot-ai-im-dev-test-produktivit\303\244ts-boost-oder-nur-hype.md" index 88992074..f71e0d94 100644 --- "a/src/content/podcast/81-copilot-ai-im-dev-test-produktivit\303\244ts-boost-oder-nur-hype.md" +++ "b/src/content/podcast/81-copilot-ai-im-dev-test-produktivit\303\244ts-boost-oder-nur-hype.md" @@ -78,7 +78,7 @@ description: "Ist GitHub Copilot (und AI) wirklich dein fehlender Partner beim P google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/N2IzM2JiNTYtMzYyZi00NjNjLThlYzctNTcyYWQzNzlhZTdl?sa=X&ved=2ahUKEwjW5sGahqyAAxWuB0QIHe3NAyEQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/81-copilot-ai-im-dev-test-produktivit\xE4ts-boost-oder-nur-hype.jpg" +image: "./81-copilot-ai-im-dev-test-produktivit\xE4ts-boost-oder-nur-hype.jpg" length_second: 4052 pubDate: 2023-07-25 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/82-hinter-den-kulissen-die-informatik-doktorarbeit-und-ist-der-dr-titel-in-der-heutigen-it-welt-noch-relevant.jpg b/src/content/podcast/82-hinter-den-kulissen-die-informatik-doktorarbeit-und-ist-der-dr-titel-in-der-heutigen-it-welt-noch-relevant.jpg similarity index 100% rename from public/images/podcast/episode/82-hinter-den-kulissen-die-informatik-doktorarbeit-und-ist-der-dr-titel-in-der-heutigen-it-welt-noch-relevant.jpg rename to src/content/podcast/82-hinter-den-kulissen-die-informatik-doktorarbeit-und-ist-der-dr-titel-in-der-heutigen-it-welt-noch-relevant.jpg diff --git a/src/content/podcast/82-hinter-den-kulissen-die-informatik-doktorarbeit-und-ist-der-dr-titel-in-der-heutigen-it-welt-noch-relevant.md b/src/content/podcast/82-hinter-den-kulissen-die-informatik-doktorarbeit-und-ist-der-dr-titel-in-der-heutigen-it-welt-noch-relevant.md index a2b1c8fe..d3efcb50 100644 --- a/src/content/podcast/82-hinter-den-kulissen-die-informatik-doktorarbeit-und-ist-der-dr-titel-in-der-heutigen-it-welt-noch-relevant.md +++ b/src/content/podcast/82-hinter-den-kulissen-die-informatik-doktorarbeit-und-ist-der-dr-titel-in-der-heutigen-it-welt-noch-relevant.md @@ -60,7 +60,7 @@ description: "Bildung: Einblick in den Dr. Titel im Bereich Informatik. Bildung google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/M2FmZGYwYmMtZmQ4ZC00ZWY4LWFlMTgtMDM1NzdjMDQ2YWRi?sa=X&ved=2ahUKEwjekq2dmMyAAxXbqY4IHRVJCFsQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/82-hinter-den-kulissen-die-informatik-doktorarbeit-und-ist-der-dr-titel-in-der-heutigen-it-welt-noch-relevant.jpg +image: ./82-hinter-den-kulissen-die-informatik-doktorarbeit-und-ist-der-dr-titel-in-der-heutigen-it-welt-noch-relevant.jpg length_second: 4189 pubDate: 2023-08-01 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/83-transparenz-im-tech-leadership-fehlerkultur-wie-weit-kann-ich-gehen.jpg b/src/content/podcast/83-transparenz-im-tech-leadership-fehlerkultur-wie-weit-kann-ich-gehen.jpg similarity index 100% rename from public/images/podcast/episode/83-transparenz-im-tech-leadership-fehlerkultur-wie-weit-kann-ich-gehen.jpg rename to src/content/podcast/83-transparenz-im-tech-leadership-fehlerkultur-wie-weit-kann-ich-gehen.jpg diff --git a/src/content/podcast/83-transparenz-im-tech-leadership-fehlerkultur-wie-weit-kann-ich-gehen.md b/src/content/podcast/83-transparenz-im-tech-leadership-fehlerkultur-wie-weit-kann-ich-gehen.md index 9f3efc24..f7401a29 100644 --- a/src/content/podcast/83-transparenz-im-tech-leadership-fehlerkultur-wie-weit-kann-ich-gehen.md +++ b/src/content/podcast/83-transparenz-im-tech-leadership-fehlerkultur-wie-weit-kann-ich-gehen.md @@ -49,7 +49,7 @@ description: "Die Fehlerkultur im Unternehmen, Transparenz in der Kommunikation google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NjU2MjViMmUtZmMxMy00NTNhLWI0ZDUtZGUwODE5OTExMGIw?sa=X&ved=2ahUKEwjekq2dmMyAAxXbqY4IHRVJCFsQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/83-transparenz-im-tech-leadership-fehlerkultur-wie-weit-kann-ich-gehen.jpg +image: ./83-transparenz-im-tech-leadership-fehlerkultur-wie-weit-kann-ich-gehen.jpg length_second: 3864 pubDate: 2023-08-08 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/84-die-evolution-von-javascript-vom-ducktyping-zum-monopol-im-browser-mit-peter-kr\303\266ner.jpg" "b/src/content/podcast/84-die-evolution-von-javascript-vom-ducktyping-zum-monopol-im-browser-mit-peter-kr\303\266ner.jpg" similarity index 100% rename from "public/images/podcast/episode/84-die-evolution-von-javascript-vom-ducktyping-zum-monopol-im-browser-mit-peter-kr\303\266ner.jpg" rename to "src/content/podcast/84-die-evolution-von-javascript-vom-ducktyping-zum-monopol-im-browser-mit-peter-kr\303\266ner.jpg" diff --git "a/src/content/podcast/84-die-evolution-von-javascript-vom-ducktyping-zum-monopol-im-browser-mit-peter-kr\303\266ner.md" "b/src/content/podcast/84-die-evolution-von-javascript-vom-ducktyping-zum-monopol-im-browser-mit-peter-kr\303\266ner.md" index ac0a37be..c77d56f8 100644 --- "a/src/content/podcast/84-die-evolution-von-javascript-vom-ducktyping-zum-monopol-im-browser-mit-peter-kr\303\266ner.md" +++ "b/src/content/podcast/84-die-evolution-von-javascript-vom-ducktyping-zum-monopol-im-browser-mit-peter-kr\303\266ner.md" @@ -61,7 +61,7 @@ description: "JavaScript: Eine multiparadigmatische Skriptsprache mit einem schw google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YzA3ZWNkOWMtZjRjZi00YWExLTgyYmMtY2U3OWEyMGM3MDYy?sa=X&ved=2ahUKEwjAkqSi5d2AAxWb6ckDHT8rD1AQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/84-die-evolution-von-javascript-vom-ducktyping-zum-monopol-im-browser-mit-peter-kr\xF6\ +image: "./84-die-evolution-von-javascript-vom-ducktyping-zum-monopol-im-browser-mit-peter-kr\xF6\ ner.jpg" length_second: 5219 pubDate: 2023-08-15 04:00:00+00:00 diff --git a/public/images/podcast/episode/85-von-entwicklerin-zur-engineering-managerin-erfahrungen-und-learnings-mit-isabelle-glasmacher.jpg b/src/content/podcast/85-von-entwicklerin-zur-engineering-managerin-erfahrungen-und-learnings-mit-isabelle-glasmacher.jpg similarity index 100% rename from public/images/podcast/episode/85-von-entwicklerin-zur-engineering-managerin-erfahrungen-und-learnings-mit-isabelle-glasmacher.jpg rename to src/content/podcast/85-von-entwicklerin-zur-engineering-managerin-erfahrungen-und-learnings-mit-isabelle-glasmacher.jpg diff --git a/src/content/podcast/85-von-entwicklerin-zur-engineering-managerin-erfahrungen-und-learnings-mit-isabelle-glasmacher.md b/src/content/podcast/85-von-entwicklerin-zur-engineering-managerin-erfahrungen-und-learnings-mit-isabelle-glasmacher.md index ab9cac34..c199ce51 100644 --- a/src/content/podcast/85-von-entwicklerin-zur-engineering-managerin-erfahrungen-und-learnings-mit-isabelle-glasmacher.md +++ b/src/content/podcast/85-von-entwicklerin-zur-engineering-managerin-erfahrungen-und-learnings-mit-isabelle-glasmacher.md @@ -57,7 +57,7 @@ description: "Der Einstieg in die erste Lead-Position, das Engineering Managemen google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YWZjYWJlYzktODc4OS00YzdlLTllZmMtODlhN2ViYmQxMTFi?sa=X&ved=2ahUKEwiRmeqmsu-AAxWwOlkFHe1vDCIQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/85-von-entwicklerin-zur-engineering-managerin-erfahrungen-und-learnings-mit-isabelle-glasmacher.jpg +image: ./85-von-entwicklerin-zur-engineering-managerin-erfahrungen-und-learnings-mit-isabelle-glasmacher.jpg length_second: 4052 pubDate: 2023-08-22 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/86-open-source-als-herz-einer-firma-mit-nextcloud-gr\303\274nder-frank-karlitschek.jpg" "b/src/content/podcast/86-open-source-als-herz-einer-firma-mit-nextcloud-gr\303\274nder-frank-karlitschek.jpg" similarity index 100% rename from "public/images/podcast/episode/86-open-source-als-herz-einer-firma-mit-nextcloud-gr\303\274nder-frank-karlitschek.jpg" rename to "src/content/podcast/86-open-source-als-herz-einer-firma-mit-nextcloud-gr\303\274nder-frank-karlitschek.jpg" diff --git "a/src/content/podcast/86-open-source-als-herz-einer-firma-mit-nextcloud-gr\303\274nder-frank-karlitschek.md" "b/src/content/podcast/86-open-source-als-herz-einer-firma-mit-nextcloud-gr\303\274nder-frank-karlitschek.md" index 741af7d0..7a646f0b 100644 --- "a/src/content/podcast/86-open-source-als-herz-einer-firma-mit-nextcloud-gr\303\274nder-frank-karlitschek.md" +++ "b/src/content/podcast/86-open-source-als-herz-einer-firma-mit-nextcloud-gr\303\274nder-frank-karlitschek.md" @@ -66,7 +66,7 @@ description: "Die Story von ownCloud und Nextcloud inkl. einer erfolgreichen Fir google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/OTUxYWRiYTQtMDU3NS00ZDJhLTlkZjUtOTc5YjQ2ZGMwNjFl?sa=X&ved=2ahUKEwiqgoDA_4CBAxVhu44IHQ0LCZsQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/86-open-source-als-herz-einer-firma-mit-nextcloud-gr\xFC\ +image: "./86-open-source-als-herz-einer-firma-mit-nextcloud-gr\xFC\ nder-frank-karlitschek.jpg" length_second: 3934 pubDate: 2023-08-29 04:00:00+00:00 diff --git a/public/images/podcast/episode/87-die-dora-metriken-ist-software-entwicklungs-performance-messbar.jpg b/src/content/podcast/87-die-dora-metriken-ist-software-entwicklungs-performance-messbar.jpg similarity index 100% rename from public/images/podcast/episode/87-die-dora-metriken-ist-software-entwicklungs-performance-messbar.jpg rename to src/content/podcast/87-die-dora-metriken-ist-software-entwicklungs-performance-messbar.jpg diff --git a/src/content/podcast/87-die-dora-metriken-ist-software-entwicklungs-performance-messbar.md b/src/content/podcast/87-die-dora-metriken-ist-software-entwicklungs-performance-messbar.md index 1e8ea3fd..f920caba 100644 --- a/src/content/podcast/87-die-dora-metriken-ist-software-entwicklungs-performance-messbar.md +++ b/src/content/podcast/87-die-dora-metriken-ist-software-entwicklungs-performance-messbar.md @@ -54,7 +54,7 @@ description: "DORA Metriken: Die Performance-Messung deines Software Development google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MjAzNzFmZmMtNDE3YS00NTJmLTlmMjAtOGQzM2QyMTZjOGMw?sa=X&ved=2ahUKEwj-pOy13pKBAxUxnWoFHZkACc8QkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/87-die-dora-metriken-ist-software-entwicklungs-performance-messbar.jpg +image: ./87-die-dora-metriken-ist-software-entwicklungs-performance-messbar.jpg length_second: 3282 pubDate: 2023-09-05 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/88-die-personalabteilung-freund-oder-feind-mit-patrick-kuster.jpg b/src/content/podcast/88-die-personalabteilung-freund-oder-feind-mit-patrick-kuster.jpg similarity index 100% rename from public/images/podcast/episode/88-die-personalabteilung-freund-oder-feind-mit-patrick-kuster.jpg rename to src/content/podcast/88-die-personalabteilung-freund-oder-feind-mit-patrick-kuster.jpg diff --git a/src/content/podcast/88-die-personalabteilung-freund-oder-feind-mit-patrick-kuster.md b/src/content/podcast/88-die-personalabteilung-freund-oder-feind-mit-patrick-kuster.md index c20d4d96..d21609ab 100644 --- a/src/content/podcast/88-die-personalabteilung-freund-oder-feind-mit-patrick-kuster.md +++ b/src/content/podcast/88-die-personalabteilung-freund-oder-feind-mit-patrick-kuster.md @@ -64,7 +64,7 @@ description: "Die Personalabteilung: Dein strategischer Partner auf Augenh\xF6he google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MjhhNTAwZGUtYzQ4MC00MDQzLThmOTAtZmNkZjc2ZjJmNzRh?sa=X&ved=2ahUKEwilwdCGuKSBAxVbie4BHYZJDOoQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/88-die-personalabteilung-freund-oder-feind-mit-patrick-kuster.jpg +image: ./88-die-personalabteilung-freund-oder-feind-mit-patrick-kuster.jpg length_second: 4600 pubDate: 2023-09-12 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/89-die-klimakrise-und-green-it-unser-einfluss-\303\274ber-hardware-farben-web-performance-und-green-hosting-mit-christian-sch\303\244fer.jpg" "b/src/content/podcast/89-die-klimakrise-und-green-it-unser-einfluss-\303\274ber-hardware-farben-web-performance-und-green-hosting-mit-christian-sch\303\244fer.jpg" similarity index 100% rename from "public/images/podcast/episode/89-die-klimakrise-und-green-it-unser-einfluss-\303\274ber-hardware-farben-web-performance-und-green-hosting-mit-christian-sch\303\244fer.jpg" rename to "src/content/podcast/89-die-klimakrise-und-green-it-unser-einfluss-\303\274ber-hardware-farben-web-performance-und-green-hosting-mit-christian-sch\303\244fer.jpg" diff --git "a/src/content/podcast/89-die-klimakrise-und-green-it-unser-einfluss-\303\274ber-hardware-farben-web-performance-und-green-hosting-mit-christian-sch\303\244fer.md" "b/src/content/podcast/89-die-klimakrise-und-green-it-unser-einfluss-\303\274ber-hardware-farben-web-performance-und-green-hosting-mit-christian-sch\303\244fer.md" index 4ae15d68..60df73aa 100644 --- "a/src/content/podcast/89-die-klimakrise-und-green-it-unser-einfluss-\303\274ber-hardware-farben-web-performance-und-green-hosting-mit-christian-sch\303\244fer.md" +++ "b/src/content/podcast/89-die-klimakrise-und-green-it-unser-einfluss-\303\274ber-hardware-farben-web-performance-und-green-hosting-mit-christian-sch\303\244fer.md" @@ -58,7 +58,7 @@ description: "Green IT und die CO2-Emissionen durch die IT, das Internet und die google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NjY0Zjk3OTUtOTlkYS00YTExLThmMDYtZjhiZTg2NDc3MjBk?sa=X&ved=2ahUKEwiZwozds8eBAxW6omoFHRAVCMgQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/89-die-klimakrise-und-green-it-unser-einfluss-\xFC\ +image: "./89-die-klimakrise-und-green-it-unser-einfluss-\xFC\ ber-hardware-farben-web-performance-und-green-hosting-mit-christian-sch\xE4fer.jpg" length_second: 4563 pubDate: 2023-09-19 04:00:00+00:00 diff --git a/public/images/podcast/episode/90-inner-source-open-source-best-practices-zur-besseren-zusammenarbeit-zwischen-teams-mit-sebastian-spier.jpg b/src/content/podcast/90-inner-source-open-source-best-practices-zur-besseren-zusammenarbeit-zwischen-teams-mit-sebastian-spier.jpg similarity index 100% rename from public/images/podcast/episode/90-inner-source-open-source-best-practices-zur-besseren-zusammenarbeit-zwischen-teams-mit-sebastian-spier.jpg rename to src/content/podcast/90-inner-source-open-source-best-practices-zur-besseren-zusammenarbeit-zwischen-teams-mit-sebastian-spier.jpg diff --git a/src/content/podcast/90-inner-source-open-source-best-practices-zur-besseren-zusammenarbeit-zwischen-teams-mit-sebastian-spier.md b/src/content/podcast/90-inner-source-open-source-best-practices-zur-besseren-zusammenarbeit-zwischen-teams-mit-sebastian-spier.md index 03f3909a..99cc5937 100644 --- a/src/content/podcast/90-inner-source-open-source-best-practices-zur-besseren-zusammenarbeit-zwischen-teams-mit-sebastian-spier.md +++ b/src/content/podcast/90-inner-source-open-source-best-practices-zur-besseren-zusammenarbeit-zwischen-teams-mit-sebastian-spier.md @@ -65,7 +65,7 @@ description: "Inner Source - Die Anwendung von Open Source Best Practices in dei google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YmJjMDZmMjgtOWRhZS00ZWQ0LWFmZTYtNDA3OGU5MzQ4MDVl?sa=X&ved=0CAUQkfYCahcKEwjwq-uAwM-BAxUAAAAAHQAAAAAQAQ headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/90-inner-source-open-source-best-practices-zur-besseren-zusammenarbeit-zwischen-teams-mit-sebastian-spier.jpg +image: ./90-inner-source-open-source-best-practices-zur-besseren-zusammenarbeit-zwischen-teams-mit-sebastian-spier.jpg length_second: 4200 pubDate: 2023-09-26 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/91-konsistent-verf\303\274gbar-ausfalltolerant-oder-performant-das-cap-und-pacelc-theorem-in-verteilten-systemen.jpg" "b/src/content/podcast/91-konsistent-verf\303\274gbar-ausfalltolerant-oder-performant-das-cap-und-pacelc-theorem-in-verteilten-systemen.jpg" similarity index 100% rename from "public/images/podcast/episode/91-konsistent-verf\303\274gbar-ausfalltolerant-oder-performant-das-cap-und-pacelc-theorem-in-verteilten-systemen.jpg" rename to "src/content/podcast/91-konsistent-verf\303\274gbar-ausfalltolerant-oder-performant-das-cap-und-pacelc-theorem-in-verteilten-systemen.jpg" diff --git "a/src/content/podcast/91-konsistent-verf\303\274gbar-ausfalltolerant-oder-performant-das-cap-und-pacelc-theorem-in-verteilten-systemen.md" "b/src/content/podcast/91-konsistent-verf\303\274gbar-ausfalltolerant-oder-performant-das-cap-und-pacelc-theorem-in-verteilten-systemen.md" index 5b89b8c2..0cf38a50 100644 --- "a/src/content/podcast/91-konsistent-verf\303\274gbar-ausfalltolerant-oder-performant-das-cap-und-pacelc-theorem-in-verteilten-systemen.md" +++ "b/src/content/podcast/91-konsistent-verf\303\274gbar-ausfalltolerant-oder-performant-das-cap-und-pacelc-theorem-in-verteilten-systemen.md" @@ -69,7 +69,7 @@ description: "Konsistent, Verf\xFCgbar und Ausfalltolerant: W\xE4hle zwei - Das google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YTI5NzYxYmItYmU2Yi00MjQ2LWJjNDAtOGYxNmExODM5MWI2?sa=X&ved=2ahUKEwiEwqHggNmBAxWfA0QIHR_JC2IQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/91-konsistent-verf\xFCgbar-ausfalltolerant-oder-performant-das-cap-und-pacelc-theorem-in-verteilten-systemen.jpg" +image: "./91-konsistent-verf\xFCgbar-ausfalltolerant-oder-performant-das-cap-und-pacelc-theorem-in-verteilten-systemen.jpg" length_second: 3461 pubDate: 2023-10-03 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/92-technologie-trifft-deutsche-ausbildungskultur-die-moderne-it-berufsausbildung-mit-stefan-macke.jpg b/src/content/podcast/92-technologie-trifft-deutsche-ausbildungskultur-die-moderne-it-berufsausbildung-mit-stefan-macke.jpg similarity index 100% rename from public/images/podcast/episode/92-technologie-trifft-deutsche-ausbildungskultur-die-moderne-it-berufsausbildung-mit-stefan-macke.jpg rename to src/content/podcast/92-technologie-trifft-deutsche-ausbildungskultur-die-moderne-it-berufsausbildung-mit-stefan-macke.jpg diff --git a/src/content/podcast/92-technologie-trifft-deutsche-ausbildungskultur-die-moderne-it-berufsausbildung-mit-stefan-macke.md b/src/content/podcast/92-technologie-trifft-deutsche-ausbildungskultur-die-moderne-it-berufsausbildung-mit-stefan-macke.md index 9c4fb496..1301da34 100644 --- a/src/content/podcast/92-technologie-trifft-deutsche-ausbildungskultur-die-moderne-it-berufsausbildung-mit-stefan-macke.md +++ b/src/content/podcast/92-technologie-trifft-deutsche-ausbildungskultur-die-moderne-it-berufsausbildung-mit-stefan-macke.md @@ -87,7 +87,7 @@ description: "Wie ist der Stand bei der klassischen Berufsausbildung in der Info google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MzYxYzg0MTAtY2RmMC00ZmIzLWExZTctOWI4Yjc4MTA5MmE2?sa=X&ved=2ahUKEwjBq8qy5uqBAxVy0ckDHfZKACgQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/92-technologie-trifft-deutsche-ausbildungskultur-die-moderne-it-berufsausbildung-mit-stefan-macke.jpg +image: ./92-technologie-trifft-deutsche-ausbildungskultur-die-moderne-it-berufsausbildung-mit-stefan-macke.jpg length_second: 4747 pubDate: 2023-10-10 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/93-barbara-liskov-das-l-in-solid-liskovsches-substitutionsprinzip-abstraktion.jpg b/src/content/podcast/93-barbara-liskov-das-l-in-solid-liskovsches-substitutionsprinzip-abstraktion.jpg similarity index 100% rename from public/images/podcast/episode/93-barbara-liskov-das-l-in-solid-liskovsches-substitutionsprinzip-abstraktion.jpg rename to src/content/podcast/93-barbara-liskov-das-l-in-solid-liskovsches-substitutionsprinzip-abstraktion.jpg diff --git a/src/content/podcast/93-barbara-liskov-das-l-in-solid-liskovsches-substitutionsprinzip-abstraktion.md b/src/content/podcast/93-barbara-liskov-das-l-in-solid-liskovsches-substitutionsprinzip-abstraktion.md index 344f1f4a..26643233 100644 --- a/src/content/podcast/93-barbara-liskov-das-l-in-solid-liskovsches-substitutionsprinzip-abstraktion.md +++ b/src/content/podcast/93-barbara-liskov-das-l-in-solid-liskovsches-substitutionsprinzip-abstraktion.md @@ -49,7 +49,7 @@ description: "Liskov Substitution Principle: Das L in SOLID von Barbara Liskov H google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/M2M3MGJiNmYtMTk2MC00M2MzLTkzMzctZDkwMTU4ZTdhOTUw?sa=X&ved=2ahUKEwiH1KjwmvyBAxWWJGIAHfKiDjcQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/93-barbara-liskov-das-l-in-solid-liskovsches-substitutionsprinzip-abstraktion.jpg +image: ./93-barbara-liskov-das-l-in-solid-liskovsches-substitutionsprinzip-abstraktion.jpg length_second: 3161 pubDate: 2023-10-17 04:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/94-die-realit\303\244t-des-freelancings-zwischen-selbstbestimmung-und-unsicherheit-mit-index-out-of-bounds.jpg" "b/src/content/podcast/94-die-realit\303\244t-des-freelancings-zwischen-selbstbestimmung-und-unsicherheit-mit-index-out-of-bounds.jpg" similarity index 100% rename from "public/images/podcast/episode/94-die-realit\303\244t-des-freelancings-zwischen-selbstbestimmung-und-unsicherheit-mit-index-out-of-bounds.jpg" rename to "src/content/podcast/94-die-realit\303\244t-des-freelancings-zwischen-selbstbestimmung-und-unsicherheit-mit-index-out-of-bounds.jpg" diff --git "a/src/content/podcast/94-die-realit\303\244t-des-freelancings-zwischen-selbstbestimmung-und-unsicherheit-mit-index-out-of-bounds.md" "b/src/content/podcast/94-die-realit\303\244t-des-freelancings-zwischen-selbstbestimmung-und-unsicherheit-mit-index-out-of-bounds.md" index 1f915e1f..67f661e5 100644 --- "a/src/content/podcast/94-die-realit\303\244t-des-freelancings-zwischen-selbstbestimmung-und-unsicherheit-mit-index-out-of-bounds.md" +++ "b/src/content/podcast/94-die-realit\303\244t-des-freelancings-zwischen-selbstbestimmung-und-unsicherheit-mit-index-out-of-bounds.md" @@ -92,7 +92,7 @@ description: "Freelancing: Selbstverwirklichung und viel Geld oder kontinuierlic google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/ZTkyYjY4NzYtMTE0Yy00OWM4LWJhYzgtMjZjZGZlOGM0MWIz?sa=X&ved=2ahUKEwiHiLv3542CAxWIoI4IHXAoBf0QkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/94-die-realit\xE4t-des-freelancings-zwischen-selbstbestimmung-und-unsicherheit-mit-index-out-of-bounds.jpg" +image: "./94-die-realit\xE4t-des-freelancings-zwischen-selbstbestimmung-und-unsicherheit-mit-index-out-of-bounds.jpg" length_second: 5247 pubDate: 2023-10-24 04:00:00+00:00 rtlplus: '' diff --git a/public/images/podcast/episode/95-effiziente-knowledge-sharing-formate-wissen-teilen-und-begeistern.jpg b/src/content/podcast/95-effiziente-knowledge-sharing-formate-wissen-teilen-und-begeistern.jpg similarity index 100% rename from public/images/podcast/episode/95-effiziente-knowledge-sharing-formate-wissen-teilen-und-begeistern.jpg rename to src/content/podcast/95-effiziente-knowledge-sharing-formate-wissen-teilen-und-begeistern.jpg diff --git a/src/content/podcast/95-effiziente-knowledge-sharing-formate-wissen-teilen-und-begeistern.md b/src/content/podcast/95-effiziente-knowledge-sharing-formate-wissen-teilen-und-begeistern.md index 05d8fa64..b83385b9 100644 --- a/src/content/podcast/95-effiziente-knowledge-sharing-formate-wissen-teilen-und-begeistern.md +++ b/src/content/podcast/95-effiziente-knowledge-sharing-formate-wissen-teilen-und-begeistern.md @@ -52,7 +52,7 @@ description: "Als Knowledge-Worker sein Wissen teilen: Welche Arten gibt es und google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/YTk1M2JiNzQtOGNlNy00MmVmLTlkMjktYjA1YTc5NTNmYmIz?sa=X&ved=2ahUKEwj22OWA65-CAxXCM1kFHa0jC2YQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/95-effiziente-knowledge-sharing-formate-wissen-teilen-und-begeistern.jpg +image: ./95-effiziente-knowledge-sharing-formate-wissen-teilen-und-begeistern.jpg length_second: 3909 pubDate: 2023-10-31 05:00:00+00:00 rtlplus: '' diff --git "a/public/images/podcast/episode/96-selbstgemacht-vs-fertigprodukt-ein-blick-auf-das-not-invented-here-ph\303\244nomen.jpg" "b/src/content/podcast/96-selbstgemacht-vs-fertigprodukt-ein-blick-auf-das-not-invented-here-ph\303\244nomen.jpg" similarity index 100% rename from "public/images/podcast/episode/96-selbstgemacht-vs-fertigprodukt-ein-blick-auf-das-not-invented-here-ph\303\244nomen.jpg" rename to "src/content/podcast/96-selbstgemacht-vs-fertigprodukt-ein-blick-auf-das-not-invented-here-ph\303\244nomen.jpg" diff --git "a/src/content/podcast/96-selbstgemacht-vs-fertigprodukt-ein-blick-auf-das-not-invented-here-ph\303\244nomen.md" "b/src/content/podcast/96-selbstgemacht-vs-fertigprodukt-ein-blick-auf-das-not-invented-here-ph\303\244nomen.md" index 371fea44..a82069e2 100644 --- "a/src/content/podcast/96-selbstgemacht-vs-fertigprodukt-ein-blick-auf-das-not-invented-here-ph\303\244nomen.md" +++ "b/src/content/podcast/96-selbstgemacht-vs-fertigprodukt-ein-blick-auf-das-not-invented-here-ph\303\244nomen.md" @@ -40,7 +40,7 @@ description: "Nur unsere eigene L\xF6sung ist die beste: Das \"Not invented here google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/MTg2MWQzODAtYTUwMS00ZTk5LWE2YjMtN2VkM2VkNDgxYWUz?sa=X&ved=2ahUKEwic98u1mLKCAxVDHGIAHUUcA-YQkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: "/images/podcast/episode/96-selbstgemacht-vs-fertigprodukt-ein-blick-auf-das-not-invented-here-ph\xE4\ +image: "./96-selbstgemacht-vs-fertigprodukt-ein-blick-auf-das-not-invented-here-ph\xE4\ nomen.jpg" length_second: 4163 pubDate: 2023-11-07 05:00:00+00:00 diff --git a/public/images/podcast/episode/97-metriken-hypothesen-und-fehler-ab-testing-in-der-praxis-mit-philipp-monreal.jpg b/src/content/podcast/97-metriken-hypothesen-und-fehler-ab-testing-in-der-praxis-mit-philipp-monreal.jpg similarity index 100% rename from public/images/podcast/episode/97-metriken-hypothesen-und-fehler-ab-testing-in-der-praxis-mit-philipp-monreal.jpg rename to src/content/podcast/97-metriken-hypothesen-und-fehler-ab-testing-in-der-praxis-mit-philipp-monreal.jpg diff --git a/src/content/podcast/97-metriken-hypothesen-und-fehler-ab-testing-in-der-praxis-mit-philipp-monreal.md b/src/content/podcast/97-metriken-hypothesen-und-fehler-ab-testing-in-der-praxis-mit-philipp-monreal.md index f67857b8..5a4f8ebf 100644 --- a/src/content/podcast/97-metriken-hypothesen-und-fehler-ab-testing-in-der-praxis-mit-philipp-monreal.md +++ b/src/content/podcast/97-metriken-hypothesen-und-fehler-ab-testing-in-der-praxis-mit-philipp-monreal.md @@ -49,7 +49,7 @@ description: "Kontinuierliches Lernen mit Hilfe von Experimenten und A/B-Testing google_podcasts: https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5yZWRjaXJjbGUuY29tLzBlY2ZkZmQ3LWZkYTEtNGMzZC05NTE1LTQ3NjcyN2Y5ZGY1ZQ/episode/NDZkYzdjMzQtY2VmYy00NWI0LTllNzktODI1ODg0NWNjNmE3?sa=X&ved=2ahUKEwj-yqKRhMOCAxVBNVkFHXAXDz4QkfYCegQIARAF headlines: links::Links||sprungmarken::Sprungmarken||hosts::Hosts||feedback-gerne-auch-als-voice-message::Feedback (gerne auch als Voice Message) -image: /images/podcast/episode/97-metriken-hypothesen-und-fehler-ab-testing-in-der-praxis-mit-philipp-monreal.jpg +image: ./97-metriken-hypothesen-und-fehler-ab-testing-in-der-praxis-mit-philipp-monreal.jpg length_second: 4126 pubDate: 2023-11-14 05:00:00+00:00 rtlplus: '' diff --git a/src/images/headers/andy-grunwald-wolfgang-gassler-lounge.jpg b/src/images/headers/andy-grunwald-wolfgang-gassler-lounge.jpg new file mode 100644 index 00000000..7f4dd499 Binary files /dev/null and b/src/images/headers/andy-grunwald-wolfgang-gassler-lounge.jpg differ diff --git a/public/images/teams/andy-grunwald-headshot.jpg b/src/images/teams/andy-grunwald-headshot.jpg similarity index 100% rename from public/images/teams/andy-grunwald-headshot.jpg rename to src/images/teams/andy-grunwald-headshot.jpg diff --git a/public/images/teams/andy-grunwald-profile.jpg b/src/images/teams/andy-grunwald-profile.jpg similarity index 100% rename from public/images/teams/andy-grunwald-profile.jpg rename to src/images/teams/andy-grunwald-profile.jpg diff --git a/public/images/teams/romedius-weiss-headshot.jpg b/src/images/teams/romedius-weiss-headshot.jpg similarity index 100% rename from public/images/teams/romedius-weiss-headshot.jpg rename to src/images/teams/romedius-weiss-headshot.jpg diff --git a/public/images/teams/tim-hannemann-headshot.jpg b/src/images/teams/tim-hannemann-headshot.jpg similarity index 100% rename from public/images/teams/tim-hannemann-headshot.jpg rename to src/images/teams/tim-hannemann-headshot.jpg diff --git a/public/images/teams/wolfgang-gassler-headshot.jpg b/src/images/teams/wolfgang-gassler-headshot.jpg similarity index 100% rename from public/images/teams/wolfgang-gassler-headshot.jpg rename to src/images/teams/wolfgang-gassler-headshot.jpg diff --git a/public/images/teams/wolfgang-gassler-profile.jpg b/src/images/teams/wolfgang-gassler-profile.jpg similarity index 100% rename from public/images/teams/wolfgang-gassler-profile.jpg rename to src/images/teams/wolfgang-gassler-profile.jpg diff --git a/public/images/testimonials/luise-haack.jpeg b/src/images/testimonials/luise-haack.jpeg similarity index 100% rename from public/images/testimonials/luise-haack.jpeg rename to src/images/testimonials/luise-haack.jpeg diff --git a/public/images/testimonials/pascal-landau.jpeg b/src/images/testimonials/pascal-landau.jpeg similarity index 100% rename from public/images/testimonials/pascal-landau.jpeg rename to src/images/testimonials/pascal-landau.jpeg diff --git a/public/images/testimonials/saskia-keil.png b/src/images/testimonials/saskia-keil.png similarity index 100% rename from public/images/testimonials/saskia-keil.png rename to src/images/testimonials/saskia-keil.png diff --git a/public/images/testimonials/sebastian-hammerl.jpg b/src/images/testimonials/sebastian-hammerl.jpg similarity index 100% rename from public/images/testimonials/sebastian-hammerl.jpg rename to src/images/testimonials/sebastian-hammerl.jpg diff --git a/public/images/testimonials/yaniv-preiss.jpeg b/src/images/testimonials/yaniv-preiss.jpeg similarity index 100% rename from public/images/testimonials/yaniv-preiss.jpeg rename to src/images/testimonials/yaniv-preiss.jpeg diff --git a/src/layouts/blog-post.astro b/src/layouts/blog-post.astro index 32e27e74..c75f063d 100644 --- a/src/layouts/blog-post.astro +++ b/src/layouts/blog-post.astro @@ -1,5 +1,6 @@ --- import { Markdown } from 'astro-remote'; +import { Image } from "astro:assets"; import MainHead from '../components/MainHead.astro'; import Nav from '../components/Nav.astro'; @@ -57,7 +58,7 @@ let tags = content.tags.map((element) => URLify(element));

- {content.title} + {content.title}
diff --git a/src/layouts/podcast-episode.astro b/src/layouts/podcast-episode.astro index d86ba6da..63b62613 100644 --- a/src/layouts/podcast-episode.astro +++ b/src/layouts/podcast-episode.astro @@ -1,6 +1,8 @@ --- -import Path from 'path' -import fs from 'fs' +import Path from 'path'; +import fs from 'fs'; + +import { Image } from "astro:assets"; import MainHead from '../components/MainHead.astro'; import Nav from '../components/Nav.astro'; @@ -168,8 +170,7 @@ const html = (await Astro.slots.render('default'))
- - {frontmatter.title} + {`Engineering
diff --git a/src/pages/index.astro b/src/pages/index.astro index e532843e..c2ebe879 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,5 +1,6 @@ --- import { getCollection } from "astro:content"; +import { Image } from "astro:assets"; import Footer from '../components/Footer.astro'; import MainHead from '../components/MainHead.astro'; import Nav from '../components/Nav.astro'; @@ -9,6 +10,16 @@ import { URLify } from '../scripts/urlify.js'; import { cutText } from '../scripts/strings.js'; import { formatDateWithoutWeekday } from '../scripts/date.js'; +// Testimonials images +import testimonialLuiseHaack from "../images/testimonials/luise-haack.jpeg"; +import testimonialPascalLandau from "../images/testimonials/pascal-landau.jpeg"; +import testimonialSaskiaKeil from "../images/testimonials/saskia-keil.png"; +import testimonialSebastianHammerl from "../images/testimonials/sebastian-hammerl.jpg"; +import testimonialYanivPreiss from "../images/testimonials/yaniv-preiss.jpeg"; + +// Header image +import headerImageAndyWolfiLounge from "../images/headers/andy-grunwald-wolfgang-gassler-lounge.jpg"; + import podcastInfo from '../data/podcast-info.json'; let title = 'Engineering Kiosk - Der Software-Engineering-Podcast'; @@ -69,7 +80,7 @@ let currentEpisodeDescription = cutText(episode.data.description, 170);
Roter Kreis Grüne Punkte - Andy Grunwald und Wolfgang Gassler am 06. Februar 2023 in Duisburg + Die Podcast-Hosts Andy Grunwald und Wolfgang Gassler
@@ -83,7 +94,7 @@ let currentEpisodeDescription = cutText(episode.data.description, 170); @@ -187,7 +198,7 @@ let currentEpisodeDescription = cutText(episode.data.description, 170); Der Engineering Kiosk Podcast ist großartig - verschiedene interessante Themen, einfach erklärt dennoch von hoher Qualität. Diese zeichnet sich u.a. aus durch tiefe Unterhaltungen, Beispiele und Erklärungen.
- Yaniv Preiss + Yaniv Preiss

Yaniv Preiss

Head Of Engineering, NewStore

@@ -201,7 +212,7 @@ let currentEpisodeDescription = cutText(episode.data.description, 170); Podcast mit aktuellen und interkulturellem Witz über IT- und Führungsfragen. Was ich höre, lässt mich meine Rolle als Führungskraft reflektieren und hilft mir Ratschläge als Karrierecoach für Studierende auf ihre Relevanz abzuchecken.
- Luise Haack + Luise Haack

Luise Haack

Referatsleiterin, Uni Passau

@@ -213,7 +224,7 @@ let currentEpisodeDescription = cutText(episode.data.description, 170);

Ein entspannter Podcast, der sich selber auch nicht zu ernst nimmt. Insbesondere die Erfahrung von Andy & Wolfgang ist viel Wert und hilft mir in meiner Position als noch recht junger Techlead.

- Saskia Keil + Saskia Keil

Saskia Keil

Techlead, trivago

@@ -227,7 +238,7 @@ let currentEpisodeDescription = cutText(episode.data.description, 170); Jede Woche neue Ansichten und Eindrücke in die unterschiedlichsten Engineering- und Management-Themen. In den kurzweiligen Folgen regen mich Wolfgang und Andy zum Nachdenken an und holen mich aus meiner "Blase" heraus.
- Sebastian Hammerl + Sebastian Hammerl

Sebastian Hammerl

Leiter Software-Entwicklung, Getslash

@@ -239,7 +250,7 @@ let currentEpisodeDescription = cutText(episode.data.description, 170);

Ich bin Hörer seit Episode #1 und von der Breite sowie Tiefe der Themen positiv überrascht. Nicht nur die Theorie wird diskutiert, sondern man merkt deutlich den Einfluss praktischer Erfahrungen.

- Pascal Landau + Pascal Landau

Pascal Landau

Technical Director, ABOUT YOU

@@ -268,7 +279,7 @@ let currentEpisodeDescription = cutText(episode.data.description, 170);
Roter Kreis Grüne Punkte - Andy Grunwald + Andy Grunwald
diff --git a/src/pages/kiosk-betreiber/index.astro b/src/pages/kiosk-betreiber/index.astro index c6774c7a..78d44394 100644 --- a/src/pages/kiosk-betreiber/index.astro +++ b/src/pages/kiosk-betreiber/index.astro @@ -29,7 +29,7 @@ const canonicalURL = new URL(Astro.url.pathname, Astro.site);
Roter Kreis Grüne Punkte - Wolfgang Gassler + Wolfgang Gassler
diff --git a/src/pages/linktree.astro b/src/pages/linktree.astro index e4a949dc..dda5b824 100644 --- a/src/pages/linktree.astro +++ b/src/pages/linktree.astro @@ -1,9 +1,13 @@ --- +import { Image } from "astro:assets"; import Footer from '../components/Footer.astro'; import MainHead from '../components/MainHead.astro'; import Nav from '../components/Nav.astro'; import PodcastEpisodeListing from '../components/PodcastEpisodeListing.astro'; +// Header image +import headerImageAndyWolfiLounge from "../images/headers/andy-grunwald-wolfgang-gassler-lounge.jpg"; + let title = 'Das Engineering Kiosk'; let description = 'Alle Episoden vom deutschsprachigen Software-Engineering-Podcast mit Wolfgang Gassler und Andy Grunwald über die Themen Engineering-Kultur, Open Source und Technologie.'; const canonicalURL = new URL(Astro.url.pathname, Astro.site); @@ -35,7 +39,7 @@ const platforms = [

Der Engineering Kiosk Podcast

- Andy Grunwald und Wolfgang Gassler am 06. Februar 2023 in Duisburg + Die Podcast-Hosts Andy Grunwald und Wolfgang Gassler
{ @@ -50,7 +54,7 @@ const platforms = [ - +
diff --git a/src/pages/werbung.astro b/src/pages/werbung.astro index fcc460a8..9b2d4c7f 100644 --- a/src/pages/werbung.astro +++ b/src/pages/werbung.astro @@ -1,8 +1,15 @@ --- +import { Image } from "astro:assets"; +import { getEntry } from 'astro:content'; + import Footer from '../components/Footer.astro'; import MainHead from '../components/MainHead.astro'; import Nav from '../components/Nav.astro'; +// Podcast Episode images +const episode85 = await getEntry('podcast', '85-von-entwicklerin-zur-engineering-managerin-erfahrungen-und-learnings-mit-isabelle-glasmacher'); +const episode86 = await getEntry('podcast', '86-open-source-als-herz-einer-firma-mit-nextcloud-gründer-frank-karlitschek'); + let title = 'Werbung im Engineering Kiosk Podcast'; let description = 'Erreiche die schwer erreichbare Zielgruppe von Softwareentwicklern und technischen Entscheidern im Engineering Kiosk Podcast.'; const canonicalURL = new URL(Astro.url.pathname, Astro.site); @@ -46,16 +53,18 @@ const canonicalURL = new URL(Astro.url.pathname, Astro.site);
- Episode 86 + + Episode 86 +

- Open Source als Herz einer Firma mit Nextcloud Gründer Frank Karlitschek + + Open Source als Herz einer Firma mit Nextcloud Gründer Frank Karlitschek

Host-gelesene Werbung von Media Lab Bayern bei Minute 15:07

@@ -65,16 +74,18 @@ const canonicalURL = new URL(Astro.url.pathname, Astro.site);