Skip to content
View yuriuliam's full-sized avatar
๐Ÿ’ป
๐Ÿ’ป

Block or report yuriuliam

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.

Maximum 250 characters. Please donโ€™t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
yuriuliam/README.md

Yuri Uliam

Hello! How are you doing? ๐Ÿ‘‹ ย 

I'm a web development engineer who loves to solve problems, bringing innovative solutions.

About me ๐Ÿ“™ ย 

๐Ÿš€ ย  Currently working at @fullstacklabs
โ˜• ย  Building my own webpage and design system with React, Next.js, Elixir. Ask me about the complete stack, I would love to talk more!
๐Ÿ˜Š ย  I can help you with Architecture, Design Patterns, SVG Animations and more.
๐ŸŽผ ย  Doing covers and composing music on my free times! Learning Piano and Violin;
๐Ÿ–ฅ๏ธ ย  Wanna talk, watch something or just discuss about anything? Ping me! =)

Contact me ๐Ÿ“ง ย 

Pinned Loading

  1. react-vite-app-template react-vite-app-template Public

    A project template by me for general-purpose and scalable React apps using Clean Architecture and Vite.

    TypeScript

  2. 03-ignews 03-ignews Public

    TypeScript

  3. A way to convert colors from one for... A way to convert colors from one format to another by using Math Algorithms
    1
    import { isNumber, isBetween } from './numbers'
    2
    
                  
    3
    type ARGB32 = number
    4
    /**
    5
     * Represents a red-green-blue key-value object.
  4. create a simple, message-based abstr... create a simple, message-based abstract validator
    1
    type ValidateRuleFn<T> = (data: T) => string[] | null
    2
    
                  
    3
    type Priority = 'WARN' | 'ERROR'
    4
    
                  
    5
    type RuleTuple<T> = [priority: Priority, validateRule: ValidateRuleFn<T>]