View rippled.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[server] | |
port_rpc_admin_local | |
port_peer | |
[port_rpc_admin_local] | |
port = 5005 | |
ip = 127.0.0.1 | |
admin = 127.0.0.1 | |
protocol = http |
View Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
URL = http://api.bitcoincharts.com/v1/csv/bitstampUSD.csv.gz | |
all: result.txt | |
time -p node simulate.js prices.json 0.25 9 | |
result.txt: prices.json | |
time -p node optimize.js $< 100000 >|$@ | |
prices.json: csv.gz | |
zcat $< | awk -F , -f zigzag.awk >|$@ |
View Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: | |
npm install | |
time -p node generate.js 1 8 >terms.txt | |
time -p node compute.js abstract 250 1 5 >abstract.tsv | |
clean: | |
-rm -fr node_modules | |
-rm -f abstract.tsv terms.txt |
View Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: | |
bc fibo.bc <test.bc | |
echo 'fibo(123456)' | time -p bc fibo.bc >output.txt | |
cmp output.txt expected.txt | |
echo 'fibo(123456)' | time -p bc naive.bc >output.txt | |
cmp output.txt expected.txt | |
rm -f output.txt | |
clean: | |
-rm -f output.txt |
View Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: | |
node work2mlc.js getwork.json 381353fa >test.mlc | |
lambda -pem lib.mlc -f test.mlc | |
clean: |
View ics2tc.awk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function parse(dt) | |
{ | |
Y = substr(dt, 1, 4); | |
M = substr(dt, 5, 2); | |
D = substr(dt, 7, 2); | |
h = substr(dt, 10, 2); | |
m = substr(dt, 12, 2); | |
s = substr(dt, 14, 2); | |
return Y "/" M "/" D " " h ":" m ":" s; |
View logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View .gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
output.txt |
View lambda.in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
${ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
char *var(int fresh); | |
char *append(char *format, char *buf, char *str); | |
#define ABST(BUF, STR) append("%s%s: ", (BUF), (STR)) | |
#define APPL(BUF, STR) append("%s%s ", (BUF), (STR)) |
View Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PUSHER = node_modules/pusher-client/package.json | |
RIPPLE = node_modules/ripple-lib/package.json | |
all: $(PUSHER) $(RIPPLE) | |
node arb | tee -a top.log | |
$(PUSHER): | |
npm install pusher-client | |
$(RIPPLE): |
NewerOlder