You may want to use AdGuard's DNS over HTTPS[^2] service if you
- Want to make it harder for your ISP to know what websites you are requesting
- Want to block most traditional ads from your web browsing experience across your entire PC
- Open PowerShell
#!/bin/bash | |
# Variables | |
URL="" | |
BEARER_TOKEN="" | |
API_KEY="" | |
NUM_REQUESTS=100 | |
# Array to store latencies | |
latencies=() |
#!/bin/sh | |
git fetch -p | |
branches_with_gone_remote=$( | |
git for-each-ref --format '%(refname) %(upstream:track)' refs/heads | | |
awk '$2 == "[gone]" {sub("refs/heads/", "", $1); print $1}' | |
) | |
for branch in ${branches_with_gone_remote} | |
do | |
git branch -D $branch |