Cleanup of external assets
This commit is contained in:
parent
90d0b8d522
commit
58dffcb32c
@ -14,7 +14,7 @@ aliases:
|
||||
|
||||
A news article was written about a project I was involved in. It's even headed by a photo I took!
|
||||
|
||||

|
||||

|
||||
|
||||
From the **London Free Press**:
|
||||
|
||||
@ -34,4 +34,4 @@ Once found on the American side of the border, a corresponding article was writt
|
||||
|
||||
## The balloon on the other side
|
||||
|
||||

|
||||

|
||||
|
@ -101,7 +101,7 @@ Generally, such a setup would involve daisy-chaining routers physically in your
|
||||
|
||||
Conveniently for my wallet, Linux machines provide something called [Tun/Tap Interfaces](https://en.wikipedia.org/wiki/TUN/TAP). These virtual network interfaces allow programs to pretend to be one of many other computers on the network and act as if they were real hosts. When a program registers one of these interfaces with the kernel, it gets raw access to either the 2<sup>nd</sup> or 3<sup>rd</sup> OSI layer of the network stack in the form of a raw stream.
|
||||
|
||||

|
||||

|
||||
|
||||
I chose to register a Tun interface, and control things at the Internet Protocol level. This choice was mainly due to simplicity, as I really don't care about hardware addresses.
|
||||
|
||||
|
@ -21,6 +21,6 @@ Linux gamers may be familiar with digging around the `copmpatdata` and `shaderca
|
||||
|
||||
`gamels` solves this problem by querying the Steam API to see if any directory names match known app ids. If so, the name of the corresponding game is shown in the listing.
|
||||
|
||||

|
||||

|
||||
|
||||
Installation instructions and source code are available on [GitHub](https://github.com/ewpratten/gamels).
|
||||
|
@ -16,7 +16,6 @@ Each morning, shortly after I've woken up, I receive an email.
|
||||
<pre style="border-left:2px solid gray;border-radius:0;max-width:100%;overflow-x:scroll;">
|
||||
Subject: Your digest for Wednesday, January 03
|
||||
From: Digest Bot <redacted@redacted.com>
|
||||
|
||||
Good morning, this is your daily digest for Wednesday January 03, 2024.
|
||||
|
||||
Daytime weather is expected to be cloudy. 30 percent chance of flurries
|
||||
|
@ -14,8 +14,20 @@ table {
|
||||
padding: 0;
|
||||
padding: 6px 13px;
|
||||
border: 1px solid #d0d7de;
|
||||
|
||||
&:has(> audio) {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
audio {
|
||||
display: block;
|
||||
width: 100%;
|
||||
min-width: 120px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
th {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
37
scripts/find_external_assets.py
Normal file
37
scripts/find_external_assets.py
Normal file
@ -0,0 +1,37 @@
|
||||
import re
|
||||
from pathlib import Path
|
||||
|
||||
REPO_ROOT = Path(__file__).parent.parent
|
||||
|
||||
# Find all MD and HTML files
|
||||
md_files = list(REPO_ROOT.rglob("*.md"))
|
||||
html_files = list(REPO_ROOT.rglob("*.html"))
|
||||
|
||||
# Ignore any files in the `public` directory
|
||||
md_files = [f for f in md_files if "public" not in f.parts]
|
||||
html_files = [f for f in html_files if "public" not in f.parts]
|
||||
|
||||
# Result storage
|
||||
external_assets = set()
|
||||
|
||||
# Find Markdown images
|
||||
for file in md_files:
|
||||
body = file.read_text()
|
||||
for match in re.finditer(r"!\[.*?\]\((.*?)\)", body):
|
||||
link = match.group(1)
|
||||
if link.startswith("http"):
|
||||
external_assets.add((file, link))
|
||||
|
||||
# Search HTML
|
||||
for file in html_files:
|
||||
body = file.read_text()
|
||||
for match in re.finditer(r'src="(.*?)"', body):
|
||||
link = match.group(1)
|
||||
if link.startswith("http"):
|
||||
external_assets.add((file, link))
|
||||
|
||||
# Print all external assets
|
||||
for file_path, link in external_assets:
|
||||
# Strip the prefix off the file path
|
||||
file_path = file_path.relative_to(REPO_ROOT)
|
||||
print(f"{file_path}:\t{link}")
|
BIN
static/images/posts/gamels/steamdeck-screenshot.png
Normal file
BIN
static/images/posts/gamels/steamdeck-screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 104 KiB |
Binary file not shown.
After Width: | Height: | Size: 55 KiB |
BIN
static/images/posts/weatherballoon/5a1826bd8b199.webp
Normal file
BIN
static/images/posts/weatherballoon/5a1826bd8b199.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 243 KiB |
Loading…
x
Reference in New Issue
Block a user