Skip to content
View coder3114's full-sized avatar
😇
😇

Block or report coder3114

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

👋 Hi

Welcome to my GitHub profile!

public class SoftwareEngineer {

    private String name;
    private String role;
    private String[] languages;
    private String[] techStack;
    private String[] hobbies;

    public SoftwareEngineer() {
        name = "Angie Yang";
        role = "Aspiring Full Stack Engineer";
        languages = {"Java", "JavaScript", "Python", "SQL", "Mandarin", "Cantonese"};
        techStack = {"MongoDB", "Express.js", "React", "Node.js", "Spring Boot", "Angular"};
        hobbies = {"hot yoga/Pilates", "Lego", "reading", "learning new things"};
    }

    public void sayHi() {
        System.out.println("Hello, I'm " + this.name + ", a " + this.role + ".");
        System.out.println("I can speak " + String.join(", ", Arrays.copyOfRange(this.languages, 4, 6)) + ", and code in " + String.join(", ", Arrays.copyOfRange(this.languages, 0, 4)) + ". That's right, I'm bilingual in both human and computer languages!");
        System.out.println("I have experience working with " + String.join(", ", this.techStack).");
        System.out.println("I'm always eager to learn new technologies and frameworks to enhance my skills and deliver quality products.");
        System.out.println("In my spare time, I like " + String.join(", ", this.hobbies) + ".");
        System.out.println("Thanks for dropping by! I'm excited to connect with fellow developers!");
    }

    public static void main(String[] args) {
        SoftwareEngineer me = new SoftwareEngineer();
        me.sayHi();
    }
}

I'm proficient in various programming languages, including Java (just the coffee ☕), JavaScript, Python and SQL, etc. I'm actively working with full stack technologies such as MERN (MongoDB, Express.js, React, Node.js), Sprint Boot and Angular to build interactive web applications.

📅 Schedule a Meeting

Want to discuss a project, collaboration, or just chat? You can easily schedule a meeting with me using the link below:

Schedule a Meeting Schedule a Meeting With Me

Feel free to check my availability and book a convenient time. I'm looking forward to connecting with you!


Take a look at my repositories and let's get in touch!

LinkedIn Website


Popular repositories Loading

  1. hellogit hellogit Public

    Forked from how2j/hellogit

    how2j

    Java

  2. Climate-Change-Game Climate-Change-Game Public

    CFG Java Challenge 2023

    Java

  3. Best-README.md Best-README.md Public

    An awesome README template

  4. js-fundamentals js-fundamentals Public

    Forked from digital-futures-academy/js-fundamentals

    JavaScript

  5. pre-academy-scrabble-challenge pre-academy-scrabble-challenge Public

    Forked from digital-futures-academy/pre-academy-scrabble-challenge

    JavaScript

  6. cpython cpython Public

    Forked from python/cpython

    The Python programming language

    Python