Skip to content
View amadr-95's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro
Block or Report

Block or report amadr-95

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

Hi there πŸ‘‹

Software Engineer

Experienced in multiple programming languages and frameworks, with a strong focus on delivering high-quality, efficient code.

Linkedin: amadorsabido GitHub: amadr-95

A little about me

import java.time.LocalDate;
import java.time.Period;
import java.util.ArrayList;
import java.util.List;

public class Developer {
    private String name;
    private int age;
    private String profession;
    private List<String> hobbies;

    public Developer() {
        this.name = "Amador";
        LocalDate birth = LocalDate.parse("1995-10-07");
        this.age = Period.between(birth,LocalDate.now()).getYears();
        this.proffesion = "Software Engineer";
        this.hobbies = new ArrayList<>(List.of("gym", "hiking", "travel", "boardgames", "videogames", "anime", "coding"));
    }
}

Tech I use and I'm constantly learning

java logo spring logo postgresql logo mysql logo html5 logo css3 logo tailwindcss logo javascript logo typescript logo angularjs logo astro logo

Some quotes that inspire me

Comment only what the code cannot say - Kevlin Henney
Do not be afraid to break things - Mike Lewis
Do not repeat yourself - Steve Smith

Pinned Loading

  1. CLI-car-booking-app CLI-car-booking-app Public

    Project focused on implementing a car booking system via a command-line interface (CLI), applying both improvements and good practices in each section

    Java