- A single node proxmox v5.4-3 install
- Only one public IP address
- LXC/KVM for "pet" (development) containers
- Portainer / Docker for less stateful more automated use-cases
- My server's FQDN is
stardust.gtown.lan.rymcg.tech
- use your own domain name.
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
#!/bin/bash | |
## This is a setup script for temporary sharing of an internet connection | |
## Configure the variables at the top of this file, then run: | |
## sudo ./internet-sharing.sh setup | |
## And optionally start the DHCP server: | |
## sudo ./internet-sharing.sh dhcp | |
## Connect your other computer or LAN to the second network device. | |
## Dnsmasq will output the IP address(es) of connected clients as they request them. | |
## Press Ctrl-C to quit dnsmasq when you no longer need DHCP. |
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
clear lock | |
clear control | |
clear mod1 | |
clear mod2 | |
clear mod3 | |
clear mod4 | |
clear mod5 | |
keycode 37 = Hyper_L | |
keycode 66 = Control_L | |
add control = Control_L Control_R |
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
#!/bin/sh | |
gcloud beta functions deploy psychedelic_art --runtime python37 --trigger-http |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
made with esnextbin
made with esnextbin
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
"""Convert podcast feeds into an aria2 download script | |
- Setup feed output directories and URLS | |
- Run: python archive_podcast.py > aria2.txt | |
- Run: aria2c -i aria2.txt | |
Aria2 will download all the episodes and supports resuming of partial downloads | |
""" | |
import feedparser |
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
#!/bin/bash | |
# GPG verified sandstorm installer for curlbombing. | |
# Use with "curlbomb --unwrapped -1 run sandstorm.curlbomb.sh" | |
# The idea here is that you trust the sandstorm devs, but you don't | |
# trust their installer script without verifying the signatures, but | |
# you want it to be completely automated so you can run this over and | |
# over. |