public class DeveloperProfile {
private static final Developer ME = new Developer() {{
// Basic Information
name = "My Developer Profile";
// Core Skills
primarySkills = new String[]{
"Java Backend Development",
"Full-Stack Web Development",
"AI Prompting",
"System Architecture"
};
// Technologies
technologies = new HashMap<String, Object>() {{
// Programming Languages
put("languages", new String[]{
"Java",
"JavaScript",
"Vue.js (Nuxt)",
"TypeScript"
});
// Backend
put("backend", new String[]{
"Spring Boot",
"Java EE", //Still learning
"Hibernate", //Still learning
"RESTful APIs"
});
// Frontend
put("frontend", new String[]{
"Vue.js",
"Nuxt.js",
"Tailwind CSS",
"Responsive Design" //Still learning
});
// Databases
put("databases", new String[]{
"MongoDB",
"MySQL",
"PostgreSQL"
});
// Developer Tools
put("devTools", new String[]{
"Docker",
"Git",
"Maven",
"Gradle", //Still learning
"Postman",
"CI/CD"
});
}};
// Key Projects
projects = new Project[]{
new Project("mLicense.net",
"Comprehensive license management system for applications",
new String[]{"Java", "License Management", "Security"}
),
new Project("Minecodes.pl",
"Organization creating advanced Minecraft plugins",
new String[]{"Java", "Game Development", "Plugin Creation"})
};
// Technology Interests
interests = new String[]{
"Backend Development",
"Artificial Intelligence",
"System Architecture",
"Cloud Solutions",
"Technology Innovation"
};
// Strengths
strengths = new String[]{
"Quick learning of new technologies",
"Comprehensive approach to software development",
"Ability to create full applications from scratch",
"Proficiency in backend system design"
};
// Professional Motto
motto = "Every challenge is an opportunity to learn and grow";
// Current Focus
currentFocus = "Developing advanced backend solutions with AI integration";
// Fun Fact
funFact = "I can write better prompts than some people write code!";
}};
public static void main(String[] args) {
System.out.println("Welcome to my coding world!");
System.out.println("I'm open to collaboration and new technological challenges.");
}
}