This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mQINBFxESu8BEACzcjsPMDtkTWhBFHnBZ0Q1Vsm2367HPOyEj9RQIh+aZ8E9xnFV | |
qK1tIKT4yT/UpCIgbFcifGdnVbiJV386ZRigPA7/MaT2cDPKrxifd84qszgzbeq/ | |
yUbe/ELzOkuJ57iDomPzb5bASbdLC+p3hUig5ToPlrAbMrcOgz0mViYap4SGfHn8 | |
/Z2WjymyZdtC14I3maSqfvhPJyz9YfeyxDlBHj1lMbEIv00F2FcxWBwJv9mweV+F | |
jkGjITmlkcfwvL3nDNt/BRruvrxTiEd+DPORzg8ejOdKNBGpdBUhyPum3SGIAlA3 | |
wMuJ2EmqNlQ/4PKhcoXQUYW70ggsSjCnONt4jXMN/x+carAs3kqlvuQzE07+Vit8 | |
urNkB6HTaWJ5SH4MX8aEgTTm3Uc5mIsO2vikL8n0u9cla3c7HlnXHtQUGgp5Enwj | |
lfP5zkrM/qNDQNkC7m4cD58cQ3StIH2veH+AIgWv/9s1o8XhDF6E3T1ct10E/xg+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mQINBFuvYv4BEADAEcNatFHlsSbEwa4lyjbcwSRne/XzWYQz+NmebXmqMLmfX8U5 | |
BTkk9PXEsx+UqsP1nW3Pv3aHfFKGKzYtnhD0kBFRYH94srHkKEGcWuiqBXxpJJSL | |
n+MVTn0kPcQOYi/xcXRICMY0Pk42foHcZwi/3pW2T9G2mvpgF2N0VblzeZ9jTn+v | |
sGslDOjnRvUqaDODS6LEGRxdqnOm4yNfGDGgWQF2+9mtJ0NLtWAUHH+xFiZQ3BzE | |
XkQMrYkplH2TgLs60b/ulb22JsS9nKRRhibJfJfSM21Oj6ejkMyWCmLs+2x011sL | |
h0uQTWk6eL3QXB076zQ9wCAdQkR7poa0lqU4FEfOZ5QVYXE6puODvfedOj5uIJ/q | |
gPX8MThLC2oSqzHFUw1X6a4hAMqEO8MREnK028Ck4r/LIXMwwTrv5XnEABx1rgqb | |
nne3ebG2AgKW73+tvRs55D7079jd49/F+c7YadHCQKgaauqw+/Pb4YbubLPu3nZk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
class BullsAndCows: | |
def __init__(self): | |
self.NUMOFDIGITS = 4 | |
def play(self): | |
print( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
upstream notebook { | |
server localhost:8888; | |
} | |
server{ | |
listen 80; | |
location / { | |
proxy_pass http://notebook; | |
proxy_set_header Host $host; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// gcc -Wall -g birthday.c -o birthday -lm | |
#include <math.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
int main(int argc, char **argv){ | |
double no_match = 1; | |
double matches_me; | |
double odds = 364./365; |