this post was submitted on 16 Jun 2025
21 points (86.2% liked)

Showerthoughts

35713 readers
1246 users here now

A "Showerthought" is a simple term used to describe the thoughts that pop into your head while you're doing everyday things like taking a shower, driving, or just daydreaming. The most popular seem to be lighthearted clever little truths, hidden in daily life.

Here are some examples to inspire your own showerthoughts:

Rules

  1. All posts must be showerthoughts
  2. The entire showerthought must be in the title
  3. No politics
    • If your topic is in a grey area, please phrase it to emphasize the fascinating aspects, not the dramatic aspects. You can do this by avoiding overly politicized terms such as "capitalism" and "communism". If you must make comparisons, you can say something is different without saying something is better/worse.
    • A good place for politics is c/politicaldiscussion
  4. Posts must be original/unique
  5. Adhere to Lemmy's Code of Conduct and the TOS

If you made it this far, showerthoughts is accepting new mods. This community is generally tame so its not a lot of work, but having a few more mods would help reports get addressed a little sooner.

Whats it like to be a mod? Reports just show up as messages in your Lemmy inbox, and if a different mod has already addressed the report, the message goes away and you never worry about it.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 11 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

What even is Web 3.0? I hear it thrown about a lot and something about blockchain which is good for storing cryptocurrencies and nfts and not much else. Maybe a blockchain could be used to decentralise DNS? Or maybe not. Don't even know if we'd explicitly need that (although having a more tangible ownership of domain names would be cool)

How do you store and update an HTML page on a Blockchain? And if you could, why? Would it even be efficient causing everyone to update a ledger when you fix a typo?

It sounds like the type of thing made up by LinkedIn lunatics who have no idea what they're talking about

Googled it:

1000077794

Isn't that just the indieweb and fedi movement? Just get a raspberry pi, plug it into your router and spin up a wordpress instance. Or another fediverse solution to your liking.

[–] [email protected] 4 points 2 weeks ago (1 children)

The point about decentralization is absolutely the fediverse, however my shower thought is basically the second point, where the hyped technology known as blockchain really is only something old called linked lists, which basically is an object holding a reference to the next object in a chain (linked list) or a reference to the previous and next objects in the chain (double linked list). This is essentially how webrings worked.

[–] [email protected] 7 points 2 weeks ago

It's a little more than a linked list; it also has a cryptographically verifiable hash of the block contents, based on the hash of the previous block. That's what makes it a verifiable ledger.

One of the main reasons to use linked lists is O(1) insertions and deletions; the point of a blockchain is to foil such insertions and deletions.