Learn Blockchains by Building One
<p>You’re here because, like me, you’re psyched about the rise of Cryptocurrencies. And you want to know how Blockchains work—the fundamental technology behind them.</p>
<p>But understanding Blockchains isn’t easy—or at least wasn’t for me. I trudged through dense videos, followed porous tutorials, and dealt with the amplified frustration of too few examples.</p>
<p>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.</p>
<h1>Before you get started…</h1>
<p>Remember that a blockchain is an <em>immutable, sequential </em>chain of records called Blocks. They can contain transactions, files or any data you like, really. But the important thing is that they’re <em>chained</em> together using <em>hashes</em>.</p>
<p>If you aren’t sure what a hash is, <a href="https://learncryptography.com/hash-functions/what-are-hash-functions" rel="noopener ugc nofollow" target="_blank">here’s an explanation</a>.</p>
<p><strong><em>Who is this guide aimed at?</em></strong> You should be comfy reading and writing some basic Python, as well as have some understanding of how HTTP requests work, since we’ll be talking to our Blockchain over HTTP.</p>
<p><a href="https://medium.com/@vanflymen/learn-blockchains-by-building-one-117428612f46"><strong>Website</strong></a></p>