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
| # Proxmox VE shell commands to create Debian 13 cloud-init ready VM template and | |
| # deploy a VM from the template with cloud-init settings | |
| # | |
| # Tested on Proxmox VE 8.4.14 and 9.0.11 | |
| # Run the commands on the Proxmox VE host as root | |
| # Note: This is not a shell script ready to be run, it's just a list of commands | |
| # | |
| # https://github.com/alatalo | |
| # |
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
| // Impulse NTP master clock for ESP32 + L298N (alternate polarity each pulse) | |
| // Original by Wawa https://forum.arduino.cc/t/running-special-clock-with-motor-controller/1159828/106 | |
| // Refactored by Ville Alatalo https://github.com/alatalo 08/2025 | |
| // + minute-impulses | |
| // + ENA for toggling coil | |
| // + Finnish NTP + TZ | |
| const char* WIFI_SSID = "Internet of Shit"; // WiFi SSID | |
| const char* WIFI_PASS = ""; // WiFi password | |
| const char* MY_TZ = "EET-2EEST,M3.5.0/3,M10.5.0/4"; // Helsinki, Finland |
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 pwsh | |
| # Show the battery level of Logitech Arctis 7 headset in a | |
| # small Powershell window. Uses HeadsetControl by Sapd <Denis Arnst>. | |
| # | |
| # Requirements: | |
| # * Powershell and `Set-ExecutionPolicy RemoteSigned` | |
| # * headsetcontrol.exe https://github.com/Sapd/HeadsetControl | |
| # | |
| # Note: For desktop icon, see attached headset_createDesktopIcon.ps1 |