Hacker News new | ask | show | jobs
by cooperx 662 days ago
Its the same as all the "we are a blockchain company" startups that popped up looking for a problem to solve with their tech rather than the right way round.

However, a lot of those got a bunch of investment or made some decent money in the short term. Very few are still around. We will see the same pattern here.

1 comments

I had already forgotten about the blockchain
git still works pretty well, I just wouldn't try to use it as a bank account.
Well, Git's also not a blockchain at least in the way commonly meant by the term. But yeah, it'd be a pretty bad bank account (and an even worse way of doing money transfers.)
Git is by the literal definition a blockchain.
Seems a bit of a stretch. Git is not linear, and there’s no consensus mechanisms
git is linear, if multiple users have a different main branch history you have a problem.

Pull requests in github is actually very similar conceptually to a consensus mechanism used in crypto currencies. Everyone has an identical copy of the main branch with an identical history of every commit in order, a PR is saying "I think this commit goes next" and, if you use code reviews, the PR approval is consensus.

No idea why this got down voted.

git is very much a blockchain

- sequential list of changes to a data source (commits)

- single, shared history of changes (main branch)

- users creating potential next change(s) to be added to the history (side branches and forks)

- consensus mechanism for new change blocks (merge requests and code reviews or approvals)

What's missing?

Receiving a coin / token everytime someone gets their branch merged? This is a joke btw, please don't make a gitcoin YC....
git blockchains are famous for being easy to fork (-;
You can fork a blockchain by building a ecosystem with a different consensus.
Any blockchain is easy to fork, just have a fully copy of the chain and make a new block.