Skip to content

Instantly share code, notes, and snippets.

View kivervinicius's full-sized avatar
🇧🇷
Focusing

Kiver Teixeira kivervinicius

🇧🇷
Focusing
  • Omega Sistemas
  • Tangara da Serra - MT / Brazil
  • 03:17 (UTC -04:00)
View GitHub Profile
@kivervinicius
kivervinicius / changeServiceWorker.js
Created November 25, 2019 13:38
CRA Workbox change
const fs = require("fs");
function template (preCacheFile, blackList) {
return `/**
* Welcome to your Workbox-powered service worker!
*
* You'll need to register this file in your web app and you should
* disable HTTP caching for this file too.
* See https://goo.gl/nhQhGp
*
@kivervinicius
kivervinicius / gerar_cpf.bookmarklet.js
Created November 22, 2019 13:31
Gerador de cpf diretamente pelo favorito
javascript:(function() { function gera_random(n){var ranNum=Math.round(Math.random()*n);return ranNum}function mod(dividendo,divisor){return Math.round(dividendo-Math.floor(dividendo/divisor)*divisor)}function cpf(){var n=9;var n1=gera_random(n);var n2=gera_random(n);var n3=gera_random(n);var n4=gera_random(n);var n5=gera_random(n);var n6=gera_random(n);var n7=gera_random(n);var n8=gera_random(n);var n9=gera_random(n);var d1=n9*2+n8*3+n7*4+n6*5+n5*6+n4*7+n3*8+n2*9+n1*10;d1=11-mod(d1,11);if(d1>=10)d1=0;var d2=d1*2+n9*3+n8*4+n7*5+n6*6+n5*7+n4*8+n3*9+n2*10+n1*11;d2=11-mod(d2,11);if(d2>=10)d2=0;return""+n1+n2+n3+"."+n4+n5+n6+"."+n7+n8+n9+"-"+d1+d2}console.log(cpf());document.querySelector("#cpf").value=cpf();})();
@kivervinicius
kivervinicius / nomes_falsos.bookmarklet.js
Created November 22, 2019 13:29
Gerador de nomes falsos para formulários
javascript: (function () {var arrNames=[],names=new Set,prefixes=["DA","DE","E"];function populateNames(){return["IRACEMA VERONEZ SANTANA","CICERO SILVA SANTANA","ANDERSON VERONEZ SANTANA","LEANDRO HENRIQUE DE MOURA PELEGRINO","ALICE MEDINA DO NASCIMENTO","ANGIE LEE SANTOS MONTEIRO","AYMÊ CAROLINE ALVES ARAÚJO","BRAIAN VICTOR DACRUZ NASCIMENTO","CRISLENY VITÓRIA CARVALHO DA SILVA","DANIELLY CRISTINA ANDRADE GOMES","DANILO SALOMÃO DE SOUZA SOUTO","GEORGE WILIAN LIMA DE SOUZA","GUILHERME DE ARAUJO ALMEIDA DA SILVA","IARLI RAMOS VIANA","ÍCARO SILVA DE ALMEIDA","ISABELY VITÓRIA FAUSTINO FREITAG","JEANE CRISTINY LIMA DE FREITAS","JORGE FRANCISCO SOARES ALVES","JULIANA DA COSTA RIBEIRO PAIVA","LARISSA BEATRIZ DOS SANTOS CIDRÔNIO","LETICIA POLIANA MARQUES DA SILVA","KALIDY EMANUELGOMES DA SILVA","LYEDSON DE OLIVEIRA DA SILVA","MARIA VICTORIA SOARES DE PAULA","NAHUANA SALES CANUTO DE OLIVEIRA","NICOLAS MOISES FERNANDES FEITOZA","REBEKA WINNE DA SILVA DIAS","SAMUEL HENRIQUE FAUSTINO DE BRITO SOUSA","VIVNICIUS FREITAS
#html
<div>
</div>
##css
div{
width: 120px;
height: 120px;
border: 5px solid #000;
border-radius: 50%;