I hereby claim:
- I am egberts on github.
- I am egberts (https://keybase.io/egberts) on keybase.
- I have a public key ASAzaBAPetjVeor5r1ILVJ4hIOvn_YWYWWj_GaiCbZgAmwo
To claim this, I am signing this object:
[root js-beautify-master]# ./build | |
Building python module... | |
Obtaining file:///tmp/js-beautify-master/python | |
Requirement already satisfied (use --upgrade to upgrade): six>=1.6.1 in /usr/lib/python2.7/site-packages (from jsbeautifier==1.6.3) | |
Installing collected packages: jsbeautifier | |
Running setup.py develop for jsbeautifier | |
Successfully installed jsbeautifier-1.6.3 | |
Building javascript... | |
npm http GET https://registry.npmjs.org/mkdirp | |
npm http GET https://registry.npmjs.org/nopt |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
''' | |
Simple and functional REST server for Python (2.7) using no dependencies beyond the Python standard library. | |
Features: | |
* Map URI patterns using regular expressions | |
* Map any/all the HTTP VERBS (GET, PUT, DELETE, POST) | |
* All responses and payloads are converted to/from JSON for you |
#!/bin/bash | |
BASENAME=`basename $0` | |
TMPFILE="/tmp/$BASENAME-lib.tmp" | |
echo "$BASENAME: Validate target binary and its libraries checksum" | |
TARGET_BINARY=$1 | |
PACKAGES_FOUND="`apt-file search --fixed-string ${TARGET_BINARY}`" | |
if [ -z "${PACKAGES_FOUND}" ]; then | |
echo "No package found for ${TARGET_BINARY}." | |
exit 1 | |
fi |
Rank | Type | Prefix/Suffix | |
---|---|---|---|
1. | Prefix | my+ | |
2. | Suffix | +online | |
3. | Prefix | the+ | |
4. | Suffix | +web | |
5. | Suffix | +media | |
6. | Prefix | web+ | |
7. | Suffix | +world | |
8. | Suffix | +net | |
9. | Prefix | go+ |
### | |
# SSH keys setup with Apple keychain | |
### | |
if [ -z "$SSH_AUTH_SOCK" ] && [ -z "$SSH_AGENT_PID" ]; then | |
# If no SSH Agent is running, start one and load keys from Apple keychain | |
eval `ssh-agent -s` &> /dev/null | |
ssh-add --apple-load-keychain &> /dev/null | |
else | |
if [ -z "$(ssh-add -l | grep SHA256)" ]; then | |
# If agent is running but has no keys, load keys from Apple keychain |
digraph JavaScript_Engine { | |
Netscape [color="#007c84"]; | |
Mozilla [color="#e66000"]; | |
Netscape -> Mozilla | |
Javagator [color="#007c84"]; | |
Rhino [color="#007c84"]; | |
Netscape -> Javagator -> Rhino | |
Rhino -> JDK8 |
#!/bin/bash | |
gdb -p "$1" -batch -ex 'set {short}$rip = 0x050f' -ex 'set $rax=231' -ex 'set $rdi=0' -ex 'cont' |