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
| /** | |
| * X (formerly Twitter) Interests Bulk Unchecking Tool | |
| * | |
| * Purpose: Automatically unchecks interests on X's settings page | |
| * URL: https://x.com/settings/your_twitter_data/twitter_interests | |
| * | |
| * Based on: https://gist.github.com/TheSethRose/63d4cd0fd3b9fe33c3e51e83f87da26f | |
| * | |
| * Usage: Run this script in the browser console while on the X interests page. | |
| * The script will automatically uncheck all selected interests with rate limiting protection. |
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
| ipv4-c001-hmo001-altan-redes-isp.1.oca.nflxvideo.net | |
| ipv4-c002-nog001-transtelco-isp.1.oca.nflxvideo.net | |
| ipv4-c001-gdl001-telefonica-mx-isp.1.oca.nflxvideo.net | |
| ipv4-c001-mex001-telefonica-mx-isp.1.oca.nflxvideo.net | |
| ipv4-c003-ntr001-transtelco-isp.1.oca.nflxvideo.net | |
| ipv4-c001-gdl001-telefonica-mx-isp.1.oca.nflxvideo.net | |
| ipv4-c002-mty001-transtelco-isp.1.oca.nflxvideo.net |
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
| # ssh UDM | |
| # vi inadyn.conf | |
| # Generated automatically by ubios-udapi-server | |
| # | |
| iface = ppp | |
| period = 300 | |
| custom api.dynu.com { | |
| hostname = "{hostname.freeddns.org}" | |
| username = "{username}" | |
| password = "{supersecurepassword}" |
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/python | |
| # Create IPtables HTTP Whitelist Rules for Cloudflare and reject any other IP address. | |
| # Luis Colunga (@sinnet3000) | |
| import sys | |
| import os | |
| import urllib2 | |
| import subprocess | |
| cloudflare_url = "https://www.cloudflare.com/ips-v4" |