Epiktistes

Epiktistes is my home in the Fediverse. It is an instance of Ktistec, a single-user ActivityPub server like Mastodon, but with fewer users and fewer commits. Here's my introduction (last updated early-2025).

I wrote a series of posts about optimizing the performance of the Ktistec server, its build time, and its executable size: part 1, part 2, part 3, part 4, and part 5.

Some things I regularly write about, organized by hashtag:

I also wrote some #pointfreeverse.

Todd Sundsted

thinking about this: complexity has to live somewhere

complexity has to live somewhere—the trick is putting it in the right place. modern cpus are incredibly complex: multiple tiers of caching, speculative execution, etc. none of which you ever think about when building a web app, which in turn has its own kind of complexity.

a cpu runs on top of some very complex and speculative physics that we only incompletely understand: neutrino oscillations, quark color confinement... luckily you also don’t need to understand any of that when building a web app. 😀

my 2¢ is, put as much complexity as is necessary inside of a microservice, framework or library—as long as the team that maintains it can understand it. but make its interface as simple as possible, so that the team at large can effectively make use of it.

it’s kind of the opposite of worse is better, but i think the use case is different.

#software #complexity

Todd Sundsted

the team at work is talking about the mastodon with guitars and tattoos.

Todd Sundsted

this happened today:

https://letsencrypt.org/docs/dst-root-ca-x3-expiration-september-2021/

i don't disagree with their approach at all, but since the change was designed to just work for newer clients, and since older clients are, well, older, and since the change happens on servers but it impacts their clients, it was hard to see this coming until it hit.

in my case the fix was easy—upgrade openssl and rebuild—but reading the threads about this change highlights how disruptive the expiration of a root certificate can be, especially as older clients, which may not be as easy to upgrade, proliferate. 

#letsencrypt

Todd Sundsted

what a difference one line of code makes!

commit fe18dc5 moved the line @saved_record : self | Nil = nil from the module Ktistec::Model::InstanceMethods into the macro Ktistec::Model.included.

that single change cut the build time in half and reduced the memory required to build by about a third. you can be sure the improvement came as a surprise!

but really, it wasn't just this change itself—although it introduced the biggest improvement—because after all of the subsequent refactoring, simply moving the line back didn't increase the build time again.

the build time also improved slightly after other subsequent commits. and several of those commits introduced changes that reduced the amount of macro generated code. and that's the key insight: macros reduce visible boilderplate but don't reduce actual code that needs to be compiled.

i'm still investigating, but clearly the original placement of the line resulted in the generation of a lot of redundant/unnecessary code!

TL;DR if you're planning on using macros in crystal, check your build times before and after your changes—i'm sure there's a corresponding commit somewhere in the past that introduced this problem and i didn't catch it!

#ktistec #crystal

Todd Sundsted

i logged in to my twitter account yesterday... my last two tweets were in 2018, then only one in 2017—so i haven't exactly been active. but i have to hand it to all of my old tweeps who are still active and keeping it together over there!

:birdsite:

Todd Sundsted𒀭𒂗𒆠 ENKI ][e

OpenAI Shuts Down GPT-3 Bot Used To Emulate Dead Fiancée futurism.com/openai-dead-fianc

Todd Sundsted

it seems like people talk about activitypub everywhere except on the fediverse.

Todd Sundsted

日本語を勉強している

Todd Sundsted
Todd Sundsted

the first thing i wrote on my sinclair zx81 was a space shooter in basic that used print at to move ships around the screen. it was so laggy it was impossible to play. i didn't know z80 machine language. the last thing i wrote on my zx81 was a z80 disassembler—by then i'd learned machine language and had rewritten the space shooter, as well as written a text-based adventure game (in basic). i learned a lot about programming for $99.

rip clive sinclair

#zx81 #sinclair