I'm competent software developer specializing in full-stack development with particular expertise in mobile app development, backend engineering, and frontend design. With over 3 years of experience, I enjoy solving complex problems and turning ideas into reality.
class SoftwareEngineer {
constructor() {
this.name = "Gemechis Chala";
this.location = "Addis Ababa, Ethiopia";
this.experience = 3;
this.skills = ["Full Stack", "Mobile", "UI/UX"];
this.achievement = "#1 GitHub contributor in Ethiopia";
}
currentFocus() {
return "Web App Development";
}
learning() {
return ["Flutter", "TypeScript", "Go"];
}
openTo() {
return ["Freelance projects", "Collaborations"];
}
}
const gemechis = new SoftwareEngineer();
console.log(gemechis);
- Brian Herbert