Skip to content

Instantly share code, notes, and snippets.

View mlippert's full-sized avatar

Mike Lippert mlippert

View GitHub Profile
@mlippert
mlippert / keybase.md
Created October 12, 2018 16:58
Keybase claim to show I control this github acct

Keybase proof

I hereby claim:

  • I am mlippert on github.
  • I am mlippert_riff (https://keybase.io/mlippert_riff) on keybase.
  • I have a public key ASD2d_RxnHKd224XRzaY9fLXhNcovnHFPoSllNr8WbezRgo

To claim this, I am signing this object:

@mlippert
mlippert / word-selection.py
Created June 24, 2026 22:16
python sample algorithm for wordle penalizing but not removing previous answers
# see the play function at the bottom
# This is really just an example for reference of the words data structure
words = [
{value: 'stuff', weight: 100, penalty: 0},
{value: 'flood', weight: 100, penalty: 0},
{value: 'royal', weight: 100, penalty: 0},
]