This file contains hidden or 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
| .env | |
| .gitignore | |
| *.swp | |
| node_modules | |
| npm-debug.log |
This file contains hidden or 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
| // http://www.2ality.com/2013/09/javascript-unicode.html | |
| function toUTF16(codePoint) { | |
| var TEN_BITS = parseInt('1111111111', 2); | |
| function u(codeUnit) { | |
| return '\\u'+codeUnit.toString(16).toUpperCase(); | |
| } | |
| if (codePoint <= 0xFFFF) { | |
| return u(codePoint); | |
| } |
This file contains hidden or 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
| ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key | |
| # Don't add passphrase | |
| openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
| cat jwtRS256.key | |
| cat jwtRS256.key.pub |
This file contains hidden or 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
| # https://github.com/docker/for-mac/issues/2501#issuecomment-436997480 | |
| docker images -f "dangling=true" -q | xargs -I {} echo docker rmi -f {} |
This file contains hidden or 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
| docker run -ti -v $(pwd):/tmp DOCKER_IMAGE /bin/bash |
This file contains hidden or 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
| .env | |
| .gitignore | |
| *.swp | |
| node_modules | |
| npm-debug.log |
OlderNewer