class Developer {
name = "Ashish Gogula";
title = "Software | Design Engineer";
location = "Hyderabad, IN";
vibe = "Design meets Code";
getCurrentMode(): string {
return "Building things that actually matter";
}
getStack() {
return {
frontend: ["React", "Next.js", "Angular", "Redux", "TypeScript"],
styling: ["Tailwind", "Bootstrap", "Framer Motion", "Shadcn", "PrimeNG"],
backend: ["Java", "Spring Boot", "Node.js", "Express.js", "REST APIs"],
database: ["MySQL", "Redis", "SQL"],
devOps: ["AWS", "Docker", "CI/CD", "Tomcat"],
security: ["JWT", "OAuth", "Okta", "RBAC", "VAPT"],
tools: ["Git", "Postman", "SonarQube"]
};
}
getPassions(): string[] {
return [
"Crafting pixel-perfect interfaces",
"Building scalable architectures",
"Solving complex problems elegantly",
"Writing clean, maintainable code"
];
}
}
const ashish = new Developer();
console.log(ashish.getCurrentMode()); // "Building things that actually matter"const currentGoals = [
"π¨ Building scalable full-stack applications",
"π¨ Crafting delightful user experiences",
"π Sharing knowledge through technical writing",
"π± Learning and adopting new technologies",
"π€ Contributing to open-source projects"
];- β¨ Full-Stack Development: End-to-end application development with modern frameworks
- π¨ Design Thinking: Merging aesthetics with functionality for seamless UX
- π§ Problem Solving: Creative solutions to complex technical challenges
- π Continuous Learning: Always staying updated with industry trends
- π€ Team Player: Collaborative mindset with strong communication skills



