🧑💻
I'm a software engineer with nearly a decade of experience developing JavaScript Stack under heavy agile methodologies.
-
Tech Lead @on-associates
- Lisbon, Portugal
-
03:34
(UTC)
Pinned Loading
-
Utilities to handle Brazilian CPF ac...
Utilities to handle Brazilian CPF according to IRS rules. 1export const normalizeCPF = (cpf: string | number): string => {
2if (typeof cpf === 'string') {
3try {
4return cpf.replace(/-/g, '').replace(/\./g, '');
5} catch (error) {
-
Script to pull all repositories insi...
Script to pull all repositories inside a folder from remote 1#!/bin.bash
2for folder_to_go in $(find . -mindepth 1 -maxdepth 1 -type d \( -name "*" \) ) ;
3do
4cd $folder_to_go
5git 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
-
A simple simulator to calculate inve...
A simple simulator to calculate investments profits 1import { randomUUID } from "crypto";
23enum InvestmentOperation {
4WHITHDRAW = "whitdraw",
5DEPOSIT = "deposit",
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.