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
| { | |
| "Smileys & Emotion": [], | |
| "face-smiling": [ | |
| { | |
| "code": "U+1F600", | |
| "char": "\ud83d\ude00", | |
| "name": "grinning face" | |
| }, | |
| { | |
| "code": "U+1F603", |
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 | |
| /** | |
| * Recursivly Iterates a directory finding MP3s and then loading the ID3 info via 'mediainfo' for each. | |
| * it then builds a list of genre popularity by artist (how many songs for each artist use which genre) | |
| * working with genre beingset to multiple genres and split with either a semicolon (;) or foreslash (/) | |
| * | |
| * - Automatic Backups every 120 seconds (configurable) | |
| * @see $backupSeconds | |
| * - Intelligent Reprocessing of MP3s only updating when the "Last Modified Time" is newer than what we stored in the db | |
| * - Commands Optimization drastically cutting back on the number of times "mediainfo" is ran |
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 | |
| /** | |
| * Generates a WordPress Hashed Password | |
| * - Written by detain@interserver.net | |
| */ | |
| if (file_exists('public_html')) { | |
| require __DIR__.'/public_html/wp-load.php'; | |
| } else { | |
| require __DIR__.'/wp-load.php'; | |
| } |
Parsed listing from s2, s3, s4, and s5 .tinydl.info/Series/ overlaid with TheTVDB matching and additional information
- After that the build_tinydl.php converts it to tinydl.json while loading up information from TheTVDB
- Run get_rclone_ls.sh to:
- autoamtically define site entries in rclone for all 4 sites
- asynchronously grab recursive listings of all sites with size info
- wait for background tasks to all complete
The FAQ maintained by Github covers most stumbling blocks, some other tips and tricks supplied here.
Add _site to .gitignore. The generated site should not be uploaded to Github since its gets generated by github.
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://freenas3.trouble-free.net:2773/ qBittorrent v4.1.6 Web UI https://pornrip.cc/vipalxl/44474-amateurteenmovscom-teenmegaworldnet-siterip.html AmateurTeenMovs.com / TeenMegaWorld.net - SITERIP https://www.siterips.org/aboutgirlslove-com-siterip/ AboutGirlsLove Porn Siterip Download | SITERIPS.org https://1337x.to/torrent/2461997/Teengirls-com-4K-SiteRip-2017/ Download Teengirls com 4K SiteRip 2017 Torrent | 1337x http://btcache.me/torrent/603F141F5877C0C5F0D5E1808CAB109D091F3BAD btcache.me - Torrent Cache - 603F141F5877C0C5F0D5E1808CAB109D091F3BAD https://torrentz2.eu/603f141f5877c0c5f0d5e1808cab109d091f3bad Teengirls.com 4K SiteRip Download https://1337x.to/torrent/2461997/Teengirls-com-4K-SiteRip-2017/ Download Teengirls com 4K SiteRip 2017 Torrent | 1337x https://zooqle.com/teengirls-com-4k-siterip-wf8e6.html Teengirls com 4K SiteRip (Ultra, 2.0) – 603F141F5877C0C5F0D5E1808CAB109D091F3BAD | Zooqle: Verified torrents https://torrents.io/ Torrents – Torrent Sites and Search https://www.torlock.com/torren |
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
| <div id="textOutput" style="white-space: pre;">//////////////////////////////////////////////////////////*///**////////////////////////////////////////////////////////////////////////////////////////////////////////////*/**********************************************************************... ..****....*******.*************************************... . . ......<br>//////////////////////////////////////////**////******///*********//////////////////////////////////////////////////////////////////////////////////*////////////////////*///*****/************************************************************. . .... ..*..........*********************************************......... .............<br>/////////////////////////////////////////***////*******///*******///////////////////////////////////////////////////////////////////////////////////*/////////////////**///*///*///***********************************************************.. .... .***........********************************* |
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 | |
| #rm -rf /var/lib/submin/svn/cisco_parser; cp -a cisco_parser /var/lib/submin/svn/ ; submin2-admin /var/lib/submin unixperms fix | |
| read -p "username:password for svn repo" CURLAUTH | |
| #export CURLAUTH="username:password" | |
| IFS=" | |
| " | |
| set -x | |
| for file in *cisco.php; do | |
| for rev in $(svn log "$file" |grep -A1 -- "----------------" |grep "^r"| cut -d" " -f1 | cut -c2-); do | |
| echo "$file $rev"; |
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 | |
| function make_mysql_utf8_convert() { | |
| db="$1" | |
| echo "SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci, COLLATION_CONNECTION = utf8mb4_unicode_ci, COLLATION_DATABASE = utf8mb4_unicode_ci, COLLATION_SERVER = utf8mb4_unicode_ci;" > update_utf8.sql; | |
| echo "SET FOREIGN_KEY_CHECKS=0;" >> update_utf8.sql; | |
| echo "ALTER DATABASE ${db} CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;" >> update_utf8.sql; | |
| for t in $(echo "show table status where Engine IS NOT NULL;" | mysql -s "${db}"| awk '{ print $7 " " $1 }' |sort -n | awk '{ print $2 }'); do | |
| echo "ALTER TABLE ${t} CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci$(mysqldump -d "${db}" "$t" | grep "^ *\`"| \ | |
| grep -i -E -e "\` (varchar|mediumtext|text|char)" | \ |
