Set Minecraft over VPN
    "javaArgs": "-Djava.net.preferIPv4Stack\u003dtrue -Djava.net
Turn off ProMicro LED lights
    void led_set_user(uint8_t usb_led) {
    if (usb_led) {
        // Turn off RX/TX LEDs
        DDRD &= ~(1 << 5);
        DDRB &= ~(1 << 0);
        }
    }
PowerShell shortcut for Minecraft
    C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy Bypass -Command "Set-Location 'C:\Users\Saved\Games\jdk-25.0.2+10-jre';.\bin\javaw.exe -jar .\HMCL-3.12.0.331.jar"
Squoosh
    .\squoosh-cli.exe --mozjpeg '{"quality": 75}' --resize '{"enabled": true, "width": 720}' --suffix -small -d small
    .\squoosh-cli.exe --mozjpeg '{"quality": 75}' --suffix -large -d large # default current path 
    .\squoosh-cli.exe --mozjpeg '{"quality": 75}' --suffix -large -d target_path source_path
Windows terminal configuration of QKM
    { 
        "commandline": "\"C:\\Program Files\\QMK_MSYS\\usr\\bin\\bash.exe\" --login -i",
        "environment": 
        {
            "CHERE_INVOKING": "1",
            "MSYS2_PATH_TYPE": "inherit",
            "MSYSTEM": "MINGW64"
        },
        "guid": "{43dbf366-0843-5759-8715-fdbf7e4d2840}",
        "hidden": false,
        "icon": "C:\\Program Files\\QMK_MSYS\\icon.ico",
        "name": "QMK",
        "startingDirectory": "%USERPROFILE%"
    }