Created
February 27, 2020 23:28
-
-
Save atroche/5dabd9e9270f7ff578d31827a94a602e to your computer and use it in GitHub Desktop.
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
exec = require('child_process').exec; | |
function getRandomInt(min, max) { | |
min = Math.ceil(min); | |
max = Math.floor(max); | |
return Math.floor(Math.random() * (max - min)) + min; //The maximum is exclusive and the minimum is inclusive | |
} | |
function sleep(ms) { | |
return new Promise((resolve) => { | |
setTimeout(resolve, ms); | |
}); | |
} | |
let seconds = 60 * 60 | |
function beep() { | |
} | |
async function blah() { | |
while (seconds > 0) { | |
console.log(seconds) | |
const i = getRandomInt(50, 70) | |
console.log(i) | |
await sleep(i * 1000) | |
exec("say beep") | |
seconds = seconds - i | |
} | |
} | |
blah() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
💯