curl -L https://git.io/f4yBq |sh
This text is the section about OS X Yosemite (which also works for macOS Sierra) from https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/#mac-os-x
curl -L https://git.io/f4yBq |sh
This text is the section about OS X Yosemite (which also works for macOS Sierra) from https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/#mac-os-x
I hereby claim:
To claim this, I am signing this object:
{ | |
"buildNumber": 1 | |
} |
#!/usr/bin/python | |
from PIL import Image,ImageOps | |
import struct | |
import sys | |
if len(sys.argv) < 3: | |
print "Need two args: source_filename and result_filename\n"; | |
sys.exit(0) | |
filename = sys.argv[1] | |
result_filename = sys.argv[2] |
function merge(left, right, sortFieldName){ | |
var ret = [] | |
var il = 0 | |
var ir = 0 | |
while (il < left.length && ir < right.length) { | |
if (left[il][sortFieldName].valueOf() < right[ir][sortFieldName].valueOf()) { | |
ret.push(left[il++]) | |
} else { | |
ret.push(right[ir++]) |