Compare commits
8 Commits
da83e0de6f
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 664e163baf | |||
| 546438b830 | |||
| a5316f1a69 | |||
| 4665a00bc7 | |||
| 58c2b7ed6e | |||
| 53a9094b6c | |||
| 697d85e74e | |||
| 8839b6c867 |
@@ -56,6 +56,11 @@ export default {
|
||||
linkDisplay: "Links",
|
||||
linkURL: "/links/",
|
||||
},
|
||||
{
|
||||
iconURL: "/img/icons/breeze/amarok_cart_view.svg",
|
||||
linkDisplay: "Not Amazon",
|
||||
linkURL: "/not-amazon/",
|
||||
},
|
||||
{
|
||||
iconURL: "/img/burn.svg",
|
||||
linkDisplay: "Now Burning",
|
||||
@@ -66,6 +71,11 @@ export default {
|
||||
linkDisplay: "Quizzes",
|
||||
linkURL: "/quizzes/",
|
||||
},
|
||||
{
|
||||
iconURL: "/img/icons/breeze/file-search-symbolic.svg",
|
||||
linkDisplay: "Search",
|
||||
linkURL: "/search/",
|
||||
},
|
||||
{
|
||||
iconURL: "/img/icons/breeze/map-globe.svg",
|
||||
linkDisplay: "Sitemap",
|
||||
|
||||
@@ -10,7 +10,8 @@
|
||||
</span>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
<a href="/sitemap/">Sitemap</a>
|
||||
<span class="webring"><a href="/search/">Search</a></span>
|
||||
<span class="webring"><a href="/sitemap/">Sitemap</a></span>
|
||||
</p>
|
||||
<div id="buttonsAndStuffContainer">
|
||||
<a href="https://notbyai.fyi/">
|
||||
|
||||
@@ -3,75 +3,3 @@
|
||||
<section id="isso-thread">
|
||||
<noscript>Javascript needs to be activated to view comments.</noscript>
|
||||
</section>
|
||||
|
||||
<style>
|
||||
h4.isso-thread-heading {
|
||||
color: var(--text-color) !important;
|
||||
font-size: var(--step-2) !important;
|
||||
font-variation-settings: "opsz" 50, "wght" 350, "SOFT" 20, "WONK" 1 !important;
|
||||
line-height: calc(var(--step-2) * 0.25 + var(--step-2)) !important;
|
||||
margin-bottom: var(--space-m) !important;
|
||||
margin-top: var(--space-m) !important;
|
||||
padding-bottom: 0 !important;
|
||||
padding-top: 0 !important;
|
||||
text-wrap: pretty;
|
||||
}
|
||||
|
||||
.isso-text > h1, .isso-text > h2 {
|
||||
padding: 0 0 0 0 !important;
|
||||
}
|
||||
|
||||
.isso-form-wrapper > .isso-auth-section > .isso-post-action > input {
|
||||
background-color: var(--contrast-color) !important;
|
||||
border: none !important;
|
||||
border-radius: var(--border-radius) !important;
|
||||
color: var(--background-color) !important;
|
||||
font-family: var(--font-family-ui) !important;
|
||||
font-size: var(--step--2) !important;
|
||||
font-variation-settings: var(--font-variation-ui) !important;
|
||||
height: var(--space-m-l) !important;
|
||||
letter-spacing: var(--ui-letter-spacing) !important;
|
||||
margin: var(--space-xs) 0 0 0 !important;
|
||||
padding: 0 var(--space-xs) !important;
|
||||
text-transform: uppercase !important;
|
||||
transition: var(--transition-normal) !important;
|
||||
white-space: nowrap !important;
|
||||
}
|
||||
|
||||
p.isso-input-wrapper {
|
||||
display: block !important;
|
||||
max-width: 100% !important;
|
||||
& > label, & > input {
|
||||
font-family: var(--font-family-ui) !important;
|
||||
font-size: var(--step--2) !important;
|
||||
font-variation-settings: var(--font-variation-ui) !important;
|
||||
}
|
||||
& input {
|
||||
margin-block: inherit !important;
|
||||
}
|
||||
}
|
||||
|
||||
.isso-post-action {
|
||||
display: inline-block !important;
|
||||
float: inherit !important;
|
||||
margin: 0 var(--space-2xs) 0 0 !important;
|
||||
&::after {
|
||||
content: "" !important;
|
||||
}
|
||||
}
|
||||
|
||||
textarea.isso-textarea {
|
||||
background-color: var(--background-color) !important;
|
||||
border: var(--border-details) !important;
|
||||
border-color: var(--contrast-color) !important;
|
||||
border-radius: var(--border-radius) !important;
|
||||
color: var(--text-color) !important;
|
||||
font-family: var(--font-family) !important;
|
||||
font-size: var(--step-0) !important;
|
||||
font-variation-settings: var(--font-variation-default) !important;
|
||||
margin-block: 0 1lh !important;
|
||||
min-height: var(--space-l) !important;
|
||||
padding: 0 var(--space-3xs) !important;
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
|
||||
78
_includes/issoStyle.njk
Normal file
78
_includes/issoStyle.njk
Normal file
@@ -0,0 +1,78 @@
|
||||
<!-- ISSO style -->
|
||||
<style>
|
||||
.isso-comment-header {
|
||||
height: var(--space-2xl) !important;
|
||||
}
|
||||
|
||||
h4.isso-thread-heading {
|
||||
color: var(--text-color) !important;
|
||||
font-size: var(--step-2) !important;
|
||||
font-variation-settings: "opsz" 50, "wght" 350, "SOFT" 20, "WONK" 1 !important;
|
||||
line-height: calc(var(--step-2) * 0.25 + var(--step-2)) !important;
|
||||
margin-bottom: var(--space-m) !important;
|
||||
margin-top: var(--space-m) !important;
|
||||
padding-bottom: 0 !important;
|
||||
padding-top: 0 !important;
|
||||
text-wrap: pretty !important;
|
||||
}
|
||||
|
||||
.isso-text > h1, .isso-text > h2 {
|
||||
padding: 0 0 0 0 !important;
|
||||
}
|
||||
|
||||
.isso-form-wrapper > .isso-auth-section > .isso-post-action > input {
|
||||
background-color: var(--contrast-color) !important;
|
||||
border: none !important;
|
||||
border-radius: var(--border-radius) !important;
|
||||
color: var(--background-color) !important;
|
||||
font-family: var(--font-family-ui) !important;
|
||||
font-size: var(--step--2) !important;
|
||||
font-variation-settings: var(--font-variation-ui) !important;
|
||||
height: var(--space-m-l) !important;
|
||||
letter-spacing: var(--ui-letter-spacing) !important;
|
||||
margin: var(--space-xs) 0 0 0 !important;
|
||||
padding: 0 var(--space-xs) !important;
|
||||
text-transform: uppercase !important;
|
||||
transition: var(--transition-normal) !important;
|
||||
white-space: nowrap !important;
|
||||
}
|
||||
|
||||
p.isso-input-wrapper {
|
||||
display: block !important;
|
||||
max-width: 100% !important;
|
||||
& > label, & > input {
|
||||
font-family: var(--font-family-ui) !important;
|
||||
font-size: var(--step--2) !important;
|
||||
font-variation-settings: var(--font-variation-ui) !important;
|
||||
}
|
||||
& input {
|
||||
margin-block: inherit !important;
|
||||
}
|
||||
}
|
||||
|
||||
.isso-post-action {
|
||||
display: inline-block !important;
|
||||
float: inherit !important;
|
||||
margin: 0 var(--space-2xs) 0 0 !important;
|
||||
&::after {
|
||||
content: "" !important;
|
||||
}
|
||||
}
|
||||
|
||||
textarea.isso-textarea {
|
||||
background-color: var(--background-color) !important;
|
||||
border: var(--border-details) !important;
|
||||
border-color: var(--contrast-color) !important;
|
||||
border-radius: var(--border-radius) !important;
|
||||
color: var(--text-color) !important;
|
||||
font-family: var(--font-family) !important;
|
||||
font-size: var(--step-0) !important;
|
||||
font-variation-settings: var(--font-variation-default) !important;
|
||||
margin-block: 0 1lh !important;
|
||||
min-height: var(--space-l) !important;
|
||||
padding: 0 var(--space-3xs) !important;
|
||||
resize: vertical !important;
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
<!-- /ISSO style -->
|
||||
@@ -5,6 +5,10 @@
|
||||
<link rel="stylesheet" type="text/css" href="/css/index.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/css/webfonts/webfonts.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/css/code.css" />
|
||||
{% if search %}
|
||||
<link rel="stylesheet" href="/pagefind/pagefind-ui.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/search.css" />
|
||||
{% endif %}
|
||||
<!-- Mochi webmentions -->
|
||||
<link rel="webmention" href="https://mochi-webmentions.meadow.cafe/webmention/mochi@upchur.ch/1/receive" />
|
||||
<!-- Indieweb profile links -->
|
||||
@@ -12,6 +16,7 @@
|
||||
<!-- /Indieweb profile links -->
|
||||
{% include "structuredData.njk" %}
|
||||
{% include "analytics.html" %}
|
||||
{% include "issoStyle.njk" %}
|
||||
{% include "weatherStyle.njk" %}
|
||||
{% include "wooModeStyle.njk" %}
|
||||
</head>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: layouts/linksPage.njk
|
||||
---
|
||||
<div class="links-container h-card">
|
||||
<div class="links-container h-card" data-pagefind-body>
|
||||
<img class="profilePic u-photo" src="{{ metadata.author.profilePic }}">
|
||||
<h1 class="socialTitle p-name">Nathan Upchurch</h1>
|
||||
<p class="page-block nodropcap">Beside what I do to earn a crust, among other things, I’m an incense maker and enthusiast, a classical trombonist, vegan cook, writer, mediocre photographer, and a fan of, advocate for, and occasional contributor to free and open source software. Here’s where you can find me on the internet:</p>
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
---
|
||||
layout: layouts/base.njk
|
||||
---
|
||||
<article class="post">
|
||||
<h1>{{ title | safe }}</h1>
|
||||
<article class="post" data-pagefind-body>
|
||||
<h1>{{ title | markdownify | safe}}</h1>
|
||||
{% include "mastodonComments.njk" %}
|
||||
{% if not hideMetadata %}
|
||||
<div class="post-metadata">
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<a href="{{ post.url }}" class="postlist-link">
|
||||
{% endif %}
|
||||
<h3>
|
||||
{% if post.data.title %}{{ post.data.title | safe }}{% else %}?{% endif %}
|
||||
{% if post.data.title %}{{ post.data.title | markdownify | safe }}{% else %}?{% endif %}
|
||||
</h3>
|
||||
{% if not postListTypeMicroblog %}
|
||||
</a>
|
||||
|
||||
@@ -6,7 +6,7 @@ structuredData: none
|
||||
|
||||
# Colophon
|
||||
## What I used to build this website
|
||||
I built this website in plain-old HTML, CSS, and a touch of vanilla JavaScript using [Zach Leatherman](https://www.zachleat.com/)'s [11ty static site generator](https://www.11ty.dev/) and Mozilla's [Nunjucks templating language](https://mozilla.github.io/nunjucks/). I used free and open source variable typefaces [Fraunces](https://fraunces.undercase.xyz/), designed by Phaedra Charles and Flavia Zimbardi[^1], and [Manrope](https://www.gent.media/manrope), designed by Mikhail Sharanda[^2].
|
||||
I built this website in plain-old HTML, CSS, and a touch of vanilla JavaScript using [Zach Leatherman](https://www.zachleat.com/)'s [11ty static site generator](https://www.11ty.dev/) (now called, *sigh*, Build Awesome) and Mozilla's [Nunjucks templating language](https://mozilla.github.io/nunjucks/). I used free and open source variable typefaces [Fraunces](https://fraunces.undercase.xyz/), designed by Phaedra Charles and Flavia Zimbardi[^1], and [Manrope](https://www.gent.media/manrope), designed by Mikhail Sharanda[^2]. [Search](/search) powered by [Pagefind](https://pagefind.app/). [Guestbook](/guestbook) powered by [Guestbooks](https://guestbooks.meadow.cafe/).
|
||||
|
||||
The handy calculators on [utopia.fyi](https://utopia.fyi), created by James Gilyead and Trys Mudford, helped me implement fluid typography and spacing, which has allowed me to make this website responsive without using a single media query. The future is upon us.
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ eleventyNavigation:
|
||||
key: About
|
||||
order: 2
|
||||
---
|
||||
<article>
|
||||
<article data-pagefind-body>
|
||||
<h1>About me and my website.</h1>
|
||||
<p class="page-block nodropcap">I’m a prolific vegan home cook, classical trombonist, incense maker, a <abbr title="Free/Libre Open Source Software">FLOSS</abbr> enthusiast, designer, programmer, music producer, print lover, and human with too many interests and too little time.<br><br>
|
||||
This is my little corner of the internet where I talk about whatever I like without worrying about maintaining a ‘personal brand’, or constraining my writing to topics which might help advance my career or establish me as a ‘thought leader’. I’m here to express myself and have fun writing about topics I enjoy.<br><br>
|
||||
|
||||
@@ -4,6 +4,8 @@ title: Nathan Upchurch | AI
|
||||
structuredData: none
|
||||
---
|
||||
|
||||
<article data-pagefind-body>
|
||||
|
||||
# AI
|
||||
Certified generative AI hater here. This website and all content herein is 100% guaranteed AI slop free: code, prose images, music, et cetera.
|
||||
|
||||
@@ -11,3 +13,5 @@ Certified generative AI hater here. This website and all content herein is 100%
|
||||
|
||||
## AI Permissions
|
||||
I do my utmost to ensure that my work is not hoovered wholesale and regurgitated by AI products by including an [ai.txt file](/ai.txt) and disallowing known crawlers in my [robots.txt file](/robots.txt), but just in case it will ever become meaningful in any legal sense, I'd like to make it clear here that I do not grant permission for any content on this website to be used as training data for any AI project, or for any portion of this website to be scraped by bots associated with AI projects.
|
||||
|
||||
</article>
|
||||
|
||||
@@ -3,5 +3,8 @@ layout: layouts/base.njk
|
||||
title: Nathan Upchurch | Blank
|
||||
structuredData: none
|
||||
---
|
||||
<article data-pagefind-body>
|
||||
|
||||
This page was intentionally left blank.
|
||||
|
||||
</article>
|
||||
|
||||
@@ -4,6 +4,7 @@ description: Answering a lot of questions.
|
||||
date: 2026-02-05T00:00:00.000Z
|
||||
tags:
|
||||
- Questionnaire
|
||||
- Web Development
|
||||
synopsis: Answering a lot of questions.
|
||||
mastodon_id: '116021932929019975'
|
||||
---
|
||||
|
||||
111
content/blog/eleventy-becomes-build-awesome.md
Normal file
111
content/blog/eleventy-becomes-build-awesome.md
Normal file
@@ -0,0 +1,111 @@
|
||||
---
|
||||
title: "Eleventy Becomes, *Sigh*, Build Awesome"
|
||||
description: "Sustainability? Enshittification? I have some feelings about this."
|
||||
date: 2026-03-11
|
||||
tags:
|
||||
- Eleventy
|
||||
- Enshittification
|
||||
- Web Development
|
||||
synopsis: "Sustainability? Enshittification? I have some feelings about this."
|
||||
imageURL: /img/eleventy-becomes-sigh-build-awesome/eleventy-logo.png
|
||||
imageAlt: The old Eleventy logo.
|
||||
mastodon_id: "116213694439138520"
|
||||
---
|
||||
In case you haven't heard, Eleventy, the excellent static site generator that I
|
||||
use for this very website has been acquired by Font Awesome. As a result, it
|
||||
has been renamed, *sigh*,
|
||||
[Build Awesome](https://www.11ty.dev/blog/build-awesome/). After seeing what
|
||||
happened to [Shoelace](https://shoelace.style/), I'm apprehensive
|
||||
and very much not looking forward to seeing what features get locked behind a
|
||||
paywall. But beside the enshittification likely to follow, I thought we'd
|
||||
stopped appending "awesome" to everything at roughly the same time bacon memes,
|
||||
curly moustaches, and
|
||||
[stomp-clap music](https://knowyourmeme.com/memes/stomp-clap-hey-music) went
|
||||
out of style. It seems like
|
||||
[I'm not the only one](https://www.allaboutken.com/posts/20260305-digesting-eleventy-becomes-build-awesome/)
|
||||
who feels this way either.
|
||||
|
||||
While disappointed with this state of affairs, I'm not terribly surprised.
|
||||
Beyond the matter of funding,
|
||||
[as W. Evan Sheehan of The Darth Mall put it](https://darthmall.net/notes/2026/eleventy-build-awesome/):
|
||||
|
||||
> …the vibe of open source in the JavaScript community is a little bit different than what I think of as the broader open source movement. Open source JavaScript projects often feel a little more tied to corporations than Linux, or Python, or NeoVim.
|
||||
|
||||
I wholeheartedly agree. There's
|
||||
[a big difference](https://www.gnu.org/philosophy/open-source-misses-the-point.en.html)
|
||||
in philosophy between "free software" and "open source," and many JavaScript
|
||||
projects seem to be firmly in the latter camp.
|
||||
|
||||
The choice of the MIT license for Eleventy in the first place speaks
|
||||
volumes—it's antithetical to the free software movement. The MIT license allows
|
||||
corporations to snatch up free and open source software, insert whatever
|
||||
malicious functionality they please, lock down the source code, and abuse the
|
||||
users they extort with their rent-seeking pricing schemes. On the other hand,
|
||||
code licensed under a strong copyleft license such as the GPL ensures that
|
||||
software always remains free (as in speech). Under a strong copyleft license,
|
||||
anyone can use the software for any purpose. They may study, change, improve,
|
||||
and redistribute it. But unlike permissive licenses such as the MIT license,
|
||||
developers may *not* strip these rights from users at any point.
|
||||
|
||||
The goal of the free software movement is to create a
|
||||
[commons](https://en.wikipedia.org/wiki/Commons) of software that anyone is
|
||||
free to use, study, redistribute, and improve so that abusive software ceases
|
||||
to be competitive. In terms of how MIT licensed software helps this cause, it's
|
||||
a bit like putting a soldier on the battlefield with no armor. They may do some
|
||||
damage, but they're a cinch to eliminate from the field. At this point, I see
|
||||
MIT licensing as a red flag on all but the very few projects where it makes
|
||||
sense (such as programming languages). When you decide to rely on MIT-licensed
|
||||
software for your day to day activities, you never know when it will be
|
||||
enshittified, put behind a paywall, or
|
||||
[EEE](https://en.wikipedia.org/wiki/Embrace,_extend,_and_extinguish)'d out of
|
||||
existence.
|
||||
|
||||
I'm not saying that these things are going to happen to what we knew and loved
|
||||
as Eleventy. Who knows what the future may bring. But I am saying that this
|
||||
move is certainly not in the spirit of Free / Libre and Open Source Software. I
|
||||
fear that the age-old pattern
|
||||
[that befell Standard Notes](/blog/underrated-apps-qownnotes/) is going to
|
||||
happen once again here: first attractive new features appear behind a paywall,
|
||||
then old features you relied on get
|
||||
[put behind a paywall](https://www.reddit.com/r/StandardNotes/comments/strgh2/very_confused_about_selfhosting_and_extensions/), using the software without paying is slowly made increasingly difficult,
|
||||
and, before you know it, they
|
||||
[pull the ol' switcheroo](https://www.reddit.com/r/StandardNotes/comments/16wkrau/note_version_316725_is_the_last_one_to_be_free_or/)
|
||||
on the license (even if they revert from embarrassment later).
|
||||
|
||||
At the same time, despite my misgivings, I'm happy that
|
||||
[Zach Leatherman](https://www.zachleat.com/) is (I assume) going to be properly
|
||||
paid to continue his work on the project. It shouldn't be so damned hard to
|
||||
make a living while performing a public good. Zach seemed pretty happy about
|
||||
all of this during his appearance on, *sigh*,
|
||||
[Podcast Awesome](https://www.youtube.com/watch?v=QnnU_iguZ4I). He strikes me
|
||||
as someone who really cares about his work, and seems a lovely man, always
|
||||
willing to jump in help someone even when the problem is between the chair and
|
||||
the keyboard (ask me how I know). Zach deserves, at minimum, to be paid a
|
||||
decent salary for his contribution to the world, and I'm thrilled that it seems
|
||||
he's going to get at least that.
|
||||
|
||||
Now I'm tempted to turn this into a screed on funding for FLOSS projects, but
|
||||
better informed people than I have written plenty of those already, so I'll
|
||||
leave it at this—the fact that NASA, Cern, Google, Microsoft, Mozilla, Ubuntu,
|
||||
JetBrains, CloudCannon, Netlify, Cloudflare, Shopify, MIT, Stanford, the
|
||||
governments of France, the UK, and the USA, Orange, Red Hat, Just Eat,
|
||||
[and others](https://www.11ty.dev/#why-should-you-use-eleventy) didn't manage
|
||||
to muster between them
|
||||
[a piddling $6,000 per month](https://www.zachleat.com/web/independent-sustainable-11ty/#asking-for-help)
|
||||
to pay the developer of a tool they use to publish their websites is *disgusting*. We might have avoided this situation if they had.
|
||||
|
||||
I developed something like a brand loyalty to Eleventy. It's a scrappy project
|
||||
from a talented developer who has managed to keep it alive and well for eight
|
||||
years. The project has become widely used because *it's excellent*: flexible,
|
||||
powerful, fast, and easy to use for web developers who are used to working with
|
||||
JavaScript. I'm sad to see the name go, along with the red balloon, and that
|
||||
scruffy possum. The [clean, middle-class replacement](https://github.com/11ty/11ty-website/blob/main/src/img/mascots/awesome-possum-balloon-smile-sm.svg) with its stupid *clothing*
|
||||
and *fancy green balloon* [^1] can take a hike—I can't believe they've
|
||||
gentrified the damn mascot!
|
||||
|
||||
[](/img/eleventy-becomes-sigh-build-awesome/grumpy_among_the_stars.webp)
|
||||
|
||||
While I have major apprehensions about where, *sigh*, Font Awesome is going to take the project, I suppose we'll just have to wait and see where this goes. In the meantime, let's all be sure to donate to the FLOSS projects we use, publicly shame corporations who don't give back to the projects they profit from, and pressure our representatives to fund FLOSS software!
|
||||
|
||||
[^1]: And green is my favorite color, too :[
|
||||
|
||||
@@ -5,6 +5,7 @@ date: 2024-12-02
|
||||
tags:
|
||||
- Site Updates
|
||||
- Eleventy
|
||||
- Web Development
|
||||
synopsis: At last, I've gotten around to implementing image galleries.
|
||||
imageURL: /img/isabella-fischer-X2l9M6jsS7E-unsplash.webp
|
||||
imageAlt: Some very tasty looking pop tarts with pink icing and sprinkles.
|
||||
|
||||
@@ -5,6 +5,7 @@ date: 2025-02-04
|
||||
tags:
|
||||
- Site Updates
|
||||
- Eleventy
|
||||
- Web Development
|
||||
synopsis: "Remember when internet quizzes were a thing? I wanted to bring them to my website."
|
||||
imageURL: ""
|
||||
imageAlt: ""
|
||||
|
||||
@@ -5,6 +5,7 @@ date: 2024-10-23
|
||||
tags:
|
||||
- Music
|
||||
- Site Updates
|
||||
- Web Development
|
||||
synopsis: "I've gone and built a not-so-fancy audio component for my blog."
|
||||
imageURL: /audio/covers/ballin.webp
|
||||
imageAlt: An uncapped fountain pen on top of a pretty, gold-foiled pad of paper beside some envelopes with stamps featuring coffee drinks on them.
|
||||
|
||||
@@ -4,6 +4,7 @@ description: QOwnNotes is a terminally underrated native markdown note-taking ap
|
||||
synopsis: QOwnNotes is a terminally underrated native markdown note-taking app, despite the fact that you'll rarely see it mentioned on the internet.
|
||||
date: 2023-08-09
|
||||
tags:
|
||||
- Enshittification
|
||||
- FOSS/FLOSS
|
||||
- Underrated Apps
|
||||
imageURL: /img/qownnotes.webp
|
||||
@@ -13,7 +14,7 @@ mastodon_id: "110862579682916657"
|
||||
[](/img/qownnotes.webp)
|
||||
|
||||
## What makes a good note taking app?
|
||||
After its author decided to make future versions closed-source, I found myself searching for a replacement for the excellent [Notable](https://notable.app/). Unfortunately, while note-taking applications are a dime a dozen, they're also common ground for the [Notable](https://notable.app/) / [SimpleNote](https://simplenote.com/) style FLOSS bait-and-switch: developers release an outstanding note-taking app, only to make future versions closed-source, or make it inordinately difficult to properly and fully make use of the software without paying for a hosted service. Victim to the former, I set out to find a note-taking app that I felt could not only be trusted to operate in the spirit of FLOSS philosophy, but also met some key criteria:
|
||||
After its author decided to make future versions closed-source, I found myself searching for a replacement for the excellent [Notable](https://notable.app/). Unfortunately, while note-taking applications are a dime a dozen, they're also common ground for the [Notable](https://notable.app/) / [Standard Notes](https://standardnotes.com/) style FLOSS bait-and-switch: developers release an outstanding note-taking app, only to make future versions closed-source, or make it inordinately difficult to properly and fully make use of the software without paying for a hosted service. Victim to the former, I set out to find a note-taking app that I felt could not only be trusted to operate in the spirit of FLOSS philosophy, but also met some key criteria:
|
||||
|
||||
1. Native Code
|
||||
|
||||
|
||||
@@ -3,17 +3,19 @@ layout: layouts/base.njk
|
||||
title: Nathan Upchurch | Blogroll
|
||||
structuredData: none
|
||||
---
|
||||
<h1>Blogroll</h1>
|
||||
<p class="nodropcap">Here are some blogs and independent news outlets I like to read. You can click the RSS icon next to each to subscribe using <a href="../about-feeds/">your newsreader</a>, or import all of them at once by downloading and importing this convenient <a href="./nathanUpchurchBlogroll.opml" download>.opml file</a>.</p>
|
||||
<p class="page-block">
|
||||
<em>Skip to category:
|
||||
{% for category in blogroll.categories %}
|
||||
<a href="#{{ category.name | slugify }}">{{ category.name }}</a>{% if loop.last %}.{% else %},{% endif %}
|
||||
{% endfor %}
|
||||
</em></p>
|
||||
<article data-pagefind-body>
|
||||
|
||||
{% for category in blogroll.categories %}
|
||||
<section class="blogroll">
|
||||
<h1>Blogroll</h1>
|
||||
<p class="nodropcap">Here are some blogs and independent news outlets I like to read. You can click the RSS icon next to each to subscribe using <a href="../about-feeds/">your newsreader</a>, or import all of them at once by downloading and importing this convenient <a href="./nathanUpchurchBlogroll.opml" download>.opml file</a>.</p>
|
||||
<p class="page-block">
|
||||
<em>Skip to category:
|
||||
{% for category in blogroll.categories %}
|
||||
<a href="#{{ category.name | slugify }}">{{ category.name }}</a>{% if loop.last %}.{% else %},{% endif %}
|
||||
{% endfor %}
|
||||
</em></p>
|
||||
|
||||
{% for category in blogroll.categories %}
|
||||
<section class="blogroll">
|
||||
<h2 id="{{ category.name | slugify }}">{{ category.name }}:<a class="header-anchor" href="#{{ category.name | slugify }}">#</a></h2>
|
||||
{% for blog in category.blogs %}
|
||||
<div class="blogroll-category-group">
|
||||
@@ -33,4 +35,6 @@ structuredData: none
|
||||
</div>
|
||||
{% endfor %}
|
||||
</section>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
||||
</article>
|
||||
|
||||
@@ -3,7 +3,21 @@ layout: layouts/base.njk
|
||||
title: Nathan Upchurch | Changelog
|
||||
structuredData: none
|
||||
---
|
||||
<article data-pagefind-body>
|
||||
|
||||
# Changelog
|
||||
* 2026-03-16
|
||||
* Updated [/incense](/incense).
|
||||
* Updated [/links](/links).
|
||||
* Updated [/not-amazon](/not-amazon).
|
||||
* 2026-03-12
|
||||
* Added [/not-amazon](/not-amazon) page.
|
||||
* 2026-03-11
|
||||
* Implemented [search](/search).
|
||||
* 2026-03-06
|
||||
* Updated [/incense](/incense).
|
||||
* 2026-03-05
|
||||
* Updated [/wish](/wish) and [/incense](/incense).
|
||||
* 2026-02-07
|
||||
* Updated [/wish](/wish).
|
||||
* 2026-02-04
|
||||
@@ -156,3 +170,4 @@ structuredData: none
|
||||
* Implemented [/changelog](/changelog) 🎉.
|
||||
* Implemented [/ai](/ai) a la [slashai.page](https://slashai.page/).
|
||||
|
||||
</article>
|
||||
|
||||
@@ -11,7 +11,7 @@ eleventyComputed:
|
||||
permalink: "/gallery/{{ picture.containingGallery | slugify }}/{{ picture.filename | slugify }}/"
|
||||
description: "{{ picture.title }} from gallery: {{ picture.containingGallery}}"
|
||||
---
|
||||
<article>
|
||||
<article data-pagefind-body>
|
||||
<h1>{{ picture.title }}</h1>
|
||||
<div class="buttonContainer galleryButtons">
|
||||
{% if picture.previousImage %}
|
||||
|
||||
@@ -11,9 +11,10 @@ eleventyComputed:
|
||||
permalink: "/gallery/{{ gallery.title | slugify }}/"
|
||||
description: "{{ gallery.description }}"
|
||||
---
|
||||
<h1>{{ gallery.title }}</h1>
|
||||
<p class="page-block nodropcap">{{ gallery.description }}</p>
|
||||
<section class="gallery-images">
|
||||
<div data-pagefind-body>
|
||||
<h1>{{ gallery.title }}</h1>
|
||||
<p class="page-block nodropcap">{{ gallery.description }}</p>
|
||||
<section class="gallery-images">
|
||||
{% for picture in gallery.pictures %}
|
||||
<a href="/gallery/{{ gallery.title | slugify }}/{{ picture.filename | slugify }}/">
|
||||
<wc-card class="gallery-image-container">
|
||||
@@ -21,4 +22,5 @@ eleventyComputed:
|
||||
</wc-card>
|
||||
</a>
|
||||
{% endfor %}
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
---
|
||||
layout: layouts/base.njk
|
||||
---
|
||||
<h1>My image galleries.</h1>
|
||||
<p class="page-block nodropcap">
|
||||
Photography trips, memes, and other pictures I thought would be worth sharing.
|
||||
</p>
|
||||
{% include "gallerieslist.njk" %}
|
||||
<div data-pagefind-body>
|
||||
<h1>My image galleries.</h1>
|
||||
<p class="page-block nodropcap">
|
||||
Photography trips, memes, and other pictures I thought would be worth sharing.
|
||||
</p>
|
||||
{% include "gallerieslist.njk" %}
|
||||
</div>
|
||||
|
||||
@@ -3,6 +3,7 @@ layout: layouts/base.njk
|
||||
title: Nathan Upchurch | Incense
|
||||
structuredData: none
|
||||
---
|
||||
<article data-pagefind-body>
|
||||
|
||||
# Incense: Writing & Resources
|
||||
::: info
|
||||
@@ -25,6 +26,7 @@ Incense making is hard. While parts of the world with strong incense cultures en
|
||||
### Resources
|
||||
* [/r/incense posts flaired with "incense making"](https://www.reddit.com/r/Incense/?f=flair_name%3A%22Incense%20Making%22)—For better or worse, the incense subreddit is *the* place to go for incense discussion and advice. I'm working on changing that, but it's slow-going; see the forums / discussion boards section below.
|
||||
* [incensemaking.com](https://incensemaking.com/)—A useful site, particularly for listing many of the aromatics used in incense making. Be careful, however, as not all of the ingredients listed may be suited for [combustible incense](https://en.wikipedia.org/wiki/Incense#Types).
|
||||
* [Jarguna Incense YouTube playlist](https://www.youtube.com/watch?v=ZzPT3nU1j70&list=PLWogy1GQgvfECuf-F3kIrsuiBFXh1ctNr&index=1)
|
||||
* [The Incense Dragon YouTube channel](https://www.youtube.com/c/IncenseDragon)
|
||||
|
||||
## Advanced Incense Making Techniques
|
||||
@@ -93,6 +95,7 @@ Incense making is hard. While parts of the world with strong incense cultures en
|
||||
* [Mothers Goods (Germany)](https://mothersgoods.com)—Herbs, Resins, Woods
|
||||
* [Mountain Rose Herbs (USA)](https://mountainroseherbs.com/)—Extracts, Herbs, Tinctures, Oils, Resins
|
||||
* [New Mountain Merchants (Australia)](https://newmountain.com.au/)—Oils, Woods
|
||||
* [ResinaeBotanica (UK)](https://www.etsy.com/shop/ResinaeBotanica)—Resins
|
||||
* [Scents of Earth (USA)](https://scents-of-earth.com/)—Absolutes, Herbs, Oils, Resins, Woods
|
||||
* [The Incense Dragon (USA)](https://www.theincensedragon.com/supplies)—Herbs, Resins, Woods
|
||||
* [The World Makes Scents (USA)](https://theworldmakesscents.com/)—Herbs, Resins, Woods
|
||||
@@ -104,7 +107,12 @@ Incense making is hard. While parts of the world with strong incense cultures en
|
||||
## Forums / Discussion Boards
|
||||
* [Reddit (/r/incense)](https://reddit.com/r/incense)—Unfortunately, this is currently *the* place to discuss incense and incense making on the English-speaking internet. If you would like to avoid a platform that spies on you and uses your writing to train AI, you are welcome to help me bring some life to the following alternative option (currently pretty much only populated by me):
|
||||
* [Lemmy (lemmy.ml/c/incense)](https://lemmy.ml/c/incense)—Lemmy is a free and open source alternative to Reddit on [the fediverse](https://jointhefediverse.net/?lang=en-us). If you're new to the fediverse, the easiest way to participate is to [create a Lemmy account](https://lemmy.ml/signup) and subscribe to the [/c/incense](https://lemmy.ml/c/incense) community. You can also subscribe and participate from [other Lemmy instances](https://join-lemmy.org/instances) and [other federated platforms](https://jointhefediverse.net/join?lang=en-us) such as [Friendica](https://friendi.ca/#try).
|
||||
* [Ouddict](https://www.ouddict.com/)—Mostly focused on agarwood (oud) oil and wood, incense threads can and do appear.
|
||||
* [The Incense Makers' Guild](https://incensemakers.org/)—An invitation-only forum for experienced incense makers hosted by yours truly. Currently pretty quiet, but some good info can be found there already.
|
||||
|
||||
## Fun
|
||||
* [Woo-Woo Incense Description Generator](/special/woo-woo-incense-description-generator)
|
||||
|
||||
|
||||
[^1]: Here I am referring to traditional incense making, using actual plants as aromatics. There is certainly no lack of knowledge or production of "dipped" incense here, an extremely easy to make category of incense which is considered the absolute bottom of the barrel in terms of quality.
|
||||
</article>
|
||||
|
||||
@@ -4,6 +4,8 @@ title: Nathan Upchurch | Links
|
||||
structuredData: none
|
||||
---
|
||||
|
||||
<article data-pagefind-body>
|
||||
|
||||
# Links
|
||||
Here are some links to pages and resources that I believe are worth sharing.
|
||||
## Design tools and resources
|
||||
@@ -136,6 +138,7 @@ Unlimited creativity, zero ads.
|
||||
* [Userbar generator](https://350x19.datakra.sh/)—Generate 250x19 userbar graphics
|
||||
|
||||
## Literature
|
||||
* [Standard Ebooks](https://standardebooks.org/)—A volunteer-driven effort to produce a collection of high quality, carefully formatted, accessible, open source, and free public domain ebooks that meet or exceed the quality of commercially produced ebooks.
|
||||
* [TypeLit.io](https://www.typelit.io/)—Test your typing online by practicing on your favorite literature
|
||||
* [Wee Windaes—A continuum o the Scots Leid](https://wee-windaes.nls.uk/)
|
||||
|
||||
@@ -258,3 +261,5 @@ Unlimited creativity, zero ads.
|
||||
* VPN
|
||||
## Random cool stuff
|
||||
* [intertapes.net](https://intertapes.net/)—An updating collection of found cassette tapes from different locations. The audio fragments include: voice memos, field recordings, mixtapes, bootlegs and more.
|
||||
|
||||
</article>
|
||||
|
||||
133
content/not-amazon/index.md
Normal file
133
content/not-amazon/index.md
Normal file
@@ -0,0 +1,133 @@
|
||||
---
|
||||
layout: layouts/base.njk
|
||||
title: "Nathan Upchurch | Not Amazon"
|
||||
structuredData: none
|
||||
---
|
||||
<article data-pagefind-body>
|
||||
|
||||
# Not Amazon
|
||||
Mostly for my own use, this is a list of U.S.-based online shops that are not Amazon. If you are looking to stop paying for J-Beezy's yacht maintenance while his workers piss in bottles, and you're based in the U.S.A., you might find this list useful too. Vegan and small independent brands get priority, of course. I do not receive any sort of commission or kick-back from any of the below stores. If you do want to buy something that I get a kick-back from, check out my (sparse) [referrals](/referrals) page. I haven't personally tried all of these retailers, so use judgment before purchasing.
|
||||
|
||||
## Clothing & Apparel
|
||||
* [Bombas](https://bombas.com/)—Decent socks.
|
||||
* [Suavs](https://www.suavshoes.com/)—Very comfortable ultra-casual shoes with a nice wide toe-box.
|
||||
* [Means Workwear](https://www.meansworkwear.com/)—Clothing, patches, and hats that may get you put on a list.
|
||||
* [Very Cool](https://shirtz.cool/)—Ultra casual clothing.
|
||||
* [Will's Vegan Store](https://www.wills-vegan-store.com/)—Vegan faux-leather[^1] shoes, mostly smart-casual and up, plus some nice coats, jackets, and bags.
|
||||
|
||||
## Electronics
|
||||
* [CircuitMess](https://circuitmess.com/)—STEM kits.
|
||||
* [Handheld Legend](https://handheldlegend.com/)—Retro handheld console mods and upgrades.
|
||||
* [Micro Center](https://www.microcenter.com/)—Computers and computer components, maker products, networking equipment, and more.
|
||||
* [Minis Forum](https://www.minisforum.com/)—Mini PCs.
|
||||
* [KPRepublic](https://kprepublic.com/)—Keyboards and keyboard accessories.
|
||||
* [Retroid](https://www.goretroid.com/)—Handheld retro game emulation devices.
|
||||
* [Slimbook](https://slimbook.com/en/)—Laptops made for GNU/Linux.
|
||||
* [StarLabs](https://us.starlabs.systems/)—Computers made for GNU/Linux.
|
||||
* [System76](https://system76.com/)—Computers and accessories made for GNU/Linux.
|
||||
* [Tindie](https://www.tindie.com/)—Buy unique electronics directly from makers.
|
||||
* [Tuxedo Computers](https://www.tuxedocomputers.com/en)—Laptops made for GNU/Linux.
|
||||
* [X-Tronic USA](https://xtronicusa.com/)—Soldering stations and related items.
|
||||
|
||||
## Emergency Preparedness
|
||||
* [Sparrows Lock Picks](https://www.sparrowslockpicks.com/)—Lock picks, sets, and escape and evasion tools.
|
||||
* [Veggie Mush](https://www.veggiemush.com/)—Dried plant-based meals for camping or emergencies.
|
||||
|
||||
## Entertainment
|
||||
* [Abe Books](https://www.abebooks.com/)—Books, fine art, and collectibles.
|
||||
* [itch.io](https://itch.io/)—Indie video games.
|
||||
* [Perfectly Acceptable](https://www.perfectly-acceptable.com/)—Independently published books and zines.
|
||||
* [Means TV](https://means.tv/)—A TV subscription that may get you put on a list.
|
||||
|
||||
## Food & Beverage
|
||||
### Baked Goods
|
||||
* [Little Moon Bakehouse](https://littlemoonbakehouse.com/)—Vegan mooncakes and pastries.
|
||||
|
||||
### Groceries
|
||||
* [Anthony's Goods](https://anthonysgoods.com/)—Pantry staples: flours, sugars and sweeteners, nuts and seeds, spices, and more.
|
||||
* [Canaan Palestine](https://canaanpalestine.com/)—Premium olive oils from Palestine's 2,000 year old olive trees. They also carry a small selection of tapenades and other pantry items.
|
||||
* [Nuts.com](https://nuts.com/)—Nuts, chocolate, sweets, trail mix, teas, flours, spices, dried fruit, and more. Don't blindly trust their vegan filter.
|
||||
* [Weee!](https://www.sayweee.com/en)—America's largest online Asian supermarket. Great for vegetables and interesting stuff you won't find anywhere else.
|
||||
|
||||
### Non-Alcoholic
|
||||
* [The Zero Proof](https://thezeroproof.com/)—Non-alcoholic beer, wine, spirits, cocktails, amaros, aperitifs, and digestifs, and more.
|
||||
|
||||
### Sweets
|
||||
* [Alegio Chocolaté](https://www.alegio.com/)—High-end chocolate grown in São Tomé.
|
||||
* [No Whey Foods](https://nowheychocolate.com/)—Vegan and kosher chocolates free from common allergens.
|
||||
* [Rose City](https://rosecitychocolates.com/)—Has a wide array of (very nice) vegan chocolates.
|
||||
* [Shrivers](https://shrivers.com/)—Salt water taffy that you'll actually want to eat.
|
||||
|
||||
### Tea
|
||||
* [Spirit Tea](https://spirittea.co/)—Farm-direct loose leaf tea. Based in Chicago.
|
||||
* [Yunnan Sourcing](https://yunnansourcing.us/)—A wide array of high quality teas and tea resins, including puerh.
|
||||
|
||||
### Vegan / Vegetarian Alternatives
|
||||
* [All Vegetarian Inc.](https://veganforall.com/)—Vegan substitutes for bacon, shrimp, eggs, and more.
|
||||
* [Fake Meats](https://www.fakemeats.com/default.asp)—Vegetarian and vegan meat substitutes, snacks, seasonings, sauces, jerky, and more. Seems like this store isn't totally vegan: check ingredients before buying.
|
||||
* [vegefood.com](https://vegefood.com/)—All sorts of weird and wonderful vegan and vegetarian meat alternatives. Not totally vegan: check ingredients before buying.
|
||||
* [Yang Kee Trading](https://yangkeetrading.com/)—Large dried TVP chunks, slices, and strips, vegan pork floss, teas, and more.
|
||||
|
||||
## General
|
||||
* [Public Goods](https://www.publicgoods.com/)—Simple products within the bath and body, cleaning, kitchen and dining, and home decor categories.
|
||||
* [GoodEarth Products](https://goodearthproducts.com/)—Office supplies, cleaning, food service, medical, and industrial goods. Also sells the very economical 40-pound buckets of Boardwalk laundry detergent. I have hardly managed to put a dent in my bucket after sixteen months.
|
||||
* [Grove](https://www.grove.co/)—Products across home and kitchen, garden, cleaning, bath and body, and more. Also sells a very affordable 3-ply bamboo toilet paper.
|
||||
* [Ten Thousand Villages](https://www.tenthousandvillages.com/)—Fair trade kitchen items, soaps, handwoven baskets, games and puzzles, jewelry, and more from artisans across the world.
|
||||
|
||||
## Home
|
||||
### Cleaning Supplies
|
||||
* [Friendswood Brooms](https://friendswoodbrooms.com/)—Handmade corn brooms.
|
||||
* [Meckley Brooms](https://www.meckleybrooms.com/)—Handmade corn brooms.
|
||||
|
||||
### Furniture
|
||||
* [Joybird](https://rigbyhandcraft.com/ornaments)—Decent quality furniture (not flat-pack) that doesn't cost the earth. They have a decent warranty, too, but do be prepared to go to battle if you intend to use it.[^2]
|
||||
|
||||
### Holiday Decorations
|
||||
* [Rigby Handcraft](https://rigbyhandcraft.com/ornaments)—Reproductions of antique tin Christmas tree ornaments.
|
||||
|
||||
### Incense
|
||||
* [Exotic Incense](https://www.exoticincense.com/)—Sells a wide array of incense from India, Tibet, Japan, and more.
|
||||
* [Fred Soll](https://www.fredsoll.com/)—An independent U.S. incense maker who pioneered the "resin on a stick" category.
|
||||
* [Goyo](https://www.goyo.space/shop)—Incense by artisan Hyungi Park.
|
||||
* [Japan Incense](https://www.japanincense.com/)—Japanese incense shop with a huge selection.
|
||||
* [Kikoh](https://kikohincense.com/)—Japanese incense shop that packages every order very nicely.
|
||||
* [Mermade Magickal Arts](https://www.mermadearts.com/)—High-end incense from a number of independent artisans.
|
||||
* [Nippon Kodo](https://nipponkodostore.com/)—The official U.S. web-store for Nippon Kodo.
|
||||
* [Shoyeido](https://shoyeido.com/)—The official U.S. web-store for Shoyeido.
|
||||
* [The World Makes Scents](https://theworldmakesscents.com/)—A Chicago-local independent incense brand focusing on Cambodian-style natural, whole-plant incense.
|
||||
|
||||
### Kitchen
|
||||
* [John Boos & Co.](https://www.johnboos.com/)—High quality cutting boards, butcher blocks, carts, kitchen islands, tables, and more.
|
||||
* [Made In](https://madeincookware.com/)—5-ply stainless clad cookware, cutlery, plates, bowls, and more.
|
||||
* [Oxo](https://www.oxo.com/)—Kitchenware, cleaning and organization products, and more.
|
||||
* [WebstaurantStore](https://www.webstaurantstore.com/)—Commercial kitchen equipment from freezers to disposable cups and janitorial supplies. This is where I got my [Boos Block prep table](https://www.johnboos.com/products/1-1-2-thick-wood-top-work-tables-with-galvanized-shelf-24-wide?Size=36%22+x+24%22+x+1-1%2F2%22) on the cheap.
|
||||
|
||||
### Organization
|
||||
* [North Mountain Supply](https://www.northmountainsupply.com/)—Jars, bottles, and supplies for beer making, wine making, distilling, and more.
|
||||
|
||||
## Office
|
||||
### Stationery
|
||||
* [Blackwing](https://blackwing602.com/)—Home of the legendary Blackwing pencil.
|
||||
* [The Goulet Pen Co.](https://www.gouletpens.com/)—Fountain pens (the environmentally friendly option!), ink, paper, stationery sets, and more.
|
||||
|
||||
## Personal Care
|
||||
### Bath & Body
|
||||
* [Ethique](https://ethique.com/)—Shampoo and conditioner bars from Aotearoa New Zealand.
|
||||
* [Dr. Jen](https://drjennatural.com/)—Nano-Hydroxyapatite toothpaste. They also sell a strawberry flavor for those sensitive to mint.
|
||||
* [J•R•Liggett's](https://jrliggett.com/)—All natural shampoo bars.
|
||||
* [Palestinian Soap Cooperative](https://palestiniansoap.coop/)—Olive oil soap from Nablus, Palestine, made using a traditional process practiced for well over four millennia.
|
||||
* [Phoenix Shaving](https://phoenixshaving.com/)—A wide array of razors, aftershaves, brushes, and other wet-shaving products, including the fantastic [CK-6 line of vegan shaving soaps](https://phoenixshaving.com/collections/ultra-premium-formula-ck-6).
|
||||
* [Smart Life Co.](https://www.smartlifeco.com/)—Floss picks and other oral hygiene products.
|
||||
* [The Earthling Co.](https://theearthlingco.com/)—Shampoo and conditioner bars.
|
||||
* [TNG Worldwide](https://tngworldwide.com/)—Bulk vegan soap, shampoo, conditioner, lotion, and more from the Ginger Lily Farms brand. They also sell spa supplies and salt lamps. Ignore the "Available at Amazon" buttons.
|
||||
* [Triple Bristle](https://www.triplebristle.com/)—Neat three-sided toothbrushes that really get every surface of your teeth with little effort.
|
||||
|
||||
### Supplements
|
||||
* [Complement](https://lovecomplement.com/)—Vegan multivitamins and supplements.
|
||||
* [vivanaturals](https://vivanaturals.com/)—Supplements, beauty, and food items.
|
||||
|
||||
[^1]: I know what you're thinking, but I have not once had any issues with peeling or damage on the faux-leather uppers from this brand (most intentionally vegan brands have this handled). In fact, they last and look good for longer than animal-skin shoes because the material is not damaged by moisture or road salt. If you really want a true buy-it-for-life option, though (and if they have them in your size), go for the Goodyear welt options so that the shoes are properly resoleable at a cobbler.
|
||||
|
||||
[^2]: I bought a sofa with angled legs; not the most structurally sound arrangement. When one broke, it took me years to get around to making a warranty claim. They honored it, but I first had to send the couch back. They then told me that the model I bought was no longer available, but I could select one from the website of the same value before any sales or discounts. There were two problems with this. First, years had passed and prices had risen. Second, just about everything on that website seems to be perpetually on sale. And so I went to war. There were mysterious email deliverability issues, negotiations, and many phone calls. Eventually, I got a nice new replacement couch for Sol to leave crumbs on with entirely vertical legs. Result.
|
||||
|
||||
</article>
|
||||
7
content/now-burning/Now Burning_2026-02-27_15:27.md
Normal file
7
content/now-burning/Now Burning_2026-02-27_15:27.md
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Hawaiian Summer
|
||||
manufacturer: Incense Apprentice
|
||||
date: 2026-02-27 15:27:00
|
||||
time: 3:27 PM
|
||||
---
|
||||
|
||||
7
content/now-burning/Now Burning_2026-03-02_11:38.md
Normal file
7
content/now-burning/Now Burning_2026-03-02_11:38.md
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Calm
|
||||
manufacturer: Esprit de la Nature
|
||||
date: 2026-03-02 11:37:00
|
||||
time: 11:37 AM
|
||||
---
|
||||
A nice spicy, woody composition
|
||||
7
content/now-burning/Now Burning_2026-03-04_14:00.md
Normal file
7
content/now-burning/Now Burning_2026-03-04_14:00.md
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Suzaku
|
||||
manufacturer: Gyokushodo
|
||||
date: 2026-03-04 13:59:00
|
||||
time: 1:59 PM
|
||||
---
|
||||
|
||||
7
content/now-burning/Now Burning_2026-03-04_15:04.md
Normal file
7
content/now-burning/Now Burning_2026-03-04_15:04.md
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Brunei
|
||||
manufacturer: Yi-Xin Craft Incense
|
||||
date: 2026-03-04 15:04:00
|
||||
time: 3:04 PM
|
||||
---
|
||||
|
||||
7
content/now-burning/Now Burning_2026-03-06_12:56.md
Normal file
7
content/now-burning/Now Burning_2026-03-06_12:56.md
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Warming
|
||||
manufacturer: "Faircense / Pema of Tibet"
|
||||
date: 2026-03-06 12:56:00
|
||||
time: 12:56 PM
|
||||
---
|
||||
|
||||
7
content/now-burning/Now Burning_2026-03-12_11:43.md
Normal file
7
content/now-burning/Now Burning_2026-03-12_11:43.md
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Tokusen Kobunboku
|
||||
manufacturer: Baieido
|
||||
date: 2026-03-12 11:43:00
|
||||
time: 11:43 AM
|
||||
---
|
||||
I like this one a lot.
|
||||
7
content/now-burning/Now Burning_2026-03-13_13:29.md
Normal file
7
content/now-burning/Now Burning_2026-03-13_13:29.md
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Kobunboku
|
||||
manufacturer: Baieido
|
||||
date: 2026-03-13 13:29:00
|
||||
time: 1:29 PM
|
||||
---
|
||||
|
||||
7
content/now-burning/Now Burning_2026-03-13_15:08.md
Normal file
7
content/now-burning/Now Burning_2026-03-13_15:08.md
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Morning Star Lavender
|
||||
manufacturer: Nippon Kodo
|
||||
date: 2026-03-13 15:07:00
|
||||
time: 3:07 PM
|
||||
---
|
||||
|
||||
7
content/now-burning/Now Burning_2026-03-16_12:19.md
Normal file
7
content/now-burning/Now Burning_2026-03-16_12:19.md
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Suifu
|
||||
manufacturer: Yamadamatsu
|
||||
date: 2026-03-16 12:18:00
|
||||
time: 12:18 PM
|
||||
---
|
||||
|
||||
@@ -9,7 +9,7 @@ postlistHeaderText: "What I've been burning:"
|
||||
{% set burning = collections.nowBurning | last %}
|
||||
|
||||
<h1>Now Burning:</h1>
|
||||
<article class="post microblog-post">
|
||||
<article class="post microblog-post" data-pagefind-body>
|
||||
<img class="microblog-icon" src="/img/censer.svg">
|
||||
<div class="microblog-status">
|
||||
<h2 class="">{{ burning.data.title }}{% if burning.data.manufacturer %}, {{ burning.data.manufacturer }}{% endif %}, {{ burning.date | niceDate }}, {{ burning.data.time }}</h2>
|
||||
|
||||
@@ -4,7 +4,7 @@ layout: layouts/base.njk
|
||||
title: Nathan Upchurch | Now
|
||||
structuredData: none
|
||||
---
|
||||
<article class="post">
|
||||
<article class="post" data-pagefind-body>
|
||||
<h1>Now: Life updates.</h1>
|
||||
{% set now = collections.now | last %}
|
||||
<h2>{{ now.data.title }} • {{ now.date | niceDate }}</h2>
|
||||
|
||||
@@ -9,6 +9,8 @@ pagination:
|
||||
permalink: "once-burned/{% if pagination.pageNumber > 0 %}page-{{ pagination.pageNumber + 1 }}/{% endif %}index.html"
|
||||
paginationRootDir: once-burned
|
||||
---
|
||||
<div data-pagefind-body>
|
||||
|
||||
<h1>Previous “Now Burning” Entries:</h1>
|
||||
|
||||
{% set postsCount = pagination.items | length %}
|
||||
@@ -25,3 +27,5 @@ paginationRootDir: once-burned
|
||||
<a href="/now-burning/">
|
||||
<button type="button">Latest »</button>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -8,19 +8,23 @@ pagination:
|
||||
permalink: "prior-thoughts/{% if pagination.pageNumber > 0 %}page-{{ pagination.pageNumber + 1 }}/{% endif %}index.html"
|
||||
paginationRootDir: prior-thoughts
|
||||
---
|
||||
<h1>Prior thoughts:</h1>
|
||||
<div data-pagefind-body>
|
||||
|
||||
{% set postsCount = pagination.items | length %}
|
||||
{% if postsCount > 0 %}
|
||||
{% set postslist = pagination.items %}
|
||||
{% set showPostListHeader = false %}
|
||||
{% include "statusList.njk" %}
|
||||
{% else %}
|
||||
<p>Nothing’s here yet!</p>
|
||||
{% endif %}
|
||||
<h1>Prior thoughts:</h1>
|
||||
|
||||
{% include "permalinkButtons.njk" %}
|
||||
{% set postsCount = pagination.items | length %}
|
||||
{% if postsCount > 0 %}
|
||||
{% set postslist = pagination.items %}
|
||||
{% set showPostListHeader = false %}
|
||||
{% include "statusList.njk" %}
|
||||
{% else %}
|
||||
<p>Nothing’s here yet!</p>
|
||||
{% endif %}
|
||||
|
||||
<a href="/status/">
|
||||
{% include "permalinkButtons.njk" %}
|
||||
|
||||
<a href="/status/">
|
||||
<button type="button">Latest »</button>
|
||||
</a>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -5,11 +5,15 @@ title: Nathan Upchurch | Quizzes
|
||||
structuredData: none
|
||||
description: "Bored? Take a fun quiz to while away the time!"
|
||||
---
|
||||
<h1>Quizzes</h1>
|
||||
<p>Test your knowledge, learn about yourself, and waste your precious time, right here, right now, with a quiz!</p>
|
||||
<div data-pagefind-body>
|
||||
|
||||
{% set postsCount = collections.quiz | length %}
|
||||
<h2>Available Quizzes:</h2>
|
||||
{% set postslist = collections.quiz %}
|
||||
{% set showPostListHeader = false %}
|
||||
{% include "postslist.njk" %}
|
||||
<h1>Quizzes</h1>
|
||||
<p>Test your knowledge, learn about yourself, and waste your precious time, right here, right now, with a quiz!</p>
|
||||
|
||||
{% set postsCount = collections.quiz | length %}
|
||||
<h2>Available Quizzes:</h2>
|
||||
{% set postslist = collections.quiz %}
|
||||
{% set showPostListHeader = false %}
|
||||
{% include "postslist.njk" %}
|
||||
|
||||
</div>
|
||||
|
||||
@@ -3,6 +3,7 @@ layout: layouts/base.njk
|
||||
title: Nathan Upchurch | Referrals
|
||||
structuredData: none
|
||||
---
|
||||
<article data-pagefind-body>
|
||||
|
||||
# Referrals / Affiliate Links
|
||||
|
||||
@@ -10,3 +11,5 @@ Here are some referral links to services / products that I use and recommend. Ye
|
||||
|
||||
## Web Hosting, Storage, and VPS
|
||||
I like [Interserver](https://www.interserver.net/r/745483). They've always been quick to resolve any issues, I like the dashboard with integrated VNC, and their storage VPS' are super cheap.
|
||||
|
||||
</article>
|
||||
|
||||
11
content/search/index.njk
Normal file
11
content/search/index.njk
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
layout: layouts/base.njk
|
||||
search: true
|
||||
title: Nathan Upchurch | Search
|
||||
structuredData: none
|
||||
---
|
||||
<h1>Search this site</h1>
|
||||
|
||||
<div id="search" class="search"></div>
|
||||
|
||||
<script src="/pagefind/pagefind-ui.js" onload="new PagefindUI({ element: '#search', showImages: false });"></script>
|
||||
@@ -3,6 +3,7 @@ layout: layouts/base.njk
|
||||
title: Nathan Upchurch | Sitemap
|
||||
structuredData: none
|
||||
---
|
||||
<article data-pagefind-body>
|
||||
|
||||
# Sitemap
|
||||
* [Home](/)
|
||||
@@ -21,11 +22,13 @@ structuredData: none
|
||||
* [Guestbook](/guestbook)
|
||||
* [Incense](/incense)
|
||||
* [Links](/links)
|
||||
* [Not Amazon](/not-amazon)
|
||||
* [Now](/now)
|
||||
* [Now Burning](/now-burning)
|
||||
* [Once Burned](/once-burned)
|
||||
* [Prior Thoughts](/prior-thoughts)
|
||||
* [Referrals](/referrals)
|
||||
* [Search](/search)
|
||||
* [Slashes](/slashes)
|
||||
* Special
|
||||
* [Flying Toasters](/special/flying-toasters)
|
||||
@@ -33,3 +36,5 @@ structuredData: none
|
||||
* [Status](/status)
|
||||
* [Wishes](/wish)
|
||||
* [Quizzes](/quizzes)
|
||||
|
||||
</article>
|
||||
|
||||
@@ -3,6 +3,7 @@ layout: layouts/base.njk
|
||||
title: Nathan Upchurch | Slashes
|
||||
structuredData: none
|
||||
---
|
||||
<article data-pagefind-body>
|
||||
|
||||
# Slashes
|
||||
|
||||
@@ -20,3 +21,5 @@ This is an index of all my [slash pages](https://slashpages.net/). These are pag
|
||||
* [/Referrals](/referrals)
|
||||
* [/Sitemap](/sitemap)
|
||||
* [/Wish](/wish)
|
||||
|
||||
</article>
|
||||
|
||||
5
content/status/Status_2026-03-03_10:42.md
Normal file
5
content/status/Status_2026-03-03_10:42.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
date: 2026-03-03 10:41:00
|
||||
emoji: 💪
|
||||
comment: This exercise stuff isn't all that bad after all.
|
||||
---
|
||||
@@ -8,7 +8,7 @@ permalink: "/status/index.html"
|
||||
{% set status = collections.status | last %}
|
||||
|
||||
<h1>Nathan’s status:</h1>
|
||||
<article class="post microblog-post">
|
||||
<article class="post microblog-post" data-pagefind-body>
|
||||
<div class="microblog-status card">
|
||||
<span class="microblog-emoji">{{ status.data.emoji }}</span>
|
||||
|
||||
|
||||
@@ -4,15 +4,19 @@ layout: layouts/base.njk
|
||||
title: Nathan Upchurch | Tags
|
||||
structuredData: none
|
||||
---
|
||||
<h1>Tags / Topics</h1>
|
||||
<article data-pagefind-body>
|
||||
|
||||
<p class="page-block nodropcap">
|
||||
Click on a tag to see all posts on the topic; you can also subscribe to an RSS feed of any individual topic on the topic page.
|
||||
</p>
|
||||
<h1>Tags / Topics</h1>
|
||||
|
||||
<ul class="taglist">
|
||||
{% for tag in collections.all | getAllTags | filterTagList | sort(false, false, tag) %}
|
||||
<p class="page-block nodropcap">
|
||||
Click on a tag to see all posts on the topic; you can also subscribe to an RSS feed of any individual topic on the topic page.
|
||||
</p>
|
||||
|
||||
<ul class="taglist">
|
||||
{% for tag in collections.all | getAllTags | filterTagList | sort(false, false, tag) %}
|
||||
{% set tagUrl %}/tags/{{ tag | slugify }}/{% endset %}
|
||||
<li><a href="{{ tagUrl }}" class="post-tag">{{ tag }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
</article>
|
||||
|
||||
@@ -8,6 +8,11 @@ pagination:
|
||||
- post
|
||||
- posts
|
||||
- tagList
|
||||
- feed
|
||||
- onceBurned
|
||||
- nowBurning
|
||||
- status
|
||||
- priorThoughts
|
||||
addAllPagesToCollections: true
|
||||
layout: layouts/base.njk
|
||||
postlistHeaderText: "Latest Posts:"
|
||||
@@ -17,10 +22,12 @@ eleventyComputed:
|
||||
permalink: "/tags/{{ tag | slugify }}/"
|
||||
description: A list of every post I've written tagged “{{ tag }}.”
|
||||
---
|
||||
<h1>Topic: “{{ tag }}.”
|
||||
</h1>
|
||||
<p class="page-block nodropcap">
|
||||
Here’s everything I’ve posted tagged “{{ tag }}.” Want to be notified when I post on this topic? Subscribe to “{{ tag }}” using the button below.<br>
|
||||
<article data-pagefind-body>
|
||||
|
||||
<h1>Topic: “{{ tag }}.”
|
||||
</h1>
|
||||
<p class="page-block nodropcap">
|
||||
Here’s everything I’ve posted tagged “{{ tag }}.” Want to be notified when I post on this topic? Subscribe to “{{ tag }}” using the button below.<br>
|
||||
<a class="link-button" href="/tags/">
|
||||
<button type="button">
|
||||
More topics »
|
||||
@@ -32,7 +39,9 @@ Here’s everything I’ve posted tagged “{{ tag }}.” Want to be notified wh
|
||||
Subscribe »
|
||||
</button>
|
||||
</a>
|
||||
</p>
|
||||
</p>
|
||||
|
||||
{% set postslist = collections[ tag ] | reverse %}
|
||||
{% include "postslist.njk" %}
|
||||
{% set postslist = collections[ tag ] | reverse %}
|
||||
{% include "postslist.njk" %}
|
||||
|
||||
</article>
|
||||
|
||||
@@ -3,6 +3,7 @@ layout: layouts/base.njk
|
||||
title: Nathan Upchurch | Wish
|
||||
structuredData: none
|
||||
---
|
||||
<article data-pagefind-body>
|
||||
|
||||
# My Wishlist
|
||||
## What is this?
|
||||
@@ -36,7 +37,6 @@ However if abstention seems unconscionable, I would be delighted if you were to
|
||||
|
||||
### Incense
|
||||
* [Baieido Kaden Kobunboku](https://kikohincense.com/products/baieido-kaden-kobunboku-incense?variant=33394631671896)
|
||||
* [Baieido Tokusen Kobunboku](https://kikohincense.com/collections/baieido-incense/products/tokusen-kobunboku)
|
||||
* [Inca Aromas White Breu](https://tarotarts.com/products/inca-aromas-all-natural-fair-trade-incense-white-breu-for-clarity-and-spirituality?variant=39838738251860)
|
||||
* [Kida Jinseido Ranjatai Incense](https://kikohincense.com/collections/kida-jinseido-incense-since-1937/products/kida-jinseido-ranjatai-incense)
|
||||
* [Kunmeido Shin Tokusen Reiryokoh Incense](https://kikohincense.com/collections/kunmeido-incense-kikoh/products/kunmeido-shin-tokusen-reiryokoh-incense)
|
||||
@@ -44,20 +44,14 @@ However if abstention seems unconscionable, I would be delighted if you were to
|
||||
* [Nippon Kodo Kayuragi - Rose](https://kikohincense.com/collections/roses-and-chocolates-incense-collection/products/nippon-kodo-kayuragi-incense-rose)
|
||||
* [Nippon Kodo Hana no Hana - Rose](https://kikohincense.com/collections/roses-and-chocolates-incense-collection/products/nippon-kodo-hana-no-hana-incense-rose)
|
||||
* [Kin Objects Red Soil Aloeswood](https://kinobjects.com/products/red-soil-aloeswood-agarwood-incense-sticks?variant=40432647929879)
|
||||
* [Kokando Kaori no Kioku Chocolate](https://kikohincense.com/collections/roses-and-chocolates-incense-collection/products/kokando-kaori-no-kioku-chocolate-incense)
|
||||
* [Kokando Kunpūshi Aloeswood](https://kikohincense.com/products/kokando-kunpushi-aloeswood)
|
||||
* [Kunmeido Shin Tokusen Reiryokoh](https://kikohincense.com/collections/kunmeido-incense-kikoh/products/kunmeido-shin-tokusen-reiryokoh-incense)
|
||||
* [Les Encens du Monde - Moonlit Night | Karin](https://lotuszenincense.com/products/moonlit-night-karin-by-les-encens-du-monde?shpxid=fa2eb8b9-373c-44b6-b675-585881e5540b)
|
||||
* [Mysore](https://www.aliexpress.us/item/3256808362085525.html)
|
||||
* [Shoyeido Horin Assortment](https://shoyeido.com/products/horin-incense-assortment-sampler)
|
||||
* [Shoyeido Kohbai Pressed Incense](https://shoyeido.com/products/kohbai-red-plum-blossoms?variant=41714738921590)
|
||||
* [Shoyeido Kunro Incense Assortment](https://shoyeido.com/products/kunro-incense-assortment)
|
||||
* [Shoyeido Overtones Patchouli](https://shoyeido.com/products/overtones-patchouli-incense)
|
||||
* [Shoyeido Premium Incense Sampler](https://shoyeido.com/products/premium-incense-assortment-sampler)
|
||||
* [Tennendo Hagi Rose Incense](https://kikohincense.com/collections/tennendo-incense-kikoh/products/tennendo-hagi-rose-incense)
|
||||
* [Tennendo Hanano Byakudan](https://www.japanincense.com/tn-0051.html)
|
||||
* [Tennendo Kyara Incense](https://kikohincense.com/products/tennendo-kyara-incense)
|
||||
* [Tennendo Sumire Violet Incense](https://kikohincense.com/products/tennendo-ysumire-violet-incense)
|
||||
* [Yamadamatsu Hyofu](https://kikohincense.com/collections/yamadamatsu-incense-kikoh/products/yamadamatsu-hyofu-incense)
|
||||
* [Yamadamatsu Kumoi](https://kikohincense.com/products/yamadamatsu-kumoyi-incense)
|
||||
* [Yamadamatsu Shoyo](https://www.japanincense.com/ym-0037.html)
|
||||
@@ -99,3 +93,5 @@ However if abstention seems unconscionable, I would be delighted if you were to
|
||||
* Healthcare, education, housing, and any resource necessary to sustain life to be free for all.
|
||||
|
||||
[^1]: Within reason—if you are filthy rich and would like to buy me a house or finance an escape to the UK for my partner and I, I'll not slap your hand away.
|
||||
|
||||
</article>
|
||||
|
||||
@@ -12,12 +12,21 @@ import pluginNavigation from "@11ty/eleventy-navigation";
|
||||
import prettier from "prettier";
|
||||
import { EleventyHtmlBasePlugin } from "@11ty/eleventy";
|
||||
import { dateSuffixAdder, monthMap } from "./public/js/modules/dateTools.js";
|
||||
// For PageFind
|
||||
import childProcess from "child_process";
|
||||
|
||||
const figoptions = {
|
||||
figcaption: true,
|
||||
};
|
||||
|
||||
export default async function (eleventyConfig) {
|
||||
// PageFind Search
|
||||
eleventyConfig.on("eleventy.after", () => {
|
||||
childProcess.execSync(`npx pagefind --site _site --glob "**/*.html"`, {
|
||||
encoding: "utf-8",
|
||||
});
|
||||
});
|
||||
|
||||
// Customize Markdown library settings:
|
||||
let markdownItOptions = {
|
||||
html: true,
|
||||
|
||||
@@ -37,7 +37,8 @@
|
||||
"luxon": "^3.3.0",
|
||||
"markdown-it-anchor": "^8.6.7",
|
||||
"markdown-it-footnote": "^3.0.3",
|
||||
"mdfigcaption": "^0.1.1"
|
||||
"mdfigcaption": "^0.1.1",
|
||||
"pagefind": "^1.4.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@11tyrocks/eleventy-plugin-emoji-readtime": "^1.0.1",
|
||||
|
||||
@@ -255,6 +255,9 @@ main {
|
||||
.indexFeature:not(:last-child) {
|
||||
padding-bottom: var(--space-l);
|
||||
}
|
||||
mark {
|
||||
background-color: var(--contrast-color);
|
||||
}
|
||||
nav {
|
||||
grid-column: 2 / span 12;
|
||||
}
|
||||
@@ -583,7 +586,7 @@ hr {
|
||||
}
|
||||
|
||||
/* Dropcap */
|
||||
main > section > article > p:not(.nodropcap):first-of-type:first-letter {
|
||||
main > section > article.post > p:not(.nodropcap):first-of-type:first-letter {
|
||||
float: left;
|
||||
font-size: var(--step-5);
|
||||
padding: var(--space-2xs);
|
||||
|
||||
51
public/css/search.css
Normal file
51
public/css/search.css
Normal file
@@ -0,0 +1,51 @@
|
||||
:root {
|
||||
--pagefind-ui-scale: 1;
|
||||
--pagefind-ui-primary: var(--contrast-color);
|
||||
--pagefind-ui-text: var(--text-color);
|
||||
--pagefind-ui-background: var(--background-color);
|
||||
--pagefind-ui-border: var(--color-gray-20);
|
||||
--pagefind-ui-tag: var(--text-color);
|
||||
--pagefind-ui-border-width: 1px;
|
||||
--pagefind-ui-border-radius: var(--border-radius);
|
||||
--pagefind-ui-font: var(--font-family);
|
||||
}
|
||||
|
||||
mark {
|
||||
background-color: var(--background-color) !important;
|
||||
color: var(--contrast-color) !important;
|
||||
font-variation-settings:
|
||||
"opsz" 18,
|
||||
"wght" 510,
|
||||
"SOFT" 40,
|
||||
"WONK" 0 !important;
|
||||
}
|
||||
|
||||
.pagefind-ui__button {
|
||||
background-color: var(--contrast-color) !important;
|
||||
border: none !important;
|
||||
border-radius: var(--border-radius) !important;
|
||||
color: var(--background-color) !important;
|
||||
font-family: var(--font-family-ui) !important;
|
||||
font-size: var(--step--2) !important;
|
||||
font-variation-settings: var(--font-variation-ui) !important;
|
||||
letter-spacing: var(--ui-letter-spacing) !important;
|
||||
margin: var(--space-xs) 0 0 0 !important;
|
||||
padding: 0 var(--space-xs) !important;
|
||||
text-transform: uppercase !important;
|
||||
transition: var(--transition-normal) !important;
|
||||
white-space: nowrap !important;
|
||||
}
|
||||
|
||||
.pagefind-ui__search-clear {
|
||||
font-family: var(--meta-font-family) !important;
|
||||
font-size: var(--meta-font-size) !important;
|
||||
font-style: var(--meta-font-style) !important;
|
||||
font-variation-settings: var(--meta-font-variation-settings) !important;
|
||||
line-height: calc(
|
||||
var(--meta-font-size) * 0.5 + var(--meta-font-size)
|
||||
) !important;
|
||||
}
|
||||
|
||||
.pagefind-ui__search-input {
|
||||
border-color: var(--contrast-color) !important;
|
||||
}
|
||||
BIN
public/img/eleventy-becomes-sigh-build-awesome/eleventy-logo.png
Normal file
BIN
public/img/eleventy-becomes-sigh-build-awesome/eleventy-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 40 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 84 KiB |
41
public/img/icons/breeze/file-search-symbolic.svg
Normal file
41
public/img/icons/breeze/file-search-symbolic.svg
Normal file
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 16 16"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
sodipodi:docname="file-search-symbolic.svg"
|
||||
inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="57.0625"
|
||||
inkscape:cx="8"
|
||||
inkscape:cy="10.102957"
|
||||
inkscape:window-width="2048"
|
||||
inkscape:window-height="1080"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg1" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
type="text/css"
|
||||
id="current-color-scheme">.ColorScheme-Text { color: #fcfcfc; } </style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:#faf5f5;fill-opacity:1;stroke:none"
|
||||
d="M 6.5 2 C 4.007 2 2 4.01 2 6.5 C 2 8.993 4.01 11 6.5 11 C 7.5636432 11 8.5263409 10.618801 9.2949219 10.005859 L 13.292969 14.003906 L 14 13.296875 L 10.001953 9.2988281 C 10.617604 8.529048 11 7.565338 11 6.5 C 11 4.007 8.99 2 6.5 2 z M 6.5 3 C 8.439 3 10 4.561 10 6.5 C 10 8.439 8.439 10 6.5 10 C 4.561 10 3 8.439 3 6.5 C 3 4.561 4.561 3 6.5 3 z "
|
||||
class="ColorScheme-Text"
|
||||
id="path1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -14,7 +14,7 @@ const adjective = [
|
||||
"grounding",
|
||||
"healing",
|
||||
"hidden",
|
||||
"indolent",
|
||||
"indolic",
|
||||
"juicy",
|
||||
"lactescent",
|
||||
"lingering",
|
||||
|
||||
Reference in New Issue
Block a user