|
|
|
|
|
by LukeB42
3952 days ago
|
|
I've been thinking of how to decentralise the web as-is since 2011, the current development branch for this perspective on it is here: https://github.com/LukeB42/Uroko/tree/development It's basically a collaborative caching proxy. One process is a proxy that can also coordinate multiple users editing the same page and a subprocess acts as a DHT node. You can use a raft-like log of hashes of pubkey,content and the previous hash to keep a history of edits in the network. the hard part is this: How do you trust the validity of a singular node having a url you're requesting? It entails a rating system, and then it becomes the byzantine generals problem where the overlay network should be able to tolerate up to a third of its malicious nodes saying they're all trustworthy. Feedback/any help would be much appreciated. |
|