Skip to content

Instantly share code, notes, and snippets.

View BenHamm's full-sized avatar

Ben Hamm BenHamm

  • OctoML
  • Seattle, WA
View GitHub Profile
@BenHamm
BenHamm / ConVarThread.py
Last active March 24, 2019 22:27
Threading condition vars
import threading
import time
condition = threading.Condition()
def lock_door():
global condition
while True:
print("Lock Thread: Door lock armed")