I hereby claim:
- I am NerdsvilleCEO on github.
- I am nerdsville (https://keybase.io/nerdsville) on keybase.
- I have a public key whose fingerprint is DC84 EF4F 2510 EA35 212D 11D3 1BFF 9551 1CDA 1DCC
To claim this, I am signing this object:
| function FindProxyForURL(url, host) { | |
| if (isResolvable(host)) | |
| return "DIRECT"; | |
| else | |
| return "SOCKS5 localhost:8080"; | |
| } |
| find <RELATIVE_PATH> -name '*' -exec file {} \; | grep -o -P '^.+: \w+ image' | sed 's/\:.*//' | sed 's| |\\ |g' > image_list | |
| cat image_list | xargs tar -czf images.tar.gz --files-from - |
| ### Keybase proof | |
| I hereby claim: | |
| * I am nerdsvilleceo on github. | |
| * I am omnidapps (https://keybase.io/omnidapps) on keybase. | |
| * I have a public key ASCH6fvzx3VWO0j_ofooo9Qs3A3QEKt5JgEsJ_HcBTGf5Ao | |
| To claim this, I am signing this object: |
| package main | |
| import( | |
| "reflect" | |
| ) | |
| // IsArrayType accepts an interface and returns whether it is an array | |
| // This function will return false if it is not an array type | |
| func IsArrayType(s interface{}) bool { | |
| t := reflect.TypeOf(s) |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| aptitude -y install expect | |
| // Not required in actual script | |
| MYSQL_ROOT_PASSWORD=abcd1234 | |
| SECURE_MYSQL=$(expect -c " | |
| set timeout 10 |
| --- | |
| - hosts: local | |
| tasks: | |
| - name: Go.cd Data Container | |
| docker: | |
| name: gocd-data | |
| image: gocd/gocd-server | |
| state: present | |
| volumes: | |
| - /usr/log/go-server |