Your warranty is now void. I am not responsible for bricked devices, dead SD cards, thermonuclear war, or you getting fired because the alarm app failed. Please do some research if you have any concerns about features included in this ROM before flashing it! YOU are choosing to make these modifications, and if you point the finger at me for messing up your device, I will laugh at you.
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
| #!/usr/bin/env bash | |
| # chmod +x this script (terminal command e.g. `chmod +x xseed_qbit_cat_filter.sh`) | |
| # put the following execution command in your qbit with its absolute path from qbit's | |
| # perspective (container path if docker). | |
| # | |
| # /path/to/xseed_qbit_cat_filter.sh "%F" "%L" "%N" "%T" "%I" | |
| TORRENT_PATH=$1 | |
| TORRENT_CAT=$2 |
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
| #!/usr/bin/python3 | |
| # This script was written by zakkarry ( https://github.com/zakkarry ) | |
| # Simply follow the basic configuration options below to remove all 'cross-seed' | |
| # tags from all torrents from qBittorrent client matching the options below. | |
| # | |
| # If you do not know how to use environmental variables, or do not need to, simply | |
| # configure the second part of the OBIT_* variables, where the actual URL and strings are. | |
| # | |
| # If you need to, you can use this script to remove any tag as well, simply modify CROSS_SEED_TAG | |
| # from 'cross-seed' to whichever tag you wish to remove. |
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
| import logging | |
| import os | |
| import shutil | |
| import sys | |
| from pathlib import Path | |
| from typing import Any, NewType, Union, Dict, List, Set | |
| import bencodepy # type: ignore | |
| ### ---------- SETUP ---------- ### |
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
| // ==UserScript== | |
| // @name External Links on UNIT3D 7 | |
| // @namespace N/A | |
| // @version 0.2.3 | |
| // @description Add links to other sites on the metadata section of a torrent item | |
| // @author Valie (additions by Audionut) | |
| // @match https://blutopia.cc/torrents/* | |
| // @match https://blutopia.cc/requests/* | |
| // @match https://cinematik.net/torrents/* | |
| // @match https://cinematik.net/requests/* |
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
| #!/usr/bin/env python3 | |
| """ | |
| This script will add all the torrents in the BT_backup folder to transmission | |
| It will also add the labels and download directory from the corresponding quickresume file | |
| Once a torrent is added, it will be renamed to .added so it won't be added again (if the script is run again) | |
| Make sure to edit the Client() settings to match your transmission settings and the path to the BT_backup folder | |
| Run: |
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
| #!/usr/bin/php | |
| <?php | |
| $source = '/mnt/cache/share'; | |
| $destination = '/mnt/disk1/share'; | |
| $threshold = 80; | |
| if( ! @file_exists( $source ) ) { | |
| echo "Bad source directory\n"; | |
| exit( 1 ); |
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
| // ==UserScript== | |
| // @name PTP - Add & Filter All Releases | |
| // @namespace http://tampermonkey.net/ | |
| // @version 3.1 | |
| // @description add releases from other trackers | |
| // @author passthepopcorn_cc | |
| // @match https://passthepopcorn.me/torrents.php?id=* | |
| // @grant GM_xmlhttpRequest | |
| // ==/UserScript== |
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
| // ==UserScript== | |
| // @name PTP Universal Search | |
| // @namespace https://gist.github.com/TMD20/083466d92a44b5c78a86156aeb88c16d | |
| // @version 2.5 | |
| // @grant none | |
| // @run-at document-start | |
| // @require https://cdn.jsdelivr.net/npm/construct-style-sheets-polyfill@3.1.0/dist/adoptedStyleSheets.min.js | |
| // @require https://passthepopcorn.me/static/functions/autocomplete.js?v=1604212366 | |
| // @match https://*.passthepopcorn.me/* | |
| // ==/UserScript== |
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
| import os | |
| import re | |
| # Insert the path where you keep your fast resume files here. | |
| # Make a backup first!!! | |
| torrentsDir = r'/torrents/' | |
| # Insert paths to be replaced here. Dictionary key is current path. Dictionary value is new path | |
| # If left empty, the script will only detect paths |
NewerOlder