Skip to content

Instantly share code, notes, and snippets.

View tedmiston's full-sized avatar
🗺️
Remote

Taylor D. Edmiston tedmiston

🗺️
Remote
View GitHub Profile
@tedmiston
tedmiston / astro_metal_name_stylizer.py
Created June 28, 2017 16:18
astro-metal name stylizer
#!/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.
@tedmiston
tedmiston / _.ipynb
Created July 24, 2017 03:17
massive destruct-ion
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
aes128
aes256
all
allowoverwrite
analyse
analyze
and
any
array
as
@tedmiston
tedmiston / keybase.md
Created January 25, 2018 07:05
keybase.md

Keybase proof

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:

@tedmiston
tedmiston / GenerateMITLicense.py
Last active May 9, 2018 05:02
Fetch GitHub's MIT license template, populating this year and your name
"""
Fetch GitHub's MIT license template, populating this year and your name.
"""
import getpass
import pwd
from datetime import date
import requests
@tedmiston
tedmiston / wordle.py
Created January 29, 2022 04:55
wordle
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')