I hereby claim:
- I am carrotengineer on github.
- I am carrot (https://keybase.io/carrot) on keybase.
- I have a public key whose fingerprint is 94C2 0B1C CEFC 246F 09B6 D58E 3F82 8A4E 7A5B 1220
To claim this, I am signing this object:
| ### Keybase proof | |
| I hereby claim: | |
| * I am drayshak on github. | |
| * I am drayshak (https://keybase.io/drayshak) on keybase. | |
| * I have a public key whose fingerprint is AA75 CEE6 8D3B 586A 6959 3473 A888 FBAF 913D 8070 | |
| To claim this, I am signing this object: |
| ### Keybase proof | |
| I hereby claim: | |
| * I am voxelcarrot on github. | |
| * I am carrot (https://keybase.io/carrot) on keybase. | |
| * I have a public key whose fingerprint is 94C2 0B1C CEFC 246F 09B6 D58E 3F82 8A4E 7A5B 1220 | |
| To claim this, I am signing this object: |
I hereby claim:
To claim this, I am signing this object:
| // Data classes | |
| data class Something(val something: String) | |
| val output = Something("test").toString() // Something(something=test) | |
| val equal = Something("test2") == Something("test2") // true | |
| val notEqual = Something("test3") == Something("test4") // false |
The following terms are used throughout this agreement:
The following terms are used throughout this agreement:
I hereby claim:
To claim this, I am signing this object:
| fun extractGraphemeClusters(input: String): List<String> { | |
| val characters = mutableListOf<String>() | |
| val iterator = BreakIterator.getCharacterInstance() | |
| iterator.setText(input) | |
| var start = iterator.first() | |
| var iterated = false | |
| while (!iterated) { | |
| val next = iterator.next() |
| # To update to a new version of Nomad: | |
| # Download and calculate checksums: | |
| # http --download https://releases.hashicorp.com/nomad/0.8.4/nomad_0.8.4_linux_amd64.zip | |
| # shasum --algorithm 256 --binary nomad_0.8.4_linux_amd64.zip | |
| # unzip nomad_0.8.4_linux_amd64.zip | |
| # shasum --algorithm 256 --binary nomad | |
| # Update facts in this script | |
| # Only run on one hashimaster at a time! | |
| - name: Set nomad version |