I hereby claim:
- I am thorrr on github.
- I am jbell9999 (https://keybase.io/jbell9999) on keybase.
- I have a public key ASCyPG0oZfvP43B3Yzm748xLGNpEMjQLYOz12SfKNvwweQo
To claim this, I am signing this object:
| ;; the following is copied from http://lists.gnu.org/archive/html/help-gnu-emacs/2005-01/msg00636.html | |
| (defvar messaging-on t | |
| "Control whether or not messages will be printed; by default, they are.") | |
| ;; Note that by itself this renders edebug pretty useless. | |
| (defadvice message (around nomessage activate) | |
| "Turn off messaging most of the time. | |
| Whether or not messages are displayed is determined by the value | |
| of the variable `messaging-on'." | |
| (when messaging-on | 
| cling-version := 45925 | |
| install-dir := $(shell pwd)/cling | |
| exename := $(install-dir)/bin/cling.exe | |
| .PHONY: all clean exe clang cling repl crepl cpprepl | |
| all: exe | |
| clean: | |
| rm ./lastKnownGood | 
| .PHONY: all downloads clean clean_downloads | |
| ### URLS ######## | |
| boost_url := 'http://downloads.sourceforge.net/project/boost/boost/1.53.0/boost_1_53_0.tar.bz2' | |
| quantlib_url := 'http://sourceforge.net/projects/quantlib/files/QuantLib/1.2.1/QuantLib-1.2.1.tar.gz' | |
| quantlib_swig_url := 'http://sourceforge.net/projects/quantlib/files/QuantLib/1.2/other%20languages/QuantLib-SWIG-1.2.tar.gz' | |
| ################# | |
| #### subdirectory names ##### | |
| ql_swig_install_dir := quantlib-swig-install | |
| boost_dir := boost_1_53_0 | 
| bloomberg_c_url := http://cdn.gotraffic.net/open/blpapi_cpp_3.7.5.1-windows.zip | |
| bloomberg_python_url := http://cdn.gotraffic.net/open/blpapi-py-3.5.3.zip | |
| artifacts_dir := artifacts | |
| install_dir := Blpapi | |
| UNZIP = unzip $| -d $$d | |
| #UNZIP = tar -xf $| -C $$d | |
| .PHONY: all clean downloads clean_downloads install repl | 
| #!/bin/bash | |
| LOCKFILE=/tmp/check-and-restart.lock | |
| if ! mkdir "${LOCKFILE}" 2>/dev/null; then | |
| echo "check-and-restart is already running." >&2 | |
| exit 1 | |
| fi | |
| trap "rm -rf ${LOCKFILE}; exit" INT TERM EXIT | 
| #!/bin/bash | |
| set -e | |
| LIBSODIUM_URL=https://github.com/jedisct1/libsodium/releases/download/1.0.3/libsodium-1.0.3.tar.gz | |
| LIBZMQ_URL=https://github.com/zeromq/libzmq.git | |
| #start | |
| export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig | |
| tmpdir=`mktemp -d` | 
| #!/bin/sh | |
| filename=/usr/include/python2.7/pyconfig.h | |
| patchfile=$(mktemp) | |
| cat << 'EOF' > "$patchfile" | |
| --- pyconfig.h 2016-11-20 09:38:22.434174700 -0500 | |
| +++ pyconfig-bsd-not-visible.h 2016-11-20 09:38:05.391993200 -0500 | |
| @@ -1218,7 +1218,7 @@ | 
| --- | |
| - hosts: all | |
| vars: | |
| UBUNTU_COMMON_ROOT_PASSWORD: 'xxxxx' | |
| UBUNTU_COMMON_DEPLOY_PASSWORD: 'xxxxx' | |
| UBUNTU_COMMON_LOGWATCH_EMAIL: [email protected] | |
| ubuntu_common_deploy_user_name: deploy | |
| ubuntu_common_deploy_public_keys: | |
| - ~/.ssh/id_rsa.pub | 
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| set -euf -o pipefail | |
| ################## | |
| # User variables | |
| ################# | |
| KEY_SLOT=5 | |
| DEVICE=/dev/sda5 | |
| PASSWORD=password |