summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--etc/pronouns/bot.sh2
-rw-r--r--txt/books.txt1
-rw-r--r--www/causal.agency/Makefile2
-rw-r--r--www/causal.agency/dais.html11
-rw-r--r--www/photo.causal.agency/gear.html13
-rw-r--r--www/photo.causal.agency/generate.sh7
6 files changed, 27 insertions, 9 deletions
diff --git a/etc/pronouns/bot.sh b/etc/pronouns/bot.sh
index b631fd40..8b7c9802 100644
--- a/etc/pronouns/bot.sh
+++ b/etc/pronouns/bot.sh
@@ -45,7 +45,7 @@ for follower_id in $followers 112284333737697665; do
 		printf '%s' "${account}" |
 		jq -r '
 			.fields |
-			map(select(.name | test("^prono(un|m)s?[?]?$"; "i"))) |
+			map(select(.name | test("^prono(un|m)s?[?]?$|^((professional|leisure|casual) |anti-)no(un|m)s?$"; "i"))) |
 			.[].value
 		'
 	)
diff --git a/txt/books.txt b/txt/books.txt
index a096a2f4..d8166d72 100644
--- a/txt/books.txt
+++ b/txt/books.txt
@@ -1,5 +1,6 @@
 [ 2025 ]
 
+  5. ★★★ Alix E. Harrow, The Everlasting
   4. ★★☆ Arkady Martine, Rose/House
   3. ★★☆ H. E., second draft of Last Train Home
   2. ★★☆ Nicola Griffith, Spear
diff --git a/www/causal.agency/Makefile b/www/causal.agency/Makefile
index 8c74f8f1..d3af7265 100644
--- a/www/causal.agency/Makefile
+++ b/www/causal.agency/Makefile
@@ -1,7 +1,7 @@
 WEBROOT = /var/www/causal.agency
 
 GEN = index.html scheme.css scheme.png
-FILES = ${GEN} style.css alpha.html lands.html
+FILES = ${GEN} style.css alpha.html dais.html lands.html
 
 all: ${FILES}
 
diff --git a/www/causal.agency/dais.html b/www/causal.agency/dais.html
new file mode 100644
index 00000000..109654d3
--- /dev/null
+++ b/www/causal.agency/dais.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<title>Dais</title>
+<meta charset="utf-8">
+<style>
+body { line-height: 1.5em; max-width: 78ch; margin: auto; padding: 0.5em 1ch; }
+</style>
+
+<h1>First occurrences of the word “dais”</h1>
+<ol>
+<li>A. K. Larkwood, The Unspoken Name: p. 19
+</ol>
diff --git a/www/photo.causal.agency/gear.html b/www/photo.causal.agency/gear.html
index e058d341..04cd3781 100644
--- a/www/photo.causal.agency/gear.html
+++ b/www/photo.causal.agency/gear.html
@@ -14,10 +14,12 @@ this is a (probably incomplete) list of equipment I use to Do Photography.
 <h2>Cameras</h2>
 <ul>
 <li>Yashica FX-3 (every day)
-<li>Konica C35 Automatic (Hexanon 38mm f/2.8) (every day)
-<li>Praktica MTL3 (probably on loan to a friend)
+<li>Konica C35 Automatic (Hexanon 38mm f/2.8)
+<li>Minolta XE-5
+<li>Praktica MTL3
 <li>Zenit-122
 <li>Yashica FX-2
+<li>Yashica-D (Yashikor 80mm f/3.5)
 </ul>
 
 <h2>Lenses</h2>
@@ -26,6 +28,7 @@ this is a (probably incomplete) list of equipment I use to Do Photography.
 <li>Yashica DSB 50mm f/1.9 (FX-2 kit lens)
 <li>Helios-44M-5 58mm f/2 (Zenit-122 kit lens)
 <li>Pentacon 50mm f/1.8 (MTL3 kit lens)
+<li>Minolta MD Rokkor-X 50mm f/1.7 (XE-5 kit lens)
 <li>Osawa MC 70-210mm f/4-5 (C/Y)
 <li>Takumar SMC 35mm f/3.5
 <li>Super-Takumar 135mm f/3.5
@@ -54,12 +57,12 @@ this is a (probably incomplete) list of equipment I use to Do Photography.
 <h2>Scanning</h2>
 <ul>
 <li>Filmomat SmartConvert
-<li>Canon EOS Rebel SL3
+<li>Fujifilm X-T5
 <li>Yashica ML Macro 55mm f/2.8 (at f/11)
 <li>Yashica 13mm extension tube (also have 20mm and 27mm)
-<li>Urth C/Y-EF adapter
+<li>Urth C/Y-X adapter
 <li>Skier CS-700 copy stand
-<li>Valoi 135 film holder
+<li>Valoi 135 & 120 film holders
 <li>CineStill CS-Lite
 <li>the box the CS-Lite came in
 </ul>
diff --git a/www/photo.causal.agency/generate.sh b/www/photo.causal.agency/generate.sh
index 83a3128b..2fbdcb68 100644
--- a/www/photo.causal.agency/generate.sh
+++ b/www/photo.causal.agency/generate.sh
@@ -45,7 +45,7 @@ page_title() {
 page_head() {
 	local page=$1
 	local title=$(page_title $page)
-	local date body lens film note
+	local date body lens film chem note
 
 	if test -f $page/date; then
 		date=$(sed 's/\([0-9]\)-\([0-9]\)/\1–\2/g' $page/date | encode)
@@ -76,6 +76,9 @@ page_head() {
 	if test -f $page/film; then
 		film=$(encode $page/film)
 	fi
+	if test -f $page/chem; then
+		chem=$(encode $page/chem)
+	fi
 	if test -f $page/note; then
 		note=$(encode $page/note)
 	fi
@@ -94,7 +97,7 @@ page_head() {
 	details { max-width: 78ch; margin: 0.5em auto; }
 	</style>
 	<h1>${title}</h1>
-	<p>${date:+📆 }${date:-} 📷 ${body:-}${body:+ 🔘 }${lens:-}${film:+ 🎞️ }${film:-}</p>
+	<p>${date:+📆 }${date:-} 📷 ${body:-}${body:+ 🔘 }${lens:-}${film:+ 🎞️ }${film:-}${chem:+ 🧪 }${chem:-}</p>
 	${note:+<p>}${note:-}${note:+</p>}
 	EOF
 }