Pure CSS Progress, a pretty liquid progress-bar. I've coded Pure CSS Navigation triggers too, if you want the bar's code just follow the css comments :)
A Pen by Rafael González on CodePen.
Pure CSS Progress, a pretty liquid progress-bar. I've coded Pure CSS Navigation triggers too, if you want the bar's code just follow the css comments :)
A Pen by Rafael González on CodePen.
#### #### #### #### #### #### | |
# / ! / | |
# / e / | |
# / M / | |
# / / | |
# / k / | |
# / r / | |
# / o / | |
# F / | |
# / |
docker run -i -v /code:/toast-me --rm iojs:latest node -pe 'require("fs").readdirSync("/toast-me")' | |
[ 'ESs0nt', | |
'asg', | |
'codebox-nexus', | |
'dot-files', | |
'dot-files-sandstorm', | |
'ds0nt', | |
'ds0ntify', | |
'go', | |
'klouds', |
#!/bin/bash | |
# exposes host dir /code to container as /toast-me | |
# but now that I think about it.. I could pipe it through stdin | |
docker run --rm \ | |
-v /code:/toast-me \ | |
iojs:latest \ | |
node -e 'require("fs").readFile("/toast-me/npm-crawlers.data", "utf8", function (a,b) { console.log(b) } )' |
log |
#!/bin/bash | |
export APIROOT=http://klouds.io:8080 | |
export HOSTNAME=klouds.io | |
export WWW_PORT=80 | |
export API_PORT=8080 | |
export JWT_KEY=key1 | |
export REDIS_HOST=klouds.redis.cache.windows.net |
set -o nounset set -o errexit command || { echo "command failed"; exit 1; } if ! command; then echo "command failed"; exit 1; fi set +e command1 command2 set -e |
set -o nounset set -o errexit command || { echo "command failed"; exit 1; } if ! command; then echo "command failed"; exit 1; fi |
# bullshit ^ is not the working directory BASE=/home/ubuntu/src/github.com/kloudsio/klouds.io WWW=$BASE/www CLIENT=$BASE/client SERVER=$BASE/server # # build the web client # cd $CLIENT mkdir -p "$WWW" cp -rvu $CLIENT/src/public/* $WWW npm install npm install -g babel browserify myth watchify envify # transpile client ./scripts/deku-wrap.sh browserify -v -d src/app.js -t babelify -t envify -o $WWW/app.js myth src/styles/app.css $WWW/app.css # cd $SERVER npm install cd $BASE npm install koa koa-static unruly debug |
# bullshit ^ is not the working directory | |
BASE=/home/ubuntu/src/github.com/kloudsio/klouds.io | |
WWW=$BASE/www | |
CLIENT=$BASE/client | |
SERVER=$BASE/server | |
# | |
# build the web client | |
# |