Skip to content
View max10rogerio's full-sized avatar
🎯
Focusing
🎯
Focusing
  • Maringá, Paraná - Brasil
Block or Report

Block or report max10rogerio

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

Hi there 👋

Linkedin: Max Rogério Facebook: Max Rogério

I'm a developer working in Maringá - Paraná, Brazil.

  • ⚙️ I use daily: NodeJS, TypeScript, React;
  • 💬 Ask me about anything here;
  • ⚡️ Fun fact: I love playing CS:GO;

Languages and Tools:

and other things with I don't remember now.

GitHub stats

Thank You 🙏🏼

Pinned

  1. react-ui-boilerplate react-ui-boilerplate Public template

    Boilerplate: React / Material-UI / Typescript / Redux

    TypeScript 7 2

  2. Translation of the main messages fro... Translation of the main messages from the Yup library into the Pt-Br language.
    1
    /* eslint-disable */
    2
    // For more infos, see: https://github.com/jquense/yup/blob/master/src/locale.js
    3
    import { setLocale } from 'yup'
    4
    
                  
    5
    const translation = {
  3. Example Copy to Clipboard with Types... Example Copy to Clipboard with Typescript
    1
    // https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Interact_with_the_clipboard
    2
    
                  
    3
    /**
    4
     * Interface CopyToClipboard params
    5
     */
  4. Typescript slug function Typescript slug function
    1
    // MIT License
    2
    
                  
    3
    // Copyright (c) 2023 Max Rogério
    4
    
                  
    5
    // Permission is hereby granted, free of charge, to any person obtaining a copy
  5. nestjs-graphql-todo-list nestjs-graphql-todo-list Public

    A simple todo list example with nestjs and graphql

    TypeScript 1

  6. Replace object param keys for number... Replace object param keys for number ref to use with postgres driver
    1
    // Example
    2
    // https://www.typescriptlang.org/play?#code/MYewdgziA2CmB0w4EMBOAKAlAKG6SALgATCqzIGwBKsAZrGWMLEQLxHpm0BcRYArgFsARg0y8IBVAEswAczYA+IgAMAOgBINAby4BfFXnCSSZCrAAKaZINiVUAaVgBPNhwDWLiVNlzxRSRl5JVVuHU9nA1x8EwIQAGUARQAZNwAeABUiWAAPSjAAEwgiEGEAK1hgYnZkMGdFdAgAR2hvILkAGiIAB2tbewheDP8AbUDfLtrnEYBdGZDtbCJlojhiLgBJQty3AEYllbW+WAB3eJa3ZugD5ZjiWDAfWGL2AHlyyoJ4B6eIdF7UDY7AwIDgViRjMQ0KgrIDBC8iLNcODaCAMHdEREugA3ZDQfiweYgWjZR4yZ6YIiLcHgjEAoH2NykciUWEMhhOZzoCJgmm3SFEMhyHbsMCnIg0OQAURy3X+fWBqC6AHI5MreXyMVwGA9mEyzJQaPRGMxOHQtgVcjgbjSxWcLqLTudoPAyN1oMhTULcl1tSbYNa+ctoWz4fBuvwIAALdC4-EBm3gzbbHIAalTNr0yJWZAI-FQYERdudk1QML6EBm2Cz2Fk9lonpYoeK1JWYCBbV8NrRltQvGVAEF4gBhZVEAA+RGVABEpSPlTboNJBNICLwBCIGNXcAB6HdECJ8IFEWREWjSVAmbogCCr6TgIyEHoV3a8ZtuVvLdu2fuCZA5ZUOm7VBe37IdRyA8ElxXNciF2AAGICaz3A8XCPWwT0LD0rxvO8HzpCsACY3wrD9gNAqdwMAxdl1XXgEMgtsOynP8AKQ6IBSuNxDHBCBYDgKoiETFYACpGL5bhoNXIghxPfIIAAfW6BglOQYUbVoVAQEEISgyIAhkGEOBdJWE4ox1Ey+TAbSWHYbhv1gciGCIYRXAcohuB7LcoNo4hJN87BDEfEwyAgfhoAIXY3DiJJkjSZsGiuLp6XhXYcC1Z5woIQjooSFJ4orRKWmSojrRiGAEGgEA5HQZUqDnABVZIsl2dVgoq+Aqpq0KsrS9q4E66ravq+ImqyQi2vKgautqgBZEACmkWhnF8fTzMFTKIqIApwDUZViGEMx3ACC5UVQbaZGxZzr0kORQsm4wOpmnqIsIzAgA
    3
    
                  
    4
    const createReference = (ref: number): string => `\$${ref}`
    5
    const createParameterKey = (key: string): string => `:${key}`