/**
- ======================================================
- Developer Profile - GitHub README
- ======================================================
- Author: Joel Gerson Flores de la Rosa
- Location: Mexico
- Role: Developer / Technology Enthusiast
- Description:
- Passionate about technology, problem solving and
- building useful digital solutions. Interested in
- software development, automation and web platforms. */
public class JoelGersonFlores {
// Basic Information
String name = "Joel Gerson Flores de la Rosa";
String location = "Mexico";
String role = "Software Developer";
// Programming Languages
String[] languages = {
"Java",
"JavaScript",
"HTML",
"CSS",
"SQL"
};
// Technologies & Tools
String[] tools = {
"Git",
"GitHub",
"VS Code",
"APIs",
"Web Development"
};
// Current Focus
String[] learning = {
"Full Stack Development",
"System Design",
"Web Applications",
"Automation Tools"
};
// Projects I like to build
void interests() {
System.out.println("✔ Web platforms");
System.out.println("✔ Business automation systems");
System.out.println("✔ Digital tools for real-world problems");
System.out.println("✔ Scalable software solutions");
}
// Motto
String motto = "Code, Learn, Build, Improve.";
// Contact
void contact() {
System.out.println("GitHub: github.com/gersondlarosa");
}
// Run profile
public static void main(String[] args) {
JoelGersonFlores dev = new JoelGersonFlores();
System.out.println("Welcome to my GitHub profile!");
dev.interests();
dev.contact();
}
}

