remove a now-unnecessary script
- ID
651ca58- date
2025-07-05 21:27:12+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
549d196- message
remove a now-unnecessary script- changed files
2 files, 1 addition, 25 deletions
Changed files
web/README.md (2979) → web/README.md (2571)
diff --git a/web/README.md b/web/README.md
index a4259de..ddbe283 100644
--- a/web/README.md
+++ b/web/README.md
@@ -22,12 +22,6 @@ scripts = [
"description": "Format all of my Caddyfiles, which are config files for my web server."
},
{
- "name": "get_phaenna_ip",
- "description": """
- Get the IP address of Phaenna (my home desktop) within my Tailscale network.
- """
- },
- {
"name": "imdown",
"description": """
I run this when my Internet connection goes down, and it makes an audible "ping" when it comes back up.
@@ -61,15 +55,6 @@ cog_helpers.create_description_table(folder_name=folder_name, scripts=scripts)
</dd>
<dt>
- <a href="https://github.com/alexwlchan/scripts/blob/main/web/get_phaenna_ip">
- <code>get_phaenna_ip</code>
- </a>
- </dt>
- <dd>
- Get the IP address of Phaenna (my home desktop) within my Tailscale network.
- </dd>
-
- <dt>
<a href="https://github.com/alexwlchan/scripts/blob/main/web/imdown">
<code>imdown</code>
</a>
@@ -96,4 +81,4 @@ cog_helpers.create_description_table(folder_name=folder_name, scripts=scripts)
this is a wrapper around <a href="https://github.com/yt-dlp/yt-dlp">yt-dlp</a> that does parallel downloads of videos in playlists.
</dd>
</dl>
-<!-- [[[end]]] (checksum: ad194d489b262e13569c80864b4fb7d0) -->
+<!-- [[[end]]] (checksum: bcfbd0f0903f86284aafe11f8b4ea0cd) -->
web/get_phaenna_ip (309) → web/get_phaenna_ip (0)
diff --git a/web/get_phaenna_ip b/web/get_phaenna_ip
deleted file mode 100755
index f79fa76..0000000
--- a/web/get_phaenna_ip
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env bash
-# Get the IP address of Phaenna (my home desktop) within my Tailscale network.
-# See https://alexwlchan.net/til/2024/get-tailscale-ip/
-
-set -o errexit
-set -o nounset
-
-tailscale status --json \
- | jq --join-output --raw-output '.Peer[] | select(.HostName == "Phaenna") | .TailscaleIPs[0]'
\ No newline at end of file