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 |

Release v3.2.3 of Ktistec includes two big features:
The full changelog:
Added
Person, Group, etc.) overlay badges on actor panels.Fixed
Undo includes the undone activity.Like and Dislike does not.Changed
The next release will include support for Mastodon polls (FEP-9967).


Since all my websites and web-tools use the phenomenal #SimpleCSS framework, I thought it would also make sense to create a theme for #ktistec using those exact colours. Of course, this is also available from my ktistec-tweaks, next to the old purpleish-theme, which I had before.
Also new is the separation of the card-style post theming, which is also shown in the screenshot below, in its own CSS file.


A while back, I posted about creating a Forth-inspired programming language that uses emoji as words (functions) and said that I would post the source code. I keep my wordโthis weekend I cleaned up the code and published it.
I've built a tool that transpiles emoji source code into either Crystal or Python, and then builds and runs the transpiled source.
Here's the solution to Project Euler Problem 1, with comments so that you can more easily follow the flow:
๐ญ Project Euler Problem 1:
๐ญ Find the sum of all the multiples of 3 or 5 below 1000 => 233168
๐ญ Define a word to check if a number is divisible by 3 or 5
๐โ ๐ญ Stack: ( n -- bool )
๐ ๐ญ Duplicate n for two tests
๐ข3 ๐ ๐ข0 ๐ฐ ๐ญ (n%3==0)
๐
๐ข5 ๐ ๐ข0 ๐ฐ ๐ญ (n%5==0)
โก ๐ญ (n%3==0 OR n%5==0)
๐
๐ญ Declare variables
๐ฆ ๐ฏ ๐ญ sum variable
๐ฆ ๐งฎ ๐ญ counter variable
๐ญ Initialize variables
๐ข0 ๐พ ๐ฏ ๐ญ sum = 0
๐ข1 ๐พ ๐งฎ ๐ญ counter = 1
๐ญ Loop from 1 to 999 (inclusive)
๐
๐ญ Get counter and check if divisible by 3 or 5
๐ค ๐งฎ ๐ญ counter
๐ โ ๐ญ counter bool
๐
๐ญ If divisible, add counter to sum
๐ค ๐ฏ โ ๐พ ๐ฏ ๐ญ sum = sum + counter
๐
๐ญ Increment counter
๐ค ๐งฎ ๐ข1 โ ๐พ ๐งฎ ๐ญ counter = counter + 1
๐ญ Test exit condition: counter > 999
๐ค ๐งฎ ๐ข999 โฌ๏ธ
๐
๐ญ Print the result
๐ค ๐ฏ ๐Forth is fun because it is so easy to create a simple implementation of the language. It's also very very terse, which makes the emoji-nature of a project like this shine through. Here's the program above with emoji digits, fewer alphanumerics, and less whitespace:
๐ญ Project Euler Problem 1 ๐โ ๐ 3๏ธโฃ๐0๏ธโฃ๐ฐ๐5๏ธโฃ๐0๏ธโฃ๐ฐโก ๐ ๐ฆ๐ฏ ๐ฆ๐งฎ 0๏ธโฃ ๐พ๐ฏ 1๏ธโฃ ๐พ๐งฎ ๐ ๐ค๐งฎ๐ โ๐๐ค๐ฏโ๐พ๐ฏ๐ ๐ค๐งฎ1๏ธโฃโ๐พ๐งฎ ๐ค๐งฎ๐ข999โฌ๏ธ ๐ ๐ค๐ฏ ๐
The project README has more detail on the language features if you're interested.

I've improved federation support for Lemmy and other servers that support FEP-1b12 Group Federation.
I had to increase the number of available file descriptors on my personal server 4x because of the resultant inbound volume of ActivityPub activities! I liked a federated post and DOSed my server.

The big feature in release v3.2.2 of Ktistec is pinned posts with support for the Mastodon Featured Posts collection. Federation works both waysโpin a post on Ktistec and it will show up as a pinned post on Mastodon and vice versa. When you refresh an actor profile, Ktistec also fetches and updates the actor's pinned posts. This is another small step in the direction of supporting all features that Mastodon-compatible client applications expect to access via the API. It's also useful in its own right.
The other major feature, which I posted a short video demonstrating here, is X-Ray Mode. X-Ray Mode is a developer and power-user tool for inspecting ActivityPub JSON-LD representations of actors, objects, and other content. Pressing Ctrl+Shift+X on any page displays the data behind the pageโlike an x-ray. You can:
Alt+Left and Alt+Right to navigate through your viewing historyThis feature is useful for debugging federation issues, understanding ActivityPub structures, and verifying how content is stored and represented.
Here's the full changelog for the release:
Added
Changed
The next release will focus on smaller features and bug fixes.
Enjoy!





The recording of Davide Eynardโs (@mala) โBuild Your Own Timeline Algorithmโ talk from SFSCON is now live.
In the session, Davide walks through how to build a local, customizable timeline algorithm using https://Mastodon.py, llamafile, and marimo.
Watch the full video: https://www.sfscon.it/talks/build-your-own-timeline-algorithm/


would a "more from this actor" button be helpful on #ktistec? the use case is 1) navigate to an actor you're thinking of following, 2) click on "more from this actor" to fetch ~10 additional, recent posts. is there another feature that would be more useful?

I've streamlined theme development in Ktistec. The theming system uses a hierarchy of CSS custom properties and fallbacks. Theme authors can customize a theme at multiple levels:
Base Colors Only
Define only base colors like --text-primary, --bg-primary, --bg-input, --semantic-primary, etc. Derived colors will auto-generate using color-mix formulas. For example:
:root { --semantic-primary: #ffa500; }From this one line, theme-appropriate colors like --bg-accent-code, --anchor-color, etc. auto-generate.
Base Colors Plus Derived Colors
Define base colors and derived colors. Derived colors use custom values when defined. Undefined derived colors auto-generate. For example:
:root {
--text-primary: #333;
--text-primary-2: #ff0000; /* red for this specific shade */
}Given this theme, derived shades like --text-primary-1, --text-primary-3, and --text-primary-4 auto-generate. --text-primary-2 is red.
The simplest possible interesting theme redefines the primary semantic color. The single line above (in Base Colors Only) would result in the following, with button color, link color, disabled, selected, and hover states all derived automatically:

These changes will be in the upcoming release. Existing themes will continue to work, as is.

Experimenting with x-ray mode for ktistec.