Skip to content
View franrzm's full-sized avatar
💻
It works on my machine
💻
It works on my machine

Block or report franrzm

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

Hello World!

class FranciscoRuiz extends SoftwareDeveloper {
    as: Role = 'Software Engineer';

    at: CompanyWebsite = 'https://etg24.de';

    moreAboutMe: PersonalWebsite = 'https://www.franrzm.com/';

    aka: SocialMediaUsername = '@franrzm';

    skills: Skills[] = [
        'SOLID principles',
        'Clean Architectures'
        'Testing',
        'TypeScript',
        'Node',
        'PHP',
        'SQL',
        'Docker',
        'React'
    ];

    learning: Skills[] = [
        ...this.skills,
        'Golang'
    ];

    wantToLearn: Skills[] = [
        'How to be rich',
        'Rust'
    ];

    thingsILike: HobbiesAndInterests[] = [
        'Programming',
        'Nature',
        'Martial arts'
    ];

    newDay(): void {
        if(this.isDead) {
            return;
        }

        this.eat();
        this.code();
        // this.sleep();
    }
}

Pinned Loading

  1. password-generator password-generator Public

    Password generator written in Go. The purpose of this mini-project is simply to learn Go.

    Go 1

  2. ascii-video-converter ascii-video-converter Public

    See yourself in ASCII through your webcam

    TypeScript 1

  3. docker-php-base-structure docker-php-base-structure Public template

    Basic ready-to-use PHP and PostgreSQL structure, with PHPUnit, composer and Make commands.

    Makefile