I hereby claim:
- I am w1ndy on github.
- I am skies457 (https://keybase.io/skies457) on keybase.
- I have a public key whose fingerprint is E57E F50F 6B90 47AF CA6B 2FA6 743D C317 CCB3 9680
To claim this, I am signing this object:
import { randomString } from './Helpers' | |
import BlobInflatorWorker from './BlobInflator.worker' | |
const worker = new BlobInflatorWorker() | |
const handlers = {} | |
worker.onmessage = function (e) { | |
if (!e.data.error) { | |
handlers[e.data.key].resolve(e.data.json) | |
} else { |
#!/usr/bin/python3 | |
import sys | |
import re | |
import operator | |
import json | |
from enum import Enum | |
class EventType(Enum): |
# Put under /etc/ | |
# SOCKS5 proxy access control | |
# One IPv4 address per line | |
127.0.0.1 |
#!/usr/bin/python3 | |
import requests | |
import time | |
import json | |
INPUT_FILE = 'diff.csv' | |
OUTPUT_FILE = 'diff.out.csv' | |
THRESHOLD = 290 #times | |
THRESHOLD_TIME = 300.0 #sec |
#!/bin/bash | |
# random_delay_and_do | |
# DELAY={{seconds}} ./rdd.sh {{COMMAND}} will force delay setting to {{seconds}} | |
hours=3 | |
maxdelay=$(($hours*60*60)) | |
rand=$(($RANDOM*1234%maxdelay)) | |
delay=${DELAY:-$rand} | |
echo "sleeping $delay" |
#!/usr/bin/python3 | |
import sys | |
from tqdm import tqdm | |
from os.path import splitext, basename, dirname, abspath, join, getsize | |
def main(): | |
if len(sys.argv) < 2: | |
print('Usage: %s ...csv_files' % sys.argv[0]) | |
exit() |
#!/usr/bin/python3 | |
import requests | |
import json | |
requests.packages.urllib3.disable_warnings() | |
# Fill in {{variables}} below | |
COOKIE = '{{PASTE YOUR OWN COOKIE HERE}}' | |
REQUEST_URL = '/act/campus/ajax/index?uin={{QQ NUMBER}}&csrfCode={{CSRF CODE}}' # Get URL from Chrome inspector |
{ | |
"defaultAction": "SCMP_ACT_ERRNO", | |
"architectures": [ | |
"SCMP_ARCH_X86_64", | |
"SCMP_ARCH_X86", | |
"SCMP_ARCH_X32" | |
], | |
"syscalls": [ | |
{ | |
"name": "accept", |
/*global sampler, drawPoints, pointString, lastOf */ | |
function CSpline(points, variance) { | |
this.tension = 0.2; | |
this.points = points; | |
this.variance = variance || points.map(function () { return 0; }); | |
this.interval = this.points[this._nextpi(0)].x - this.points[0].x; | |
this.tangent = points.map(function (d, i) { | |
var previ = this._prevpi(i), | |
nexti = this._nextpi(i); |
I hereby claim:
To claim this, I am signing this object: