This file contains hidden or 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
| 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 |
This file contains hidden or 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
| ➜ ~ 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 |
This file contains hidden or 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 | |
| # 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) |
This file contains hidden or 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
| sqlite3 ~/.local/share/kiro-cli/data.sqlite3 "DELETE FROM conversations_v2;" |
This file contains hidden or 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
| 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 |
This file contains hidden or 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
| 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']: |
OlderNewer