I hereby claim:
- I am jszakmeister on github.
- I am jszakmeister (https://keybase.io/jszakmeister) on keybase.
- I have a public key whose fingerprint is 58B2 77C0 D208 F7AC 460C 07C8 4548 B3A8 C0D7 0C12
To claim this, I am signing this object:
:: GIT_TRACE=1 GIT_CURL_VERBOSE=1 git clone https://github.com/google/breakpad.git | |
06:59:28.873440 git.c:344 trace: built-in: git 'clone' 'https://github.com/google/breakpad.git' | |
Cloning into 'breakpad'... | |
06:59:28.892350 run-command.c:627 trace: run_command: 'git-remote-https' 'origin' 'https://github.com/google/breakpad.git' | |
* Couldn't find host github.com in the .netrc file; using defaults | |
* Trying 192.30.253.112... | |
* TCP_NODELAY set | |
* Connected to github.com (192.30.253.112) port 443 (#0) | |
* ALPN, offering http/1.1 | |
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH |
Cloning into 'breakpad'... | |
* Couldn't find host github.com in the .netrc file; using defaults | |
* Trying 192.30.253.113... | |
* TCP_NODELAY set | |
* Connected to github.com (192.30.253.113) port 443 (#0) | |
* ALPN, offering http/1.1 | |
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH | |
* successfully set certificate verify locations: | |
* CAfile: /etc/ssl/cert.pem | |
CApath: none |
import os | |
f = os.open('file1.txt', os.O_RDWR | os.O_CREAT) | |
print("Handle1: {!r}".format(f)) | |
os.close(f) | |
f = open('file2.txt', 'w+b') | |
print("Handle2: {!r}".format(f.fileno())) | |
f.close() |
# Create a symlink that uses the serial number from the | |
# FTDI-based USB-to-Serial converter. Some distros have | |
# a version with the serial in /dev/serial/by-id, but I | |
# don't find it quite as friendly as this. | |
SUBSYSTEM=="tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", SYMLINK+="ttyUSB-ftdi-$attr{serial}" |
import threading | |
import time | |
from datetime import datetime | |
def foo(): | |
while True: | |
print datetime.now() | |
time.sleep(1.0) |
import coverage | |
inst = coverage.coverage(auto_data=False, branch=True, data_suffix=None, | |
source=['foo']) | |
inst.load() | |
inst.start() | |
import foo | |
inst.stop() | |
inst.combine() | |
inst.save() |
set history filename .gdb-history | |
set history save on | |
set history size 2000 | |
set env LD_PRELOAD /lib/x86_64-linux-gnu/libpthread.so.0 | |
set env NVIM_PROG /home/jszakmeister/projects/neovim/build/debug/bin/nvim | |
set env VIMRUNTIME /home/jszakmeister/projects/neovim/runtime | |
path /home/jszakmeister/projects/neovim/.deps/usr/bin | |
set debug jit 1 |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
set -e | |
set +o pipefail | |
BASE_DIR="$(dirname "$0")" | |
cd "$BASE_DIR" | |
if test -t 1; then | |
COLOR_FAIL="\e[31;1m" |
2013-12-19 09:52:04 | |
Full thread dump OpenJDK Server VM (23.7-b01 mixed mode): | |
"Attach Listener" daemon prio=10 tid=0x8509c800 nid=0x1816 waiting on condition [0x00000000] | |
java.lang.Thread.State: RUNNABLE | |
"DestroyJavaVM" prio=10 tid=0xb650a400 nid=0x1719 waiting on condition [0x00000000] | |
java.lang.Thread.State: RUNNABLE | |
"Hashed wheel timer #1" prio=10 tid=0x850cac00 nid=0x1775 waiting on condition [0x84f5c000] |