Compare commits

..

18 Commits

Author SHA1 Message Date
admin 84c58e965c Merge branch 'main' into codex/create-advanced-mouse-synthesizer-in-synth-folder-235xid 2025-11-18 11:15:26 +01:00
admin c352851adb Add extra modulation effects to mouse synth 2025-11-18 11:13:33 +01:00
admin 2f4362e856 test 2025-11-18 10:41:04 +01:00
admin a0bca62a67 asd 2025-11-18 10:40:41 +01:00
admin e3c8c9717e sadf2 2025-11-18 10:27:54 +01:00
admin c1ed600d4e we 2025-11-18 10:23:49 +01:00
admin 4291ef6a05 Merge pull request #10 from metacube2/codex/create-advanced-mouse-synthesizer-in-synth-folder-grrihv
Expand synth with multi-source BTC modulation
2025-11-18 07:35:28 +01:00
admin 088ba9e8b1 Merge branch 'main' into codex/create-advanced-mouse-synthesizer-in-synth-folder-grrihv 2025-11-18 07:35:19 +01:00
admin bfb351d33e Expand synth with multi-source BTC modulation 2025-11-18 07:32:24 +01:00
admin 31fa44f6a7 Merge pull request #9 from metacube2/codex/projekt-fur-bandreservierung-erstellen-70yja1
Add band contact emails and contact form
2025-11-17 22:23:34 +01:00
admin f02f9e81a3 Merge branch 'main' into codex/projekt-fur-bandreservierung-erstellen-70yja1 2025-11-17 22:23:15 +01:00
admin 2c1cb35025 Add contact email support and band contact form 2025-11-17 22:17:59 +01:00
admin a3936c4c6f Merge pull request #8 from metacube2/codex/projekt-fur-bandreservierung-erstellen-tgjoyd
Integrate auroraalt mail transport
2025-11-17 21:50:16 +01:00
admin e04055103c Merge branch 'main' into codex/projekt-fur-bandreservierung-erstellen-tgjoyd 2025-11-17 21:50:05 +01:00
admin 619a1bf663 Wire up auroraalt mailer 2025-11-17 21:47:15 +01:00
admin a92ffc0ab9 Create auroraalt.php 2025-11-17 21:39:28 +01:00
admin 4e5a73a643 Create aurora.php 2025-11-17 21:29:08 +01:00
admin 1659940271 Merge pull request #7 from metacube2/codex/create-advanced-mouse-synthesizer-in-synth-folder
Add Bitcoin-reactive mouse synth playground
2025-11-17 16:49:40 +01:00
4 changed files with 5783 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"name": "Mein Webserver",
"host": "192.168.178.88",
"protocol": "sftp",
"port": 22,
"username": "root",
"password": "934290",
"remotePath": "/var/www/html/",
"uploadOnSave": true,
"useTempFile": false,
"openSsh": false
}
+1720
View File
File diff suppressed because it is too large Load Diff
+4045
View File
File diff suppressed because it is too large Load Diff
+6
View File
@@ -12,10 +12,14 @@ try {
if (isset($payload['chartName'])) {
$btcChange = $payload['chartName'];
}
}
} catch (Throwable $e) {
// Silently ignore network failures, we degrade gracefully in the UI.
}
$btcLabel = $btcPrice ? number_format($btcPrice, 2) . ' $' : 'unbekannt';
?>
<!DOCTYPE html>
@@ -23,6 +27,8 @@ $btcLabel = $btcPrice ? number_format($btcPrice, 2) . ' $' : 'unbekannt';
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mouse Synth Lab</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>