I hereby claim:
- I am mikispag on github.
- I am mikispag (https://keybase.io/mikispag) on keybase.
- I have a public key ASCSbBeAmEP2l_APEgKvHCZ6mbKepOtDPQUdkDcyf0GQpwo
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| from multiprocessing import Pool | |
| import scipy.stats | |
| N = int(1e10) | |
| STDDEV = 1 | |
| norm_f = scipy.stats.norm(-0.1, STDDEV) | |
| norm_m = scipy.stats.norm(0.1, STDDEV) |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "bytes" | |
| "github.com/beevik/etree" | |
| "github.com/bitfinexcom/bitfinex-api-go" | |
| "github.com/levigross/grequests" | |
| "golang.org/x/net/html" | |
| "log" | |
| "os" |
| #!/usr/bin/env python3 | |
| from collections import defaultdict | |
| from sys import argv | |
| MAX_MEMOIZATION_LENGTH = 14 | |
| def memoized(f): | |
| cache = {} | |
| def ret(*args): | |
| if args[1] > MAX_MEMOIZATION_LENGTH: |
| #!/usr/bin/env python2 | |
| import random | |
| from collections import Counter | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| from matplotlib import rcParams | |
| rcParams.update({'figure.autolayout': True}) | |
| MAX_T = 300 | |
| MIN_AGE_RELATIONSHIP = 14 |