Oculus acquires hand-tracking startup Nimble VR
kickstarter.com2 pointsby pwf0 comments
In [1]: from collections import defaultdict
In [2]: d = defaultdict(lambda: 1)
In [3]: d['foo'] += 1
In [4]: d['foo']
Out[4]: 2 python -m timeit "if bool(1): x = 1"
1000000 loops, best of 3: 0.187 usec per loop
python -m timeit "if 1: x = 1"
10000000 loops, best of 3: 0.0266 usec per loop