I hereby claim:
- I am ccampanale on github.
- I am ccampanale (https://keybase.io/ccampanale) on keybase.
- I have a public key ASAG-dzI-pKDyZhsbndxS0NKdrtiQ1UsL5QZurVXKTYl_go
To claim this, I am signing this object:
| #!/bin/bash | |
| export vault=/usr/local/bin/vault | |
| export VAULT_TOKEN=$(cat /root/.vault-token) | |
| vault_cacert='-ca-cert=/path/to/your/ca.pem' | |
| local_vault="-address=https://$(hostname -f):8200" | |
| unsealed_vault="-address=https://$(getent hosts $(dig +short vault.service.consul | tail -n 1) | awk '{ print $2 }'):8200" | |
| leader_vault="-address=https://$($vault status $vault_cacert $unsealed_vault 2> /dev/null | grep Leader | awk '{ print $2 }' | sed 's/^http\(\|s\):\/\///g'):8200" | |
| vault_read="$vault read $vault_cacert $leader_vault" | |
| vault_unseal="$vault unseal $vault_cacert $local_vault" |
| #!/bin/bash -e | |
| # | |
| # env2fs is a simple script to facilitate the creation of files from environment variables | |
| # check for help | |
| if [[ $1 =~ ^--help|^-h ]] | |
| then | |
| echo "usage: env2fs.sh" | |
| echo | |
| echo "env2fs is a simple script to facilitate the creation of files from environment variables." |
I hereby claim:
To claim this, I am signing this object:
| async function testImmediate() { | |
| console.log('A'); | |
| setImmediate(() => { | |
| console.log('B') | |
| }); | |
| await new Promise((resolve) => { | |
| console.log('C'); | |
| setTimeout(() => { | |
| console.log('D'); | |
| resolve(); |
| /* CSS HEX */ | |
| --cyan-rgb: #00FFFFff; | |
| --vivid-sky-blue: #03C6FFff; | |
| --dodger-blue: #058FFFff; | |
| --risd-blue: #0855FFff; | |
| --black: #000000ff; | |
| /* CSS HSL */ | |
| --cyan-rgb: hsla(180, 100%, 50%, 1); | |
| --vivid-sky-blue: hsla(194, 100%, 51%, 1); |