summaryrefslogtreecommitdiffstats
path: root/sandbox/hyper/README.md
diff options
context:
space:
mode:
authorroot <root@pigstarter.de>2013-11-05 13:24:42 +0100
committerroot <root@pigstarter.de>2013-11-05 13:24:42 +0100
commit5e326f51c58e500285ea3daee91986ee1ea518eb (patch)
tree2b3eccf15e10e4331dcb2d01c9f53620d749f55f /sandbox/hyper/README.md
parentae627d2aa73ea6862af3985f1c07e95c6d493275 (diff)
sandbox -> .graveyard
Diffstat (limited to 'sandbox/hyper/README.md')
-rw-r--r--sandbox/hyper/README.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/sandbox/hyper/README.md b/sandbox/hyper/README.md
deleted file mode 100644
index d8fe9d67..00000000
--- a/sandbox/hyper/README.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# Overview
-
-## start conductor on port 8888 and sink on 1337
-
- //hyper/process/main
- //bin/node //hyper/sink
-
-## create bc process and retrieve it's process id (AKA {path})
-
- url=http://localhost:8888
- curl -fvsS --data-binary @//hyper/process/test/bc.json $url/proc
-
-## send data for calculation
-
- echo 9000+2^42 | curl -fvsS --data-binary @- $url/{path}
-
-## spawn process with http influx and local efflux
-
-hint: maybe run each command in some separate terminal.
-
- id=dummy sh -x //hyper/process/spawn stdbuf -o 0 sed 's/[^0-9 ]//g'
- port=3 node //hyper/influx/http //proc/dummy/0
- cat //proc/dummy/1
- cat //proc/dummy/2
- date | curl -fvsS --data-binary @- http://localhost:3
-
-## calculate the square of the current year in a little local hyper sewer system
-
-hint: maybe run each command in some separate terminal.
-
- id=sqr sh -x //hyper/process/spawn stdbuf -o 0 sed 's/[^0-9]//g;s/.*/(&)^2/'
- id=bc sh -x //hyper/process/spawn bc
- port=42 node //hyper/influx/http //proc/sqr/0
- cat //proc/sqr/1 > //proc/bc/0
- cat //proc/bc/1
- date +%Y | curl -fvsS --data-binary @- http://localhost:42