I hereby claim:
- I am KevinGoldsmith on github.
- I am kevingoldsmith (https://keybase.io/kevingoldsmith) on keybase.
- I have a public key whose fingerprint is 10B9 D0EA 3AE6 420E B2D0 F4C3 BC53 7024 0523 993A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import argparse | |
| import xml.etree.ElementTree as ET | |
| from bs4 import BeautifulSoup | |
| import urllib.request | |
| from urllib.parse import urlparse | |
| import os | |
| import re | |
| def get_downloads_from_img(img): | |
| return_list = [] |
| # https://en.wikipedia.org/wiki/Collatz_conjecture | |
| proven = {1} | |
| top_bound = 1000 | |
| for n in range(1, top_bound): | |
| current = n | |
| while current not in proven: | |
| if (current % 2) == 0: | |
| current = int(current / 2) |