Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions MEETING-CONTENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
{
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
14 changes: 7 additions & 7 deletions current-meeting.json
Original file line number Diff line number Diff line change
@@ -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 <a href=\"https://www.linkedin.com/in/peter-klaffehn-0a5b381b9/\" target=\"_blank\" rel=\"noopener\">Peter Klaffehn</a>, 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."
}
]
}
Expand Down
28 changes: 28 additions & 0 deletions events.html
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,34 @@ <h2 class="section-title">Vergangene Treffen</h2>
}

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);
});

Expand Down
Binary file added img/irrer_wissenschaftler.mp4
Binary file not shown.
19 changes: 18 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -525,8 +525,25 @@ <h3>Newsletter abonnieren</h3>
description.innerHTML = topic.description.replace(/\n/g, '<br>');
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;
Expand Down
15 changes: 15 additions & 0 deletions past-events.json
Original file line number Diff line number Diff line change
@@ -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 <a href=\"https://www.linkedin.com/in/peter-klaffehn-0a5b381b9/\" target=\"_blank\" rel=\"noopener\">Peter Klaffehn</a>, 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",
Expand Down
12 changes: 0 additions & 12 deletions upcoming-events.json
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
]
}
]
}
Loading