redsolver
redsolver
The markdown-to-html library used by Noteless doesn't support footnotes: https://github.com/dart-lang/markdown
should be possible, but unfortunately I'm busy with other projects right now
> How do we roll this out? Do we just stop sending the DID in feed generator requests unless the flag is set to true? Do we default to sending...
I'm using 256 KiB chunk groups by default, but would like to support other sizes too. For example Iroh is using 64 KiB chunk groups. So right now all of...
Thanks for your answer! I'm building a decentralized content-addressed storage network, similar to IPFS. Unlike IPFS, files are not split into individual chunks. Instead I'm doing a blake3 hash of...
So to be precise I don't really need to verify the entire bao outboard bytes with the root hash, I just thought that would be easier to implement because I'm...
Thanks for your help, I now ended up with this which seems to do what I need: (using code from https://github.com/oconnor663/bao/issues/34#issuecomment-1176595618) ```rust pub fn verify_integrity( chunk_bytes: Vec, offset: u64, bao_outboard_bytes:...
Thanks, your second example is an optimized version of what I need. I can't really use the first example, because I'm calling the API from native Dart code or JavaScript...
I'm getting complaints from SkyFeed users all the time that their published custom feeds are missing some posts. In almost all cases, this is caused by the content language filter...
I just started working on a Flutter Mobile App for Notable which works on iOS and Android. Currently it has Basic Editing, Markdown Preview and Note Listing. I will publish...