I hereby claim:
- I am prydie on github.
- I am prydie (https://keybase.io/prydie) on keybase.
- I have a public key whose fingerprint is AA33 452A 2A90 78CF 03BF 2B00 3B54 0429 F387 DE5C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| [program:myapp] | |
| autostart = true | |
| user = myapp | |
| command = /srv/myapp/env/bin/uwsgi --ini /srv/myapp/run/uwsgi.ini | |
| directory=/srv/myapp | |
| priority = 1 | |
| redirect_stderr = true | |
| stdout_logfile = /srv/myapp/log/wsgi.log | |
| stopsignal = QUIT |
| from bitcoin import base58 | |
| from sha3 import sha3_256 | |
| def verify_address(wallet_address): | |
| """ | |
| Verifies MaxCoin addresses | |
| Args: | |
| wallet_address (str): The wallet address to be verified. |
| $(function() { | |
| // fade in images to be greyscaled to avoid visual jump | |
| $('.greyScale').fadeIn(1000); | |
| }); | |
| // user window.load to ensure images have been loaded | |
| $(window).load(function () { | |
| $('.greyScale').greyScale({ | |
| hide : true, | |
| opacity : 1 |
| #How long to double population at 1% Growth | |
| x = 6697254041 #World bank figure of human population | |
| y = 2 * x #Doubled value | |
| r = 0 #Counter | |
| while x<=y: | |
| x=x+((x/100)*1.14) | |
| r=r+1 | |
| print r |
| #!/usr/bin/env python | |
| # Python Script to work caculate the binomial distrobution of a given probability to a given accuracy | |
| # By Andrew Pryde - http://www.pryde-design.co.uk | |
| # Function for finding the factorial of a number | |
| def fact(x): | |
| return (1 if x==0 else x * fact(x-1)) | |
| # Function for n "Choose" r (nCr) | |
| def nCr(n, r): |