Files
kfitz-site/rest/index.html
Kathleen Fitzpatrick e628227b30 fix ugly sentence
2025-04-20 11:37:30 -04:00

1115 lines
30 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rest</title>
<meta name="description" content="The long-running and erratically updated blog of Kathleen Fitzpatrick.">
<link rel="alternate" href="feed/feed.xml" type="application/atom+xml" title="kfitz">
<script async="" src="https://talk.hyvor.com/embed/embed.js" type="module"></script>
<link rel="webmention" href="https://webmention.io/kfitz.info/webmention">
<link rel="pingback" href="https://webmention.io/kfitz.info/xmlrpc">
<style>/**
* okaidia theme for JavaScript, CSS and HTML
* Loosely based on Monokai textmate theme by http://www.monokai.nl/
* @author ocodia
*/
code[class*="language-"],
pre[class*="language-"] {
color: #f8f8f2;
background: none;
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
font-size: 1em;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
border-radius: 0.3em;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #272822;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #8292a2;
}
.token.punctuation {
color: #f8f8f2;
}
.token.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
color: #f92672;
}
.token.boolean,
.token.number {
color: #ae81ff;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #a6e22e;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
color: #f8f8f2;
}
.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
color: #e6db74;
}
.token.keyword {
color: #66d9ef;
}
.token.regex,
.token.important {
color: #fd971f;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
/*
* New diff- syntax
*/
pre[class*="language-diff-"] {
--eleventy-code-padding: 1.25em;
padding-left: var(--eleventy-code-padding);
padding-right: var(--eleventy-code-padding);
}
.token.deleted {
background-color: hsl(0, 51%, 37%);
color: inherit;
}
.token.inserted {
background-color: hsl(126, 31%, 39%);
color: inherit;
}
/* Make the + and - characters unselectable for copy/paste */
.token.prefix.unchanged,
.token.prefix.inserted,
.token.prefix.deleted {
-webkit-user-select: none;
user-select: none;
display: inline-flex;
align-items: center;
justify-content: center;
padding-top: 2px;
padding-bottom: 2px;
}
.token.prefix.inserted,
.token.prefix.deleted {
width: var(--eleventy-code-padding);
background-color: rgba(0,0,0,.2);
}
/* Optional: full-width background color */
.token.inserted:not(.prefix),
.token.deleted:not(.prefix) {
display: block;
margin-left: calc(-1 * var(--eleventy-code-padding));
margin-right: calc(-1 * var(--eleventy-code-padding));
text-decoration: none; /* override del, ins, mark defaults */
color: inherit; /* override del, ins, mark defaults */
}
/* This is an arbitrary CSS string added to the bundle */
/* Defaults */
@font-face {
font-family: "Atkinson Hyperlegible";
src: url('/css/files/atkinson-hyperlegible-latin-400-normal.woff2') format('woff2');
font-display: swap;
}
@font-face {
font-family: "Atkinson Hyperlegible";
font-weight: bold;
src: url('/css/files/atkinson-hyperlegible-latin-700-normal.woff2') format('woff2');
font-display: swap;
}
@font-face {
font-family: "Atkinson Hyperlegible";
font-style: italic
src: url('/css/files/atkinson-hyperlegible-latin-400-italic.woff2') format('woff2');
font-display: swap;
}
:root {
--font-family: "Atkinson Hyperlegible", -apple-system, system-ui, sans-serif;
--font-family-monospace: Consolas, Menlo, Monaco, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L, Courier New, Courier, monospace;
font-size: 18px;
}
/* Theme colors */
:root {
--color-gray-20: #e0e0e0;
--color-gray-50: #C0C0C0;
--color-gray-90: #333;
--background-color: #fff;
--text-color: var(--color-gray-90);
--text-color-link: #d61d4a;
--text-color-link-active: #853439;
--text-color-link-visited: #e8325e;
--syntax-tab-size: 2;
}
@media (prefers-color-scheme: dark) {
:root {
--color-gray-20: #e0e0e0;
--color-gray-50: #C0C0C0;
--color-gray-90: #dad8d8;
/* --text-color is assigned to --color-gray-_ above */
--text-color-link: #1493fb;
--text-color-link-active: #6969f7;
--text-color-link-visited: #a6a6f8;
--background-color: #15202b;
}
}
/* Global stylesheet */
* {
box-sizing: border-box;
}
@view-transition {
navigation: auto;
}
html,
body {
padding: 0;
margin: 0 auto;
font-family: var(--font-family);
color: var(--text-color);
background-color: var(--background-color);
}
html {
overflow-y: scroll;
}
body {
max-width: 40em;
}
/* https://www.a11yproject.com/posts/how-to-hide-content/ */
.visually-hidden {
clip: rect(0 0 0 0);
clip-path: inset(50%);
height: 1px;
overflow: hidden;
position: absolute;
white-space: nowrap;
width: 1px;
}
p:last-child {
margin-bottom: 0;
}
p {
line-height: 1.5;
}
li {
line-height: 1.5;
}
a[href] {
color: var(--text-color-link);
}
a[href]:visited {
color: var(--text-color-link-visited);
}
a[href]:hover,
a[href]:active {
color: var(--text-color-link-active);
}
main,
footer {
padding: 1rem;
}
main :first-child {
margin-top: 0;
}
header {
border-bottom: 1px dashed var(--color-gray-20);
}
header:after {
content: "";
display: table;
clear: both;
}
footer {
border-top: 1px dashed var(--color-gray-50);
}
.links-nextprev {
display: flex;
justify-content: space-between;
gap: .5em 1em;
list-style: "";
border-top: 1px dashed var(--color-gray-20);
padding: 1em 0;
}
.links-nextprev > * {
flex-grow: 1;
}
.links-nextprev-next {
text-align: right;
}
table {
margin: 1em 0;
}
table td,
table th {
padding-right: 1em;
}
pre,
code {
font-family: var(--font-family-monospace);
}
pre:not([class*="language-"]) {
margin: .5em 0;
line-height: 1.375; /* 22px /16 */
-moz-tab-size: var(--syntax-tab-size);
-o-tab-size: var(--syntax-tab-size);
tab-size: var(--syntax-tab-size);
-webkit-hyphens: none;
-ms-hyphens: none;
hyphens: none;
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
overflow-x: auto;
}
code {
word-break: break-all;
}
/* Header */
header {
display: flex;
gap: 1em .5em;
flex-wrap: wrap;
align-items: center;
padding: 1em;
}
.home-link {
font-size: 1.5em; /* 16px /16 */
font-weight: 700;
margin-right: 2em;
}
.home-link:link:not(:hover) {
text-decoration: none;
}
/* Nav */
.nav {
display: flex;
padding: 0;
margin: 0;
list-style: none;
}
.nav-item {
display: inline-block;
margin-right: 1em;
}
.nav-item a[href]:not(:hover) {
text-decoration: none;
}
.nav a[href][aria-current="page"] {
text-decoration: underline;
}
/* Posts list */
.postlist {
list-style: none;
padding: 0;
padding-left: 1.5rem;
}
.postlist-item {
display: flex;
flex-wrap: wrap;
align-items: baseline;
counter-increment: start-from -1;
margin-bottom: 1em;
}
.postlist-item:before {
display: inline-block;
pointer-events: none;
content: "" counter(start-from, decimal-leading-zero) ". ";
line-height: 100%;
text-align: right;
margin-left: -1.5rem;
}
.postlist-date,
.postlist-item:before {
font-size: 0.8125em; /* 13px /16 */
color: var(--color-gray-90);
}
.postlist-date {
word-spacing: -0.5px;
}
.postlist-link {
font-size: 1.1875em; /* 19px /16 */
font-weight: 700;
flex-basis: calc(100% - 1.5rem);
padding-left: .25em;
padding-right: .5em;
text-underline-position: from-font;
text-underline-offset: 0;
text-decoration-thickness: 1px;
}
.postlist-item-active .postlist-link {
font-weight: bold;
}
/* Archive list */
.archivelist {
padding: 0;
padding-left: 2.5rem;
}
.archivelist-item {
align-items: baseline;
margin-bottom: 1em;
}
.archivelist-item::marker {
text-align: right;
margin-left: -1.5rem;
font-size: 0.8125em; /* 13px /16 */
color: var(--color-gray-90);
}
.archivelist-date {
font-size: 0.8125em; /* 13px /16 */
color: var(--color-gray-90);
word-spacing: -0.5px;
}
.archivelist-link {
font-size: 1.1875em; /* 19px /16 */
font-weight: 700;
flex-basis: calc(100% - 1.5rem);
padding-left: .25em;
padding-right: .5em;
text-underline-position: from-font;
text-underline-offset: 0;
text-decoration-thickness: 1px;
}
.archivelist-item-active .archivelist-link {
font-weight: bold;
}
/* Tags */
.post-tag {
display: inline-flex;
align-items: center;
justify-content: center;
text-transform: capitalize;
font-style: italic;
}
.postlist-item > .post-tag {
align-self: center;
}
/* Tags list */
.post-metadata {
display: inline-flex;
flex-wrap: wrap;
gap: .5em;
list-style: none;
border-top: 1px dashed var(--color-gray-20);
border-bottom: 1px dashed var(--color-gray-20);
padding: 3px 0px 3px 0px;
margin: 0;
font-size: .8em;
}
.post-metadata time {
margin-right: 1em;
}
/* Direct Links / Markdown Headers */
.header-anchor {
text-decoration: none;
font-style: normal;
font-size: 1em;
margin-left: .1em;
}
a[href].header-anchor,
a[href].header-anchor:visited {
color: transparent;
}
a[href].header-anchor:focus,
a[href].header-anchor:hover {
text-decoration: underline;
}
a[href].header-anchor:focus,
:hover > a[href].header-anchor {
color: #aaa;
}
h2 + .header-anchor {
font-size: 1.5em;
font-weight: bold;
}
h1 {
font-weight: bolder;
}
summary {
font-size: 1.5em;
font-weight: bold;
margin-bottom: .5em;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
blockquote {
display: block;
margin-left: 2em;
margin-right: 3em;
padding-left: 10px;
border-left: 10px solid var(--text-color-link);
}
hr.new {
border: none;
border-top: 1px dashed var(--color-gray-50);
}
/* Webmention Section */
.webmentions {
display:block;
text-align: left;
}
.webmentions__facepile {
display:flex;
align-items: center;
flex-wrap: wrap;
}
.webmentions__face {
width: 2rem;
height: 2rem;
border-radius: 50%;
object-fit: cover;
flex: none;
}
.webmentions__list {
list-style-type: none;
padding:0;
}
.webmentions__item {
margin-bottom: 2rem;
}
/* Single Webmention */
.webmention {
display:block;
}
.webmention__meta,
.webmention__author {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.webmention__meta {
margin-bottom:.5rem;
}
.webmention__author {
margin-right:.25rem;
}
.webmention__author__photo {
height: 3rem;
width: 3rem;
border-radius: 50%;
object-fit: cover;
margin-right:.5rem;
}
.webmention__pubdate {
font-style: italic;
}
/* Message Box */
.message-box {
--color-message-box: #ffc;
display: block;
background-color: var(--color-message-box);
color: var(--color-gray-90);
padding: 1em 0.625em; /* 16px 10px /16 */
}
.message-box ol {
margin-top: 0;
}
@media (prefers-color-scheme: dark) {
.message-box {
--color-message-box: #082840;
}
}</style>
</head>
<body>
<a href="#skip" class="visually-hidden">Skip to main content</a>
<header>
<a href="/" class="home-link">kfitz</a>
<nav>
<h2 class="visually-hidden" id="top-level-navigation-menu">Top level navigation menu</h2>
<ul class="nav">
<li class="nav-item"><a href="/">Home</a></li>
<li class="nav-item"><a href="/blog/">Archive</a></li>
<li class="nav-item"><a href="/about/">About</a></li>
<li class="nav-item"><a href="/projects/">Projects</a></li>
<li class="nav-item"><a href="/presentations/">Presentations</a></li>
<li class="nav-item"><a href="/teaching/">Teaching</a></li>
<li class="nav-item"><a href="/feed/feed.xml">Feed</a></li>
</ul>
</nav>
</header>
<link href="/pagefind/pagefind-ui.css" rel="stylesheet">
<script src="/pagefind/pagefind-ui.js"></script>
<div id="search"></div>
<script>
window.addEventListener('DOMContentLoaded', (event) => {
new PagefindUI({ element: "#search", showSubResults: true });
});
</script>
<main id="skip">
<heading-anchors>
<h1 id="rest">Rest</h1>
<ul class="post-metadata">
<li><time datetime="2024-12-21">21 December 2024</time></li>
<li><a href="/tags/reading/" class="post-tag">reading</a>, </li>
<li><a href="/tags/work/" class="post-tag">work</a></li>
</ul>
<p>I'm back to my all-too-slow reading of Oliver Burkeman's <em>Four Thousand Weeks</em>, and am finding myself a bit haunted this morning by this passage:</p>
<blockquote>
<p>Rest is permissible, but only for the purposes of recuperation for work, or perhaps for some other form of self-improvement. It becomes difficult to enjoy a moment of rest for itself alone, without regard for any potential future benefits, because rest that has no instrumental value feels wasteful.</p>
</blockquote>
<p>Haunted, because I <em>at least in theory</em> started a vacation yesterday -- or, rather, two days of vacation followed by my university's relatively new December 24 to January 1 closure. But I'm having a super hard time actually turning work off. Partly because the needs of my colleagues have not stopped just because I've taken a couple of days off. Partly because I cannot get myself to stop reflexively checking all of the various messaging systems through which they ask me for stuff.</p>
<p>That's on me, not them. I'm thinking a lot this morning about what it would take for me to genuinely shut everything down and walk away from it all, even for a couple of days. It's tough to imagine.</p>
<p>Anyhow, Burkeman goes on from this passage to talk about the &quot;pathological productivity&quot; inspired in no small part by the collision of Calvinism and capitalism, and the ways that one's &quot;tendency toward virtuous striving and thriftiness&quot; were -- ahem, <em>are</em> -- imagined to be a sign of one's state of salvation. Which rang all kinds of bells for me, and made me go in search of <a href="/outward-and-visible-signs/">this blog post from 2012</a>, which reminded me how little I've learned in the last twelve years, or rather how much I've had to learn again and again and again.</p>
<p>Rest for its own sake. Rest for purposes that are non- -- or even anti- -- instrumentalist. All of this requires the ability to understand the value of the human in the world as about <em>being</em> rather than <em>doing</em>. And this is hard, hard, hard.</p>
<ul class="links-nextprev"><li class="links-nextprev-prev">← Previous<br> <a href="/preservation-care/">Preservation and Care</a></li><li class="links-nextprev-next">Next →<br><a href="/finite/">Finite</a></li>
</ul>
<hyvor-talk-comments website-id="9100" page-id="/rest/"></hyvor-talk-comments>
<div class="webmentions" id="webmentions">
<h3 id="webmentions-2">Webmentions</h3>
<h4 id="9-replies">9 Replies</h4>
<ol class="webmentions__list">
<li class="webmentions__item">
<article class="webmention h-cite" id="webmention-1869061">
<div class="webmention__meta">
<a class="webmention__author p-author h-card u-url" href="https://aus.social/@kate/113692706512147264" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo u-photo" src="https://webmention.io/avatar/spaces.hcommons.social/397d5514cea9e57c5d5cb0a542e0d16fee21cdc1f99262dd7092788264ea0f66.png" alt="Kate Bowles">
<strong class="p-name">Kate Bowles</strong>
</a>
<time class="webmention__pubdate dt-published" datetime="2024-12-21T20:30:26+00:00">21 Dec 2024 - 20:30</time>
</div>
<div class="webmention__content p-content">
@kfitz I appreciated this post greatly, thank you for writing. It has sparked a big thought.
“the value of the human in the world as about being rather than doing”
We have created so many frameworks for valuing doing, from the micro of small talk questions like “and what do you do?” to the macro of the labour market, that we are estranged at the level of reflex and gesture from deeper questions of our being.
It feels as though there is a key to this in consciously addressing the limits of our being: our mortality. Its our mortality that values our being on its own terms, I think.
</div>
</article>
</li>
<li class="webmentions__item">
<article class="webmention h-cite" id="webmention-1869070">
<div class="webmention__meta">
<a class="webmention__author p-author h-card u-url" href="https://hcommons.social/@kfitz/113692762385361200" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo u-photo" src="https://webmention.io/avatar/spaces.hcommons.social/57241974ecb75421b2cd7f4b6e55b9b41d422136f90c7c3f3934059711d6b8fc.png" alt="Kathleen Fitzpatrick">
<strong class="p-name">Kathleen Fitzpatrick</strong>
</a>
<time class="webmention__pubdate dt-published" datetime="2024-12-21T20:44:39+00:00">21 Dec 2024 - 20:44</time>
</div>
<div class="webmention__content p-content">
@kate Yes, absolutely! Thats the thread throughout *Four Thousand Weeks*: that all of our striving and optimizing and productivity hacks are no more than a bulwark against mortality — and as such, destined to fail. The best thing we can do is accept that inevitability, recognize that now is all we have, and find our way to what's really important in our lives.
</div>
</article>
</li>
<li class="webmentions__item">
<article class="webmention h-cite" id="webmention-1869071">
<div class="webmention__meta">
<a class="webmention__author p-author h-card u-url" href="https://mastodon.social/@VCP/113692766454454890" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo u-photo" src="https://webmention.io/avatar/spaces.hcommons.social/9c7f8416d9291f655e4baebfe3c58599c90da79576056a0f9c332bc323257209.jpg" alt="Exhaust_Fumes_NowMoreThanEver">
<strong class="p-name">Exhaust_Fumes_NowMoreThanEver</strong>
</a>
<time class="webmention__pubdate dt-published" datetime="2024-12-21T20:45:41+00:00">21 Dec 2024 - 20:45</time>
</div>
<div class="webmention__content p-content">
@kfitz i'm taking a break from grading by...looking to see if there are jobs posted outside the higher ed sector that i'd be able to get.
when a break from work is all about work...blech. i need to put this machine down now!
</div>
</article>
</li>
<li class="webmentions__item">
<article class="webmention h-cite" id="webmention-1869072">
<div class="webmention__meta">
<a class="webmention__author p-author h-card u-url" href="https://hcommons.social/@kfitz/113692768962603188" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo u-photo" src="https://webmention.io/avatar/spaces.hcommons.social/57241974ecb75421b2cd7f4b6e55b9b41d422136f90c7c3f3934059711d6b8fc.png" alt="Kathleen Fitzpatrick">
<strong class="p-name">Kathleen Fitzpatrick</strong>
</a>
<time class="webmention__pubdate dt-published" datetime="2024-12-21T20:46:19+00:00">21 Dec 2024 - 20:46</time>
</div>
<div class="webmention__content p-content">
@VCP Its so hard!
</div>
</article>
</li>
<li class="webmentions__item">
<article class="webmention h-cite" id="webmention-1869073">
<div class="webmention__meta">
<a class="webmention__author p-author h-card u-url" href="https://assemblag.es/@inquiline/113692805425926203" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo u-photo" src="https://webmention.io/avatar/spaces.hcommons.social/ef9f18cf9eeaa1098d3ae6e508ef129f3b3c8779c6c304a1b60d8ef818c24181.jpg" alt="inquiline">
<strong class="p-name">inquiline</strong>
</a>
<time class="webmention__pubdate dt-published" datetime="2024-12-21T20:55:35+00:00">21 Dec 2024 - 20:55</time>
</div>
<div class="webmention__content p-content">
@VCP @kfitz Uff, relatable.
</div>
</article>
</li>
<li class="webmentions__item">
<article class="webmention h-cite" id="webmention-1869068">
<div class="webmention__meta">
<a class="webmention__author p-author h-card u-url" href="https://aus.social/@kate/113692815859189482" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo u-photo" src="https://webmention.io/avatar/spaces.hcommons.social/397d5514cea9e57c5d5cb0a542e0d16fee21cdc1f99262dd7092788264ea0f66.png" alt="Kate Bowles">
<strong class="p-name">Kate Bowles</strong>
</a>
<time class="webmention__pubdate dt-published" datetime="2024-12-21T20:58:15+00:00">21 Dec 2024 - 20:58</time>
</div>
<div class="webmention__content p-content">
@kfitz Aha yes! Im checking out the book and I see that now.
Theres a beautiful print in the collection of @lokigwyn that this all brings to mind, bottom right.
https://mastodon.art/@lokigwyn/113606158535449395
Loki Gwynbleidd ???????????? (@lokigwyn@mastodon.art)
</div>
</article>
</li>
<li class="webmentions__item">
<article class="webmention h-cite" id="webmention-1869067">
<div class="webmention__meta">
<a class="webmention__author p-author h-card u-url" href="https://mastodon.social/@VCP/113692827592118396" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo u-photo" src="https://webmention.io/avatar/spaces.hcommons.social/9c7f8416d9291f655e4baebfe3c58599c90da79576056a0f9c332bc323257209.jpg" alt="Exhaust_Fumes_NowMoreThanEver">
<strong class="p-name">Exhaust_Fumes_NowMoreThanEver</strong>
</a>
<time class="webmention__pubdate dt-published" datetime="2024-12-21T21:01:14+00:00">21 Dec 2024 - 21:01</time>
</div>
<div class="webmention__content p-content">
@kate @kfitz Amazingly, I had been looking thru my following list to find @lokigwyn earlier today and have the 'Work is Shit' print in my cart but hadn't pulled the trigger on it yet
</div>
</article>
</li>
<li class="webmentions__item">
<article class="webmention h-cite" id="webmention-1869069">
<div class="webmention__meta">
<a class="webmention__author p-author h-card u-url" href="https://aus.social/@kate/113692838512516905" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo u-photo" src="https://webmention.io/avatar/spaces.hcommons.social/397d5514cea9e57c5d5cb0a542e0d16fee21cdc1f99262dd7092788264ea0f66.png" alt="Kate Bowles">
<strong class="p-name">Kate Bowles</strong>
</a>
<time class="webmention__pubdate dt-published" datetime="2024-12-21T21:04:00+00:00">21 Dec 2024 - 21:04</time>
</div>
<div class="webmention__content p-content">
@VCP @kfitz @lokigwyn I am such a fan! As I step quietly away from higher education, one of the most troubled sectors in terms of toxic and self-damaging overwork, I want to slip that little dormouse under the doors of many loved colleagues.
</div>
</article>
</li>
<li class="webmentions__item">
<article class="webmention h-cite" id="webmention-1872371">
<div class="webmention__meta">
<a class="webmention__author p-author h-card u-url" href="https://hcommons.social/@kfitz/113692888595961211" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo u-photo" src="https://webmention.io/avatar/spaces.hcommons.social/57241974ecb75421b2cd7f4b6e55b9b41d422136f90c7c3f3934059711d6b8fc.png" alt="Kathleen Fitzpatrick">
<strong class="p-name">Kathleen Fitzpatrick</strong>
</a>
<time class="webmention__pubdate dt-published" datetime="2024-12-21T21:16:44+00:00">21 Dec 2024 - 21:16</time>
</div>
<div class="webmention__content p-content">
@kate @lokigwyn Oh, that is so lovely!
</div>
</article>
</li>
</ol>
<h4 id="6-likes">6 Likes</h4>
<div class="webmentions__facepile">
<a class="h-card u-url link-u-exempt" href="https://bsky.app/profile/kfitz.info/post/3ldthi6gp2h2z#liked_by_did:plc:mf4lrqndyncr3fgvp2ft3mwy" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/cdn.bsky.app/48a7278b89c20a6498c6ff79eb747a44900d035584c8b1b70c98b12630d80a2c.jpg" alt="John Sherer" title="John Sherer" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#favorited-by-109285652267414626" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/29438d39b780c52c513c6ec4c75afdc90b7fddb758c41c7c8f7a82e275d2a577.jpg" alt="Ross Mounce" title="Ross Mounce" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#favorited-by-109624273184499557" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/f7c2c7aaeae74ae69d68e4d5cf23283b57436c16268932b8d376cd418b60b2df.png" alt="carinavr" title="carinavr" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#favorited-by-113151324394836407" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/ef9f18cf9eeaa1098d3ae6e508ef129f3b3c8779c6c304a1b60d8ef818c24181.jpg" alt="inquiline" title="inquiline" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#favorited-by-109298069633671561" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/9c7f8416d9291f655e4baebfe3c58599c90da79576056a0f9c332bc323257209.jpg" alt="Exhaust_Fumes_NowMoreThanEver" title="Exhaust_Fumes_NowMoreThanEver" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#favorited-by-109308023941106766" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/e14772a119635040c5e6240af142ec7b650edee22ebee90a81003c065d8e3814.png" alt="Jennifer Moore ????" title="Jennifer Moore ????" loading="lazy">
</a>
</div>
<h4 id="8-reposts">8 Reposts</h4>
<div class="webmentions__facepile">
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#reblogged-by-109285652267414626" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/29438d39b780c52c513c6ec4c75afdc90b7fddb758c41c7c8f7a82e275d2a577.jpg" alt="Ross Mounce" title="Ross Mounce" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#reblogged-by-110635720629865565" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/d372dfd9976269f4acb5ca861ab7647a9436804720280fec5f816d2f6609d650.jpg" alt="Eric Ireland" title="Eric Ireland" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#reblogged-by-109300012051985915" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/0cd3145ba4e42f1d8e46563a5b98c5028ce1440031d2bf7126064661f91f3b9b.png" alt="Scholar-at-large" title="Scholar-at-large" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#reblogged-by-109299002024882675" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/7c7c744bc73cbba137f87ea4ab9d2f65ed6afdc6caacadc4d7cb3343431671ef.jpg" alt="K Fortino" title="K Fortino" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#reblogged-by-109298069633671561" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/9c7f8416d9291f655e4baebfe3c58599c90da79576056a0f9c332bc323257209.jpg" alt="Exhaust_Fumes_NowMoreThanEver" title="Exhaust_Fumes_NowMoreThanEver" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#reblogged-by-113151324394836407" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/ef9f18cf9eeaa1098d3ae6e508ef129f3b3c8779c6c304a1b60d8ef818c24181.jpg" alt="inquiline" title="inquiline" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#reblogged-by-109841808076473949" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/2f7665caba98d72f6071bc6671825a85d9baa046c223d2f288431f72d61fef7b.png" alt="Henrik Schönemann" title="Henrik Schönemann" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113692066589757369#reblogged-by-109297531435002185" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/349d2a32c959e2e6df1d0bde5a174a02dbbfa7b2e19375838bde8a7f79c3e602.png" alt="Martin Paul Eve" title="Martin Paul Eve" loading="lazy">
</a>
</div>
</div>
</heading-anchors>
</main>
<footer>
<p><em>Built with <a href="https://www.11ty.dev/">Eleventy v3.0.0</a>. All content <a href="https://creativecommons.org/licenses/by/4.0/deed.en">CC BY 4.0</a> if you're human.</em></p><p></p>
</footer>
<!-- This page `/rest/` was built on 2025-04-20T15:37:07.016Z -->
<script type="module" src="/dist/rJ3_G-2ArF.js"></script>
</body>
</html>