Verifying that I control the following Nostr public key: npub1ky4kxtyg0uxgw8g5p5mmedh8c8s6sqny6zmaaqj44gv4rk0plaus3m4fd2
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
#/bin/bash | |
clear | |
echo | |
echo " Welcome to" | |
echo | |
echo " --- Atomstr Hex to Nsec keys convertor ---" | |
echo | |
echo " by PastaGringo" | |
echo | |
echo "Checking if Docker is installed..." |
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
# More complete script from @barrycarey https://github.com/barrycarey/Plex-Data-Collector-For-InfluxDB/ | |
# Read flattened metrics from one or more JSON HTTP endpoints | |
[[inputs.httpjson]] | |
name = "plex_stats" | |
servers = [ | |
"http://YourDomain.tld:32400/status/sessions" | |
] | |
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
#!/bin/bash | |
interfaces=$(ls /var/lib/vnstat) | |
echo | |
echo "Resetting QuickBox Dashboard bandwith details..." | |
service vnstat stop | |
for interface in $interfaces | |
do | |
rm -rf "/var/lib/vnstat/$interface" "/var/lib/vnstat/.$interface" | |
/usr/bin/vnstat -u -i $interface &> /dev/null | |
done |
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
<?php | |
/******************************************************************************* | |
* Plex Universal Transcoder Downloader v1.3 * | |
* See --help or --usage for more info * | |
******************************************************************************* | |
* Copyright 2013 Kevin Mark * | |
* * | |
* Licensed under the Apache License, Version 2.0 (the "License"); * | |
* you may not use this file except in compliance with the License. * | |
* You may obtain a copy of the License at * |