How about we build a Reddit alternative which just defines the data structure?
If each community is simply a directory, we could run such a thing as a git repo. Say we run the "aww" community with cute animal photos. Then the repo cold look like this:
    2023-06-12/
        Look at this funny cat/
            content
            comments/
                very funny
                i like her eyes
        Our dog climbing stairs for the first time/
            content
            comments/
                go dog go!
    2023-06-13
        A parrot singing a poem/
            content
            comments/
                but can he sing a book?
Every line with a / is a directory, every line without a / is a text file.This already would:
    - Let everybody browse the content
      For example via github, gitlab, codeberg etc.
    - Let developers write content
      Fork the repo, add a file, send a pull request
Then we could take it from there and build frontends on top of it.What does everybody think?
There's a constellation of ideas around returning to the file system & destructing data, using flatter data & the file system to file data that have so much promise and hope. Using git as a next layer to syndicate.
9p is a well known pointer into this universe. There's less discussion/clarity around how an app or how a network ought become file system oriented, about what flat data architectures would be, but these humble ideas you have here I think show exceeding promise, are clear & reasonable a start that any dev of any language can see & grok (which is huge) & follow a long with. The sense is self evident.
One other humble pointer I might drop might be Hull: the alternative to shell that I'll never have time to implement. https://250bpm.com/blog:153/
I love how such a community as these could form & if things take a turn badly, folks can fork. They can abandon one host & shift to another instance to bave discussions on.
I think this would need to be load tested and I suspect it would not scale as well as using a some form of a database for the metadata that just links to file storage.