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 yaml | |
import os | |
import requests | |
import tempfile | |
import subprocess | |
from github import Github | |
g = Github(os.environ["GITHUB_TOKEN"]) |
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
### Keybase proof | |
I hereby claim: | |
* I am eeeady on github. | |
* I am eeeady (https://keybase.io/eeeady) on keybase. | |
* I have a public key ASAOG_UUoV-byLXZM7KHJ4-aQaoe_95gh0Bds9RN-7gtfgo | |
To claim this, I am signing this object: |
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
#!/usr/bin/python | |
# project euler problem 1 | |
#all the natural numbers below 10 are multiples of 3 or 5 | |
# 3,5,6,9 their sum is 23 | |
# find the sum of all the multiples of 3 or 5 below 1000 | |
limit = 1000 | |
def main(): | |
summandr = [] |