Skip to content

Instantly share code, notes, and snippets.

View SystemJargon's full-sized avatar

SystemJargon SystemJargon

View GitHub Profile
@SystemJargon
SystemJargon / tld_critical_whitelist.txt
Created July 11, 2025 06:07
Important Official TLDs or domain names used by Western and NATO member goverments and some Emergency domains
# adguard format - allowlist
@@||.gov^ # US government domains - official federal, state, and local agencies
@@||.mil^ # US military domains - Department of Defense and affiliated services
@@||.us^ # United States country code TLD - general US infrastructure and services
@@||.int^ # International treaty organizations and protocols
@@||.arpa^ # Infrastructure TLD - reverse DNS and technical namespaces
@@||.edu^ # US educational institutions - universities and research bodies
@@||.ca^ # Canada country code - key US ally and partner nation
@@||.uk^ # United Kingdom country code - major US ally
@@||.au^ # Australia country code - Five Eyes member and ally
@SystemJargon
SystemJargon / disney_plus_hosts.txt
Created April 27, 2025 02:44
Disney Plus Hosts
disney.demdex.net
sdk.iad-01.braze.com
sdk.iad-05.braze.com
sdk.iad-06.braze.com
disney-plus.net
prod-ripcut-delivery.disney-plus.net
prod-static.disney-plus.net
disney-vod-na-west-1.top.comcast.net
disneyplus.com
www.disneyplus.com
nflxvideo.net
oca.nflxvideo.net
netflixtechblog.com
netflix.ca
netflix.com.au
netflixinvestor.com
netflixstudios.com
flxvpn.net
nflximg.net
netflix.com.edgesuite.net
@SystemJargon
SystemJargon / raspberry-pi-update.md
Created June 29, 2024 21:51
Raspberry-Pi Update CLI syntax

Raspberry-Pi Update CLI syntax

Some config is available also via sudo raspi-config

# update package list
sudo apt update -y
@SystemJargon
SystemJargon / example_proxy.pac
Created April 20, 2024 06:19
Example proxy.pac configuration file
// This is just an example proxy.pac and is NOT to be used in production without changes to suit your environment.
//
// Some references about Proxy configuration below.
// https://wiki.squid-cache.org/SquidFaq/ConfiguringBrowsers
// https://learn.microsoft.com/en-us/troubleshoot/developer/browsers/connectivity-navigation/optimize-pac-performance
function FindProxyForURL(url, host) {
/* Normalize the URL for pattern matching */
url = url.toLowerCase();
@SystemJargon
SystemJargon / nz_radio.m3u
Created April 20, 2024 05:52
M3U Playlist containing some New Zealand radio station streams.
#EXTM3U
#RADIOBROWSERUUID:a25700ef-e952-4b73-8b4e-b92d938cb020
#EXTINF:1, Newstalk ZB Auckland
https://ais-nzme.streamguys1.com/nz_002_aac
#RADIOBROWSERUUID:ce5e5e45-7b40-4aa8-9c1c-a9be0331b2ff
#EXTINF:1, Flava Auckland 95.8 FM
https://ais-nzme.streamguys1.com/nz_010_aac
#RADIOBROWSERUUID:9e220835-ca65-4570-94f6-f31f70d6542f
@SystemJargon
SystemJargon / udm_free_diskspace.sh
Created January 28, 2024 08:34
free up space on Unifi UDM-PRO when it has low disk space due to the pool directory filling up with 1GB .ubv files
## free up space on Unifi UDM-PRO when it has low disk space due to the pool directory filling up with 1GB .ubv files
## largest 20 files in /volume1
# du -a /volume1 | sort -n -r | head -n 20
rm /volume1/.srv/unifi-protect/video/pool/*.ubv
@SystemJargon
SystemJargon / Microsoft.PowerShell_profile.ps1
Created November 6, 2023 08:25
Simple Strap your Powershell profile via OneDrive
# profile-load
$PROFILE = "$env:onedrive\Custom.PowerShell_profile.ps1"
& $profile
sudo apt install docker.io docker-compose -y
mkdir docker-run && cd docker-run
wget https://gist.githubusercontent.com/SystemJargon/dcffbd115d7202df79f5cdfec3ae4eac/raw/e12467952a1eb1cf0edeba929b5e4bdc90b6be49/docker-compose.yml
sudo docker-compose up -d
@SystemJargon
SystemJargon / docker-compose.yml
Last active November 3, 2023 00:04
My docker-compose.yml file for portainer
version: '3.7'
services:
portainer:
image: portainer/portainer-ce
restart: unless-stopped
volumes:
- "./portainer/data:/data"
- "/var/run/docker.sock:/var/run/docker.sock"
environment: