Status: WORKING
Result: DCS World läuft stabil in 2D UND VR unter Linux mit WiVRn + GE-Proton + Quest 3.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # cleanup-untagged-images.sh | |
| # | |
| # Löscht nur ungetaggte Container-Package-Versionen (z.B. GHCR) für einen | |
| # Benutzer oder eine Organisation. Tagged Images bleiben erhalten, auch wenn | |
| # sie älter sind. | |
| # | |
| # VORSICHT: Löschen ist unwiderruflich. Script standardmäßig im Dry-Run-Modus. | |
| # Benötigt: curl, jq, ein GitHub-Token mit Rechten für Package-Löschen | |
| # (z.B. repo + write:packages / delete:packages je nach Account-Typ). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Create secure password strings</title> | |
| <script type="text/javascript"> | |
| window.onload = domReady; | |
| var asciistart = 33; | |
| var asciiend = 126; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Simple dyndns updater for Bind with nsupdate | |
| * | |
| * This is done especially for the AVM FritzBox updater, but shuould usable for any other | |
| * as well (maybe with some changes). | |
| * Accepts 2 request data (such as GET): | |
| * | |
| * $_REQUEST['data']: A base64 encoded list of the data to be used for the update. | |
| * When decoded the following string should appear: 'username|passord|(sub)domain|ipv4|ipv6' |