Skip to content
View dembA7's full-sized avatar

Highlights

  • Pro

Block or report dembA7

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

👋 Hello! I'm Arturo.

Check out some of my coding stats! 👨‍💻

dembA7's GitHub stats

dembA7's Waka languages

Total time coded since Apr 17 2024

Get to know me... 📖

/**
 * A basic class representing a person with their name and years of coding experience. 👨‍💻
 */
class Person {
    protected String name;
    protected int yearsCoding;

    public Person(String name, int yearsCoding) {
        this.name = name;
        this.yearsCoding = yearsCoding;
    }

    /**
     * Introduces the person. 👋
     */
    public void introduce() {
        System.out.println("Hi, I'm " + name + "!");
        System.out.println("I've been coding for " + yearsCoding + " years.");
    }
}

/**
 * A class for a developer who loves coding. 👀💻
 */
public class AboutMe extends Person {

    private String[] favoriteLanguages;
    private String favoriteActivity;
    private String major;

    public AboutMe(String name, int yearsCoding, String[] favoriteLanguages, String favoriteActivity, String major) {
        super(name, yearsCoding);
        this.favoriteLanguages = favoriteLanguages;
        this.favoriteActivity = favoriteActivity;
        this.major = major;
    }

    /**
     * Prints out more details about this person, such as favorite languages and activity. 🌟🚀
     */
    @Override
    public void introduce() {
        super.introduce();
        System.out.println("I'm an undergraduate student pursuing a major in " + major + "! 🎓");
        System.out.println("I'm passionate about " + favoriteActivity + ".");
        System.out.println("Some languages I enjoy coding in are:");
        for (String language : favoriteLanguages) {
            System.out.println(" - " + language);
        }
    }

    public static void main(String[] args) {
        String[] favoriteLanguages = {"Java", "TypeScript", "Python"};
        AboutMe me = new AboutMe("Arturo", 3, favoriteLanguages, "exploring AI and creating impactful code", "Computer Science at ITESM Qro");
        me.introduce();
    }
}

🤖 Some tech I use:

typescript logo javascript logo java logo python logo cplusplus logo csharp logo kotlin logo nodejs logo spring logo postgresql logo mysql logo angularjs logo gcp logo amazonwebservices logo nginx logo pytorch logo tensorflow logo kaggle logo apache_spark logo git logo postman logo firebase logo dbeaver logo prisma logo nextjs logo express logo ubuntu logo linux logo putty logo html5 logo css3 logo tailwind logo bootstrap logo figma logo npm logo pnpm logo yarn logo sourcetree logo unity logo


snake_gif

Reach out to me! 🗣

Pinned Loading

  1. Deep-Learning Deep-Learning Public

    Jupyter Notebook

  2. Binary-Classification Binary-Classification Public

    Python

  3. Systarch Systarch Public

    EJS 2 3