git remote prune origin --dry-run
git remote prune origin
#!/bin/bash | |
# This is a companion script to https://github.com/konstantin-kelemen/arduino-amiibo-tools | |
# The original post this was crafted for was https://games.kel.mn/en/create-amiibo-clones-with-arduino/ | |
# For more info go to https://games.kel.mn/en/companion-script-to-simplify-amiibo-cloning-with-arduino/ | |
#requirements: | |
#sha1sum (part of coreutils) | |
#xxd (part of vim) | |
#hexdump | |
#amiitool (https://github.com/socram8888/amiitool) |
[ | |
{ | |
"time": "2020-03-21T21:40:00.000Z", | |
"rtlamr.first_consumption": 8759628 | |
}, | |
{ | |
"time": "2020-03-21T21:44:00.000Z", | |
"rtlamr.first_consumption": 8759632 | |
}, | |
{ |
When searching for unicode emojis using regex use: | |
[^\x00-\x7f] |
#!/usr/bin/env python3 | |
import logging | |
import os | |
import re | |
import sys | |
from pathlib import Path | |
# Thanks to: https://gist.github.com/guruevi/7d9673c6f44f49b1841eaf49bbd727f9 | |
# This script is used to set the vGPU type for NVIDIA vGPU passthrough in Proxmox VE. | |
# The script is called from the Proxmox VE hook scripts. |