Skip to content

Instantly share code, notes, and snippets.

View st-youth's full-sized avatar

St. Youth st-youth

View GitHub Profile
@jinjier
jinjier / javdb-top250.md
Last active November 2, 2025 02:12
JavDB top 250 movies list. [Updated on 2025/10]
@Mearman
Mearman / cloudflare_whitelist.sh
Last active May 18, 2025 06:00
NGINX Cloudflare Access whitelist
#!/bin/bash
cd /mnt/user/appdata/NginxProxyManager/nginx
echo "IPV4" >> new.conf
echo "" >> new.conf
curl -sSL https://www.cloudflare.com/ips-v4 | awk '{print "allow",$1,";"}' >> new.conf
echo "IPV6" >> new.conf
echo "" >> new.conf
curl -sSL https://www.cloudflare.com/ips-v6 | awk '{print "allow",$1,";"}' >> new.conf