/**
* AboutMe.java
* A glimpse into my tech journey and passion.
*/
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
public class AboutMe {
public static void main(String[] args) {
String name = "Kusal Gunasekara";
String role = "Software Engineer";
Map<String, List<String>> techStack = Map.of(
"IDE", List.of("IntelliJ IDEA", "VS Code", "WebStorm", "Rider"),
"App Development", List.of("Java", "Python", "C#"),
"Frontend", List.of("HTML", "CSS", "JavaScript", "React", "Bootstrap", "Tailwind", "jQuery", "Axios"),
"Backend", List.of("Hibernate", "MySQL", "Spring", ".NET"),
"Tools", List.of("GitHub", "Git", "Firebase", "AWS", "Postman", "Stack Overflow")
);
System.out.println("👋 Hello, I'm " + name + " - " + role + "!");
System.out.println("\n🛠️ Tech Stack:");
techStack.forEach((category, tools) -> {
String toolsList = tools.stream().collect(Collectors.joining(", "));
System.out.println("- " + category + ": " + toolsList);
});
System.out.println("\n🌟 Always learning, exploring, and building cool stuff!");
}
}
/**
* 📌 Find me here:
* - GitHub: github.com/KusalDemo
* - LinkedIn: http://www.linkedin.com/in/kusal-gunasekara-337507234
*/
⭐
Coding my way through challenges
Interested in Software Engineering
@kawodyaarachchige ✨❤️
-
IJSE - Institute of Software Engineering
- Kandy
- in/kusal-gunasekara-337507234
- https://medium.com/@kusalgunasekara2002
Pinned Loading
-
green-shadow-backend
green-shadow-backend PublicJava Spring Boot backend with MySQL database and Hibernate ORM. Implements RBAC with ADMINISTRATIVE, MANAGER, and SCIENTIST roles. Secure JWT-based authentication with token refresh. Asynchronous c…
-
Spring-POS-Backend
Spring-POS-Backend PublicBackend API for a POS system with layered architecture, built using Spring MVC, Spring Data JPA, Hibernate, and MySQL. Follows RESTful principles with comprehensive logging for monitoring.
Java
-
POSBackend-dotnet
POSBackend-dotnet PublicA simple POS backend built with .NET, marking first step in exploring Clean Architecture & .NET
C#
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.