Skip to content
View satinP's full-sized avatar
🤙
🤙
Block or Report

Block or report satinP

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
satinP/README.md

Pedro Satin

Hello there!

You can find or contact me at:

Linkedin Badge Gmail Badge Gist Badge

Pinned Loading

  1. prova-ibge-noticias prova-ibge-noticias Public

    CĂłdigo utilizado para exemplificar a prova do segundo bimestre do 5o semestre de Engenharia de Software UNICESUMAR 2024

    JavaScript

  2. Shell function that runs nodejs pack... Shell function that runs nodejs package manager based on lockfile (npm, yarn, pnpm, bun)
    1
    function pm() {  
    2
      if [ -f package-lock.json ]; then
    3
        echo "Running with $(tput bold)npm"
    4
        command npm "$@"
    5
      elif [ -f yarn.lock ]; then
  3. Máscara e Validador de Chave Pix Ale... Máscara e Validador de Chave Pix Aleatória
    1
    function maskPixRandomKey(value: string): string {
    2
      /**
    3
       * Filtra caracteres de 0 a 9 e de a a f, conforme os manuais:
    4
       * https://www.bcb.gov.br/content/estabilidadefinanceira/pix/Regulamento_Pix/X_ManualOperacionaldoDICT.pdf - Página 14`
    5
       * https://www.bcb.gov.br/content/estabilidadefinanceira/pix/API-DICT-2.0.1.html#tag/Key
  4. Git config values with aliases and p... Git config values with aliases and pretty logs
    1
    # This is my daily use gitconfig, you should check if it fits your needs too
    2
    # Copy and paste into ~/.gitconfig
    3
    # Run `git alias` on terminal to show aliases and its command
    4
    # https://git-scm.com/docs/pretty-formats
    5