Skip to content

Instantly share code, notes, and snippets.

View pedrolemoz's full-sized avatar
🎯
Never Settle

Pedro Lemos pedrolemoz

🎯
Never Settle
View GitHub Profile
@nikhilmufc7
nikhilmufc7 / auth.dart
Last active April 14, 2024 13:06
Firebase Flutter Platform Exception Codes and example
// Error Codes for SignUp
ERROR_OPERATION_NOT_ALLOWED` - Indicates that Anonymous accounts are not enabled.
ERROR_WEAK_PASSWORD - If the password is not strong enough.
ERROR_INVALID_EMAIL` - If the email address is malformed.
ERROR_EMAIL_ALREADY_IN_USE - If the email is already in use by a different account.
ERROR_INVALID_CREDENTIAL` - If the [email] address is malformed.
// sending password reset email
ERROR_INVALID_EMAIL` - If the [email] address is malformed.
@Fobxx
Fobxx / shige-skins.md
Last active April 29, 2024 15:49
Shigetora skins
@nzec
nzec / README.MD
Last active February 23, 2024 01:08
DeezLoader Offical Page

Thanks to /u/zpoo32 for reporting several issues in this list!

Deemix

  • deemix: just the cli and the library
  • deemix-pyweb: the app with a GUI
  • deemix-server: just the server part of deemix-pyweb
@igorcosta
igorcosta / cpf_cnpj_validator
Created June 26, 2014 19:13
Regex para validar CPF e CNPJ
Para CPF
/^\d{3}\.\d{3}\.\d{3}\-\d{2}$/
Para CNPJ
/^\d{2}\.\d{3}\.\d{3}\/\d{4}\-\d{2}$/
Para ambos ao mesmo tempo
@RichardCSantana-zz
RichardCSantana-zz / gist:4024598
Created November 6, 2012 13:01
Soma de dois números em assembly (Arquitetura Mips)
.text
main:
li $s0, 10 # insere o valor 10 no regitrador $s0
li $s1, 17 # insere o valor 17 no regitrador $s1
add $s2,$s1,$s0 # soma o valor dos registradores $s0 e $s1 e insere no registrador $s2
la $a0, ($s2) #coloca o registrador $s2 para ser impresso
li $v0,1 #comando de impressão de inteiro na tela
syscall # efetua a chamada ao sistema