Skip to content

Instantly share code, notes, and snippets.

View minghan's full-sized avatar

Ming Han Teh minghan

View GitHub Profile
asazure://westus.asazure.windows.net/miteh01
-- Per partition info --
Partition Row count Commit count Frag fixed memory Frag varsized memory Extent_space Free extent_space Nodes
0 25 25 32768 32768 0 0 11,12
2 25 25 32768 32768 0 0 12,11
1 26 26 32768 32768 0 0 21,22
3 24 26 32768 32768 0 0 22,21
-- Per partition info --
Partition Row count Commit count Frag fixed memory Frag varsized memory Extent_space Free extent_space Nodes
0 17 41 32768 32768 0 0 11,12
2 15 45 32768 32768 0 0 12,11
4 18 18 32768 32768 0 0 31,32
1 18 42 32768 32768 0 0 21,22
3 14 44 32768 32768 0 0 22,21
5 18 18 32768 32768 0 0 32,3
#!/bin/sh
rmiregistry &
java EventManager &
echo "Started EM"
clean_up()
{
pkill rmiregistry
# Tips from http://t2.unl.edu/documentation/graphtool/new-install
mkdir ~/eggs
export PYTHONPATH=$PYTHONPATH:~/eggs
export PATH=$PATH:~/eggs
# echo "export PYTHONPATH=$PYTHONPATH:~/eggs" >> ~/.bashrc
# echo "export PATH=$PATH:~/eggs" >> ~/.bashrc
curl -O http://peak.telecommunity.com/dist/ez_setup.py
@minghan
minghan / multiproc.py
Created July 27, 2011 09:40
Multiprocessing example
from multiprocessing import Pool, JoinableQueue, Manager
# Note that jqueue.task_done() must be called to decrement the count if jqueue.join() is to be used correctly.
import time, os, signal
def handler(signum, frame):
print "signal caught in %d" % os.getpid()
signal.signal(signal.SIGTERM, handler)
@minghan
minghan / microbookmarklet.js
Created July 23, 2011 03:49
Microbookmarklet
javascript: var script = document.createElement("script"); script.src="http://www.example.com/random.js"; document.body.appendChild(script); void(0);
@minghan
minghan / underscore.py
Created July 13, 2011 20:18
Camecase to Underscore lowercase
import re
def underscore(text):
def repl(m):
return "_" + m.group(0).lower()
return re.sub(r"([A-Z])", repl, text)
print underscore("helloWorld")
# Using @property
class Pakrox(object):
def __init__(self):
self._pak = 10
@property
def pak(self):
return self._pak
@minghan
minghan / compile_exec.py
Created July 8, 2011 18:37
Python Compile and Exec test
# Compile and Exec test
# Just making sure that exec deals with scoping correctly
#
# Note that the compile statement compiles code into bytecode, but does not execute it
# Reference: http://lucumr.pocoo.org/2011/2/1/exec-in-python/
def pakrox2():
print "pakrox2 external"
code = ""