From the Coursera Specialization
Paper: Bitcoin Whitepaper
Paper: Bitcoin's Academic Pedigree
Website: What is Blockchain Technology? A Step-by-Step Guide For Beginners
Website: Blockchain: The Invisible Technology That's Changing the World
From the Coursera Specialization
Paper: Bitcoin Whitepaper
Paper: Bitcoin's Academic Pedigree
Website: What is Blockchain Technology? A Step-by-Step Guide For Beginners
Website: Blockchain: The Invisible Technology That's Changing the World
| import hashlib as hasher | |
| import datetime as date | |
| # Define what a Snakecoin block is | |
| class Block: | |
| def __init__(self, index, timestamp, data, previous_hash): | |
| self.index = index | |
| self.timestamp = timestamp | |
| self.data = data | |
| self.previous_hash = previous_hash |
| doInstall <- TRUE | |
| toInstall <- c("maps", "ggplot2") | |
| if(doInstall){install.packages(toInstall, repos = "http://cran.us.r-project.org")} | |
| lapply(toInstall, library, character.only = TRUE) | |
| library(ggplot2) | |
| library(maps) | |
| Prison <- read.csv("http://www.oberlin.edu/faculty/cdesante/assets/downloads/prison.csv") | |
| head(Prison) |