Skip to content
View lborres's full-sized avatar
😃
😃

Block or report lborres

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

Hi, I am Louis Borres 👋

📍 Based in Cebu, Philippines

I began my career as a Software Engineer in May of 2022. I had quickly discovered how much I enjoyed solving problems involving software and have since been passionately honing my skills.

Feel free to contact me. I would love to hear about your next project idea.

LinkedIn Email

Technologies and Tools

Go Typescript Javascript PostgreSQL Docker ReactJS SolidJS Astro Vite Rust Bash Linux NodeJS Obsidian


struct SoftwareEngineer {
    name: String,
    role: String,
    languages_spoken: Vec<String>,
}

impl SoftwareEngineer {
    fn new() -> Self {
        Self {
            name: "Louis Borres".into(),
            role: "Software Engineer".into(),
            languages_spoken: vec!["English".into(), "Cebuano".into()],
        }
    }

    fn say_hi(&self) {
        println!("Hello and Thank you for reading. Hope you find some of my work interesting.");
    }
}

fn main() {
    let me = SoftwareEngineer::new();
    me.say_hi();
}

Pinned Loading

  1. kuta kuta Public

    Simple, secure authentication framework for Go. Greatly inspired by better-auth.

    Go 2

  2. axon axon Public template

    Template for a fullstack app. Greatly inspired by t3-app. But I've always preferred a more empty starter than create-t3-turbo

    TypeScript

  3. aoc26 aoc26 Public

    Solutions to Advent of Code 2026 in Golang

  4. aoc25 aoc25 Public

    Solutions to Advent of Code 2025

    Rust

  5. aoc24 aoc24 Public

    Participating in Advent of Code 2024. Solutions made with Rust (initially Golang).

    Rust