Skip to content

Instantly share code, notes, and snippets.

View Eurobertics's full-sized avatar

Bernd Robertz Eurobertics

View GitHub Profile
@Eurobertics
Eurobertics / dcs-linux-vr-setup.md
Created May 8, 2026 22:13
DCS on CachyOS Linux (Kernel 7.0.3) with VR support

DCS World VR on Linux (CachyOS / Hyprland / Quest 3 / WiVRn / GE-Proton)

Status: WORKING
Result: DCS World läuft stabil in 2D UND VR unter Linux mit WiVRn + GE-Proton + Quest 3.


System

Hardware

@Eurobertics
Eurobertics / cleanup-untagged-images.sh
Last active October 26, 2025 13:53
Script to delete untagged package images from GHCR and Dockerfile
#!/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).
@Eurobertics
Eurobertics / pwgen.html
Last active November 1, 2019 13:42
Generates a 16 charactor long passowrd with the random function of JS.No additional requirements needed.
<!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;
@Eurobertics
Eurobertics / ddnsupdater.php
Last active August 11, 2019 10:30
Simple dyndns updater for Bind with nsupdate. Done for the AVM FritzBox, but should usable with other as well (maybe with some small changes).
<?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'