Hector Sanjuan

Results 433 comments of Hector Sanjuan

Actionable for anyone interested: make a proposal on how Keystore APIs would change for this.

@lidel: double-check that you want me to move this issue to /ipfs/specs/, correct?

I am transferring this issue to ipfs/specs as we want to clean up this repo. Progress in Go (the missing part) can be followed here: https://github.com/ipfs/go-ipfs/issues/4143

HTTP polling has been introduced at #22

Hey, nopfs watches denylists and reads any new lines appended to them. Adding updates in append-only fashion allows to do this without having to re-read the whole file. I don't...

It is not sustainable to re-download and re-process everything every minute because of a single-line added to a file (like it happens now for ipfs.io gateways). Adding such feature allows...

Also, it is simpler to fix badbits to publish append-only lists than to implement dealing with sorted lists.

Given the denylist is plaintext and writing is mostly appending lines to a file, is there anything special that you would expect from this functionality? I'm thinking: * Given a...

> I'd just like to have a `denylist.Write(filename string)` How is this different from `f := os.Open("path", APPEND); f.Write("/ipfs/cid\n")` ?

(or just copying the original file).