Bitcoin Forum

Bitcoin => Bitcoin Discussion => Topic started by: Haalo on September 04, 2018, 05:25:59 PM



Title: Learn Blockchains by Building One - Quick Guide
Post by: Haalo on September 04, 2018, 05:25:59 PM
The fastest way to learn how Blockchains work is to build one. Here´s a nice quick guide to build a blockchain and through that understand the fundamental technology behind it.

https://hackernoon.com/learn-blockchains-by-building-one-117428612f46

Just make sure that Python 3.6+, Flask and a HTTP Client is installed.


Title: Re: Learn Blockchains by Building One - Quick Guide
Post by: YuginKadoya on September 04, 2018, 05:41:30 PM
Well to simply understand something is to build it yourself, I really think this will make you understand more the concept on learning something is to get a hang on that something and learning to make one, But I guess there is probably someone that will sure understand it by simply looking at the codes alone, It can surely be understandable but many sure needs a hang of it by experiencing it, And about the saying goes experience is naturally a good teacher for everyone, But really I got your point over it.


Title: Re: Learn Blockchains by Building One - Quick Guide
Post by: Haalo on September 05, 2018, 06:27:15 AM
Yeah exactly, it seems to be a good guide for starters to get into. Or has anyone seen any anything similar to help approach this topic?


Title: Re: Learn Blockchains by Building One - Quick Guide
Post by: pat4cryptoreal on September 05, 2018, 06:41:37 AM
This sounds easy and simple to people that are programmers and developers already. To someone like me it will take time for me to learn and I learn faster with physical teacher than online.


Title: Re: Learn Blockchains by Building One - Quick Guide
Post by: Haalo on September 05, 2018, 09:37:45 AM
If you have a physical teacher even better  ;) It still is not dead easy, but at least worth an attempt for "normal" people..  ::)


Title: Re: Learn Blockchains by Building One - Quick Guide
Post by: HidenJonathan on December 04, 2018, 02:14:41 AM
I like learning by doing. It forces me to deal with the subject matter at a code level, which gets it sticking. If you do the same, at the end of this guide you’ll have a functioning Blockchain with a solid grasp of how they work.


Title: Re: Learn Blockchains by Building One - Quick Guide
Post by: franky1 on December 04, 2018, 03:30:26 AM
for a simple explanation without having to code

a block chain is a block of data and identifier made of up hashing the block data to make it unique (in any format/function/way you please) the block also contains a unique identifier of the previous block thus chaining blocks together. whereby altering a bit of data alters the identifiers thus alters all the blocks built after it. making it easy to spot alterations and reject them if they dont fit the rule

there you go. nice and simple.