This file contains hidden or 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
| // COURSE | |
| // isVoiceBiometricsVerification Is Voice Verification required (Voice Vault) FL.DE, TX.ADE, OH.DE, IL.DE | |
| // allowedVerificationFailureCount Number of allowed failures until a lock action TX.ADE, OH.DE, IL.DE | |
| // isBlockedOnVerificationFailure Do not record failures, perform lock action each time FL.DE | |
| // requireIDVerification Is Knowledge Verification required (Block Score) TX.DD | |
| // verificationAttemptCount Number of repeat tries per single verification attempt TX.ADE, FL.DE, OH.DE, IL.DE | |
| // verificationOverridePercentage Randomly override failures for leniancy | |
| // verifyFailAction Action to take on a failure, TIMEDLOCK, LEVELRESET OH.DE, FL.DE, IL.DE | |
| // verifyLockSeconds How long to lock for on TIMEDLOCK action OH.DE |
This file contains hidden or 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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
This file contains hidden or 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
| { | |
| init: function(elevators, floors) { | |
| var floorCnt = floors.length | |
| var elevatorCnt = elevators.length | |
| var chunkSize = floorCnt / elevatorCnt | |
| var direction = 0 | |
| var waitQueue = {} | |
| var pushQueue = {} | |
| var loadMax = 0.00 | |
| var loadMin = 1.00 |
This file contains hidden or 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
| class Food { | |
| /** | |
| * @param {Boolean} [isDelicious=false] | |
| */ | |
| constructor(isDelicious) { | |
| this.isDelicious = isDelicious; | |
| } | |
| /** |
OlderNewer