Hi HN! There's been lots of note-taking / personal knowledge tools developed in the past few years. But there's a big difference between working with people you already know and collaborating with anyone on the internet.<p>Right now, if you're interested in, say DIY air purifiers[1], you could throw up a document or webpage. But there's no good way for people you don't already know to work on it, to make it their own. If you're writing software, the answer is obvious: publish a Git repository on GitHub/GitLab.<p>With Encycla, we're building a sort of "GitHub for knowledge": a place where you can create simple, topical webpages that others can fork and asynchronously push & pull changes from (without knowing about Git or anything technical).<p>On the backend, every page on Encycla is a git repository containing Markdown that you can clone, edit independently of the Encycla website, push to other services (such as GitHub, GitLab), etc.<p>For instance, here's a page on Encycla:<p><a href="https://encycla.com/KF94" rel="nofollow">https://encycla.com/KF94</a><p>and the underlying git repository pushed to GitHub:<p><a href="https://github.com/philipn/KF94" rel="nofollow">https://github.com/philipn/KF94</a><p>1. <a href="https://encycla.com/Corsi-Rosenthal_Cube" rel="nofollow">https://encycla.com/Corsi-Rosenthal_Cube</a>
I love the concept of incorporating git and wiki. I frequently catch myself of implementing some git managament for files in my tools. This is an "inner platform effect", since git is part of my software development platform. But it's a good part! :-)
For similar ability with an existing wiki you can use something like <a href="https://github.com/Git-Mediawiki/Git-Mediawiki" rel="nofollow">https://github.com/Git-Mediawiki/Git-Mediawiki</a> to access the content of a mediawiki instance using the git client tools.
this is great, i was thinking about making a history chain where historians can help seed and propagate content, complete with an profile for each user and their stats, a breakdown of how their stats came to be.<p>kind of like a baseball card for each historian where people can explore who vouched for who.<p>there can even be forks where people disagree on what happened, that way the user can follow the evidence, refute it or comment on it for other users to see, kind of like how wikipedia does it but for comments.<p>that way we can make history more persistent than current archive methods.<p>but anyways, great work! always good to see educational projects being built, my parents bought a pc for the family, we were homeschooled and a lot of my education (outside of textbooks) came from cd/floppy disk encyclopedias and other educational software
Really like this idea. Did you leverage any open source tools to host/manage all the git repos? What tools did you use to build the backend/frontend?