diff options
Diffstat (limited to 'html')
| -rw-r--r-- | html/index.html | 25 |
1 files changed, 20 insertions, 5 deletions
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); } + </style> </head> <body> @@ -152,7 +155,7 @@ <div class="arxiv">arXiv:2607.0404v3 [cs.DOG] <span id="arxiv-date">5 Jul 2026</span></div> <div class="authorblock"> - <div class="author">Elizabeth / Alexander Hunt (she/he)</div> + <div class="author"><span class="pronoun" data-she="Elizabeth" data-he="Alexander">Elizabeth</span> Hunt (<span class="pronoun" data-she="she/her" data-he="he/him">she/her</span>)</div> <div class="affil">Department of Penguins</div> <div><a class="tt" href="mailto:me@liz.coffee">me@liz.coffee</a></div> </div> @@ -167,17 +170,17 @@ <div class="abstract"> <div class="head">Abstract</div> - <p>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.</p> + <p>We introduce the author and establish some of <span class="pronoun" data-she="her" data-he="his">her</span> fundamental properties. If it's a proof you're looking for, well, the sourdough did that.</p> <div class="center"><img src="assets/bread.jpeg" width="400"><br><em>Fig. 1 - The bread, proven. Also, baked.</em></div> </div> <h2>1. Introduction</h2> <p> - 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. <span class="pronoun" data-she="She" data-he="He">She</span> was previously at USU studying CS and Math, thankfully escaping from BYU-I at 16. </p> - <p class="indent">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 <a href="https://linux.usu.edu">Free Software and Linux Club</a>).</p> + <p class="indent"><span class="pronoun" data-she="She" data-he="He">She</span> enjoys recreational programming and studying outside of work; some of <span class="pronoun" data-she="her" data-he="his">her</span> interests are in functional programming, compilers/PLs, game programming, overengineering <span class="pronoun" data-she="her" data-he="his">her</span> homelab, and low level fun. <span class="pronoun" data-she="She" data-he="He">She</span> hacks on some LISP, drives Emacs, and is generally fond of free software (from 2021 to 2023 <span class="pronoun" data-she="she" data-he="he">she</span> was the president of the <a href="https://linux.usu.edu">Free Software and Linux Club</a>).</p> <p class="indent"> - 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, <span class="pronoun" data-she="she" data-he="he">she</span> runs, bikes, watches anime, rides trains, bakes bread, daydreams about going back to school. On rare occassions when nostalgic, <span class="pronoun" data-she="she" data-he="he">she</span> is heard practicing violin. <span class="pronoun" data-she="She" data-he="He">She</span> is overly fascinated by penguins and visits them when possible. </p> <p class="indent"> 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(); + }); + }); </script> </body> |
