Skip to content
View pfantato's full-sized avatar
🧑‍💻
🧑‍💻

Block or report pfantato

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

Pinned Loading

  1. Utilities to handle Brazilian CPF ac... Utilities to handle Brazilian CPF according to IRS rules.
    1
    export const normalizeCPF = (cpf: string | number): string => {
    2
      if (typeof cpf === 'string') {
    3
        try {
    4
          return cpf.replace(/-/g, '').replace(/\./g, '');
    5
        } catch (error) {
  2. Script to pull all repositories insi... Script to pull all repositories inside a folder from remote
    1
    #!/bin.bash
    2
    for folder_to_go in $(find . -mindepth 1 -maxdepth 1 -type d \( -name "*" \) ) ; 
    3
    do
    4
      cd $folder_to_go
    5
      git branch -a | grep -v HEAD | perl -ne 'chomp($_); s|^\*?\s*||; if (m|(.+)/(.+)| && not $d{$2}) {print qq(git branch --track $2 $1/$2\n)} else {$d{$_}=1}' | csh -xfs
  3. A simple simulator to calculate inve... A simple simulator to calculate investments profits
    1
    import { randomUUID } from "crypto";
    2
    
                  
    3
    enum InvestmentOperation {
    4
      WHITHDRAW = "whitdraw",
    5
      DEPOSIT = "deposit",
  4. passats-do-brasil passats-do-brasil Public

    Passats do Brasil

    JavaScript