Skip to content
View uesleibros's full-sized avatar

Block or report uesleibros

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

Hi there, I'm Ueslei Paim

Software Engineer | Computer Science Student | Full-Stack Developer

LinkedIn Email

About me

Greetings! I'm Ueslei Paim (aka UesleiDev), a passionate software engineer and Computer Science student based in Brazil 🇧🇷.

I specialize in architecting scalable solutions and building robust applications that solve real-world problems. My expertise spans across full-stack development, system design, and automation engineering.

With an insatiable curiosity for emerging technologies, I'm constantly exploring new frameworks, design patterns, and best practices to deliver high-quality, maintainable code. I believe in writing clean code, following SOLID principles, and leveraging modern development practices.

Current Focus

  • Pursuing Bachelor's degree in Computer Science
  • Building innovative solutions for daily challenges
  • Deep diving into software architecture and design patterns
  • Exploring cloud technologies and microservices architecture
  • Contributing to open-source projects

Read me like a code

from __future__ import annotations
from typing import Final, Protocol, runtime_checkable
from dataclasses import dataclass, field
from datetime import datetime
from enum import IntFlag, auto
import threading

@runtime_checkable
class IDeveloper(Protocol):
    """Developer interface."""
    name: str
    location: str
    def code(self) -> None: ...

class Mindset(IntFlag):
    """Developer mindset."""
    CURIOUS = auto()
    PERSISTENT = auto()
    CREATIVE = auto()
    ANALYTICAL = auto()
    
    @classmethod
    def default(cls) -> Mindset:
        return cls.CURIOUS | cls.PERSISTENT | cls.CREATIVE | cls.ANALYTICAL

@dataclass(slots=True)
class UesleiPaim:
    """
    The Developer Himself.
    """
    # Immutable attributes
    name: Final[str] = field(default="Ueslei Paim")
    alias: Final[str] = field(default="UesleiDev")
    location: Final[str] = field(default="Brazil 🇧🇷")
    education: str = field(default="Computer Science Student")
    
    # Private attributes
    _birth_year: int = field(default=2007, init=False, repr=False)
    _started_coding: int = field(default=2017, init=False, repr=False)
    _mindset: Mindset = field(default_factory=Mindset.default, init=False)
    _lock: threading.Lock = field(default_factory=threading.Lock, init=False, repr=False)
    
    @property
    def age(self) -> int:
        """My age."""
        return datetime.now().year - self._birth_year
    
    @property
    def experience(self) -> int:
        """Years of coding experience."""
        return datetime.now().year - self._started_coding
    
    @property
    def currently_learning(self) -> tuple[str, ...]:
        """Current focus areas."""
        return (
            "Algorithms & Data Structures",
            "System Design & Architecture",
            "Low-level Optimization",
            "Cloud Computing",
            "Software Engineering Best Practices"
        )
    
    @property
    def interests(self) -> frozenset[str]:
        """Personal interests (immutable)."""
        return frozenset({
            "Building scalable solutions",
            "Automating repetitive tasks",
            "Open source contribution",
            "Problem solving",
            "Learning new technologies"
        })
    
    @property
    def philosophy(self) -> dict[str, str]:
        """Core beliefs."""
        return {
            "mindset": "Stay curious, stay hungry",
            "code": "Clean code that speaks for itself",
            "learning": "Learn by doing, fail fast, iterate"
        }
    
    def code(self) -> None:
        """What I do best."""
        while True:
            think()
            design()
            implement()
            optimize()
            deploy()
            iterate()
    
    def __repr__(self) -> str:
        return f"<Developer '{self.alias}' | {self.experience} years experience>"

Skills

Programming Languages

Programming Languages-Light Programming Languages-Dark

Markup/Other Languages

Extra Languages-Light Extra Languages-Dark

Databases, Cloud Services and ORMs

Databases/Cloud-Light Databases/Cloud-Dark

Tools

Collaboration

Tools Collaboration-Light Tools Collaboration-Dark

In-Production

Tools for Development-Light Tools for Development-Dark

Libraries/Frameworks

Libraries and Frameworks-Light

Libraries and Frameworks-Dark

Pinned Loading

  1. bedrockfrontiers/wix-cms-sdk bedrockfrontiers/wix-cms-sdk Public

    A lightweight and modular SDK for interacting with the Wix Headless CMS API.

    JavaScript