I hereby claim:
- I am mattalp on github.
- I am matthewalp (https://keybase.io/matthewalp) on keybase.
- I have a public key ASCZssS191-9Ia9fvqfy_jqNtnogA3kmESM8UayF2Ldc_Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
CREATE TABLE forums.banned_users | |
( | |
banned_user_id integer PRIMARY KEY REFERENCES account.users, | |
banned_by integer REFERENCES account.users, | |
reason text, | |
browser text, | |
ip_address text, | |
user_agent text, | |
audit_ts TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT(NOW()) | |
); |
Hello. | |
I'm available at: | |
(last name)(full first name)@gmail.com. |
def fetch_srt(song_name,video_id): | |
#preparing the first parameter | |
res = 'A'.join(str(ord(c)+13) for c in video_id) | |
res = res+"A" | |
#fake request to get the current cookie | |
opener = urllib2.build_opener() | |
session = requests.session() | |
url="https://extension.musixmatch.com" |
import java.lang.reflect.Method; | |
import java.util.Arrays; | |
public class Bytecodes { | |
static { | |
System.loadLibrary("bytecodes"); | |
} | |
private static native byte[] getBytecodes(Method method); |