I hereby claim:
- I am flower-pot on github.
- I am flowerpot (https://keybase.io/flowerpot) on keybase.
- I have a public key whose fingerprint is 8D36 44B7 F750 109B 8D95 868D 5437 E27D 05D2 D484
To claim this, I am signing this object:
#!/bin/sh | |
git --no-pager diff --name-only $1 | grep -v class | xargs -i cp --parents -p "{}" $2 |
#!/bin/sh | |
CWD=`pwd` | |
for i in `find . -type d -maxdepth 1`; do | |
cd $i | |
git config user.user | |
git config user.email | |
cd $CWD | |
done |
ssh -p 2222 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o LogLevel=ERROR -o IdentitiesOnly=yes -i ~/.vagrant.d/insecure_private_key [email protected] -L 1080:127.0.0.1:1080 |
find . -name '*.js' ! -type d -exec bash -c 'expand -t 4 "$0" > /tmp/e && mv /tmp/e "$0"' {} \; |
sudo udhcpc |
I hereby claim:
To claim this, I am signing this object:
jar: | |
rvm jruby | |
rm Gemfile.lock | |
bundle install --without test | |
mkdir -p pkg/dist | |
warble | |
osx: jar | |
javapackager -deploy -native dmg -outdir pkg -outfile duse -srcdir pkg/dist -srcfiles duse.rb.jar -appclass JarMain -name "duse" -title "duse" |
docker run --name rancher-mysql -v /data/docker/rancher/mysql:/var/lib/mysql --restart=always -d \ | |
-e MYSQL_ROOT_PASSWORD=my-secret-pw \ | |
-e MYSQL_USER=rancher \ | |
-e MYSQL_PASSWORD=my-secret-pw \ | |
-e MYSQL_DATABASE=rancher \ | |
mysql | |
docker run --name rancher-server -d --restart=always --link rancher-mysql:mysql -p 80:8080 \ | |
-e CATTLE_DB_CATTLE_MYSQL_HOST=$MYSQL_PORT_3306_TCP_ADDR \ | |
-e CATTLE_DB_CATTLE_MYSQL_PORT=3306 \ |
### Keybase proof | |
I hereby claim: | |
* I am flower-pot on github. | |
* I am flowerpot (https://keybase.io/flowerpot) on keybase. | |
* I have a public key whose fingerprint is 0010 24B2 4B55 88EE CEBD A645 2585 556B 0604 C640 | |
To claim this, I am signing this object: |
git diff --numstat --pretty="%H" master | awk 'NF==3 {plus+=$1; minus+=$2} END {printf("+%d, -%d\n", plus, minus)}' |