mirror of
https://codeberg.org/Sonoj/osamc.de
synced 2025-07-15 05:52:10 +02:00
Compare commits
3 Commits
edfb1f90eb
...
72393c3b48
Author | SHA1 | Date | |
---|---|---|---|
![]() |
72393c3b48 | ||
![]() |
2dbff50941 | ||
![]() |
dc34270ba4 |
45
protokolle/osamc_2025_05_21.txt
Normal file
45
protokolle/osamc_2025_05_21.txt
Normal file
@ -0,0 +1,45 @@
|
||||
# OSAMC 21. Mai 2025, 19:00 Uhr
|
||||
|
||||
## Willkommen
|
||||
|
||||
Begrüßung, Anwesenheit, Vorstellungsrunde
|
||||
|
||||
* Anwesend: sven, julia, nils, daniel, darko, florob, airman, georg, wilfried, markus
|
||||
|
||||
## Impulse
|
||||
|
||||
Aufwärmen, Spiele und Kleine Praxiseinheiten
|
||||
|
||||
* Rhythmusübung (5 min) - Nils
|
||||
|
||||
## Internes
|
||||
|
||||
Rückschau, Organisation und Internes
|
||||
|
||||
* [OSAMC/Sonoj bei der tmt33](https://doc.sonoj.org/s/XPS7DN8hf): Ideen und gemeinsame Beiträge (15-20 min, Sven)
|
||||
|
||||
## Neuigkeiten und Empfehlungen - Veranstaltungen, Releases, Termine, Medientipps, Webseiten, Videos, Bücher, Tutorials etc.
|
||||
|
||||
* Interview mit interessanter Demo zu Vinylschnitt: https://www.youtube.com/watch?v=J1qMv-1G4RM
|
||||
* https://github.com/lsp-plugins/lsp-plugins/releases/tag/1.2.22
|
||||
* https://linuxmusicians.com/viewtopic.php?t=28321
|
||||
* [DarkGlass Anagram](https://librearts.org/2025/04/meet-anagram-a-linux-powered-bass-fx-processor/), nicht ganz aber etwas FOSS (Linux, mod-host, div. Plugins...)
|
||||
* [Milan meets PipeWire](https://media.ccc.de/v/fsck-2025-120-milan-meets-pipewire-deterministic-audio-streaming-for-everyone) (CCC/FSCK 2025; [dev branch](https://github.com/kebag-logic/pipewire/blob/milan-avb-dev/src/modules/module-avb/README.md))
|
||||
* https://github.com/magillos/Cable Pipewire Configs und Connections
|
||||
* https://sonoj.org
|
||||
|
||||
|
||||
## Flohmarkt - Hardware und Zeug
|
||||
|
||||
Nils verschenkt Miditemp 4x4
|
||||
|
||||
## Kleine und Große Vorträge, Demonstrationen etc
|
||||
Bitte mit Namen und Zeitplanung.
|
||||
|
||||
* Musik organisieren (und wieder finden!) mit beets (5-10min)
|
||||
* Update: Musik-PDFs erstellen mit Typst (Nils 5min)
|
||||
|
||||
## Freies Gespräch - Diskussionen, Probleme, Sachthemen
|
||||
|
||||
* Das Wort zum Mittwoch (Nils)
|
||||
** Es wurde vorgeschlagen, die feste Struktur der Treffen aufzulockern und den
|
25
protokolle/osamc_2025_06_18.txt
Normal file
25
protokolle/osamc_2025_06_18.txt
Normal file
@ -0,0 +1,25 @@
|
||||
# OSAMC 18. Juni 2025, 19:00 Uhr
|
||||
|
||||
* Anwesend: Nils, Chris, Darko, Lukas, airman, Georg, Flo H, Wolfgang, Markus, Sven, Daniel, Florob
|
||||
|
||||
* jam.osamc.de Server (ninjam + jamulus) [dockerisiert](https://github.com/cbix/docker-jamserver) und umgezogen (flo h)
|
||||
|
||||
* Sonoj? (Florob)
|
||||
* Internationale Sonoj wird 2025 nicht stattfinden. Es gibt eine Ersatzveranstaltung.
|
||||
- [Fender Studio](https://www.linux-community.de/nachrichten/fender-studio-neue-kostenlose-audio-workstation-fuer-einsteiger/) und Studio One Pro
|
||||
- [Linux Audio Conference 2025](https://jimlac25.inria.fr/lac/) - June 25-28 in Lyon, Frankreich
|
||||
|
||||
* [Finales Konzept](https://doc.sonoj.org/s/XPS7DN8hf#Finales-Konzept) für einen Beitrag bei der tmt33 (Darko, Sven)
|
||||
* Organisation des OSAMC-Stands auf der [FrOSCon](https://froscon.org) (Darko, Sven)
|
||||
* Ideen und Vorschläge für *Exploration Stations*
|
||||
* Notwendiges Equipment und Ausleihende
|
||||
* MOD Dwarf (flo h)
|
||||
* Beamer (sven)
|
||||
* Wer hat Lust noch mitzumachen?
|
||||
* Wer möchte ganz ungezwungen mal vorbei schauen? (Die FrOSCon ist kostenlos und es ist auch keine Registrierung notwenig)
|
||||
* Wer könnte auch mal für ein paar Stunden am Stand bleiben, damit Darko und ich auch mal (zusammen bzw. gleichzeitig) in Talks gehen können?
|
||||
|
||||
* Kann beets meine Musiksammlung oder eine Playlist daraus automatisch mp3-kodieren und auf MP3-Player/Handy kopieren? (flo h)
|
||||
* müsste gehen™️
|
||||
* es gibt einen gvfs-Treiber, der automatisch beim kopieren rekodiert
|
||||
* https://github.com/nschlia/ffmpegfs
|
32
second_wednesday.php
Normal file
32
second_wednesday.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
// Simple PHP script to email yourself on every second Wednesday of each month
|
||||
|
||||
function isSecondWednesday() {
|
||||
$timezone = new DateTimeZone('Europe/Berlin');
|
||||
$today = new DateTime('now', $timezone);
|
||||
|
||||
$month = $today->format('n');
|
||||
$year = $today->format('Y');
|
||||
|
||||
// Find the second Wednesday
|
||||
$secondWednesday = new DateTime("second Wednesday of $year-$month", $timezone);
|
||||
|
||||
return $today->format('Y-m-d') === $secondWednesday->format('Y-m-d');
|
||||
}
|
||||
|
||||
if (isSecondWednesday()) {
|
||||
// Configure your email details
|
||||
$to = "nils@hilbricht.net";
|
||||
$subject = "Erinnerung: OSAMC Einladung schreiben";
|
||||
$message = "Nächste Woche ist OSAMC, bitte einladen.";
|
||||
$headers = "From: nils@hilbricht.net\r\n"; // You might need a valid domain email
|
||||
|
||||
// Send the email
|
||||
mail($to, $subject, $message, $headers);
|
||||
}
|
||||
|
||||
// If you want output when running manually:
|
||||
if (__FILE__ == realpath($_SERVER['SCRIPT_FILENAME'])) {
|
||||
echo isSecondWednesday() ? "Email sent (or would have been sent) today.\n" : "Today is not the second Wednesday.\n";
|
||||
}
|
||||
?>
|
Loading…
x
Reference in New Issue
Block a user