P2P
Peer-to-Peer (P2P) applications share resources and communicate in a decentralized or distributed architecture. Often application nodes communicate directly with each other or cooperate to do work which benefits other nodes or the overall P2P system. In a pure P2P system, there is no distinction between client and server.
Here are 1,732 public repositories matching this topic...
Hi!
Thanks for this nice tool, I like it a lot :-)
I searched the forums and issue tracker, but could not find any discussion on this:
I would like to have a "clean" feature for Simple File Versioning. I think something similar to the feature for Trash Can File Versioning would be useful:
A configuration op
We are currently thinking about fixing some bugs in the mobile backend.
This issue shall act as an umbrella issue to collect some of the quirks of the backend that could be improved in the future. If you have any suggestions, feel free to add.
-
All functions are undocumented
Maybe we can find a way to insert Javadoc into the generated.aar -
Address.toString() returns {}Address
In order
-
Updated
Sep 10, 2020 - JavaScript
-
Updated
Jul 28, 2020
-
Updated
Sep 18, 2020 - Python
-
Updated
Sep 19, 2020 - JavaScript
-
Updated
Sep 5, 2020 - TypeScript
-
Updated
Sep 12, 2020 - JavaScript
-
Updated
Sep 11, 2020 - TypeScript
-
Updated
Sep 18, 2020 - JavaScript
Lots of users ask in Slack what we support (and what we plan on supporting)
We should throw a simple FEATURES.md in the repo.
-
Updated
Sep 18, 2020 - Go
Right now the docs correspond to what's on master. We need docs for each daemon release so developers can see what's available in the version they are using.
https://github.com/jimporter/mike may be helpful.
-
Updated
Sep 18, 2020 - JavaScript
-
Updated
Sep 18, 2020 - JavaScript
-
Updated
Sep 18, 2020 - C++
-
Updated
Aug 13, 2020 - JavaScript
-
Updated
Sep 3, 2020 - Go
-
Updated
Sep 17, 2020 - Go
In osx/updater/updater.go, we're referencing an ancient Go package, which has moved to a new location. Right now, the updater doesn't build (should we test this on travis?).
I come from the OpenBazaar project and I am new to go-libp2p and go-ipfs. Are the examples that use libp2p in a production environment? Where's the best place to learn libp2p by example?
There is a user with a dick pic as their icon. Many people have blocked them, as have I.
I recently clicked through to their profile page to remember if I had blocked them and although their posts are hidden, their user icon is still shown.
Can we use CSS to blur the user icons of blocked and ignored users?
filter: blur(8px);
-webkit-filter: blur(8px);
(Those icons might al
-
Updated
Sep 7, 2020 - JavaScript
-
Updated
Aug 18, 2020 - Elixir
-
Updated
Sep 1, 2020 - Java
On macOS, it's a fairly standard practice to display a pre-roll if your application needs some form of permissions, before calling the system APIs for the first time that will actually produce the system's requested-permissions window.
For instance, for any given end-user, the following window is likely A) intimidating, and B) possibly encourages insecure habits, such as simply clicking "acce
connect_nodes(self.nodes[a], b)is confusing becauseatoself.nodes[a]can be done hidden from the callerThis should be fixed by replacing
connect_nodes(self.nodes[a], b)withself.connect_nodes(a, b)and removing the globalconnect_nodes.