Skip to content

Instantly share code, notes, and snippets.

View dylanmtaylor's full-sized avatar

Dylan M. Taylor dylanmtaylor

View GitHub Profile
Server = http://forksystems.mm.fcix.net/archlinux/$repo/os/$arch
Server = http://iad.mirrors.misaka.one/archlinux/$repo/os/$arch
Server = http://distro.ibiblio.org/archlinux/$repo/os/$arch
Server = http://mirror.clarkson.edu/archlinux/$repo/os/$arch
Server = http://coresite.mm.fcix.net/archlinux/$repo/os/$arch
Server = https://coresite.mm.fcix.net/archlinux/$repo/os/$arch
Server = http://mirrors.kernel.org/archlinux/$repo/os/$arch
Server = http://iad.mirror.rackspace.com/archlinux/$repo/os/$arch
Server = http://arlm.tyzoid.com/$repo/os/$arch
Server = http://mirror.ette.biz/archlinux/$repo/os/$arch
➜ ~ steam
steam.sh[18119]: Running Steam on ubuntu 23.04 64-bit
steam.sh[18119]: STEAM_RUNTIME is enabled automatically
setup.sh[18187]: Steam runtime environment up-to-date!
steam.sh[18119]: Steam client's requirements are satisfied
[2023-06-16 19:20:20] Startup - updater built Jun 16 2023 01:41:16
[2023-06-16 19:20:20] Startup - Steam Client launched with: '/home/dylan/.steam/debian-installation/ubuntu12_32/steam' '-nominidumps' '-nobreakpad'
06/16 19:20:20 Init: Installing breakpad exception handler for appid(steam)/version(0)/tid(18260)
[2023-06-16 19:20:20] Loading cached metrics from disk (/home/dylan/.steam/debian-installation/package/steam_client_metrics.bin)
[2023-06-16 19:20:20] Using the following download hosts for Public, Realm steamglobal
#!/bin/bash
# This script installs the systemd service and timer units for rpm-ostree updates.
# It should be run as root or with sudo.
echo "Creating rpm-ostree-update.service..."
sudo tee /etc/systemd/system/rpm-ostree-update.service > /dev/null <<EOF
[Unit]
Description=Perform rpm-ostree update --reboot
Documentation=man:rpm-ostree(1)
sqlite3 ~/.local/share/kiro-cli/data.sqlite3 "DELETE FROM conversations_v2;"
@dylanmtaylor
dylanmtaylor / gist:06c1b928a681d07bb649e0ccc9260e4d
Created March 23, 2026 02:30
Disable issues and PRs on all repos
gh repo list --fork --limit 1000 --json nameWithOwner -q '.[].nameWithOwner' | while read -r repo; do
echo "Disabling issues + PRs on $repo"
gh api -X PATCH "/repos/$repo" -F has_issues=false -F has_pull_requests=false --silent
done
curl -s https://ip-ranges.amazonaws.com/ip-ranges.json | python3 -c "
import json, sys, ipaddress
data = json.load(sys.stdin)
targets = ['1.2.3.4']
for ip in targets:
addr = ipaddress.ip_address(ip)
matches = []
for prefix in data['prefixes']: