Skip to content

Instantly share code, notes, and snippets.

@silent1mezzo
Last active August 29, 2015 14:26
Show Gist options
  • Save silent1mezzo/0020d1d26b5a0f98cea6 to your computer and use it in GitHub Desktop.
Save silent1mezzo/0020d1d26b5a0f98cea6 to your computer and use it in GitHub Desktop.
# Wife's Algorithm
things = get_things_to_clean()
for thing in things:
clean(thing)
# My Alogrithm
while True:
try:
clean_something()
except NothingToCleanException:
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment