Earlier quoted context omitted.
> 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.
For sure, any network without any moderation is going to quickly fall into chaos. I'm working on a post on decentralized personalized moderation at the moment which should be out in the next day or two :)
Scuttlebot: Peer-to-peer database, identity provider, and messaging system
41–50 of 123 posts
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#42Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#43Scuttlebutt 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…
I thought about sorting keys and other things like that, and the dozen edge cases and potential malleability issues dissuaded me for the compatibility issues mentioned above.
How have others solved it?
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#44Scuttlebutt 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…
This is how Cosmos ( https://cosmos.network/ ) deals with signing transactions, caused _major_ headaches for me trying to figure out why my signatures were invalid when sending them from Node.js
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#45I recently discovered SSB and was really intrigued. I would love to hear an experience report from actual users like what is working great, and what is bad.
I've been using ssb for about a year and a half, and love it. The ideas behind the dweb do not get the credit they deserve, IMO : p2p data sharing where your data is sent directly to your friends rather than centralized on a know-it-all server is what the world needs, for anyone concerned about privacy. If I had to say what I don't like about ssb, it would probably be that it's not easy to write an application for it…
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#46Huge 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
#47Scuttlebutt 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…
To me it's worse that key order must be preserved, which this standard does not specify the way I understand it.
Source: https://ssbc.github.io/scuttlebutt-protocol-guide/#message-f...
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#48Uh, for something touting e2e encryption and security it would be better if the site did not serve over plain http by default
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#49So the homepage of this project is basically documentation. Where others introduce use-cases, you actually teach us how it's done. I love it.
Except for those of us who have no idea really what it is, how it would be used, or what the features really do.
Re: Scuttlebot: Peer-to-peer database, identity provider, and messaging system
#50Earlier quoted context omitted.
I've been using ssb for about a year and a half, and love it. The ideas behind the dweb do not get the credit they deserve, IMO : p2p data sharing where your data is sent directly to your friends rather than centralized on a know-it-all server is what the world needs, for anyone concerned about privacy. If I had to say what I don't like about ssb, it would probably be that it's not easy to write an application for it…
How do you get connected to the scuttleverse? Did you already know people who were also using it?
It's a bit cumbersome, but the purpose is to avoid having any central authority, if I understood correctly (well, except the server running the webpage on which pubs are listed :] ).