I hereby claim:
- I am jmfontaine on github.
- I am jmfontaine (https://keybase.io/jmfontaine) on keybase.
- I have a public key whose fingerprint is D017 A908 C209 26E5 4499 55F2 7B0E 0027 8749 4339
To claim this, I am signing this object:
| #!/bin/bash | |
| function info() { | |
| tput setaf 2 | |
| echo -e "$@" | |
| tput sgr0 | |
| } | |
| info "Install Homebrew" | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" |
| resource "random_string" "random" { | |
| length = 16 | |
| special = true | |
| override_special = "/@£$" | |
| } |
| go test -run TestOutputMap | |
| TestOutputMap 2018-10-21T17:26:37-04:00 retry.go:69: Running terraform [init -upgrade=false] | |
| TestOutputMap 2018-10-21T17:26:37-04:00 command.go:52: Running command terraform with args [init -upgrade=false] | |
| TestOutputMap 2018-10-21T17:26:37-04:00 command.go:96: | |
| TestOutputMap 2018-10-21T17:26:37-04:00 command.go:96: Terraform has been successfully initialized! | |
| TestOutputMap 2018-10-21T17:26:37-04:00 command.go:96: | |
| TestOutputMap 2018-10-21T17:26:37-04:00 command.go:96: You may now begin working with Terraform. Try running "terraform plan" to see | |
| TestOutputMap 2018-10-21T17:26:37-04:00 command.go:96: any changes that are required for your infrastructure. All Terraform commands | |
| TestOutputMap 2018-10-21T17:26:37-04:00 command.go:96: should now work. | |
| TestOutputMap 2018-10-21T17:26:37-04:00 command.go:96: |
I hereby claim:
To claim this, I am signing this object:
| Verifying that +jmfontaine is my blockchain ID. https://onename.com/jmfontaine |
| <?php | |
| function isOk($message) { | |
| echo $message . PHP_EOL; | |
| return 'Error' !== $message; | |
| } | |
| $messages = array('Info', 'Error', 'Info'); | |
| $isOk = true; |
| <?php | |
| require 'lib/LibraryA/AwesomeClass.php' | |
| require 'lib/LibraryB/classes/crappy_old_class.php'; | |
| $objectA = new AwesomeClass(); | |
| $objectA->someMethod(); | |
| $objectB = new crappy_old_class(); | |
| $objectB->some_other_method(); |