You are viewing a single thread.
View all comments
47 points
*

as hostile as people are to block chain due to NFT’s and bad implementations, the technology itself has its use cases. It’s a great solution for information exchange that requires verification and Immutation. This makes them perfect for ledgers or transaction networks.

It’s just there is so much bad PR regarding it everyone just discredits it. Not all of the block chain technologies are massively energy intensive per transaction, it’s just many of the cryptocurrencies use the most intensive one because it’s also arguably the most secure

permalink
report
reply
3 points

the technology itself has its use cases.

https://www.youtube.com/watch?v=15RTC22Z2xI I would love to hear the counterarguments. video is <15 mins, academic setting.

permalink
report
parent
reply
1 point

His arguments are:-

We don’t need blockchain to stop problems from happening because we have a [super efficient, cheap, accessible, well constructed] legal system to correct those problems when they occur.

We don’t need distributed ledgers to store the data because we can just trust Amazon Web services.

permalink
report
parent
reply
1 point

That’s a unique interpretation

permalink
report
parent
reply
2 points

Just responding that I did see this, The video has peaked my curiosity and I plan on watching it later when I have more free time outside of midterm’s season

permalink
report
parent
reply
-1 points

Here is an alternative Piped link(s):

https://www.piped.video/watch?v=15RTC22Z2xI

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I’m open-source; check me out at GitHub.

permalink
report
parent
reply
1 point

thats fine, but installing youtube-local and a redirector addon is probably better than relying on some bot to pick one of 10 possible alternative front ends.

permalink
report
parent
reply
8 points

This makes them perfect for ledgers or transaction networks.

It doesn’t scale well, so it generally works best for ledgers of relatively small scale. Anything that might need to go beyond that small scale will run into technical/performance issues.

permalink
report
parent
reply
19 points
*

the technology itself has its use cases.

Cool.

Name one successful example.

I mean, it’s been, what, 15 years of hype? Surely there must be a successful deployment of a commercially viable and useful blockchain that isn’t just a speculative cryptocurrency or derivative thereof, right?

Right?

permalink
report
parent
reply
3 points

I can’t find the case study, but this blockchain project by IBM was implemented in Singapore and was shown to reduce customs processing times from several weeks to just several hours.

The general idea was that with a successful blockchain implementation, the Singapore government was able to expedite parts of their customs process which normally require intensive human labor, and the use of smart contracts removed the need for having documents sent and resent when all parties had access to the smart contract directly.

There are specific use cases where it can benefit existing processes, but people just think blockchain = crypto.

permalink
report
parent
reply
4 points

I can’t find the case study, but this blockchain project by IBM was implemented in Singapore and was shown to reduce customs processing times from several weeks to just several hours.

the real question is what part of this was specific to blockchain, something that would be difficult or impossible to do without it. if you want to put forward this argument you need to at least provide a simple, clear, coherent answer to that.

in this case, i could easily argue a sqlite db hosted on gitea would work better and theres no way to prove im wrong.

permalink
report
parent
reply
6 points

First thing I found when I searched for “Maersk IBM blockchain”:

A.P. Moller - Maersk and IBM to discontinue TradeLens, a blockchain-enabled global trade platform

permalink
report
parent
reply
5 points

The only selling point of blockchain is that it’s trustless. This becomes a less-useful property when it comes to things in the real world, as you tend to need to trust at least one party.

For example, anything they achieved there with blockchain, they could have achieved with a simple government-run web service and a traditional database.

permalink
report
parent
reply
3 points
7 points

Yes, both git and blockchain tech use merkle trees. No, that doesn’t make git a blockchain

permalink
report
parent
reply
-2 points

Meh. Doesn’t solve the double spending problem.

permalink
report
parent
reply
-2 points

https://csa-iot.org/certification/distributed-compliance-ledger/

Matter Distributed Client Ledger. In use by Apple, Amazon, Google, Samsung, and many more.

Contains all the attestation information for on boarding Matter devices. Where once it was Google Home vs Apple HomeKit vs Amazon Echo / Alexa, supporting devices can now work cross ecosystem.

Since many of these companies are competitors working together. A distributed ledger makes sense to keep everyone honest and provide a level of tech supported governance.

permalink
report
parent
reply
1 point

I’m not understanding what problem this is solving.

The ESRB is a “cross-ecosystem” institution to keep games producers honest—what does this… DCL(?) actually do?

From what little I’ve read here:

https://csa-iot.org/developer-resource/white-paper-distributed-compliance-ledger/

All I can say is that this protects companies from homebrew “infractions” on their software copyright by making it difficult to install un-attested firmware updates.

I’m not even confident in that summary. What does this do?

permalink
report
parent
reply
-4 points

I mean… the original Bitcoin?

Blockchain never promised anything related to economic viability or stability. Only that it would ensure a P2P network would remain practically safe from malicious transactions by utilizing a system that rewards verification.

By that standard, every other crypto that people use happens to be a pretty successful blockchain use case.

If you want something stable and not a straight cryptocurrency then I’m pretty XRP qualifies because it also handles fiat and other commodities.

Otherwise, most DDBSs don’t use blockchain because they don’t need verification requirements relating to transactions and ownership. DHTs are way more common like IPFS.

permalink
report
parent
reply
-11 points
*
15 points

I stand corrected. One project in Italy and two proofs of concept that never went anywhere.

Truly revolutionary.

permalink
report
parent
reply
0 points
*
Deleted by creator
permalink
report
parent
reply
11 points

There is nothing Crypto can do better than regular database. Immutability is not a desirable property.

permalink
report
parent
reply
3 points

It can coordinate disjoint actors without a 3rd party.

permalink
report
parent
reply
1 point

Does it though? Because to me the fact that the largest cryptos have had several forks is proof that no, in fact, the magic of crypto can’t coordinate people. People coordinate people and then decide what to do with the technology.

permalink
report
parent
reply
-14 points

“There is nothing math can do better than math.”

permalink
report
parent
reply
2 points
Deleted by creator
permalink
report
parent
reply
6 points

Crypto != database

permalink
report
parent
reply
35 points

Absolute immutability is kind of a terrible property for a financial system though, cos it completely ignores the fact that mistakes and fraud happen and you need a way to forcefully recover funds other than “lol sucks to be you I guess”.

The one actually genuinely useful application for this kind of technology that anyone has come up with is Certificate Transparency, but crypto people don’t get excited about it cos it’s not possible to make money from it.

permalink
report
parent
reply
17 points

You can implement clawback while still having an immutable blockchain. The transaction will always stay on the blockchain, but the funds can be recovered

permalink
report
parent
reply
17 points

this is how it should be anyway, you do not want any ledger or database to be mutable because it allows for integrity violations and will cause you to lose the ability to trust it. Even non-blockchain styles follow that principle.

permalink
report
parent
reply
15 points

You can revert transactions with immutable storage. For example git can do revert-commits.

permalink
report
parent
reply
13 points

Reverts work because users have equal write access to all the data. You can mess things up in the codebase, and even if you die of a heart attack 10m later, my revert is just as valid as your commit.

It’s not really the same when every user has “sovereignty” over their address in the ledger. A bad actor has to consent to pushing a revert transaction onto the chain, or they have to consent to using a blockchain system where 3rd-party reversion is possible (which exists on some systems, but also defeats the concept of true sovereignty over your address).

permalink
report
parent
reply
4 points

So, would the bitcoin equivalent be sending the BTC back?

permalink
report
parent
reply
10 points

Monero actually has very good uses. It does use POW but their algorithm is made to encourage using CPUs instead of GPUs and slower, power efficient devices, which makes it a lot less energy intensive than other POW cryptocurrencies.

permalink
report
parent
reply
-13 points

It’s only use is illegal commerce. It’s the only one thar actually has a purpose, and it’s to help criminals.

permalink
report
parent
reply
3 points

Privacy is a crime? I pay for several online services with XMR (or BTC swapped from XMR): Jmp.chat (mobile service), EteSync (E2EE contact sync), Proton Mail, Mullvad VPN, Usenet (might have an argument there).

Why can’t I access Google’s individual transactions but they should have access to mine?

permalink
report
parent
reply
6 points

That’s kind of epic, though, I’m pretty sure HRT is cheaper on the black market instead of going through your medical provider, and I need steroids in bulk so I can hulk out and become jacked.

permalink
report
parent
reply
9 points

I find the actual technology very interesting. At one point I wanted to create a distributed research journal, and I spent some time trying to develop a trustless, immutable ledger that didn’t have the high overhead that most blockchains have for proof of work. It was extremely cool, but nobody gives a shit unless it has coins lol

I look forward to 20 years from now when it gets resurrected and used for interesting things that don’t involve cryptocurrency.

permalink
report
parent
reply
3 points

I remember reading a few years ago that the US postal service was looking into using it for voting. I haven’t seen anything about it since, but it did peak my interest. I’d love to see it used for research if possible, too, but then I can barely understand these decentralized social media platforms so my opinion isn’t worth much with tech

permalink
report
parent
reply
4 points

That, to me, seems like an ideal use case. My only reservation is that I think it would be bungled in implementation, then pushed without enough testing and validation, then hacked due to the bungled implementation, and then rejected forever because it was hacked once lol

permalink
report
parent
reply

Lemmy Shitpost

!lemmyshitpost@lemmy.world

Create post

Welcome to Lemmy Shitpost. Here you can shitpost to your hearts content.

Anything and everything goes. Memes, Jokes, Vents and Banter. Though we still have to comply with lemmy.world instance rules. So behave!


Rules:

1. Be Respectful

Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.

Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.


2. No Illegal Content

Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.

That means:

-No promoting violence/threats against any individuals

-No CSA content or Revenge Porn

-No sharing private/personal information (Doxxing)


3. No Spam

Posting the same post, no matter the intent is against the rules.

-If you have posted content, please refrain from re-posting said content within this community.

-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.

-No posting Scams/Advertisements/Phishing Links/IP Grabbers

-No Bots, Bots will be banned from the community.


4. No Porn/Explicit

Content


-Do not post explicit content. Lemmy.World is not the instance for NSFW content.

-Do not post Gore or Shock Content.


5. No Enciting Harassment,

Brigading, Doxxing or Witch Hunts


-Do not Brigade other Communities

-No calls to action against other communities/users within Lemmy or outside of Lemmy.

-No Witch Hunts against users/communities.

-No content that harasses members within or outside of the community.


6. NSFW should be behind NSFW tags.

-Content that is NSFW should be behind NSFW tags.

-Content that might be distressing should be kept behind NSFW tags.

If you see content that is a breach of the rules, please flag and report the comment and a moderator will take action where they can.


Also check out:

Partnered Communities:

1.Memes

2.Lemmy Review

3.Mildly Infuriating

4.Lemmy Be Wholesome

5.No Stupid Questions

6.You Should Know

7.Comedy Heaven

8.Credible Defense

9.Ten Forward

10.LinuxMemes (Linux themed memes)


Reach out to

All communities included on the sidebar are to be made in compliance with the instance rules. Striker

Community stats

  • 14K

    Monthly active users

  • 10K

    Posts

  • 234K

    Comments