Skip to content

Instantly share code, notes, and snippets.

@eeeady
eeeady / updateRepos.py
Created November 5, 2020 23:06
Update ALL THE REPOS
import yaml
import os
import requests
import tempfile
import subprocess
from github import Github
g = Github(os.environ["GITHUB_TOKEN"])
### 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:
@eeeady
eeeady / problem1.py
Created March 21, 2014 20:59
Project Euler Practice - Problem 1 (python)
#!/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 = []