Skip to content
View yuriuliam's full-sized avatar
๐Ÿ’ป
๐Ÿ’ป
  • Sรฃo Paulo, State of Sรฃo Paulo, Brazil

Highlights

  • Pro
Block or Report

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.

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
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 @ioet
โ˜• ย  Looking for project collabs using React, Vite, Turbopack, Phoenix and/or Tauri.
๐Ÿ˜Š ย  I can help you with CSS Grid Layout, Flexbox and Design System.
๐Ÿ’ฌ ย  Love to play some games like Chess, Tetris, Inscryption, Team Fortress 2, Minecraft etc;
๐Ÿ–ฅ๏ธ ย  Wanna talk, watch something or just discuss about tech and architecture? Let's go! =)

Contact me ๐Ÿ“ง ย 

Funny data, heheh

Metrics

Pinned

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

    A (WIP) template by me for general-purpose scalable React apps using Clean Architecture and Vite. (there's more!)

    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>]