I hereby claim:
- I am hellman on github.
- I am hellman (https://keybase.io/hellman) on keybase.
- I have a public key ASAKsf-3olqWdsVlBn7KV6yJ_qKKO-O2as2_XdCCm-xuCgo
To claim this, I am signing this object:
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| #include <gmp.h> | |
| #include <pthread.h> | |
| #include <semaphore.h> | |
| /* |
| #!/usr/bin/python | |
| #-*- coding:utf-8 -*- | |
| """ | |
| xor strings | |
| options: | |
| -s - string with \\xAF escapes | |
| -r - raw string | |
| -h - hex-encoded string (non-letterdigit chars are stripped) | |
| -f - read data from file (- for stdin) |
| #-*- coding:utf-8 -*- | |
| import random | |
| from z3 import * | |
| s = Solver() | |
| htest = random.randint(0, 1<<32-1) | |
| print hex(htest) |
| from z3.z3 import * | |
| s = Solver() | |
| V = 683 | |
| vs = [] | |
| for v in range(1, V + 1): | |
| vs.append(Int("v%03d" % v)) | |
| s.add(vs[-1] >= 1) | |
| s.add(vs[-1] <= 3) |
| #!/usr/bin/env python | |
| #-*- coding:utf-8 -*- | |
| from itertools import combinations, product | |
| from collections import defaultdict | |
| from aes import AES as AESCLS | |
| AES = AESCLS() | |
| #include <bits/stdc++.h> | |
| using namespace std; | |
| typedef long long LL; | |
| typedef unsigned long long ULL; | |
| typedef unsigned int uint; | |
| typedef unsigned short ushort; | |
| typedef pair<int, int> PII; |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| #-*- coding:utf-8 -*- | |
| import sys, re | |
| from ics import Calendar | |
| from urllib2 import urlopen | |
| import requests | |
| print >>sys.stderr, "[i] Starting..." |
| #!/usr/bin/env python | |
| #-*- coding:utf-8 -*- | |
| import random, zlib, re | |
| from struct import * | |
| from base64 import * | |
| from commands import getoutput | |
| from sock import * | |
| from z3.z3 import * |
| #!/usr/bin/env python | |
| #-*- coding:utf-8 -*- | |
| from sock import Sock | |
| def find_greedy(s): | |
| a, b = [], [] | |
| sa = sb = 0 | |
| for x in sorted(s, reverse=True, key=abs): | |
| if abs(sa + x - sb) < abs(sb + x - sa): |