Skip to content
View mateustech's full-sized avatar
🚀
rocket has no aft
🚀
rocket has no aft

Organizations

@carcarahs

Block or report mateustech

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

Engenheiro de Software e Tech Lead na @Base 🖤

Meu dia a dia como Tech Lead se resume em: Discovery, Definições e Design de Arquitetura e o desenvolvimento das aplicações.

Possuo forte experiência em aplicações web, tendo atuado em Portais, Health Systems, ERP, CRM, CMS e etc...

Sou apaixonado por conversar com pessoas de Business e passar horas "viajando" em funcionalidades para transformá-las em POC/MVP minutos depois.

Sou entusiasta de Arquitetura Serverless e DevSecOps.

Prazer, sou Mateus Fernandes,

Linkedin Badge

Pinned Loading

  1. Turing-Tecnologia/COVOL-19 Turing-Tecnologia/COVOL-19 Public

    COVOL-19 é um sistema web desenvolvido no intuito de captar voluntários para ajudar idosos, que são a principal classe de risco do Covid-19.

    JavaScript 21 4

  2. End-to-end encryption with strategy ... End-to-end encryption with strategy simétric and asymmetric
    1
    /* Frontend */
    2
    //.env
    3
    KEY_ASYMMETRIC_PUBLIC=value
    4
    
                  
    5
    //filename.ts
  3. Hook to async functions Hook to async functions
    1
    export type UsePromise<T, U extends any[] = any[]> = {
    2
      call: (...args: U) => Promise<T>
    3
      data: T | undefined
    4
      loading: boolean
    5
      error: string | undefined
  4. clean-architecture-nestjs clean-architecture-nestjs Public

    Clean architecture with node/nestjs

    TypeScript 1

  5. ED2-ArvoresBinarias ED2-ArvoresBinarias Public

    C++

  6. Soft delete middleware for NestJS pr... Soft delete middleware for NestJS projects using the Prisma DB client
    1
    import {
    2
      INestApplication,
    3
      Injectable,
    4
      Logger,
    5
      OnModuleInit,