Files
kfitz-site/on-distraction/index.html
2025-03-19 08:14:39 -04:00

951 lines
25 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>On Distraction</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="on-distraction">On Distraction</h1>
<ul class="post-metadata">
<li><time datetime="2024-12-14">14 December 2024</time></li>
<li><a href="/tags/reading/" class="post-tag">reading</a>, </li>
<li><a href="/tags/pondering/" class="post-tag">pondering</a></li>
</ul>
<p>For a host of reasons, I had to put Oliver Burkeman's <em>Four Thousand Weeks: Time Management for Mortals</em> down for a couple of weeks; there was the post-Thanksgiving crush at work, and then travel for a family event, and then travel for a conference, and then a <a href="https://about.hcommons.org/2024/12/10/kcworks-named-designated-public-access-repository-of-the-national-endowment-for-the-humanities/">big announcement</a> about a big project, and then, and then, and then. But I picked it back up this afternoon, and just tripped on this passage and fell flat on my face:</p>
<blockquote>
<p>Most other resources on which we rely as individuals—such as food, money, and electricity—are things that facilitate life, and in some cases its possible to live without them, at least for a while. Attention, on the other hand, just is life: your experience of being alive consists of nothing other than the sum of everything to which you pay attention. At the end of your life, looking back, whatever compelled your attention from moment to moment is simply what your life will have been. So when you pay attention to something you dont especially value, its not an exaggeration to say that youre paying with your life. Seen this way, “distraction” neednt refer only to momentary lapses in focus, as when youre distracted from performing your work duties by the ping of an incoming text message, or a compellingly terrible news story. The job itself could be a distraction—that is, an investment of a portion of your attention, and therefore of your life, in something less meaningful than other options that might have been available to you.</p>
</blockquote>
<p>I will only say here that I have spent the better part of the last few months deep in a fret about what I want to be when I grow up, and this hits right at the heart of it. There's the thing I'm trying so hard to build, and there's the thing that brings tangible rewards. There's the thing that I'm most passionate about, and there's the thing that supports my community. There's the thing that could with a lot of effort and a bit of luck turn out to be a huge success, and there's the thing that serves as its own indicator of success.</p>
<p>Burkeman is forcing me to realize that no small part of the strain I've been feeling of late is resulting from my trying to have it both ways, trying to keep all my options open, trying to avoid having a path not taken. But each option demands my attention in a way that can only prove a distraction from the others, and the others do not let up in their demands in the meantime.</p>
<p>So the challenge ahead in the new year is, I think, to figure out where I want to place my focus, what might be most meaningful for my life -- and then to find ways to make peace with the distractions, whether by compartmentalizing them or by letting them go entirely. It's not easy: many of those distractions have real appeal. But if they're not the thing I most want to do, that appeal might well have the same effect on me as an evening spent doom-scrolling. Rebuilding my attention span in this sense might be more a matter of reckoning with my real priorities than retraining my brain to do one thing at a time.</p>
<ul class="links-nextprev"><li class="links-nextprev-prev">← Previous<br> <a href="/admitting-defeat/">Start by Admitting Defeat</a></li><li class="links-nextprev-next">Next →<br><a href="/preservation-care/">Preservation and Care</a></li>
</ul>
<hyvor-talk-comments website-id="9100" page-id="/on-distraction/"></hyvor-talk-comments>
<div class="webmentions" id="webmentions">
<h3 id="webmentions-2">Webmentions</h3>
<h4 id="1-reply">1 Reply</h4>
<ol class="webmentions__list">
<li class="webmentions__item">
<article class="webmention h-cite" id="webmention-1867831">
<div class="webmention__meta">
<a class="webmention__author p-author h-card u-url" href="https://bsky.app/profile/lachance.bsky.social/post/3ldhfigvyys2f" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo u-photo" src="https://webmention.io/avatar/cdn.bsky.app/5a3d979b732525bfc126dd7c5756ccb20ec8119ec71e18b3f343ad2fe31cd59e.jpg" alt="Francois Lachance">
<strong class="p-name">Francois Lachance</strong>
</a>
<time class="webmention__pubdate dt-published" datetime="2024-12-16T22:40:08+00:00">16 Dec 2024 - 22:40</time>
</div>
<div class="webmention__content p-content">
I am a bit puzzled by the conclusion (it is the sandwiching of "reckoning" between "rebuilding" and "retraining" that has me pondering) :
Rebuilding my attention span in this sense might be more a matter of reckoning with my real priorities than retraining my brain to do one thing at a time.
</div>
</article>
</li>
</ol>
<h4 id="11-likes">11 Likes</h4>
<div class="webmentions__facepile">
<a class="h-card u-url link-u-exempt" href="https://bsky.app/profile/kfitz.info/post/3lddtitg2bv25#liked_by_did:plc:3dcj7f5lnwteo7kd6dxh2scd" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/cdn.bsky.app/f67587985aba663bf7f0751dd7efe82b70f3e0db1cb7867eb3b4ea99fa356ce7.jpg" alt="Anne Fitzpatrick" title="Anne Fitzpatrick" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://bsky.app/profile/kfitz.info/post/3lddtitg2bv25#liked_by_did:plc:yf4dfc4hl7byue5vycf2ybqx" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/cdn.bsky.app/f10c9fed62144ad0659e34447574775208d81f9d5d46206389dd02ca04cae098.jpg" alt="Nina Lager Vestberg" title="Nina Lager Vestberg" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://bsky.app/profile/kfitz.info/post/3lddtitg2bv25#liked_by_did:plc:ortrxmgwffcqpmfebzqvau7o" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/cdn.bsky.app/6ff47e97a73759a814ba5e1f551f3e718d91d3fda7b85fcff2d65c05e85a220c.jpg" alt="Sebastian Biot" title="Sebastian Biot" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113656883649279150#favorited-by-109306138219508899" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/f122556cf34e40a62ec008939b89ec48d87cd8ed6cb49accb1b913d23d1eb6c9.jpg" alt="Roy Scholten" title="Roy Scholten" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113656883649279150#favorited-by-109293065163931343" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/e4619518093d6c2c6fb4d921e713166807265e8ce06687437ac2a6cf8245c945.png" alt="Chris Long" title="Chris Long" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113656883649279150#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/113656883649279150#favorited-by-109510045266461852" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/58b2a44a45bd42efc634753f61d9545e7e74409adcc4604ede342e55563acc41.jpg" alt="benstiglitz" title="benstiglitz" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://bsky.app/profile/kfitz.info/post/3lddtitg2bv25#liked_by_did:plc:4jmk44jz4q4hugtdv3t3zhug" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/cdn.bsky.app/bc76acbe303b303dea73d14be705039b65f982c0a4d3b1d4c1c6453004e1235b.jpg" alt="Tom Scheinfeldt" title="Tom Scheinfeldt" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://bsky.app/profile/kfitz.info/post/3lddtitg2bv25#liked_by_did:plc:r6encfjh2dlwl3ioe5bieeua" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/cdn.bsky.app/6304f5e6a9d263b85c1be0c284ed64b82d2ea9e9e55d0ae3bb4ee28b3f0d3332.jpg" alt="Jason Rhody" title="Jason Rhody" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113656883649279150#favorited-by-109302101958218834" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/4e921e360ccac114be0be2242d3b853a1a858674b01f0d8e3170ce7557026b77.jpg" alt="Tim Sherratt" title="Tim Sherratt" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113656883649279150#favorited-by-109469831452874040" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/13c9b5e4729c6cc4bfb05078ea971a246808b722d3861836581a7c2851b1063b.jpg" alt="John Maxwell" title="John Maxwell" loading="lazy">
</a>
</div>
<h4 id="5-reposts">5 Reposts</h4>
<div class="webmentions__facepile">
<a class="h-card u-url link-u-exempt" href="https://bsky.app/profile/kfitz.info/post/3lddtitg2bv25#reposted_by_did:plc:hnpt7ns2lecdujegbi6qkqqm" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/cdn.bsky.app/b034e66734f7b468e7128aa7faccd5ef953d524ccab955209f8c0f559f4113c3.jpg" alt="Martin Paul Eve" title="Martin Paul Eve" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113656883649279150#reblogged-by-109306138219508899" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/f122556cf34e40a62ec008939b89ec48d87cd8ed6cb49accb1b913d23d1eb6c9.jpg" alt="Roy Scholten" title="Roy Scholten" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113656883649279150#reblogged-by-109305943724227326" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/c8cd95613ce12c71076f3a98ad36d2de253defbd18c5b2dedc80906cbca6764e.jpg" alt="Maximum MEW" title="Maximum MEW" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113656883649279150#reblogged-by-109293065163931343" target="_blank" rel="noopener noreferrer">
<img class="webmention__author__photo" src="https://webmention.io/avatar/spaces.hcommons.social/e4619518093d6c2c6fb4d921e713166807265e8ce06687437ac2a6cf8245c945.png" alt="Chris Long" title="Chris Long" loading="lazy">
</a>
<a class="h-card u-url link-u-exempt" href="https://hcommons.social/@kfitz/113656883649279150#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>
</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 `/on-distraction/` was built on 2025-03-19T12:10:39.925Z -->
<script type="module" src="/dist/rJ3_G-2ArF.js"></script>
</body>
</html>