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 NEIR Portal Enhancer | |
| // @namespace https://gist.github.com/origamiofficial/c57d327e4b7b04d0d7f4c1024228a600 | |
| // @version 1.3 | |
| // @description Enhances BTRC NEIR portal: Calculates missing IMEI digit, adds check link, and autofills de-registration form. | |
| // @author OrigamiOfficial | |
| // @match https://neir.btrc.gov.bd/* | |
| // @grant GM_addStyle | |
| // @grant GM_setValue | |
| // @grant GM_getValue |
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/sh | |
| RootHintsLocation="/var/lib/unbound/root.hints" | |
| # Unbound Root.hints Update | |
| /usr/bin/wget -O "$RootHintsLocation" https://www.internic.net/domain/named.root >/dev/null 2>&1 | |
| service unbound restart && pihole restartdns >/dev/null 2>&1 | |
| exit |
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 Hcaptcha Solver with Browser Trainer(Automatically solves Hcaptcha in browser) | |
| // @namespace Hcaptcha Solver | |
| // @version 10.0 | |
| // @description Hcaptcha Solver in Browser | Automatically solves Hcaptcha in browser | |
| // @author Md ubeadulla | |
| // @match https://*.hcaptcha.com/*hcaptcha-challenge* | |
| // @match https://*.hcaptcha.com/*checkbox* | |
| // @grant GM_xmlhttpRequest | |
| // @grant GM_setValue |
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 Recaptcha Solver (Automatically solves Recaptcha in browser) | |
| // @namespace Recaptcha Solver | |
| // @version 2.1 | |
| // @description Recaptcha Solver in Browser | Automatically solves Recaptcha in browser | |
| // @author engageub | |
| // @match *://*/recaptcha/* | |
| // @connect engageub.pythonanywhere.com | |
| // @connect engageub1.pythonanywhere.com | |
| // @grant GM_xmlhttpRequest |
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 | |
| from plexapi.server import PlexServer | |
| import sys | |
| import json | |
| import requests | |
| import time | |
| import socket | |
| # please make sure to install PlexAPI via pip, "pip install PlexAPI" |