Skip to content

Instantly share code, notes, and snippets.

View oinsanus's full-sized avatar

misael carvalho oinsanus

  • Universidade de São Paulo
  • São Paulo
View GitHub Profile
@oinsanus
oinsanus / app.js
Last active September 3, 2025 03:41
Código de leitura de tela
responsiveVoice.speak(texto, 'Brazilian Portuguese Female', {rate:1.2});
or
if ('speechSynthesis' in window) {
let utterance = new SpeechSynthesisUtterance(texto);
utterance.lang = 'pt-BR';
utterance.rate = 1.2;
window.speechSynthesis.speak(utterance);
} else {