noosphere
noosphere copied to clipboard
Noosphere is a protocol for thought; let's discover it together!
When we eventually implement proper multiplayer, we will need to take every opportunity we can to minimized perceived latency as clients traverse the Noosphere. Immutable data and content addresses afford...
As of #22 , the gateway is able to hydrate revisions that it has received. However, currently this work blocks in the push handler, delaying our response to the client....
Currently, we have [at least one case](https://github.com/subconsciousnetwork/noosphere/blob/e738a7eff3240dca7b76c32cf7980bc6d21557e9/rust/noosphere/src/view/sphere.rs#L235-L288) where UCAN revocations should be made but aren't. And, in the future we will certainly have additional use cases. We should be tracking...
Our plan at this time is to implement a private data feature in Noosphere that enables users to author content that is private and/or only readable by an explicitly allowed...
CAR Mirror is a mechanism being researched at Fission for determining the probabilistic minimal bundle of blocks to transfer changes from a source (our clients) to a sink (a receiving...
In order to reduce friction to adoption in web-based projects, we should vend a TypeScript facade library that uses the Rust library compiled as a WASM module under the hood....
At this time, none of our crates are published to crates.io. This doesn't prevent folks from kicking the tires - one can always include the crates as a git dependency...
Currently we only support the `did:key` method, which in and of itself does not suggest a key rotation strategy. This could be read charitably as us leaving key rotation as...
We have a `Bundle` construct that is used to gather up the sparse blocks needed to represent a given set of revisions. It is composable / mergeable with itself, which...
Early on, we forked https://github.com/filecoin-project/ref-fvm/tree/master/ipld/hamt and made an async version of it. This was very useful at the time, but two consequences that arose from this decision: 1. The API...