Elektrine lite

← Feed

@technomancy@hey.hagelb.org

Post #1404642

2026-02-17 22:19 UTC

@nasser I have grudgingly switched my default ubo mode into only blocking 3rd-party scripts instead of blocking scripts so this wouldn't be a deal-killer for me but if I'm being honest I'd probably just write an emacs mode for its API instead anyway and skip the web interface if I used it seriously

Replies (2)

  • @technomancy@hey.hagelb.org 2026-02-17 22:21

    @nasser (this is assuming I could be convinced that a centralized-per-project issue tracker is a bad thing to begin with which I'm still on the fence about) (centralized-per-project is not the same thing as "should all issues in the world be hosted on one web site"; hope that is clear)

    Open ##1404643

  • @nasser@merveilles.town 2026-02-17 22:59

    @technomancy so the tricky thing is the core representation is automerge (https://automerge.org/). the easy to build easy to extend version of this exposes a rest API that takes automerge blobs and then all the crdt stuff happens on the client. keeps the server simple and unlocks hacking and extension on the client with the trade-off that the client now needs an automerge implementation. the alternative is a rest API that is defined in terms of comments, issues, edits etc and the crdt stuff happens on the server. now your client only needs an http stack but your constrained by the API the server exposes.

    Open ##1404655