Name: Anonymous 2013-09-05 22:06
What python hacking tools have you written lately?
#!/usr/bin/env python
import threading
import multiprocessing
class CPUHack(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
def run (self):
while True:
1+1
for i in range(multiprocessing.cpu_count()*20):
CPUHack().start()
while True:
1+1