I hereby claim:
- I am darach on github.
- I am darach (https://keybase.io/darach) on keybase.
- I have a public key whose fingerprint is 164C B8BB DD67 02B3 394D 2F22 340E 536C BA3A D0C5
To claim this, I am signing this object:
| // Copyright © 2013 Darach Ennis. All rights reserved. | |
| // | |
| // Sample EEP/Beam AR drone integration. | |
| // Works with keyboard | |
| // Works with a makey makey - http://www.makeymakey.com/ | |
| // Coded during NodeConf EU but not demonstrated or tested ... | |
| // | |
| // Enjoy! | |
| // |
| /* | |
| * Pair of IV-16 Numitron's daisy chained on a pair of 74HC595 shift registers. | |
| * This sketch simply counts from 00 to 99 repeatedly. Numitron's are wired as | |
| * follows: | |
| * | |
| * +-f-+ 0b 00 00 00 00 | |
| * e a -> -d cg ef ba | |
| * +-g-+ | |
| * d b | |
| * +-c-+ |
| #!/usr/bin/env escript | |
| -module(lps). | |
| -mode(compile). | |
| -define(request_timeout,2500). %% msecs, (> 1000!) | |
| -define(request_retries,3). %% before we abandon | |
| -define(halt_strategy,die). | |
| main(_Args) -> |
| #!/usr/bin/env escript | |
| -module(lpc). | |
| -mode(compile). | |
| -define(request_timeout,2500). %% msecs, (> 1000!) | |
| -define(request_retries,3). %% before we abandon | |
| -define(recv_timeout_enable,true). | |
| -define(recv_timeout,2500). %% msecs |
| CC = gcc | |
| LD = | |
| AR = ar | |
| OBJS = zpub.o zsub.o | |
| LIBS = -lzmq -lczmq -lwjelement -lwjreader #-lpthreads | |
| CFLAGS = -Ideps/libzmq/include -Ideps/czmq/include -Ideps/wjelement/include -O2 -funroll-loops -g -std=c99 -pedantic -Wall -fPIC | |
| LDFLAGS = -Ldeps/libzmq/src/.libs -Ldeps/czmq/src/.libs -Ldeps/wjelement/src/wjelement -Ldeps/wjelement/src/wjreader/ | |
| ARFLAGS = | |
| zpub.o: zpub.c |
| rebar get-deps compile | |
| ==> cake (get-deps) | |
| ==> jch-erl (get-deps) | |
| ==> cake (compile) | |
| ==> jch-erl (compile) | |
| Checking whether the PLT .plt is up-to-date... yes | |
| Proceeding with analysis... | |
| Unknown functions: | |
| done in 0m0.42s | |
| done (passed successfully) |
| #!/bin/bash | |
| if [ $# -ne 2 ]; | |
| then | |
| echo "usage: $0 <old> <new>"; | |
| exit 1 | |
| fi | |
| old=$1 | |
| new=$2 |
| #!/usr/bin/env escript | |
| %%! -sname hdr_histogram_simple -pa ebin | |
| %% H1 | |
| %% Memory Size 90184 | |
| %% Total Count 100 | |
| %% H2 | |
| %% Memory Size 90184 | |
| %% Total Count 1000 | |
| %% Done! |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| LLVM_HOME=/usr/local/Cellar/llvm/3.6.2/bin | |
| PONY_HOME=/path/to/pony/repo | |
| PONY_LIBS=${PONY_HOME}/build/debug | |
| TARGET_ARCH=x86-64 | |
| OUT_LL="$1.ll" | |
| OUT_BC="$1.bc" | |
| OUT_S="$1.s" |