This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
highlight | translate | lmgtfy | lmddgtfy | wiki | memesbot | here | devrant-stats | RemindMe | RandomQuote | WelcomeBot | bobbyb | devDNS | trivia | Karlson | dRCM | chatgpt |
---|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.content { | |
background-color: darkblue; | |
color: white; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"app_name":"devRant","timestamp":"2020-05-10 08:39:13.00 +1000","app_version":"1.14.5","slice_uuid":"c8dfed09-7628-38e3-b560-c57ba7bb240d","adam_id":1067512973,"build_version":"1.14.5.1","bundleID":"com.hexicallabs.devrant","share_with_app_devs":1,"is_first_party":0,"bug_type":"109","os_version":"iPhone OS 13.4.1 (17E262)","incident_id":"99718326-0DC0-4482-9330-CA8CCDA7F456","name":"devRant"} | |
Incident Identifier: 99718326-0DC0-4482-9330-CA8CCDA7F456 | |
CrashReporter Key: 64b0b136d3e3ef3dbe71a097bd5cd1a5c9cc3f49 | |
Hardware Model: iPhone11,8 | |
Process: devRant [10762] | |
Path: /private/var/containers/Bundle/Application/3CFEBE4D-EA8C-4990-86DB-578FF689528F/devRant.app/devRant | |
Identifier: com.hexicallabs.devrant | |
Version: 1.14.5.1 (1.14.5) | |
AppStoreTools: 11C29 | |
AppVariant: 1:iPhone11,8:13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function buildMap(regions) { | |
var caseMap = []; | |
for (i = 0; i < regions.length; i++) { | |
caseMap[regions[i]] = 0; | |
} | |
return caseMap; | |
} | |
function populateMap(regions, source) { | |
for (key in source) { |