Dennis Trautwein
Dennis Trautwein
Hey everyone :) We're setting a receive timeout every time we are receiving a `*actor.Terminated` message from a watched remote actor because we want to reconnect after a defined timeout....
Hey there, maintainer of [`pcp`](https://github.com/dennis-tra/pcp) here. I had browser CLI interoperability on the roadmap from the get-go. In the most recent IPFS newsletter I learned about this project and thought...
Libp2p allows to configure a user agent via `libp2p.UserAgent(...)`. I'm thinking of using `nebula-crawler/{version}` while `{version}` should come from a central source.
Imagine you're running the crawler for the IPFS network for some time. Then you want to start crawling the `FILECOIN` network as well and experiment around. This could easily lead...
If the `--neighbors` and, e.g., the `--csv` flag is given a neighbors adjacency list should be generated after the crawl. Format: ```csv peer_id_1,neighbor_1 peer_id_1,neighbor_2 peer_id_1,neighbor_3 peer_id_1,neighbor_4 peer_id_1,neighbor_5 ... peer_id_2,neighbor_x peer_id_2,neighbor_y...
ZSH reads its configuration by default relative to a path set via $ZDOTDIR. If $ZDOTDIR is not set, then the value of $HOME is used; this is the usual case....
Simultaneously calling `NewStream` blocks on one side until the dial timeout was reached. Minimum repro example: ```go package main import ( "context" "fmt" "sync" "testing" "github.com/libp2p/go-libp2p" "github.com/libp2p/go-libp2p/core/host" "github.com/libp2p/go-libp2p/core/peerstore" "github.com/stretchr/testify/require" )...