Skip to content

Instantly share code, notes, and snippets.

@fcoelopes
fcoelopes / git.md
Created February 21, 2026 00:03 — forked from leocomelli/git.md
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda

@fcoelopes
fcoelopes / app.js
Created March 8, 2025 19:44
Web Speech API
//Configura o leitor de tela
if ('speechSynthesis' in window) {
let utterance = new SpeechSynthesisUtterance(texto);
utterance.lang = 'pt-BR';
utterance.rate = 1.2;
window.speechSynthesis.speak(utterance);
} else {
console.log("Web Speech API não suportada neste navegador.");
}