view the rest of the comments
Ask Lemmy
A Fediverse community for open-ended, thought provoking questions
Rules: (interactive)
1) Be nice and; have fun
Doxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them
2) All posts must end with a '?'
This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?
3) No spam
Please do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.
4) NSFW is okay, within reason
Just remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com.
NSFW comments should be restricted to posts tagged [NSFW].
5) This is not a support community.
It is not a place for 'how do I?', type questions.
If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.
6) No US Politics.
Please don't post about current US Politics. If you need to do this, try !politicaldiscussion@lemmy.world or !askusa@discuss.online
Reminder: The terms of service apply here too.
Partnered Communities:
Logo design credit goes to: tubbadu
"Blockchain" as commonly meant as used in cryptocurrencies - no. Only for Bitcoin - all other *coins are scams.
However git can be considered to be based on blockchain so in that sense, absolutely.
That’s really stretching the definition of blockchain.
Blockchain is about providing consensus without relying on a central authority. If there are two variants of the same blockchain, anyone should be able to independently verify which one is the real one. Git doesn’t do this.
No a blockchain is a chain of blocks. Its an append only datastructure that provides a cryptographically verifiable history. Proof-of-work is what allows for public concensus in crypto currencies like bitcoin, where as git uses signed blocks to identify different chains.
Git doesn’t sign commits, at least not cryptographically. I can download the Linux git repo and add whatever commits I like to it. I can even create my own commits under Torvalds’ name and email if I’d like, or rewrite all his commits under my own name.
It’s highly unlikely I can fool anyone it’s the real deal though. They will just download the kernel from the official repo instead.
Yeah, it does...
If you barely know shit about git why wouldnt you at least try googleing before posting??
It’s a bonus feature used by almost no one. I’ve never encountered a git repo which signs its commits.
The linux kernel, which git was created for, uses signed commits...
That's one definition of blockchain. Since the solution to the Byzantine Generals' problem in Bitcoin is done by Proof of Work it can't be said to be a part of the blockchain definition since there are many (most?) blockchains that don't use PoW. Some companies peddling "blockchain solutions" even use central authorities.
So, with "blockchain" just being a chain of cryptographically verified blocks then git indeed fulfills that definition.
How would that work?
I think parent is referring to Merkle trees.