This file contains 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
abel.waringer-atg.de/dns-query | |
vn.dns.abpvn.com/dns-query | |
res-acst3.absolight.net/dns-query | |
resolver3.absolight.net/dns-query | |
adl.adfilter.net/dns-query | |
per.adfilter.net/dns-query | |
syd.adfilter.net/dns-query | |
dns.adguard-dns.com/dns-query | |
family.adguard-dns.com/dns-query | |
unfiltered.adguard-dns.com/dns-query |
This file contains 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/bash | |
# ProxmoxVNC | |
# Use this script to add a VNC port to a Proxmox virtual machine for remote access. | |
# To access the VM remotely, enter the VM IP address and the port # shown in the | |
# output of the script. The port # will always start with 59. | |
# | |
# You can save and run this script from anywhere on your system. | |
# This script has only been tested on Linux guest on a vanilla Proxmox installation. | |
# https://gist.github.com/smithj33 |
This file contains 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/bash | |
yellow='\033[1;33m' | |
# Variables to determine which distro, version and arch you are using. | |
# As of 5/25/2024, Zabbix does not have a Raspian Bookworm version, so Debian 12 ARM version will be installed. | |
distro=$(cat /etc/os-release | grep -w 'ID' | cut -b 4-) | |
ver=$(cat /etc/os-release | grep -w VERSION_ID | cut -b 13- | sed 's/.$//') | |
name=$(cat /etc/os-release | grep 'VERSION_CODENAME' | cut -b 18-) | |
arch=$(uname -a | grep -c -F 'aarch64') |
This file contains 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
# https://myactivity.google.com/page?hl=en&utm_medium=web&utm_source=youtube&page=youtube_comments | |
c=[]; | |
for(i in e=document.getElementsByTagName('path')){ | |
typeof(x = e[i])==='object'? x.getAttribute('d').includes('6.41z') ? c.push(x.parentNode.parentNode):e:e; | |
} | |
setInterval(()=>{ | |
c[0].click();c.splice(0, 1) | |
}, 3000); |