Skip to content
View fiuzagr's full-sized avatar
🌱
Seeding
🌱
Seeding
Block or Report

Block or report fiuzagr

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

  1. acme-repo acme-repo Public

    A mono repository starter kit for Typescript code.

    TypeScript

  2. acme-api-service acme-api-service Public

    A template for Typescript API service

    TypeScript 1 1

  3. iaguara/iaguara iaguara/iaguara Public

    Development environment with Docker

    Makefile 1

  4. iaguara/pinima iaguara/pinima Public

    Dockerized apps

    Dockerfile

  5. lfs.sh lfs.sh Public

    Linux From Scratch book scripts

    Shell

  6. Gerador/Validador de CPF funcional Gerador/Validador de CPF funcional
    1
    const digitMod = (value, len) => {
    2
      const mod = len - Math.round(value - Math.floor(value / len) * len);
    3
      return mod >= 10 ? 0 : mod;
    4
    };
    5