Skip to content

Instantly share code, notes, and snippets.

View tihhgoncalves's full-sized avatar
👨‍🚀
workando

Tiago Gonçalves tihhgoncalves

👨‍🚀
workando
View GitHub Profile
@tihhgoncalves
tihhgoncalves / disqus-noads.js
Created February 28, 2022 15:06
Disqus - Esconder anúncios no plano gratuito
/** Script que oculta anuncios do Disqus | @tihhgoncalves **/
setInterval(() => {
var i, frames;
frames = document.querySelectorAll("#disqus_thread iframe");
for (i = 0; i < frames.length; ++i) {
let src = frames[i].src;
if (!src) {
@tihhgoncalves
tihhgoncalves / index.html
Last active April 7, 2023 02:32
HTML em Branco
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="favico.png">
<title>Título do Site</title>
<!-- Bootstrap 5 -->