Kitsune 0.0.1-pre.4 — Lightweight ActivityPub server (github.com)
from erlend_sh@lemmy.world to rust@programming.dev on 25 Oct 2023 19:38
https://lemmy.world/post/7327439

Really fast post parser, notifications, OpenTelemetry, dedicated job runner, and more!

Now with pre-built binaries for Windows, MacOS, and Linux with install scripts for PowerShell and Bash!

corteximplant.com/@0x0/111297237963021572

#rust

threaded - newest

Deebster@programming.dev on 26 Oct 2023 14:18 collapse

0.0.1-pre.4? I know getting to version 1 is a bit unfashionable lately, but they really need to learn how to commit.

0x0@corteximplant.com on 27 Oct 2023 05:41 collapse

@Deebster @erlend_sh Yeah.. we just don't like to commit. Like just yet.

I really need to give myself a weekend to go over the database schema and find something I'm happy with that I want to keep.

That's like the biggest reason I'm not committing to anything but "pre"s yet :blobfoxmeltsob:

Just my life has been rather chaotic over the last few months. And now a new job soon and everything.

inb4 making it on https://0ver.org/ soon

0x0@corteximplant.com on 27 Oct 2023 05:48 collapse

@Deebster @erlend_sh the biggest blockers regarding the database schema design right now are:

  • Bring-your-own-domain
  • Settings and preferences
  • System account (for authorized fetch mode)

That requires a lot of consideration though, and I'd also like to subdivide the accounts table more for two reasons:

  • Agnosticism over protocols (maybe ActivityPub won't be the only protocol we want to support in the future)
  • If we can get under 16 columns, we can disable support for 32 columns in Diesel and save build time

That's basically it. Aside from that there's not too much I'd change in an incompatible way

Deebster@programming.dev on 06 Nov 2023 04:40 collapse

Agnosticism over protocols (maybe ActivityPub won’t be the only protocol we want to support in the future)

If that’s simple to do, it’s worth waiting for, but if it’s trickier then I’ve learnt the importance of remembering YAGNI and KISS (and that database migration scripts aren’t that hard). Of course, third party database queries aren’t as simple to update but perhaps your API will be all implementers need.

If we can get under 16 columns, we can disable support for 32 columns in Diesel and save build time

This does seem worthwhile, just to speed up development cycles.