All in all, it's something to study and learn from, but I strongly recommend not becoming involved unless you are 100% happy with being tied into node.js.
Scuttlebot: Peer-to-peer database, identity provider, and messaging system
31–40 of 123 posts
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#32Huge fan of Scuttlebutt and think it could (should) be the future of the social internet. I recently quit my job to write about and work on decentralized tech full time with scuttlebutt being my primary focus. I've written about why I think it's so important here: https://adecentralizedworld.com/2020/03/what-is-scuttlebutt/
I also really appreciated your other post[0]. This is what allowed me to understand that SSB is not really a social network but more a p2p protocol to exchange messages where applications can be built on.
[0] https://adecentralizedworld.com/2020/03/a-decentralized-plat...
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#33Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#34Huge fan of Scuttlebutt and think it could (should) be the future of the social internet. I recently quit my job to write about and work on decentralized tech full time with scuttlebutt being my primary focus. I've written about why I think it's so important here: https://adecentralizedworld.com/2020/03/what-is-scuttlebutt/
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#35Ceptr/Holochain: http://developer.holochain.org/
DAT protocol: https://datprotocol.github.io/how-dat-works/
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#36Huge fan of Scuttlebutt and think it could (should) be the future of the social internet. I recently quit my job to write about and work on decentralized tech full time with scuttlebutt being my primary focus. I've written about why I think it's so important here: https://adecentralizedworld.com/2020/03/what-is-scuttlebutt/
> Decentralized social networks have been tried before, the two most well known are Diaspora and Mastadon. With these services there [is still moderation]... Scuttlebutt is how I believe the social web should function in the future. Even the Hackernews community which lean towards decentralization more so than the general public would still argue there is value in moderation.
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#37"It's a magofinisticks peer-to-peer storage functionomatic" is how it might read to some people. So what it is, what it does, the value of it, some general overview of the features and how they work would go a long way.
Looks cool though.
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#38npm install sigh...
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#39So the homepage of this project is basically documentation. Where others introduce use-cases, you actually teach us how it's done. I love it.
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#40Scuttlebutt is a neat concept, burdened by a bad protocol. Signing a message involves serializing a json object, signing it, adding the signature as a field on that json object, and then serializing it again. To verify, you deserialize the message into an object, remove the signature field, and then reserialize it, and verify the signature against that new serialization. This means that all the clients have to have a…