Hacker News new | past | comments | ask | show | jobs | submit login
Scuttlebutt social network: a decentralised platform (scuttlebutt.nz)
231 points by p4bl0 on Feb 23, 2024 | hide | past | favorite | 138 comments



I keep hearing about Scuttlebutt for a long time but haven't seen anyone actually using it? Why?

edit: hm, the recommended application on the website itself is ... from 2021, and the github of the app itself is archived now. And there is "bleeding edge" one ... from 2019.

OK I can see that there might be problems


Scuttlebutt had the Bitcoin like problem of requiring everybody to have a local copy of the entire database, with a confusing / glitchy "syncing" process to download the latest posts. I tried to use it for a few days on my Android, but it never showed any new posts and the syncing process took like 30 seconds every time I opened the app.


Admittedly my only exposure to the Secure Scuttlebutt Protocol(SSB) is through manyver.se [1] - a FOSS private(optionally) social media app. And the syncing issue you mention has been one for me too. Sometimes it's even worse - it fails to sync entirely until another app restart. Maybe this is a manyverse issue, maybe a SSB issue. Either way, hitherto at least, it doesn't seem reliable.

If there are alternative ways to have an offline(over Wi-Fi/bluetooth, not internet) social media/messaging app, that works on both Android and ios, please do let me know.

Thanks.

[1] https://www.manyver.se/


At a certain point in the history of SSB the manlyverse team took over the maintenance of SSB and the apps locking until the end of a sync became the norm. Prior to this there were websocket-based web and Electron apps where you could at least see that progress was being made.

SSB always sank from the first post to the latest. IMO it's better to sync from the latest backwards.


This isn't entirely true.

Scuttelbutt had some design and scaling issues.

But there wasn't a global database. Each user gets their own blockchain.

Its a network of tiny blockchains where the consensus model was the signature from the private key and the chain of hashes.


Not disagreeing with you, just nitpicking on the use of a word:

What you are describing is simply a signed Merkle tree, not a blockchain. You cannot really call an individual signing it's own ledger a consensus mechanism. Maybe "validity" or "authenticity" would be better terms here.

I know a lot of people make this mistake of labelling anything that has a Merkle-tree like structure a blockchain but it's impractical when you need to talk about the technology rigorously to have a word that meant something precise suddenly encompass so many things, including tools such as Git.

Coming back to Scuttlebutt, even the website of Manyverse, the mobile client, explicitly says "no blockchains", so it seems at least some of the people involved in Scuttlebutt development agree with this.


right, blocks are specifically the result of a global consensus

if there's not a discrete unit of appended data that all peers agree has happened, there's not a block

"hashchain" maybe, but merkle tree is already plenty precise


Many of these systems also don’t have a Merkle tree, they have a Merkle linked list. Which I think contributes a lot to the syncing problem. A skip list structure where each node has multiple hashes/identities would let you skip the last five years of edits and pull down only the individual edits for the last month.

The “Merkle tree” I worked on before this blockchain nonsense started was a Merkle DAG, representing a mostly linear state flow with some parallel elements.


> A skip list structure where each node has multiple hashes/identities would let you skip the last five years of edits and pull down only the individual edits for the last month.

Do you have any references or reading material on this pattern? Would love to learn more.


Not in crypto, but it’s a linked list structure with a logarithmic number of additional pointers that refer forward (or in the case of a diff algorithm, backward) into the list, to provide closer to log n lookup time.

I think they were invented by Bill Pugh, a professor who also had some noteworthiness in Java concurrency fifteen years ago, which is how I heard of them.

Wikipedia agrees (W Pugh for William)

https://en.wikipedia.org/wiki/Skip_list

So the way I see it, you’d overlay the linear tree with one that refers to a single, recent hash, a much older hash (or another meta node of the same degree) and a roll up delta from that older hash, with a new hash that satisfies both. Then every time the number of records double, you add another layer over the previous one.


I appreciate the nitpick! Words do matter.

I'll share my definition of these terms, for me they have very precise definitions:

A merkle tree is a specific data structure: https://en.wikipedia.org/wiki/Merkle_tree

> In cryptography and computer science, a hash tree or Merkle tree is a tree in which every "leaf" (node) is labelled with the cryptographic hash of a data block, and every node that is not a leaf (called a branch, inner node, or inode) is labelled with the cryptographic hash of the labels of its child nodes. A hash tree allows efficient and secure verification of the contents of a large data structure. A hash tree is a generalization of a hash list and a hash chain.

If you have hashes co-located with data, and data spread throughout the chain, it is not a merkle tree.

A blockchain is a linear chain of hashes of the content in each block of the chain. In a blockchain, for any given block, there is only one valid next block.

When a blockchain is propagated over a network, there is a consensus algorithm used to agree on state of that chain. Bitcoin uses proof-of-work to agree on the next block. Anything that allows multiple nodes to reach consensus on the state of a blockchain is a consensus algorithm. SSB uses proof-of-signature, and the sequence number, as its consensus algorithm. The network reaches consensus on the state of any particular chain by validating the signatures and that the sequence numbers are in the correct order.

Colloquially, blockchains have been conflated with their consensus schemes. When people use the term blockchain conversationally, they generally mean a blockchain that propagates over a network using some sort of consensus algorithm. This conflation of consensus with blockchains has lead to many people in the p2p space rejecting the term blockchain to distance themselves from the crypto hype bubble, even though the data structure itself is quite useful.

Finally there is a Merkle-DAG, introduced by Juan Benet, that acts as a unifying data structure for both blockchains and merkle-trees. Merkle-DAGs can also express novel data structures that are neither a merkle-tree nor a blockchain.

tl;dr: a blockchain is not a merkle-tree, and a merkle-dag might be capable of representing a blockchain but they are separate concepts. A blockchain is independent of its consensus algorithm, although colloquially the two have been conflated.

P.S. Merkle-DAG might be capable of representing git, would be fun to give it a try sometime using something like IPLD.


> The network reaches consensus on the state of any particular chain by validating the signatures

Ok I can see that. It's the distributed consensus problem in a centralized setting. It still feels strange to call that a blockchain but maybe it can be qualified like "centralized blockchain" (which questions the need for such a structure to begin with).


> "centralized blockchain" (which questions the need for such a structure to begin with).

I’ve seen centralized blockchains used to great effect in ledger contexts where the chain is not synced, but references (hashes) of the chain are shared externally (I.e. transaction ids).

If an external auditor has a set of transaction ids that have been communicated externally, they can later audit the centralized chain and prove it has not been tampered with without having to have the full log of blocks.


> If you have hashes co-located with data, and data spread throughout the chain, it is not a merkle tree.

Yes that's the theoretical structure but in practice its usage almost always implies data co-located with the intermediate hashes, if only because it's used to validate the integrity of a tree of files and directory and it's easier to manipulate a single structure with all the information. That's how it's done in Git internally, as well as in IPFS for example. I believe it's also how Merke-trees are used in some backup/synchronization tools.

> In a blockchain, for any given block, there is only one valid next block.

Yes, but that's just a particular kind of tree, where each node only has one child.


> Yes, but that's just a particular kind of tree, where each node only has one child.

Yes!

I’m personally building a SSB data structure that forks into a tree, forking to allow writes from each new writer, to allow multi-device writes! It is a multi-writer append database that behaves like a CRDT.

It’s a blocktree, not a blockchain. Which is also expressable as a merkledag.


Yeah, sorry, when I said "entire database" I was handwaving over "the entire database of posts relevant to them". The Merkle tree structure is the root of the scaling issues which is why I think it's fair to describe it as "bitcoin-like" and it serves as an intuition pump for people to understand why it was so difficult to use on mobile, regardless of whether it was actually quite as bad as Bitcoin or not.


A true Satoshi whitepaper Bitcoin would include everyone having a local copy of the database as well as peer-to-peer connections. No necessary middlemen. Is this correct.


It requires a third party to send some Bitcoin from one wallet to another. Is this correct.

Was this contemplated by the Satoshi paper.


A Bitcoin of my dreams would have close to zero if not zero transactions cost with everyone on the network running at least full nodes fully synchronized with the main network. The fact that it costs money to send some Bitcoin from one wallet to another is sad.


Social networks are strongly dependent on network effects. For a time SSB was actually used by some of my friends, but it required a desktop app, had a confusing onboarding process, IIRC had some rough edges around syncing content, and was just not smooth enough to compete against highly funded centralized companies in the cuthroat social networking space.


Everyone here is focused on the tech and I'm here wondering how I'm supposed to convince my friends and family to join me on something called Scuttlebutt.


The name was the part I liked best! "Scuttlebutt" is a naval term for a water keg, and it became slang for conversation around the watering hole. In other words, it was gossip around the water cooler from before we had water coolers.


...and this is why 99% of niche developer attempts don't flourish into the next big social network. Might as well call it "Codswallop", which is also a valid historical slang that is equally completely ridiculous for mass appeal.


It was never meant to. It was founded by a guy who lived on his boat and wanted something for his friends. It became a hotbed for experimenting with P2P social networks, for a time.


Yeah, yahoo and google is very meaningful on the other hand.


They are short, memorable and don’t have “butt” in the name.


I currently have halibut baking in the oven with garlic butter, and butternut squash soup.

I love a good dumb butt joke, but not everything with the substring butt in it is automatically funny or reminiscent of butts.


Correct, it has to be at the end to be funny.

Halibut is already a terrible name for a social network but if it wasn't it may indeed be a little bit bumular

(although in my accent at least you don't really end in a butt, it's more a "bit", maybe you could get away with it)


But you are also not trying to convince people to try yet another social media concept named “butternut”.


You honestly saying you've never heard of the term scuttlebutt? Like "what's the latest gossip/scuttlebutt".

I've never associated this term with being nerdy or niche.


...and this is why 99% of developers will defend for-profit companies stealing data, enabling mass genocides and foregoing all privacy: because everything must become the next big XXX.


Yes, an actual literal 'gossip protocol' named Scuttlebutt. Unpardonable. /s


Scuttlebutt is a brilliant name for a social network. It's right up there in the "why didn't I think of that" territory.


Someone at last, thank you!!


Why? Well, for one thing, it's an append-only log, which I would argue is a terrible choice for a social network.


Append-only logs are fine as long as they only contain pointers to content.

You can store 10k blocks in the size of a JPG image.

And, when trees grow large, with stale data that has been forgotten by the network, you can do garbage collection/compaction by shaking out the dead references and sharing a new tree.

Its just SSB never reached this point.


It had a major technical flaw in that it depends on some weird, Javascript-only JSON-serialisation bugs (iirc), and these basically had to be reimplemented in other languages so nobody really ended up writing any other clients for it.


Oh Scuttlebot. Such a great idea, and for a time it actually worked. I haven't been actively developing with the codebase for years, but I believe the current status of the project is that there were too many code rewrites that simply broke things that previously worked at one point or another.

I tell people sometimes that I'd put together a team to do a retro Scuttlebot revival with a Patchwork-style app and of course git-ssb! If you're interested in this kind of project email or call me. Contacts are in my bio.

I'm mostly looking for devs who want to dive into an old Node.js codebase, who want to recapture the magic of the original protocol, and then upgrade all of the modules to modern standards. Maybe Deno or Bun even.


Not sure if you're aware of this but mycognocist has continued a rust implementation and it's really getting there in terms of "what one would need for a patchwork style application"

https://github.com/mycognosist/solar

I've also been toying with this, exactly for that kind of unapologetically desktop-only "classic" client. Suffice to say I'm also a bit butt(hehe)hurt about how the desktop client story worked out after manyverse decided dump the original protocol some years into the effort.


>I keep hearing about Scuttlebutt for a long time but haven't seen anyone actually using it? Why?

It's called Scuttlebutt, meaning it can never be remotely popular enough to function as a worthwhile social network.


Upvoting because I'm also the guy who understands that, similarly, GIMP will never be big as it should be.


Yeah, the guy who renamed it to "Glimpse" is now worldwide famous for solving the only problem with the project. Designers are dropping Adobe Photoshop in droves and giving the project the complete recognition it rightfully deserved.


I wanted to hate on it, but I just downloaded the latest version and I see that after like 20 years, they finally realized that each tool window doesn't have to be a separate application.

Good for them, for once I might be able to try actually try it.


I think single-window mode came as part of version 2.8, just shy of 12 years ago.


I guess the lesson here is that PR damage can be permanent.


I have gotten some very strange looks from friends and coworkers when I have mentioned GIMP in passing.


Still waiting on non-destructive editing last I checked, which always seemed to be touted as "right around the corner" as much as a decade ago.


Git is pretty popular,and github was bought for over 7 billion.


> GIMP will never be big as it should be.

But having something "photoshopped" is a bad thing. Interesting. :)


2024 will be the year of Mastodong.


Rumor has it, Microsoft balked away from a billion dollar acquisition of this source control and project management tool because they didn't want to be associated with a collaboration portal for gits.


If you're good enough that your name doesn't hold you back, good for you.

As it stands, I turn my nose at stuff like Cockroach DB.


I get not liking a name, but to pass judgement on the quality of a product/project based on its name alone seems like a complete midwit thing to do.


When it's a DB layer, sure.

When it's a social network?

"Hey guys, have you seen Dave's new post on Poopypants?"


Again, that's a total midwit dismissal.

Scuttlebutt has a context and a meaning behind it. People might hear it without knowing the context, think "that it's a weird name, why is it so?", and then judge whether they like it or not. But to just hear the name and claim that it is inappropriate/bad/not-to-be-used because it reminds you of something that has nothing to do with the original context is ridiculous.


it's not ridiculous and countless FOSS projects will keep banging their head upon the wall forever till they actually learn it.


Please name one FOSS project that has found its success after being renamed to something more "appropriate".


Codemonkey became codemirror. And it is now quite well established (in chrome dev tools for example).

But usually FOSS projects don't get renamed at all, or if they do the renaming causes so much drama that kills the project. So nothing changes, also not obscure design choices - and they remain niche.


Was the name change motivated by general public rejection or branding issues?

Was it holding back mindshare growth?

Why greasemonkey" and "tampermonkey" didn't change their names?


You should probably ask the maintainer those questions. All I know he did made that decision at some point(before it took off) and he likely had a reason. Probably to be taken seriously, as he wants to live off his work. (I think he can)

And greasemonkey and tampermonkey are not really mainstream, nor do they make money as far as I know.


I searched a bit to see if I could find myself the answer, and what I found instead is that there is another project called "code monkey", which seems to an educational tool to help people learn to code. That would explain the name change a lot better than "the author changed the name because he wanted to be taken seriously".

Besides, the original criticism of Scuttlebutt was "it will never catch on because it has a silly name", not "it will make money". By making it about "making money" you are moving the goalposts a bit, aren't you?


"Besides, the original criticism of Scuttlebutt was "it will never catch on because it has a silly name", not "it will make money". By making it about "making money" you are moving the goalposts a bit, aren't you? "

Operating a social global network, even decentralized, is not possible without money, if you are aiming to get mainstream adoption(which was the main question/goal here). But you are very welcome, to proof me wrong.


No offense, but you're repeatedly using the term "midwit", which demonstrates that you have a higher-than-average tolerance/liking for non-layman vocabulary, and so might not be the best judge of what the average person is going to accept. Most people are not going to bother looking up the etymology of a word before dismissing a product named using it. Personally, I'm not a fan of the name because it's a word that, like "jitterbug", I associate with old people, because the only people I've known to use it in conversation are over 65.

Orgs spend millions on naming/branding because they know a name that doesn't hit right to the ear is going to be at a disadvantage. The vast majority of folks aren't going to bother giving your product a second thought if it doesn't appeal to them or has a negative connotation in their head right off the bat, regardless of the name's deeper relevance or origin.


My point (in relation to the top the of the thread I responded to) is that there are other things beyond the name that are more important/relevant when evaluating why the product wasn't successful.

If Scuttlebutt had an amazing feature that had a viral component to attract people, was easy to use and had no roadblocks for distribution, it would likely succeed, regardless of the name (like github).

But it's not. Scuttlebutt is a complex system, requires users to understand concepts like public keys and distributed systems, content discovery literally involves chasing other people around the internet to spread the gossip to you, the client was primitive, the development team had a size of one, etc, etc, etc... Those factors are way more relevant to understand why it hasn't taken off. Even if Scuttlebutt had a perfectly "appropriate" name, it wouldn't matter.

To put it another way: "Glimpse" is a fork of GIMP, and the author forked only because of the name. How many people actually cared enough about it to switch? How many people left Photoshop and started using "Glimpse" because that was the tipping point? Or the inverse: look at the whole Twitter -> X "branding". How many people left Twitter because of the name change vs because of the other changes since Elon took over?


How many people are calling the website X (and just X, no née-s and formerly known as-s)?


That's a separate problem, but that also shows that names (good or bad) are not really a make-or-break attribute of a product.


Aye, and most people who use social networks are midwits!

Butt in the name will absolutely make the project a joke and cause it to misfire. As a fellow midwit I only just heard of the project and dismissed it before I got to the technical pain in the arse you describe it being in other comments.

Butt, lmao. Now Mastodon has disowned the term they should start calling their messages toots.


"Hey guys, have you seen Dave's new tweet?"


> I get not liking a name, but to pass judgement on the quality of a product/project based on its name alone seems like a complete midwit thing to do.

I get to make n-many "midwit" decisions in life and retain a certain success envelope / gradient. I'm happy for this to be one of them.

Just think about all of the everyday decisions being made just like this. People passing over your resume because they don't like your font, etc. This kind of petty little thing bears an absolutely astronomically impact on the deterministic evolution of the universe.


I don’t think this should be downvoted. It’s a valid point and potential lesson for anyone thinking about reviving or doing something similar.

While this might not be the only issue I wouldn’t doubt that the name might prevent a larger audience.


Why? I think it's a fine name, better than most, because it's a normal English word that says exactly what it does / what it's for. You're not just saying that because the word happens to end in "butt" are you? Or am I missing something?


> You're not just saying that because the word happens to end in "butt" are you?

They're saying precisely that and they're 100% right, and it seems you're missing a lot of things.

It's a social network. Its only value is in it having people using it and coming back.

Just try and imagine any person in your IRL circles (who's not on HN) actually using a social network with butt in its name. I seriously can't believe you see no issue there whatsoever. A teenager. A young artist. A YouTuber. "Follow me on TikTok, Instagram, Scuttlebutt and Poopypants". I dare you to find a creator willing to say these words.

Or if you just hang out with smart, like-minded tech-savvy middle-ages people who see past these things, then great, we have a new "social network" for smart, like-minded tech-savvy middle-aged people.


> we have a new "social network" for smart, like-minded tech-savvy middle-aged people.

Sounds great to me. The hard part is keeping the scammers away. If a ridiculous name can do that, I'm up for it.


"Follow me on Twitter to see my Wii reviews."

People will get used to it.


I mean, I wouldn't expect problems if the thing were called "Buttercup" would you? Or what about "Button"? "Saturday" (which has "turd" in it)? Are there problems with a Harpoon ("poon") IPA?

Clearly the presence of a sequence of four silly letters isn't in and of itself disqualifying. Native speakers often won't even register the juvenile bit inside it.

My only surprise here is that "scuttlebutt" doesn't work that way for other native speakers. It must be just my dialect or circles then, because it's an ordinary word for me which subsumes the "butt" within it (like I'm certain "button" does for you). But I guess it's not universally like that and the word is odd or rare enough that it doesn't do the same for others.


The butt is more noticeable because it's at the end of the word as a standalone syllable.

With your examples the butt sounds are mixed in so they don't stand out as much.


> I think it's a fine name, better than most, because it's a normal English word that says exactly what it does / what it's for

Just because the name says exactly what the product does and what it's for, that doesn't automatically mean it is good. In fact, imo it is bad in a lot of cases.

Do you think Instagram would have gotten as popular if it was named FlexGallery, or if Nextdoor was named SpreadRumorsActVaguelyRacistForum, or if Twitter/X was named PopularityContestShortMessagesAndBadNewsSourceSpaceWithSomePorn?

I personally would say "no" to all of those, and it isn't just because the names get unnecessarily long and ugly. McDonalds would never rename itself to Cheap Passable Fast Food Restaurant.


Some things really can buck the trend - ChatGPT is a _terrible_ name but provided so much obvious utility that it managed to reach a large consumer market despite that.


ChatGPT and Scuttlebutt are both bad names, sure, but in completely distinct ways.


FlexGallery could work... the rest are Java class names.


Actually agreed about FlexGallery, now that I am thinking about it.

As for the rest, they just miss [...]Factory and [...]Controller prefixes, and then they truly would become typical Java classes.


"Normal English Word" feels like a stretch. At least in the US, pretty obscure and kind of archaic sounding?


>it's a normal English word

I mean, it's an English word, for sure. I have never once in my many years heard someone actually say it seriously. Maybe a handful of times when someone was purposefully trying to be quirky.


Weird. Maybe it's a regional thing. I've only heard it through the midwest and the west coast.

Also, all the freaking time when I was in the US Navy.


The guy who started the project is a sailor, so that tracks.


A name that makes many of your friends smile ironically is not a name that would induce a network effect, except maybe in marginal communities ("bitards").

A name must not be even remotely silly, else it will be laughed out of the (already crowded) room.


https://www.manyver.se/ is one of the leading implementations of Scuttlebutt. They're currently working on a protocol replacement called PPPPP which addresses some of the shortcomings they identified, the leading one being storage requirements and growth.


I researched this because I was curious and I found an update from the PPPPP team on their new protocol and application:

https://www.manyver.se/blog/2024-02-05


Secure Scuttlebutt Consortium on Github: https://github.com/ssbc

ssb/ssbc is a fun and cool project built on solid code by smart people.


SSB was designed by an ocean sailor to be a social network that was infrequently synchronized and then only by local connection. The idea being, when sailors went ashore or rafted up for a gam to catch up on the scuttlebutt, they could synch their databases and have something to read on the next leg of their journey.

Blockchain tech was used to assure that messages created by others had not been altered in transit.

SSB ran into design limitations when the more recent developers tried to imitate something like Mastodon. It can work, but it's definitely idiosyncratic. It does tend to grow a large db, but space is rather cheap these days.


As an entry into what's going on currently, this blog by the Manyverse leader is useful:

https://www.manyver.se/blog/2023-05-05

He is pivoting into a new protocol which is intended to preserve the community aspect of SSB, while providing important factors, like the need to delete previous posts.


Is it actually in a usable state right now?

The last 3 times I tried to use it the ~5 projects you had to run/put together to get any higher-level usable application were always in some way incompatible with each other, as they always seem to be in a constant mode of refactoring. Figuring out a set of compatible versions looked like more like a dark ritual than anything else.


I'm not sure. The last time I tried using it, I had a similar experience.

Nobody was ever able to coalesce a coherent UX/UI around ssb, the core contributors at the time weren't interested in scaling the network without outside funding.

I was working on implementing lighting fast discovery for ssb using a distributed BitTorrent-like tracker. Getting onto the ssb network took way too long. Still, there were not many users on the network, and nobody seemed interested in growing.


Scuettlebutt is an incredibly important data structure.

Its horribly under rated and horribly under invested in.

Its core data structure is a personal blockchain whose consensus scheme is a proof of signature and a proof of history (through chained hashes). There is no global consensus, identity is fiat as it is in the real world.

This makes the data structure gossipable and verifiable.

It has scaling challenges. It needs to be turned into a blocktree to support multi-device support. The content needs to be moved out of the tree.

But most of this is solvable with very little effort.

Scuttlebutt is an overlay network for the internet that enables us to build a truly open web.

Its one step away from making humans, their devices, and their content, addressable for the web in a meaningful way.

That small data structure removes the need for a central server.

The future will remember what dtarr did on a sailboat.


At this point my decentralized social network is RSS. Just the right level of interactivity for me!


SSB is basically RSS, but with nice guarantees to prevent the RSS server from lying to you!

Take an RSS feed and do the following:

* Hash each entry in your RSS feed including the hash from the previous entry in the feed

* Sign that hash with your private key

You now have the original SSB data structure!

It has overhead. It adds 64bytes for the signature and 32bytes for the hash.

But that overhead is pretty small for most RSS feeds I've seen.


If the RSS server lies to me, then the RSS content is garbage, signed or not.


I'm not interested in many decentralized things. I have multiple chat apps from separate companies on my phone, that's my decentralization.


My favorite social network! Took quite a bit of problem solving to get in, and a shift in expectations to handle the wait times for p2p data transfer, but the high walls make for a chill community.


Have you heard the scuttlebutt? https://youtu.be/N4ovRhX8XIM?feature=shared


Related:

Secure Scuttlebutt - https://news.ycombinator.com/item?id=34480864 - Jan 2023 (82 comments)

Ask HN: Anyone got experience using Scuttlebutt? Thoughts? - https://news.ycombinator.com/item?id=29974051 - Jan 2022 (4 comments)

Scuttlebutt Protocol Guide - https://news.ycombinator.com/item?id=29672518 - Dec 2021 (35 comments)

Scuttlebutt: Decentralised, off-grid, mesh network and self-hosted social media - https://news.ycombinator.com/item?id=28612591 - Sept 2021 (3 comments)

Scuttlebutt – A decentralized secure gossip platform - https://news.ycombinator.com/item?id=25713830 - Jan 2021 (164 comments)

What Is Scuttlebutt? - https://news.ycombinator.com/item?id=22915460 - April 2020 (40 comments)

Scuttlebot: Peer-to-peer database, identity provider, and messaging system - https://news.ycombinator.com/item?id=22909984 - April 2020 (116 comments)

Planetary: a VC backed social network built on Scuttlebutt, out of stealth - https://news.ycombinator.com/item?id=22123238 - Jan 2020 (5 comments)

SSB Rooms: a new server type for Scuttlebutt - https://news.ycombinator.com/item?id=20828356 - Aug 2019 (32 comments)

Scuttlebutt, a Decentralized Alternative to Facebook - https://news.ycombinator.com/item?id=16877603 - April 2018 (342 comments)

Patchwork – Decentralized messaging and sharing app built on Secure Scuttlebutt - https://news.ycombinator.com/item?id=16273096 - Jan 2018 (64 comments)

Scuttlebutt – A decentralised secure gossip platform - https://news.ycombinator.com/item?id=15890911 - Dec 2017 (5 comments)

Extending Scuttlebutt with Annah - https://news.ycombinator.com/item?id=15502924 - Oct 2017 (1 comment)

Scuttlebot peer-to-peer log store - https://news.ycombinator.com/item?id=14409187 - May 2017 (10 comments)

An off-grid social network - https://news.ycombinator.com/item?id=14050049 - April 2017 (366 comments)


Dang.


I really don't see why decentralised social networks are any better privacy-wise than centralised. If big corp has financial incentives to gather and use your data, then smaller servers do, too. At least big corp is a legal entity that you can sue.


The original Scuttlebot protocol docs are sadly no longer accessible via a website, but we still have archive.org!

https://web.archive.org/web/20230416142631/https://scuttlebo...

Scuttlebot users encrypted messages onto their append-only log towards recipients using their ed25519 private signing key converted to an ed25519curve encryption key.

This made it possible to send private messages that you could open if you had the private signing key that the messages were directed towards.

Back in the day you could actually send messages using "Private Box" to up to 7 recipients! by appending them to your feed of course.

https://web.archive.org/web/20230322134617/https://scuttlebo...


Equity is far more important than access control.

You login to Netflix and they deliver you a video file. Millions of people have access to Netflix's video files.

But access is The Pirate Bay. Rights are Netflix.

Just because you have access to a car doesn't mean you have a right to your car.

Just because you have access to a house doesn't mean you have a right to the house.

Just because you have access to a video doesn't mean you have a right to the video.

Just because Big Corp has access to your data doesn't mean they have a right to your data.

Your data is your data. It's time we remember that and build equity back into the web.

And then we need to work back from equity to access control to enforce equity.


I recall reading somewhere that it was created by someone who lived offline and had to take a boat to get connectivity, so that's why the thing has this "sync to local device" structure. Can anyone corroborate?


> Today, Tarr lives on a sailboat—another Kiwi staple, alongside sheep and distance. Connectivity is worse on the boat than on the farm, and even less reliable. But that’s by design rather than by misfortune. Tarr started living on the boat after burning out at a previous job and discovering that the peripatetic lifestyle suited him. Unreliable and sporadic internet connectivity became an interesting engineering challenge. What if isolation and disconnection could actually be desirable conditions for a computer network?

https://www.theatlantic.com/technology/archive/2017/05/meet-...

Mr Tarr still lives on a boat!

https://www.youtube.com/@dominictarrsailing


Lesson to farcaster, scuttlebutt seems to have managed to give every user a blockchain without tying it to any monetary value.


So who build an hackernews room for fun ?


The last time I used scuttlebutt was at chaos computer camp in 2019. It was neat and peculiar.


I have to join the chorus of the awful name crowd. Scuttlebutt...


Are there are any differences at all between Scuttlebutt and Nostr?


The biggest architectural difference is Nostr has no cryptographic association between the posts.

But Nostr was launched as a response to SSB: https://fiatjaf.com/nostr.html (scroll down to 'the problem with SSB' section)


Scuttlebutt, a social network for those who don’t mind their social network being called scuttlebutt, which is not that many people.


i just want a HN social network :33


what's it worth to you on an annual basis?


I'm happier just running an Elgg instance on a cloud server and inviting the people I know to post there. 10-12 people sharing shit they found elsewhere and starting conversations is more than enough for me.


maybs explore crypto twitter (if u’d like to) 10-12 peeps sharing wud probs be like HN being exclusive “tech posts”

iykyk


- e-mail address / pfp


Rethink the name. Seriously.


Kinda too late, it's a 10 year old project. Besides, scuttlebutt is the name of the water barrel on a ship, and is synonymous with gossip. As a gossip protocol originally written by someone who lives on a ship, I think it's pretty fitting.


This matters little. The majority of potential users live on land and take water from a tap. The subtlety if the naming is lost for them. But the schoolchild-level silliness of it persists and repels.


I think I understand the weird comments about the name now: you're thinking it has something to do with "derriere". But it doesn't, because the people who came up with the name would never have thought of that. Instead they'd have called it "scuttlearse".


> "The name, Scuttlebutt, came from sea-slang for gossip. Basically, like a watercooler on a ship, where sailors and pirates go have a yarn." [0]

Personally, I respect the effort to stand out in the sea (get it?) of social platforms.

[0] https://scuttlebutt.nz/about/


Why? If someone will not use an app because it has a silly sounding name, or because they're so immature that "butt" is objectionable to them, I'm happy not to have them bring that attitude into a social space I'm part of.


That's fine, but incompatible with popularity.

All people are rather different. No matter who you are, the art of popularity is the art of attracting people who are unlike you. Just because most people are unlike you, and unlike each other. Yes, this assumes removing some nice edginess, and appearing slightly generic.


The whole design of the protocol is anathema to popularity. It's based around syncing posts with users you are in physical proximity to. I doubt the cute name is what's going to hold it back from mainstream adoption.


You're already on a social space with plenty of people who won't use it because it has a silly name


And there are many people here whom I am happy not to have to interact with anywhere else. :)


Yeah it should be something serious like The Face Book or Twitter or Tumblr or Orkut or X or something!!


Scuttlebutt in america is a very common word used to describe gossip.

I love the parallelism between 'scuttlebutt' and 'water cooler talk' .. they both describe gossip and they are both named for people standing around a source of drinking water telling stories.


I LOVE the name. What's the problem?


I love it too but I could see it hurting some adoption, unless it goes the other way. Scuttlebut is intriguing and a sticky name…


Man, I disagree.


It's ok, the project never took off. Big barrier to entry, clunky to use, being superseded by better decentralized approaches.


It's a fair comment. The name isn't great.

Fortunately scuttlebutt is the protocol, which I guess is fine.


FYI, one of the original Twitter devs (Rabble <3 ) is one of the creators.


the latest versions of the software are somewhat old




Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: