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
{"nodes":[{"id":"1","status":"complete","treasure":{"07":{"looted":"true"}}},{"id":"2","status":"complete"},{"id":"3","status":"complete","treasure":{"65":{"looted":"true"}}},{"id":"4","status":"complete","treasure":{"38":{"looted":"true"},"46":{"looted":"true"}}},{"id":"5","status":"complete","treasure":{"28":{"looted":"true"},"04":{"looted":"true"}}},{"id":"6","status":"complete","treasure":{"50":{"looted":"true"}}},{"id":"7","status":"complete"},{"id":"8","status":"complete","treasure":{"51":{"looted":"true"}}},{"id":"9","status":"incomplete","notes":"Done in casual"},{"id":"10","status":"complete","treasure":{"11":{"looted":"true"}}},{"id":"13","status":"complete","treasure":{"10":{"looted":"true"}}},{"id":"14","status":"complete","treasure":{"26":{"looted":"true"}}},{"id":"15","status":"incomplete","notes":"Did not choose."},{"id":"16","status":"complete","treasure":{"01":{"looted":"true"}}},{"id":"17","status":"complete","treasure":{"71":{"looted":"true"}}},{"id":"18","status":"complete","treasure":{"63 |
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
1 Aetherflux Reservoir | |
1 Arcane Lighthouse | |
1 Artifact Mutation | |
1 Atarka's Command | |
1 Banefire | |
1 Blasphemous Act | |
1 Blisterspit Gremlin | |
1 Blitz of the Thunder-Raptor | |
1 Bonus Round | |
1 Brass's Bounty |
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
10.2.1.5 pihole.in.conlon.dev |
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 | |
JSON_LOC="/path/to/file.json" | |
DNS_ZONE="myzone" | |
DNS_RECORD="sub.example.com" | |
TTL=300 | |
CURRENT_RECORD_IP=$(dig +short $DNS_RECORD) | |
CURRENT_IP=$(curl ifconfig.io/ip) | |
if [ "$CURRENT_IP" = "$CURRENT_RECORD_IP" ] |
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
Looks: Eyes: Trustworthy | |
Face: Friendly | |
Body: Thin | |
Wear: Street | |
Stats: | |
Style: +2 | |
Edge: +1 | |
Meat: -1 | |
Mind: +1 | |
Cool: +0 |
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
{ | |
"level": "error", | |
"ts": 1609429472.9153056, | |
"logger": "tls.obtain", | |
"msg": "will retry", | |
"error": "[pihole.int] Obtain: [pihole.int] solving challenges: [pihole.int] authorization took too long (order=https://tinyca.int/acme/acme/order/Qp6sVbKrmjJQsAw7b1m9o54q31BPfv4u) (ca=https://tinyca.int/acme/acme/directory)", | |
"attempt": 2, | |
"retrying_in": 120, | |
"elapsed": 660.531508497, | |
"max_duration": 2592000 |
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
#adding your own user to log in with | |
export git_user=<user> | |
export user_name=<user> | |
adduser $user_name | |
usermod -a -G adm,dialout,cdrom,floppy,sudo,audio,dip,video,plugdev,netdev,lxd $user_name | |
mkdir /home/$user_name/.ssh | |
wget -O - https://github.com/$git_user.keys >> /home/$user_name/.ssh/authorized_keys | |
chown -R $user_name:$user_name /home/$user_name | |
sudo apt update && sudo apt upgrade -y |
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
version: '3' | |
services: | |
db: | |
image: 'postgres:11-alpine' | |
environment: | |
- POSTGRES_DB: <user> | |
- POSTGRES_PASSWORD: <password> | |
- POSTGRES_USER: wikijs | |
volumes: | |
- 'db-data:/var/lib/postgresql/data' |
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
http: | |
#region routers | |
routers: | |
# proxmox: | |
# entryPoints: | |
# - "https" | |
# rule: "Host(`proxmox.local.example.com`)" | |
# middlewares: | |
# - default-headers | |
# tls: {} |
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
# docker network create \ | |
--driver=overlay \ | |
--subnet=10.50.0.0/24 \ | |
--ip-range=10.50.0.0/24 \ | |
--gateway=10.50.0.1 \ | |
--attechable \ | |
proxy | |
# docker stack deploy -c traefik-stack.yml traefik | |
# docker stack deploy -c gitea-stack.yml gitea |