THE IDIOT’S GUIDE TO VERIFIED COMMITS GitHub wants your commits to be signed so it knows you really made them. To fix this, you need to: Generate a GPG key Tell GitHub about it Tell Git to use it Here’s exactly how:
🧩 STEP 1 — Install GPG macOS:
THE IDIOT’S GUIDE TO VERIFIED COMMITS GitHub wants your commits to be signed so it knows you really made them. To fix this, you need to: Generate a GPG key Tell GitHub about it Tell Git to use it Here’s exactly how:
🧩 STEP 1 — Install GPG macOS:
| # Wrote this for updating domains for my homelab cluster | |
| # Uses a simple bash script to get the current IP, then send it to Google Domains | |
| # You could update the env variables to read from a secret, but I use this with a values file | |
| # in this format: | |
| # domains: | |
| # domainone: | |
| # domainName: "sub.domain.com" | |
| # domainUsername: USERNAME | |
| # domainPassword: PASSWORD |
| // using the fantastic https://github.com/MHeironimus/ArduinoJoystickLibrary | |
| // Based on the soulders of giants: | |
| // Gamecube controller to Nintendo 64 adapter by Andrew Brown | |
| // http://www.cs.duke.edu/~brownan/n642gc.html | |
| // N64 to HID by Peter Den Hartog: | |
| // https://www.instructables.com/id/Use-an-Arduino-with-an-N64-controller/ | |
| // N64 Controller Tester by sanni | |
| // https://github.com/sanni/controllertest | |
| #include <pins_arduino.h> |