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
Pengepung
Neoclassical Speed Strategies for Guitar: https://www.amazon.co.uk/dp/1911267671/&keywords=shred%20guitar%20neoclassical?tag=wwwfundamenta-21
Advanced Object-Oriented Programming in R: Statistical Programming for Data Science
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Swirl</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.6/p5.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.6/addons/p5.dom.js"></script> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
var siz = 600; |
// https://api.mapbox.com/styles/v1/mapbox/streets-v8/static/0,0,2/600x600?access_token=pk.eyJ1IjoiY29kaW5ndHJhaW4iLCJhIjoiY2l6MDJ0Mjk5MDQ1dzJ3bzRiM29zaW16ayJ9.guiqnHMGUq196Zxa1d3UPg | |
var mapimg; | |
var zoom = 1; | |
var data; | |
var ww = 900; | |
var hh = 900; | |
var clat = 0; //37.7749; | |
var clon = 0; //-122.4194; |
import numpy as np | |
class NeuralNetwork(): | |
def __init__(self, input_layer_size): | |
self.layer_sizes = [input_layer_size] | |
self.w = [] | |
def add_layer(self, number_of_neurons): | |
neurons_in_previous_layer = self.layer_sizes[-1] | |
roll <- function(n) | |
sample(1:6, n, replace = T) | |
number_of <- function(roll, n) | |
sum(roll == n) | |
win <- function(roll1, roll2) { | |
for (n in 6:1) { | |
if (number_of(roll1, n) > number_of(roll2, n)) return(1) | |
if (number_of(roll1, n) < number_of(roll2, n)) return(2) |