This action will delete this post on this instance and on all federated instances, and it cannot be undone. Are you certain you want to delete this post?
This action will delete this post on this instance and on all federated instances, and it cannot be undone. Are you certain you want to delete this post?
This action will block this actor and hide all of their past and future posts. Are you certain you want to block this actor?
This action will block this object. Are you certain you want to block this object?
Are you sure you want to delete the OAuth client [Client Name]? This action cannot be undone and will revoke all access tokens for this client.
Are you sure you want to revoke the OAuth token [Token ID]? This action cannot be undone and will immediately revoke access for this token.
| Introduction | https://epiktistes.com/introduction |
|---|---|
| GitHub | https://github.com/toddsundsted/ktistec |
| Pronouns | he/him |
| 🌎 | Sector 001 |



I've been using Firefox for two decades. Some of Mozilla's recent choices gave me a reason to look at alternative browsers. There's no way I'm using Chrome, but it turns out that there are more than a few capable Firefox forks. With no real requirements in mind, I started researching. Here are the forks I found in no particular order:
I started with LibreWolf since it kept coming up in recommendations. It strips out all the telemetry, bundles uBlock Origin, and apparently tracks Firefox stable releases within 24-72 hours. The catches I found: no auto-updates on Windows (not a problem for me), streaming services need workarounds because it disables Widevine (not a problem for me), and on macOS you have to run terminal commands to bypass Gatekeeper warnings (a negative). It also looks like it might stop working on macOS late next year altogether (definitely a problem).
Zen Browser surprised me—it's accumulated 38,000+ GitHub stars since launching in July 2024. It's inspired by the maybe defunct Arc Browser: vertical tabs, split-view, workspaces. It releases weekly. The downside is no horizontal tabs option. I'm not sold on it but I can see the appeal.
There's a whole category of forks that preserve "old" Firefox. Pale Moon uses its own rendering engine (Goanna) and keeps the classic Firefox interface. It still supports legacy XUL extensions and NPAPI plugins. It uses fewer resources than modern browsers because it's single-process. The trade-off is that modern JavaScript-heavy sites struggle and some things like CloudFlare challenges fail.
Waterfox caught my attention because of its privacy-first stance and support for older extensions. It seems to be mostly one developer, which might make others a bit nervous, but it's not an issue for me. Sometimes less is more.
One thing I learned that seems important: frequency of updates varies wildly. LibreWolf, Zen, and Floorp seem to track Firefox releases within days. Pale Moon and GNU IceCat lag weeks or months. That matters for security patches.
Honestly, while I continue to research alternatives, I'm staying on Firefox. Hardened with the right extensions and configured the right way, it still meets my needs. But it's good to know options exist, and I'm hopeful that something will show up that captures lightning in a bottle the same way Firefox did 20 years ago!

I rolled out a lot of features over the last several weeks and created a lot of bugs in the process. Release v3.2.5 of Ktistec is mostly about fixing those bugs. I did implement two requested features, however: support for editing posts in Markdown and support for Open Graph metadata. Here's the full list of new features:
Added
🎄 I'm working on support for poll creation and management now. It's also time for a performance improvement pass or two.

the only thing more annoying than a test failure in a test suite that only occurs when you randomize the order of the test suite, is a test failure that also only happens occasionally despite running the randomized suite with the same seed! 😡

I wonder if you could use/abuse Mastodon polls (FEP-9967) to distribute posts that provide near-real-time status updates (I'm thinking about severe weather alerts but I'm sure there are other use cases)?
Create a poll with an expiry far in the future and a token set of options (ideally just one—"Do you opt in?"—but poll implementations seem to require at least two).
Nothing seems to prevent the content of a poll from changing—and this is the key insight. The FEP says, "The type of a poll (single choice / multiple choices) and its options might be changed at any time. In that case the author of the poll MUST reset the vote counts." So broadcast updates via the content.
It would be a lightweight way to follow a single item without following the actor, built on top of implementations that already exist.

Ktistec now generates a table of contents for all posts with canonical (pretty) paths (/about-the-name-epiktistes rather than /objects/6QNom799BYc).
One of the original goals I had for Ktistec was blogging. At some point, I lost track of my "blog posts". I added this to make it easier to see what I've published.

The table of contents is currently only visible to authenticated users.
Apologies in advance for the flood of updates as I add canonical paths to older posts!

i'm "pretty sure" i have litestream backing up my epiktistes sqlite database, but getting it running was surprisingly fiddly...

I have Markdown editing working in Ktistec!
Which post was written in Markdown?

Voilà!

This is an often requested feature. It also makes Ktistec usable in browsers when JavaScript is disabled. The Markdown editor supports autocomplete and autosave, just like the rich text editor. Expect this to show up in the next release.

The big feature in release v3.2.4 of Ktistec is support for viewing and voting on Mastodon polls (AKA FEP-9967: Polls). This feature took a surprising amount of work. Some of the effort was due to my struggles with visual design, but getting the behavior right was also tricky. For example, a "vote" is just an ActivityPub Note, but unlike other notes, it shouldn't appear in a poll's replies (it could, but that would be redundant and confusing). So I had to add exceptions throughout the code to deal with this. A custom Vote object type would have been nice in the original implementation.
Added
Fixed
title attributes are now preserved.Changed
Thank you @jayvii for the build fix!