I hereby claim:
- I am robertwarrengilmore on github.
- I am robertwgilmore (https://keybase.io/robertwgilmore) on keybase.
- I have a public key ASB3tjrX3AmV9jLbSnRGh9vdY31Ul4hVVk71u2iU3wDVYAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
by Robert Warren Gilmore
Many different standards currently exist for the expression of date-times. There are standards that cycle on the solar year, on the lunar year, and on periods longer than a solar year. To my knowledge there is no standard that does not cycle on the day. Over time, there has been some standardisation of date-time formats around the world, with most of the world using (almost) the same time format and much of the world (East and West) having adopted the Gregorian calendar. Still, variations exist - in the United States, the numerical date is written month/day/year; in France it is written day/month/year; there is a standard gaining in popularity that writes the date year-month-day. Add to these different formats the concept of time zones and it becomes a nontrivial task to decipher and compare date-times that were not written by people in the same place us
'use strict'; | |
let PASS_MINIMUM = 50; | |
let PASS_MAXIMUM = 550; | |
let PASS_INCREMENT = 25; | |
// Loop over the possible pass values. | |
let perPassValue = function(callback) { | |
for (let passValue = PASS_MINIMUM; passValue <= PASS_MAXIMUM; passValue += PASS_INCREMENT) { | |
callback(passValue); |