Skip to content

Instantly share code, notes, and snippets.

View gemanypham's full-sized avatar

Phạm Minh Đức gemanypham

View GitHub Profile
#!/usr/bin/env node
'use strict';
var fs = require('fs');
var http = require('http');
var https = require('https');
var net = require('net');
var url = require('url');
var util = require('util');
I use the first
—– BEGIN LICENSE —–
Michael Barnes
Single User License
EA7E-821385
8A353C41 872A0D5C DF9B2950 AFF6F667
C458EA6D 8EA3C286 98D1D650 131A97AB
AA919AEC EF20E143 B361B1E7 4C8B7F04
@gemanypham
gemanypham / introrx.md
Created January 3, 2019 09:49 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
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