I hereby claim:
- I am jarrodldavis on github.
- I am jarrodldavis (https://keybase.io/jarrodldavis) on keybase.
- I have a public key ASBAtQQuQI2ynPaz1eD4iwP30E4aTZUYu4rbYSqXrNcFOQo
To claim this, I am signing this object:
| var game = (function() { | |
| function generateHexColor() { | |
| return '#' + Math.floor(Math.random() * 16777215).toString(16); | |
| } | |
| var getQueryParam = (function() { | |
| var params = {}; | |
| var query = location.search.substr(1); | |
| var _query = query.split("&"); |
I hereby claim:
To claim this, I am signing this object:
| global _preferences, _safari, _systemEvents, _passwords, _passwordsLocked, _passwordPrompt | |
| -- BEGIN customization points | |
| --- Change the following global variables as needed for localization | |
| set _preferences to "Preferences…" | |
| set _safari to "Safari" | |
| set _systemEvents to "System Events" | |
| set _passwords to "Passwords" |
| @propertyWrapper | |
| struct RawKeyedCodableDictionary<Key, Value>: Codable where Key: Hashable & RawRepresentable, Key.RawValue: Codable & Hashable, Value: Codable { | |
| var wrappedValue: [Key: Value] | |
| init() { | |
| wrappedValue = [:] | |
| } | |
| init(wrappedValue: [Key: Value]) { | |
| self.wrappedValue = wrappedValue |
| add_newline = false | |
| [git_status] | |
| disabled = true |
| #!/bin/bash | |
| docker run \ | |
| --interactive \ | |
| --tty \ | |
| --rm \ | |
| --volume ~/.aws:/root/.aws \ | |
| --volume $(pwd):/aws \ | |
| --network=host \ | |
| --env "$(env | grep AWS_ | cut -f1 -d=)" \ |