Skip to content

Instantly share code, notes, and snippets.

// 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
@kevinwritescode
kevinwritescode / 0_reuse_code.js
Created April 4, 2016 22:19
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
{
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
class Food {
/**
* @param {Boolean} [isDelicious=false]
*/
constructor(isDelicious) {
this.isDelicious = isDelicious;
}
/**