I hereby claim:
- I am nooitaf on github.
- I am nooitaf (https://keybase.io/nooitaf) on keybase.
- I have a public key whose fingerprint is 8EC8 B1CE E34E 31B7 410A 4C84 93DE BE94 1E0F 9B15
To claim this, I am signing this object:
| #!/bin/bash | |
| # replace css | |
| find ./meteor-semantic-ui/ -type f -iname '*.css' -print0 | xargs -0 \ | |
| gsed -s -i'' 's#[.][.][/]#/packages/nooitaf:semantic-ui/lib/semantic-ui/build/uncompressed/#g' | |
| # replace less | |
| find ./meteor-semantic-ui-less/ -type f -iname '*.less' -print0 | xargs -0 \ | |
| gsed -s -i'' 's#[.][.][/]#/packages/nooitaf:semantic-ui-less/lib/semantic-ui/build/less/#g' | 
I hereby claim:
To claim this, I am signing this object:
| <head> | |
| <title>maptest</title> | |
| </head> | |
| <body> | |
| {{> hello}} | |
| </body> | |
| <template name="hello"> | |
| {{#each posts}} | 
| <head> | |
| <title>findtest</title> | |
| </head> | |
| <body> | |
| {{> hello}} | |
| </body> | |
| <template name="hello"> | |
| {{#each posts}} | 
| # list disks | |
| diskutil list | |
| #unmount disk | |
| diskutil unmountDisk /dev/disk3 | |
| #get data | |
| dd if=/dev/disk3 of=/path/to/file bs=32m | |
| dd if=/dev/disk3 bs=32m | pv -v -s 3000m | dd of=/path/to/file bs=32m | 
| # Standard Settings | |
| # | |
| # Set Timezone | |
| dpkg-reconfigure tzdata | |
| # .bashrc | |
| alias ll='ls -l' | |
| alias la='ls -A' | |
| alias l='ls -CF' | |
| PS1=" | 
| #!/bin/bash | |
| apt-get install unzip | |
| cd ~ | |
| # fetch nginx | |
| wget https://github.com/nginx/nginx/archive/release-1.9.3.zip | |
| unzip release-1.9.3.zip nginx-release-1.9.3/* | |
| # fetch rtmp module | |
| wget https://github.com/arut/nginx-rtmp-module/archive/v1.1.7.zip | 
| ffmpeg | |
| -loglevel verbose | |
| -re | |
| -i input.mp4 | |
| -preset:v veryfast | |
| -vf scale=640:360 | |
| -vcodec libx264 | |
| -vprofile baseline | |
| -acodec libmp3lame | |
| -ar 44100 | 
| #!/bin/bash | |
| # creates dump with reasonable foldername "dump_151009-154439" | |
| mongodump -o dump_$(date +"%y%m%d-%H%M%S") | 
| # install nvm | https://github.com/creationix/nvm | |
| wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.1/install.sh | bash | |
| # install node 5.9 (v6+ did not work for me) | |
| nvm install 5.9.0 | |
| #nvm use 5.9.0 | |
| #nvm alias default 5.9.0 | |
| # create project | |
| mkdir project |