Marcin Rataj

Results 1311 comments of Marcin Rataj

The panic turned out to be a broken datastore (went away after re-generating). New/old issue tho: I was unable to pin this English snapshot from #92 to a second localhost...

Tried finishing pinning English with go-ds-badger patched with: ```diff --- a/datastore.go +++ b/datastore.go @@ -107,13 +107,13 @@ func init() { DefaultOptions.Options.ValueLogLoadingMode = options.FileIO // Explicitly set this to mmap. This...

No luck. Next step is to backport [this fix](https://github.com/dgraph-io/badger/pull/1357/files) for https://github.com/ipfs/go-ds-badger/issues/86 and build go-ds-badger against patched badger. [nevermind](https://github.com/ipfs/go-ds-badger/issues/86#issuecomment-810218289). Ended up using flatfs with `sync` set to`false`. Takes time, but can...

@kelson42 I believe `Error: merkledag: not found` means you work in offline mode: try starting `ipfs daemon` first and then retry `ipfs get` --- @Artoria2e5 interesting! Got some questions: 1....

@kelson42 thats sounds very useful! what would be a valid query to return the latest snapshot of english or turkish wiki? Tried `https://library.kiwix.org/catalog/search?lang=en&tag=wikipedia` but it points at old snapshot: `wikipedia_en_wp1-0.8_orig_2010-12.zim`

@kelson42 I think things like https://github.com/kiwix/kiwix-tools/issues/231 and https://github.com/kiwix/kiwix-tools/issues/316 need to land before we can use OPDS feed. Right now, I was unable to come up with filters to get the...

go-ipfs renaming plan in https://github.com/ipfs/go-ipfs/issues/8959#issuecomment-1124351359, will happen between v0.13 and v0.14

I don't believe js-ipfs supports Private swarms via `swarm.key` (afaik it is only an [experimental feature of go-ipfs](https://github.com/ipfs/go-ipfs/blob/master/docs/experimental-features.md#private-networks)). It seems all necessary primitives exist, what is missing is detection of...

@AlexMesser thank you for poking at this – please open a PR that make priv networks work. :pray: it will be really valuable to have support for private networks in...

In [Kubo](https://github.com/ipfs/kubo), the convention / separation of concerns is more or less this (could be bit different in js-ipfs, but not much): - if you don't care about IPLD and...