Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 Queue | |
import time | |
QUEUE_TIMEOUT_s = 0.1 | |
WORKER_COUNT = 200 # play with this! If switching to multiprocessing, use ncores+1 (or 2) | |
NUM_TASKS = 1000 | |
SLOW_ADD_TIME_s = 0.1 | |
done_event = threading.Event() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# add hg info to the prompt if it exists... | |
in_hg() { | |
# returns 0 if in a hg repo, 1 if not | |
d=$PWD | |
# Check up the path (using bash string operators) looking for .hg | |
while [ "${d}" != "" ]; do | |
if [ -d "${d}/.hg" ]; then | |
HG_DIR=$d/.hg | |
return 0 | |
fi |
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
#lifted from http://stackoverflow.com/questions/17248383/pretty-print-by-default-in-python-repl | |
import pprint | |
import sys | |
orig_displayhook = sys.displayhook | |
def myhook(value): | |
if value != None: | |
__builtins__._ = value |
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
#!/bin/sh | |
. /etc/init.d/tc-functions | |
# Use this script to extract and re-package core.gz, core64.gz or corepure64.gz | |
# | |
# Note | |
# When repackaging a x86_64 core, use this script on same type system (core64 or corepure64) | |
# | |
# How to.. |
NewerOlder