Skip to content

Instantly share code, notes, and snippets.

View WolflanFreitas's full-sized avatar
🎯
Focusing

Wolflan Freitas WolflanFreitas

🎯
Focusing
View GitHub Profile
@novecentonove
novecentonove / pdf-invoice.blade.php
Created March 16, 2021 17:14
Template for a invoice render with LAravel DomPDF
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Aloha!</title>
<style type="text/css">
* {
font-family: Verdana, Arial, sans-serif;
}
@marcelloinfoweb
marcelloinfoweb / cpfCnpj.validate.js
Last active March 12, 2024 13:22
Validar CPF e CNPJ com Jquery e ValidateJS
function isCnpj(cnpj) {
var numeros, digitos, soma, i, resultado, pos, tamanho, digitos_iguais;
if (cnpj.length === 0) {
return false;
}
cnpj = cnpj.replace(/\D+/g, '');
digitos_iguais = 1;
for (i = 0; i < cnpj.length - 1; i++)
if (cnpj.charAt(i) !== cnpj.charAt(i + 1)) {
digitos_iguais = 0;
@abdurrahmanekr
abdurrahmanekr / gist:2747d704edec93a06e454eba2653e0df
Last active April 1, 2024 04:05
WhatsApp original chat background image

WhatsApp original chat background image

WhatsApp original darkmoda background image

@leocomelli
leocomelli / git.md
Last active April 26, 2024 11:56
Lista de comandos úteis do GIT

GIT

Estados

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

Ajuda