Skip to content

Instantly share code, notes, and snippets.

@clarkio
Last active May 28, 2024 17:41
Show Gist options
  • Save clarkio/67a4aadd1eb2954198bda6a2b02e7b01 to your computer and use it in GitHub Desktop.
Save clarkio/67a4aadd1eb2954198bda6a2b02e7b01 to your computer and use it in GitHub Desktop.
console.log('setting up the hidden speaker...');
const utt = new SpeechSynthesisUtterance('You can\'t find me! hahahaha');
const speakIt = () => { speechSynthesis.speak(utt); }
const i = setInterval(speakIt, 5000);
console.log('set up complete and speaker will speak soon');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment