Verifying that I control the following Nostr public key: npub1ky4kxtyg0uxgw8g5p5mmedh8c8s6sqny6zmaaqj44gv4rk0plaus3m4fd2
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
Absolute_Number,Season,Episode,Title_English,Type,Air_Date | |
1,1,1,I'm Luffy! The Man Who's Gonna Be King of the Pirates!,Manga Canon,1999-10-20 | |
2,1,2,Enter the Great Swordsman! Pirate Hunter Roronoa Zoro!,Manga Canon,1999-11-17 | |
3,1,3,Morgan vs. Luffy! Who's the Mysterious Pretty Girl?,Manga Canon,1999-11-24 | |
4,1,4,Luffy's Past! Enter Red-Haired Shanks!,Manga Canon,1999-12-08 | |
5,1,5,"A Terrifying Mysterious Power! Captain Buggy, the Clown Pirate!",Manga Canon,1999-12-15 | |
6,1,6,Desperate Situation! Beast Tamer Mohji vs. Luffy!,Manga Canon,1999-12-29 | |
7,1,7,Epic Showdown! Swordsman Zoro vs. Acrobat Cabaji!,Manga Canon,1999-12-29 | |
8,1,8,Who Is the Victor? Devil Fruit Power Showdown!,Manga Canon,1999-12-29 | |
9,1,9,The Honorable Liar? Captain Usopp!,Manga Canon,2000-01-12 |
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 | |
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 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
# 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 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 | |
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 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
<?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 * |