Skip to content
View manojtharindu11's full-sized avatar
☺️
☺️

Highlights

  • Pro

Organizations

@XoCode-Software-development-team @Team-kaleidoscope-EAD-project @EteqOps

Block or report manojtharindu11

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

I'm Tharindu Manoj Thilakarathna, a third-year undergraduate student at the University of Moratuwa, diving deep into IT.

Excited about the possibilities, I'm open to connecting with fellow developers, mentors, and anyone passionate about technology. Let's code, learn, and grow together! 🌟

You can also check out my personal portfolio website to learn more about my projects and experiences!
Read my articles on Medium.








class Developer {
    String name, title;
    String[] languages, frameworks, tools;

    public Developer(String name, String title, String[] languages, String[] frameworks, String[] tools) {
        this.name = name;
        this.title = title;
        this.languages = languages;
        this.frameworks = frameworks;
        this.tools = tools;
    }

    public void introduce() {
        System.out.println("Hi, I'm " + name + ", a " + title + ".");
    }
}

public class Main {
    public static void main(String[] args) {
        String[] languages = {"JavaScript", "Python", "Java"};
        String[] frameworks = {"Angular", ".NET", "Spring-boot"};
        String[] tools = {"MySQL", "Git", "Postman"};

        Developer manojtharindu11 = new Developer(
            "Tharindu Manoj", 
            "Tech Enthusiast & Developer", 
            languages, 
            frameworks, 
            tools
        );

        manojtharindu11.introduce();
        System.out.println("Skills: " + String.join(", ", manojtharindu11.languages));
    }
}

I love connecting with different people so if you want to say hi, I'll be happy to meet you more! :)


Social Links

Twitter: manojtharindu11 Linkedin: manojtharindu11 GitHub manojtharindu11 manojtharindu11


⭐️ From @manojtharindu11


Pinned Loading

  1. XoCode-Software-development-team/Eventify-event_management_system-frontend XoCode-Software-development-team/Eventify-event_management_system-frontend Public

    Angular 16.2 | Firebase Storage

    TypeScript

  2. XoCode-Software-development-team/Eventify-event_management_system-backend XoCode-Software-development-team/Eventify-event_management_system-backend Public

    ASP.NET Core | EF Core

    C# 1

  3. Team-kaleidoscope-EAD-project/EAD-online-shopping-backend Team-kaleidoscope-EAD-project/EAD-online-shopping-backend Public

    The Kalei Online Shopping Platform Backend is a microservices-based e-commerce solution with services for Order, Inventory, Product, and Feedback, using Spring Boot. It features Keycloak for securi…

    Java