This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For homogenous inputs, no assertion error | |
def homogeneity(data): | |
assert(len(dict(map(lambda x: (type(x), 1), data))) == 1) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
A Python program to light an LED digit on console | |
Author: [email protected] | |
""" | |
import sys | |
class LEDMatrix(object): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import threading | |
import time | |
class TTLDict(dict): | |
""" A dictionary with keys having specific time to live """ | |
def __init__(self, ttl=5): | |
self._ttl = ttl | |
# Internal key mapping keys of _d | |
# to times of access |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
The State design pattern. | |
In Python this is done dynamically by changing the __class__ attribute. | |
Author : Anand B Pillai <[email protected]> | |
License: Public Domain | |
Ref: http://harkablog.com/dynamic-state-machines.html |
NewerOlder