From c4a4bd2f8945dbb12e9f3b92fdd91de2a1509c75 Mon Sep 17 00:00:00 2001 From: Elizabeth Alexander Hunt Date: Sun, 5 Jul 2026 13:20:02 -0700 Subject: Pronouns --- html/index.html | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) (limited to 'html') diff --git a/html/index.html b/html/index.html index 6199372..e1edde2 100644 --- a/html/index.html +++ b/html/index.html @@ -136,6 +136,9 @@ p { text-align: justify; hyphens: auto; margin-bottom: .75rem; } p.indent { text-indent: 1.6em; margin-bottom: 0; } + .pronoun { cursor: pointer; border-bottom: 1px dotted var(--link); } + .pronoun:hover { color: var(--link); } + @@ -152,7 +155,7 @@
arXiv:2607.0404v3  [cs.DOG]  5 Jul 2026
-
Elizabeth / Alexander Hunt (she/he)
+
Elizabeth Hunt (she/her)
Department of Penguins
me@liz.coffee
@@ -167,17 +170,17 @@
Abstract
-

We introduce the author and establish some of her fundamental properties. If it's a proof you're looking for, well, the sourdough did that.

+

We introduce the author and establish some of her fundamental properties. If it's a proof you're looking for, well, the sourdough did that.


Fig. 1 - The bread, proven. Also, baked.

1. Introduction

- The author is a programmer at a Big Ol' Techâ„¢ company in Seattle. She was previously at USU studying CS and Math, thankfully escaping from BYU-I at 16. + The author is a programmer at a Big Ol' Techâ„¢ company in Seattle. She was previously at USU studying CS and Math, thankfully escaping from BYU-I at 16.

-

She enjoys recreational programming and studying outside of work; some of her interests are in functional programming, compilers/PLs, game programming, overengineering her homelab, and low level fun. She hacks on some LISP, drives Emacs, and is generally fond of free software (from 2021 to 2023 she was the president of the Free Software and Linux Club).

+

She enjoys recreational programming and studying outside of work; some of her interests are in functional programming, compilers/PLs, game programming, overengineering her homelab, and low level fun. She hacks on some LISP, drives Emacs, and is generally fond of free software (from 2021 to 2023 she was the president of the Free Software and Linux Club).

- When not computing, she runs, bikes, watches anime, rides trains, bakes bread, daydreams about going back to school. On rare occassions when nostalgic, she is heard practicing violin. She is overly fascinated by penguins and visits them when possible. + When not computing, she runs, bikes, watches anime, rides trains, bakes bread, daydreams about going back to school. On rare occassions when nostalgic, she is heard practicing violin. She is overly fascinated by penguins and visits them when possible.

The author is also the advisor to PhD (PHuckin-cuteass Dog) candidate Gus, whose current work involves proving something about squirrels. @@ -210,6 +213,18 @@ document.getElementById('today').textContent = long; document.getElementById('arxiv-date').textContent = d.getDate() + ' ' + d.toLocaleDateString('en-US', { month: 'short' }) + ' ' + d.getFullYear(); + + let pronounMode = 'she'; + const pronounSpans = document.querySelectorAll('.pronoun'); + function renderPronouns() { + pronounSpans.forEach(span => { span.textContent = span.dataset[pronounMode]; }); + } + pronounSpans.forEach(span => { + span.addEventListener('click', () => { + pronounMode = pronounMode === 'she' ? 'he' : 'she'; + renderPronouns(); + }); + }); -- cgit v1.3