Skip to content
View WygorFonseca's full-sized avatar
🐈
Teaching my cat how to code
🐈
Teaching my cat how to code

Organizations

@finco-app

Block or report WygorFonseca

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

Hi there πŸ‘‹

  • 🌱 I’m currently learning AWS.
  • πŸ‘― I’m looking to collaborate on open source projects related to Flutter (Dart) libraries.
  • πŸ€” I’m looking for help with.. Improve database architectures and API load testing?
  • πŸ’¬ Ask me about Front-end frameworks like Vue, nuxt, next or how to deploy them statically on cloud!
    Ps.: We can also talk about security flaws

GitHub Streak

Profile View Counter


Pinned Loading

  1. busca-cep-com-fallbacks-recursivos.js busca-cep-com-fallbacks-recursivos.js
    1
    import axios from "axios";
    2
    
                  
    3
    const buscaCep = (cep) => {
    4
      // Lista de servidores, no qual a ordem Γ© a prioridade
    5
      const servers = [
  2. Redis client factory e redis reposit... Redis client factory e redis repository para NESTJS
    1
    export interface IRedisRepository {
    2
      get(prefix: string, key: string): Promise<string | null>;
    3
      set(prefix: string, key: string, value: string): Promise<void>;
    4
      setHash(prefix: string, key: string, value: object): Promise<void>;
    5
      delete(prefix: string, key: string): Promise<void>;