bryanromeromtz (Bryan Madzilla) · GitHub
Skip to content
View bryanromeromtz's full-sized avatar
🐒
Not to lose but my chains, internet feeds on my brains.
🐒
Not to lose but my chains, internet feeds on my brains.

Block or report bryanromeromtz

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

Hi, I'm Bryan Madzilla!

public class GitHubProfile {
    public static void main(String[] args) {
        WebDeveloper bryanRomeroMtz = new WebDeveloper("Bryan Romero Mtz", "Web Developer", "Cooking");
        bryanRomeroMtz.displayBio();

        Skills bryanSkills = new Skills();
        bryanSkills.displaySkills();
    }
}

class WebDeveloper {
    private String name;
    private String title;
    private String hobby;

    public WebDeveloper(String name, String title, String hobby) {
        this.name = name;
        this.title = title;
        this.hobby = hobby;
    }

    public void displayBio() {
        System.out.println("Name: " + name);
        System.out.println("Title: " + title);
        System.out.println("Hobby: " + hobby);
    }
}

class Skills {
    private String[] code;
    private String[] tools;
    private String[] databases;

    public Skills() {
        this.code = new String[]{"Typescript", "PHP", "Java", "Python"};
        this.tools = new String[]{"React", "Redux", "Node", "Express", "Docker", "Jenkins", "K8S"};
        this.databases = new String[]{"MySQL", "MongoDB", "PostgreSQL"};
    }

    public void displaySkills() {
        System.out.println("Programming Languages: " + String.join(", ", code));
        System.out.println("Development Tools: " + String.join(", ", tools));
        System.out.println("Databases: " + String.join(", ", databases));
    }
}

I'm not just cooking code, but also love connecting with different people. So if you want to say hi, I'll be thrilled to meet you! 😁


⭐️ From @BryanMadzilla

Pinned Loading

  1. chess-app chess-app Public

    Chess web app built with Next.js, TypeScript, chess.js and Jest

    TypeScript

  2. server-chess server-chess Public

    Chess backend with Express, TypeScript, Prisma, PostgreSQL and Stockfish

    TypeScript