I hereby claim:
- I am tedmiston on github.
- I am tedmiston (https://keybase.io/tedmiston) on keybase.
- I have a public key ASDcS_0ErBLjbjPfvkCIwRXWIuHJaUCvFhvs1JZ7qltKzAo
To claim this, I am signing this object:
import random | |
import urllib.request | |
WORD_LENGTH = 5 | |
MAX_GUESSES = 5 | |
WORD_LIST = 'https://raw.githubusercontent.com/tabatkins/wordle-list/main/words' | |
FORFEIT = 'forfeit' | |
response = urllib.request.urlopen(WORD_LIST) | |
content = response.read().decode('utf-8') |
""" | |
Fetch GitHub's MIT license template, populating this year and your name. | |
""" | |
import getpass | |
import pwd | |
from datetime import date | |
import requests |
I hereby claim:
To claim this, I am signing this object:
aes128 | |
aes256 | |
all | |
allowoverwrite | |
analyse | |
analyze | |
and | |
any | |
array | |
as |
#!/usr/bin/env python3 | |
""" | |
A style-izer / PascalCase-r / opinionated capitalizer for the docs site. | |
Capitalize the names of companies, services, etc as used on various generated | |
list pages on the Astronomer docs site <https://docs.astronomer.io/>, such as | |
Sources, Destinations, Transforms, Clickstream Collectors, and Clickstream | |
Connectors. |
""" | |
Generate ordinal days for a given year. | |
January 1st, January 2nd, January 3rd ... December 31st. | |
""" | |
import calendar | |
import datetime | |
def suffix(day): |
def join_plus(items, separator, final_separator=None, pair_separator=None): | |
"""Concatenate a list of items with more advanced separator control. | |
Example 1 - You have a list of names = [Tom, Jeff, Sally] and want them | |
combined as a string. There are a few possible desired outputs: | |
(1-1) Tom, Jeff, Sally # join_plus(names, ', ') | |
(1-2) Tom, Jeff, and Sally # join_plus(names, ', ', final_separator=', and ') | |
Example 2 - Same but with two names = [Tom, Jeff]. This creates a third |
python -m cProfile -s tottime foo.py |