1363
Please Stop (jlai.lu)
you are viewing a single comment's thread
view the rest of the comments
[-] saigot@lemmy.ca 37 points 1 year ago* (last edited 1 year ago)

Blockchain is a nebulous buzzword with a vague meaning. But I have yet to see a sensible definition of a blockchain that doesn't include git. At the end of the day they are both just Merkle trees.

Git is pretty useful imo.

[-] ElCanut@jlai.lu 26 points 1 year ago

Well yes but can you pump and dump git commits ?

[-] jaemo@sh.itjust.works 9 points 1 year ago

Only non-fungible commits.

[-] Knock_Knock_Lemmy_In@lemmy.world 16 points 1 year ago

Blockchain is pretty well defined.

Git doesn't have update rules that are only valid if signed by a particular private key.

[-] saigot@lemmy.ca 7 points 1 year ago* (last edited 1 year ago)

Please share a source! I can't find anything as robust as a whitepaper (the bitcoin whitepaper doesn't use the term).

NIST informally defines it as:

A distributed digital ledger of cryptographically-signed transactions that are grouped into blocks. Each block is cryptographically linked to the previous one (making it tamper evident) after validation and undergoing a consensus decision. As new blocks are added, older blocks become more difficult to modify (creating tamper resistance). New blocks are replicated across copies of the ledger within the network, and any conflicts are resolved automatically using established rules.

Which git certainly meets this.

IBM informally defines it as:

Blockchain is a shared, immutable ledger that facilitates the process of recording transactions and tracking assets in a business network. An asset can be tangible (a house, car, cash, land) or intangible (intellectual property, patents, copyrights, branding).

Which git meets.

[-] Knock_Knock_Lemmy_In@lemmy.world 11 points 1 year ago* (last edited 1 year ago)

Git is hash linked, not cryptographicly linked. Only cryptographicly valid changes are allowed to blockchain state. All data can be modified in git.

Yes. IBMs definition is bad and could equally apply to git. They've totally forgotten about the private key aspect.

I'll see if I can source a better definition online, but make no promises.

Edit: https://aws.amazon.com/what-is/blockchain/ the last line is not applicable to Git

[-] saigot@lemmy.ca 6 points 1 year ago* (last edited 1 year ago)

Oh a 3rd definition, that definitely hurts the case that blockchain is vague ill defined term. If it were a well-defined term, there would be whitepapers defining it like merkle trees or bitcoin. Blockchain is just a marketing term defined by businesses, not scientists or engineers and thus is vague and variable.

I also don't think your definition is a very good definition. Do you think git fundamentally changes when it moves from sha1 to sha256? Or are you referring to the fact that the payloads of cryptocurrency's blockchain is required to be signed (just like you can optionally require git commits to be signed)? I don't think that's fundamental to blockchain either.

Only cryptographicly valid changes are allowed to blockchain state. All data can be modified in git.

No. You can't modify the chain in git. Each commit is an immutable snapshot of the repository. To change history you have to create a new hash and then broadcast that to everyone that they should stop using the old one. Depending in how your network is setup you may onky have to convince a centralized server, or you might have to convince 51% of the actors on your network or you may just choose to only form a network that agrees with you. You could alter bitcoin's blockchain too, but you'd need 51% of the network to agree with you.

[-] Knock_Knock_Lemmy_In@lemmy.world 5 points 1 year ago* (last edited 1 year ago)

Oh a 3rd definition, that definitely hurts the case that blockchain is vague ill defined term.

The phrases used to describe the technology to the public may change, but the technolgical approach doesn't

If it were a well-defined term, there would be whitepapers defining it like merkle trees or bitcoin.

There are hundreds of blockchain whitepapers, all of which link blocks of data via hash functions and only accept state changes if they are valid and cryptographicaly signed.

Blockchain is just a marketing term defined by businesses, not scientists or engineers and thus is vague and variable.

If we were discussing web3 or Metaverse then you may have a point. But no-one in tech is confused about what blockchain is anymore.

Do you think git fundamentally changes when it moves from sha1 to sha256?

No.

Or are you referring to the fact that the payloads of cryptocurrency's blockchain is required to be signed

Yes. Exactly this.

(just like you can optionally require git commits to be signed)?

Optionally is the key word. Blockchain transactions must be signed, and they must be accepted as following the blockchain rules by validators.

I don't think that's fundamental to blockchain either.

Find me a blockchain that doesn't require signed transactions to make state changes.

No. You can't modify the chain in git.

I didn't say anything about modify the chain.

Each commit is an immutable snapshot of the repository.

A commit can contain any data it likes. A commit to a blockchain is highly restricted. Only cryptographicly valid rule following changes are allowed to blockchain state.

[-] cmhe@lemmy.world 2 points 1 year ago* (last edited 1 year ago)

Optionally is the key word. Blockchain transactions must be signed, and they must be accepted as following the blockchain rules by validators.

But this is just a policy decision, not a property of the technology. You can easily implement a script that checks if every commit from remotes are signed, accepts them if they are and drops them if they aren't or the signature is invalid.

If you contribute to a project where the majority require signed commits, then you need to sign commits in order for your change to be integrated into the consensus.

That has nothing to do with the technology itself, just with the application.

So if you state that signatures are required to be a blockchain, then you can use git to create a blockchain, by just having that policy.

(IMO I wouldn't say that signatures are required, just that blockchains usually have them.)

You can easily implement a script that checks if every commit from remotes are signed, accepts them if they are and drops them if they aren't or the signature is invalid.

Now add some logic to check whether the actual data is valid (i.e. bob has enough coins in his account to send to Charlie).

Make some incentive to ensure only the main branch survives and forks are either eliminated or merged.

Automate

Now git replicates blockchain's functionality.

So if you state that signatures are required to be a blockchain, then you can use git to create a blockchain, by just having that policy.

Yes, but add automatically processing the content of the commit for validity and incentives to reduce the number of forks.

(IMO I wouldn't say that signatures are required, just that blockchains usually have them.)

Without public key cryptography you just have a hash linked list (like Git).

[-] uis@lemm.ee 1 points 1 year ago

Hash is cryptographic function.

A hash function doesn't check if a signature is valid. Neither does git. Blockchain does check.

[-] uis@lemm.ee 1 points 1 year ago
[-] uis@lemm.ee 1 points 1 year ago

Again, find the difference. Each block(commit object) has its content(blobs and trees) and metadata like parent blocks(commit objects), time(and message). So one commit corresponds only to one history.

But git can branch in multiple forks and states of the database. Blockchain has mechanisms to ensure there is convergence to one state.

[-] uis@lemm.ee 1 points 1 year ago* (last edited 1 year ago)

Still haven't found it. You suddenly started talking about consensus protocol. Bitcoin blockchain branches too, but consensus protocol sets last block(HEAD in git) to block with longest history.

Ive not suddenly started talking about consensus protocols. Yes, selecting the next (not necessarily longest) block is part of that consensus, but so is checking that the data contained in a block is cryptographicly sound and is following the rules of that specific blockchain. That second part is not native to GIT.

If you like, you can think of blockchain as a subset of GIT that includes additional constraints.

[-] dev_null@lemmy.ml 1 points 1 year ago* (last edited 1 year ago)

How does it "certainly meet it"? There is no consensus mechanism in git, new blocks are not replicated across the network, there is no network at all, git works offline. You can replicate changes with remotes but there is no "git network" in any similar sense. And conflicts are definitely not resolved automatically. And the git hashes are certainly not cryptographic.

That's 4 ways it doesn't meet the definition. You could maybe stretch the meaning of a network to make it 3.

[-] HiddenLayer5@lemmy.ml 2 points 1 year ago* (last edited 1 year ago)

While blockchain is well defined, it in itself is not a product but a technology. I think what the other commenter is getting at is that simply saying something "is blockchain" means very little because what the blockchain does depends on the implementation, so when used in marketing it's just a nebulous buzzword in that it doesn't actually give you much information about what the product is. Same with terms like cloud, AI, virtual reality, etc.

Yes. There were a lot of companies selling "blockchain base" solutions where blockchain wasn't really needed in the solution at all.

Then it was Metaverse based solutions. (I would argue VR is well defined)

Now it's AI solutions.

But I think "cloud" is now post that marketing phase, and blockchain is heading that way.

[-] kuberoot@discuss.tchncs.de 6 points 1 year ago

Git might not count because you can have branches that then merge? But yeah, git is useful, it's decentralized and distributed, it could be used P2P...

[-] uis@lemm.ee 1 points 1 year ago

Git might not count because you can have branches that then merge?

AKA referencing to two past states.

[-] UraniumBlazer@lemm.ee 4 points 1 year ago

Who decides to commit changes though? A human. A human who can be corrupt.

The best use case for blockchains in my opinion is elections. The dude who owns the election server won't be able to manipulate results in any way.

While manipulating results isn't impossible in case of a blockchain, it is still very very difficult.

[-] saigot@lemmy.ca 12 points 1 year ago

Who decides to commit changes though? A human. A human who can be corrupt

I'm not entirely sure what your getting at here, but git can be run as democratically as a crypto currency where the canonical version of the project is the one with the longest chain. Seems like a bad idea to me though. I think you may be assuming the way most people rely on github/gitlab etc as an inherent part of the system, when it's really just the most convenient way of doing things.

The best use case for blockchains in my opinion is elections.

I'll believe it when I see a real implementation. I think the problem is anonymity, I don't see how we can set a system up such that the results are auditable but also impossible for anyone to tie a specific vote to a specific person.

[-] UraniumBlazer@lemm.ee 3 points 1 year ago* (last edited 1 year ago)

I'm not entirely sure what your getting at here, but git can be run as democratically as a crypto currency where the canonical version of the project is the one with the longest chain.

Which means elections. Which means a dude/committee in charge of a server. See the problem?

I'll believe it when I see a real implementation. I think the problem is anonymity, I don't see how we can set a system up such that the results are auditable but also impossible for anyone to tie a specific vote to a specific person.

This is a very very interesting topic that I've spent a rlly long time thinking about. I wish I had more energy to go in depth for this. The gist is this:

There will be a tradeoff between anonymity and "vote buying".

You can have absolute anonymity by implementing a monero like blockchain. Each registered voter address gets one token. The thing that you can cast a vote for is also an address. The voter sends this token to an unknown address (that theoretically belongs to the voter themselves). Then, the voter votes from this address. This way, absolute anonymity is maintained as noone knows who sent the token to the address in the middle. BUT. I could buy votes like this too. I could bribe a voter to send their token to the middle address, which I control.

To prevent voter buying, you can have an open blockchain where all transactions are visible to everyone. However, you get pseudo anonymity here. Every registered voter address gets one token like above. No one except for the election commission knows which address belongs to whom. So while the election commission cannot manipulate votes, it can leak who voted for whom.

Now that being said, normal elections aren't as theoretically anonymous as well. For ballots, your name is on the envelope. A compromised election commission could leak this info as well. For EVMs, one line of code could leak who you are. The person granting you entry can note down your information. The EVM can ping this person as to which vote was cast while you were in there.

Hence, in my opinion, the second option of the open blockchain is the best one provided that the election commission is under strict regulation (which it generally is in any case).

[-] saigot@lemmy.ca 1 points 1 year ago* (last edited 1 year ago)

Which means elections. Which means a dude/committee in charge of a server. See the problem?

No you don't need a centralized server or a committee.

[-] UraniumBlazer@lemm.ee 1 points 1 year ago

So who conducts elections then?

[-] saigot@lemmy.ca 1 points 1 year ago

I don't know what you are talking about.

[-] UraniumBlazer@lemm.ee 2 points 1 year ago

You said you could democratically manage git, hence bypassing blockchains. Democracy means elections (unless you mean some exotic form of democracy like Athenian democracy). But elections need to be conducted.

I said you would need a central authority (like an election commission) to conduct elections. You said that there was no need for that. So I asked for your method of conducting elections.

[-] faintbeep@lemm.ee 9 points 1 year ago

The dude who owns the election server won’t be able to manipulate results in any way.

Sure he will. He can just ignore votes for one candidate and not add them to the chain. Blockchains are only resistant to manipulation if they're distributed and people agree on the canonical version. Even then if enough people agree to manipulate them they can, like they did with Ethereum.

[-] UraniumBlazer@lemm.ee 1 points 1 year ago

The integrity of blockchains isn't immune from malicious activity. It is just way way harder to be manipulated. No blockchain means 1 server needs to be manipulated. Blockchain means more than 1 servers need to be manipulated.

[-] jaemo@sh.itjust.works 2 points 1 year ago

You actually make a better case for replacing politicians with benevolent AI than for replacing ballots with transactions on a blockchain.

[-] UraniumBlazer@lemm.ee 2 points 1 year ago

How so? AI is not smarter than people.

Even when it becomes smarter than humans in the future, I would still oppose this idea. We humans have seemingly benevolent leaders who become malevolent. At least we can replace them as they are around as smart as us. A malevolent creature that is waaay smarter than us that rules over us? No thanks.

this post was submitted on 09 Mar 2024
1363 points (100.0% liked)

Lemmy Shitpost

33607 readers
2854 users here now

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/ExplicitContent


-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

founded 2 years ago
MODERATORS