More Info
public class AboutMe {
private final String[] languages = {"pt-BR", "EN", "ES"};
private final String[] description = {
"🧑💻 24 years old, passionate about backend development",
"🎓 Studying Systems for Internet at FATEC São Roque",
"💼 Software Engineer focused on Java, Spring Boot and REST APIs",
"🧠 Clean Code, SOLID principles and layered architecture",
"🐳 Docker, PostgreSQL, MySQL and basics of Kafka",
"☁️ AWS and Azure fundamentals — deploy and scalability",
};
private final String contactUrl = "https://linkedin.com/in/jeferson-rodrigo";
public void printProfile() {
System.out.println("=== ABOUT ME ===\n");
System.out.println("🌐 Languages:");
for (String lang : languages) {
System.out.println(" - " + lang);
}
System.out.println("\n📌 Description:");
for (String desc : description) {
System.out.println(" - " + desc);
}
System.out.println("\n📨 Let's connect: " + contactUrl);
}
public static void main(String[] args) {
new AboutMe().printProfile();
}
}Contact me on the social media channels above or open an issue here on GitHub! 🚀








