I hereby claim:
- I am kingbin on github.
- I am kingbin (https://keybase.io/kingbin) on keybase.
- I have a public key ASCnYtP-gLSh2UJHoD-2qxxA_KKt6n_gxr6SIZ-lxcy-kwo
To claim this, I am signing this object:
| export FILENAME=server | |
| openssl genrsa -out $FILENAME.key 2048 | |
| openssl req -new -key $FILENAME.key -x509 -days 3653 -out $FILENAME.crt | |
| cat $FILENAME.key $FILENAME.crt >$FILENAME.pem | |
| chmod 600 $FILENAME.key $FILENAME.pem | |
| export FILENAME=client | |
| openssl genrsa -out $FILENAME.key 2048 | |
| openssl req -new -key $FILENAME.key -x509 -days 3653 -out $FILENAME.crt | |
| cat $FILENAME.key $FILENAME.crt >$FILENAME.pem | |
| chmod 600 $FILENAME.key $FILENAME.pem |
I hereby claim:
To claim this, I am signing this object:
| GLog resolve w libfishhook dependency | |
| ``` | |
| $ cd node_modules/react-native/scripts && ./ios-install-third-party.sh && cd ../../../ | |
| $ cd node_modules/react-native/third-party/glog-0.3.4/ && ../../scripts/ios-configure-glog.sh && cd ../../../../ | |
| $ cp ~/Library/Developer/Xcode/DerivedData/XXX/Build/Products/Release-iphonesimulator/libfishhook.a ./node_modules/react-native/Libraries/WebSocket/ | |
| ``` |
| #!/usr/bin/env python | |
| # GIMP Plug-in for Simple SVG Exports | |
| # Copyright (C) 2016 by Dylan Grafmyre <[email protected]> | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; either version 3 of the License, or | |
| # (at your option) any later version. |
| #!/usr/bin/python3 | |
| # | |
| # usage: python3 docker_descendants.py <image_id> ... | |
| import sys | |
| from subprocess import check_output | |
| def main(images): | |
| image_ids = set(images) |
| # Copyright 2017, Alexander Hass | |
| # http://www.hass.de/content/setup-your-iis-ssl-perfect-forward-secrecy-and-tls-12 | |
| # | |
| # Version 1.8 | |
| # - Windows 2016 powershell 5.1.14393.1532 requires 'else' statements in the same line after to the closing 'if' curly quote. | |
| # Version 1.7 | |
| # - Windows Version compare failed. Get-CimInstance requires Windows 2012 or later. | |
| # Version 1.6 | |
| # - OS version detection for cipher suites order. | |
| # Version 1.5 |
| security find-identity -v -p codesigning |
| rvictl -s UUID | |
| rvictl -l | |
| ifconfig -l | |
| tcpdump -i rvi0 -w trace.pcap | |
| ctrl x-c | |
| rvictl -x UUID |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #import "RCTEventEmitter.h" | |
| #import "RCTBridge.h" | |
| @interface GSEventEmitter : RCTEventEmitter <RCTBridgeModule> | |
| + (BOOL)application:(UIApplication *)application didSightBeacon:(NSString *)beaconID; | |
| + (BOOL)application:(UIApplication *)application didDepartBeacon:(NSString *)beaconID; | |
| @end |