diff --git a/CHANGELOG.md b/CHANGELOG.md index 54e5468..5956b1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ - Added preloading for JSON data files on `events.html` to load event data as early as possible. ### Changed +- Archived Peter Klaffehn's M365 Security/Maester session (July 17, 2026) to past events. +- Scheduled Christian Ritter's PSScriptAnalyzer session ("Besser Skripten mit dem PSScriptAnalyzer") as current meeting for August 14, 2026. - Archived the June 19th social event ("Bier, Kicker & PowerShell-Talks") to past events list. - Rescheduled Peter Klaffehn's Maester session to July 17, 2026. - Postponed the Azure Automation Runbook Secret Rotation session to a later date. diff --git a/MEETING-CONTENT.md b/MEETING-CONTENT.md index 3be5253..e0cd6c5 100644 --- a/MEETING-CONTENT.md +++ b/MEETING-CONTENT.md @@ -17,8 +17,8 @@ The meeting content is now stored in three separate JSON files that are easy to ```json { "nextMeeting": { - "date": "Freitag, den 20.06.2025, ab 18:30h", - "isoDate": "2025-06-20T18:30:00+02:00", + "date": "Freitag, den 14.08.2026, ab 18:30h", + "isoDate": "2026-08-14T18:30:00+02:00", "description": "Die PowerShell Usergroup Hannover (PSUGH) trifft sich am:", "topics": [ { diff --git a/README.md b/README.md index a397c59..fe6da35 100644 --- a/README.md +++ b/README.md @@ -112,12 +112,12 @@ Edit the respective JSON files to update meeting information: // current-meeting.json { "nextMeeting": { - "date": "Freitag, den 20.06.2025, ab 18:30h", - "isoDate": "2025-06-20T18:30:00+02:00", + "date": "Freitag, den 14.08.2026, ab 18:30h", + "isoDate": "2026-08-14T18:30:00+02:00", "topics": [ { - "title": "🚀 Your Next Topic Title 🚀", - "speaker": "Speaker Name", + "title": "Besser Skripten mit dem PSScriptAnalyzer", + "speaker": "Christian Ritter", "picture": "img/topic-image.png", "description": "Topic description with details" } diff --git a/current-meeting.json b/current-meeting.json index be81d48..e0d869e 100644 --- a/current-meeting.json +++ b/current-meeting.json @@ -1,14 +1,14 @@ { "nextMeeting": { - "date": "Freitag, den 17.07.2026, ab 18:30h", - "isoDate": "2026-07-17T18:30:00+02:00", - "description": "M365 Security automatisieren mit Maester", + "date": "Freitag, den 14.08.2026, ab 18:30h", + "isoDate": "2026-08-14T18:30:00+02:00", + "description": "Besser Skripten mit dem PSScriptAnalyzer", "topics": [ { - "title": "M365 Security automatisieren mit Maester", - "speaker": "Peter Klaffehn", - "picture": "img/maester_security.webp", - "description": "Die Absicherung von Microsoft 365 Tenants und die kontinuierliche Überwachung von Sicherheitskonfigurationen ist eine Mammutaufgabe. Hier kommt Maester ins Spiel – ein mächtiges Open-Source-Test-Framework, das auf PowerShell und Pester basiert.\n\nIn dieser Session zeigt uns Peter Klaffehn, wie wir mit Maester die Sicherheitsrichtlinien unserer Cloud-Infrastruktur automatisiert und reproduzierbar überprüfen können." + "title": "Besser Skripten mit dem PSScriptAnalyzer", + "speaker": "Christian Ritter", + "video": "img/irrer_wissenschaftler.mp4", + "description": "Regeln, überall nur Regeln!\n\nOb im Alltag oder beim Entwickeln – Regeln geben uns Orientierung und helfen, Qualität zu sichern. In PowerShell begegnen sie uns als PSScriptAnalyzer Rules, die unseren Code konsistent, sauber und wartbar halten.\n\nIn dieser Session zeigt euch Christian Ritter, wie PSScriptAnalyzer-Regeln funktionieren, wie ihr eigene Regeln erstellt und wie ihr diese mithilfe von CI/CD-Pipelines automatisiert durchsetzen könnt. Freut euch auf praxisnahe Einblicke, Beispiele aus dem Entwickleralltag und wertvolle Tipps für euer tägliches PowerShell-Coding." } ] } diff --git a/events.html b/events.html index beb7b40..050b669 100644 --- a/events.html +++ b/events.html @@ -488,6 +488,34 @@

Vergangene Treffen

} topicElement.appendChild(topicDescription); + + const videoPath = topic.video || (topic.picture && topic.picture.match(/\.(mp4|webm)$/i) ? topic.picture : null); + const picturePath = topic.picture; + + if (videoPath) { + const video = document.createElement('video'); + video.className = 'topic-picture'; + video.autoplay = true; + video.loop = true; + video.muted = true; + video.playsInline = true; + if (picturePath && !picturePath.match(/\.(mp4|webm)$/i)) { + video.poster = picturePath; + } + const source = document.createElement('source'); + source.src = videoPath; + source.type = videoPath.endsWith('.webm') ? 'video/webm' : 'video/mp4'; + video.appendChild(source); + topicElement.appendChild(video); + } else if (picturePath) { + const picture = document.createElement('img'); + picture.className = 'topic-picture'; + picture.src = picturePath; + picture.alt = topic.title ? `Bild zu ${topic.title}` : 'Themenbild'; + picture.loading = 'lazy'; + topicElement.appendChild(picture); + } + topicsContainer.appendChild(topicElement); }); diff --git a/img/irrer_wissenschaftler.mp4 b/img/irrer_wissenschaftler.mp4 new file mode 100644 index 0000000..f25b86b Binary files /dev/null and b/img/irrer_wissenschaftler.mp4 differ diff --git a/index.html b/index.html index ceb4c30..18a7fde 100644 --- a/index.html +++ b/index.html @@ -525,8 +525,25 @@

Newsletter abonnieren

description.innerHTML = topic.description.replace(/\n/g, '
'); topicCard.appendChild(description); + const videoPath = topic.video || meeting.video || (topic.picture && topic.picture.match(/\.(mp4|webm)$/i) ? topic.picture : null); const picturePath = topic.picture || meeting.picture; - if (picturePath) { + + if (videoPath) { + const video = document.createElement('video'); + video.className = 'topic-picture'; + video.autoplay = true; + video.loop = true; + video.muted = true; + video.playsInline = true; + if (picturePath && !picturePath.match(/\.(mp4|webm)$/i)) { + video.poster = picturePath; + } + const source = document.createElement('source'); + source.src = videoPath; + source.type = videoPath.endsWith('.webm') ? 'video/webm' : 'video/mp4'; + video.appendChild(source); + topicCard.appendChild(video); + } else if (picturePath) { const picture = document.createElement('img'); picture.className = 'topic-picture'; picture.src = picturePath; diff --git a/past-events.json b/past-events.json index f3c97f0..37f9ba7 100644 --- a/past-events.json +++ b/past-events.json @@ -1,5 +1,20 @@ { "pastEvents": [ + { + "date": "2026-07-17", + "dateDisplay": "Freitag, den 17.07.2026", + "description": "M365 Security automatisieren mit Maester", + "topics": [ + { + "title": "M365 Security automatisieren mit Maester", + "speaker": "Peter Klaffehn", + "picture": "img/maester_security.webp", + "description": "Die Absicherung von Microsoft 365 Tenants und die kontinuierliche Überwachung von Sicherheitskonfigurationen ist eine Mammutaufgabe. Hier kommt Maester ins Spiel – ein mächtiges Open-Source-Test-Framework, das auf PowerShell und Pester basiert.\n\nIn dieser Session zeigt uns Peter Klaffehn, wie wir mit Maester die Sicherheitsrichtlinien unserer Cloud-Infrastruktur automatisiert und reproduzierbar überprüfen können." + } + ], + "title": "M365 Security automatisieren mit Maester", + "isoDate": "2026-07-17T18:30:00+02:00" + }, { "date": "2026-06-19", "dateDisplay": "Freitag, den 19.06.2026", diff --git a/upcoming-events.json b/upcoming-events.json index f51db1e..9f4c4ad 100644 --- a/upcoming-events.json +++ b/upcoming-events.json @@ -11,18 +11,6 @@ "description": "Sicherheit & Governance fangen bei der Credential-Rotation an! In dieser Session zeigt euch Marco Kleinert, wie ihr die automatische Rotation von Entra ID App-Registration Secrets über Azure Automation Runbooks implementiert. (Verschoben)" } ] - }, - { - "date": "Herbst 2026, ab 18:30h", - "title": "PSScriptAnalyzer mit Christian Ritter", - "description": "PSScriptAnalyzer mit Christian Ritter (verschoben in den Herbst)", - "topics": [ - { - "title": "PSScriptAnalyzer mit Christian Ritter", - "speaker": "Christian Ritter", - "description": "Regeln, überall nur Regeln!\n\nOb im Alltag oder beim Entwickeln – Regeln geben uns Orientierung und helfen, Qualität zu sichern. In PowerShell begegnen sie uns als PSScriptAnalyzer Rules, die unseren Code konsistent, sauber und wartbar halten.\n\nIn dieser Session zeigt euch Christian Ritter, wie PSScriptAnalyzer-Regeln funktionieren, wie ihr eigene Regeln erstellt und wie ihr diese mithilfe von CI/CD-Pipelines automatisiert durchsetzen könnt. Freut euch auf praxisnahe Einblicke, Beispiele aus dem Entwickleralltag und wertvolle Tipps für euer tägliches PowerShell-Coding." - } - ] } ] }