Skip to content

Instantly share code, notes, and snippets.

@atroche
Created February 27, 2020 23:28
Show Gist options
  • Save atroche/5dabd9e9270f7ff578d31827a94a602e to your computer and use it in GitHub Desktop.
Save atroche/5dabd9e9270f7ff578d31827a94a602e to your computer and use it in GitHub Desktop.
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()
@kirstypeee
Copy link

💯

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment