
What's up!? 🤙 We're two developers who love to share their knowledge! You will find here awesome stuff about programming and tech stuff. Feel free to contact us if you got any questions!
Check out our website https://codingbrah.com
Search for a command to run...

What's up!? 🤙 We're two developers who love to share their knowledge! You will find here awesome stuff about programming and tech stuff. Feel free to contact us if you got any questions!
Check out our website https://codingbrah.com
No comments yet. Be the first to comment.
Which to use and when? 🧐

What is a Service Worker? 🤔 Service Worker is just a fancy Web Worker. The difference is, it’s actually placed between your application and the third party services. You can consider it as a kind of middleware function that can parse all requests an...

What's up, everyone!? 🤙 Recently, I'm not that active here, but this is due to a lot of work that I have 🤓 I'm working on a couple of projects on which I will share more in near future (one of the projects is a game build with React Native - siiiic...

5 Tips On How To Improve Accessibility On Your Website What's up, everyone!? 🤙 I haven't posted for a while, but... I'm back! 🤟 Today I'm going to give you 5 tips on how to easily improve accessibility on your website! 🤓 #1 Use semantic HTML tags ...

Hi, how is it going? 🤙
Today we're going to explore the topic of blockchain. If you're interested in cryptocurrencies you've probably heard of the word Blockchain, but what is it? Let me explain it to you in a nutshell. 🤓
Blockchain is a distributed database/state machine. This means that each network user holds a copy of this database locally - meaning the database is on more than one device. This database consists of records arranged in chronological order. This list consists of multiple data blocks, each block is linked to the previous and next block. The blocks document the time and order of transactions and they are linked in a way that makes it impossible to change the data or insert a new block between existing ones.

Anyone can join public networks such as Bitcoin or Ethereum and become part of them. This network is based on peer-to-peer (P2P). It connects users, transfers transactions ( which will be discussed later in the article ), and blocks of verified transactions. The network is always based on the standardized Gossip protocol.
All blocks are secured by cryptographic evidence (e.g.: signatures) and blockchain data synchronization security is ensured by consensus algorithms such as Proof of Work (e.g.: ethash). Many people believe that Blockchain is safer than banks because there is no central actor to control your money.

The blocks hold the transactions that make up the current state of the entire blockchain. What are transactions? They have verified changes in the state of the main state machine/database ( ie: the main ETH blockchain, for example). The transactions that are in the blockchain are verified by other users of the blockchain network.
Blockchain usually also has a reward system implemented based on providing its computing power for computations so-called: mining.
And that in a nutshell is blockchain, in the next posts of the #IntroToCrypto series on the #codingbrah blog we will go much deeper into this topic.
Farewell 👋
Bonus: A very good demo on how blockchain works can be found here → https://andersbrownworth.com/blockchain/blockchain
~ Kacper