Skip to content
View mglnb's full-sized avatar
🖥️
Front-end Developer
🖥️
Front-end Developer

Organizations

@Hackabrains
Block or Report

Block or report mglnb

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
mglnb/README.md

Hi there 👋

My name is Miguel Boanova, and you can find me on:

Linkedin Badge Instagram Badge Facebook Badge Medium Badge

You can check my latests posts on medium 💬

Miguel Boanova Medium


 

Pinned Loading

  1. GoDinner GoDinner Public

    GoDinner - Plataforma para gerenciamento de pedidos de restaurantes e lancherias.

    JavaScript 4 3

  2. nestjs-auto-graphql-crud-template nestjs-auto-graphql-crud-template Public template

    ✨ Repositório de template para iniciar projetos em nestjs com a lib NestJS-Query que gera cruds com filtros através de annotations

    TypeScript

  3. chatWithRTC chatWithRTC Public

    JavaScript 5

  4. WifiPelotas WifiPelotas Public

    Aplicativo que lista wifi's e suas senhas em Pelotas, RS

    JavaScript 2

  5. Throttle Throttle
    1
    /**
    2
     * @param {Function} fn - Função a ser executada
    3
     * @param {Number} time - Tempo em milisegundos
    4
     */
    5
    function throttle (fn, time) {
  6. Debounce Debounce
    1
    /**
    2
     * @param {Function} fn - Função a ser executada
    3
     * @param {Number} time - Tempo em milisegundos
    4
     * @param {Boolean} immediate - Se a função deve ser chamada de imediato ou após o tempo
    5
     */