This file contains 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
# 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 |
This file contains 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
// 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> |