/*
* Author: Halfirzzha
*/
class DeveloperProfile {
constructor() {
this.name = "Halfirzzha";
this.pronouns = "he/him";
this.role = "Full Stack Developer";
this.about = `
As a passionate and results-driven Full Stack Developer from Indonesia, I specialize in creating robust, scalable, and
user-centric applications. I am deeply committed to continuous learning and keeping up with the ever-evolving
technologies to deliver high-quality solutions. My expertise spans from backend development to front-end design
and everything in between.
`;
this.codingLanguages = ["JavaScript", "TypeScript", "Python", "PHP", "Java",];
this.technologies = {
frontEnd: {
frameworks: ["React", "Vue"],
styling: ["Tailwind CSS", "Bootstrap", "Sass"]
},
backEnd: {
javascript: ["Node.js", "Express"],
php: ["Laravel"],
python: ["Django"]
},
databases: ["MySQL"],
mobileDevelopment: ["Kotlin", "Flutter", "Java"]
};
this.currentFocus = `
I am currently focused on building scalable, secure, and high-performance web applications using modern
technology stacks. My passion for cloud-native applications, microservices, and automation drives me to
push boundaries and adopt the latest industry best practices.
`;
this.funFact = "I turn caffeine into code, optimize queries in my sleep, and I’m a big fan of clean code and automation!";
}
}
displayProfile() {
console.log(`👋 Hi, I'm ${this.name} - A passionate ${this.role}!`);
console.log(`🌱 Currently learning: Laravel, Vue.js, Django`);
console.log(`💬 Ask me about: PHP, Laravel, Vue.js, MySQL`);
console.log(`⚡ Fun Fact: ${this.funFact}`);
}
}
const halfirzzha = new DeveloperProfile();
halfirzzha.displayProfile();