interface Developer {
name: string;
location: string;
education: string;
role: string;
expertise: string[];
devops: string[];
currentFocus: string[];
}
const anand: Developer = {
name: "Anand Mishra",
location: "Sonipat, Haryana, India",
education: "B.Tech in AI/ML @ Newton School of Technology",
role: "Full-Stack Developer",
expertise: [
"TypeScript & JavaScript (ES6+)",
"React.js, Next.js, Redux",
"Node.js, Express.js, REST APIs",
"MongoDB, MySQL, Prisma ORM",
"OAuth 2.0, JWT, Firebase",
"Jest, Cypress, k6 Load Testing"
],
devops: [
"Docker & Docker Compose",
"Kubernetes & Helm",
"GitHub Actions CI/CD",
"Google Cloud Platform & AWS",
"Nginx, Prometheus, Kafka"
],
currentFocus: [
"Cloud-Native Architecture",
"Scalable Backend Systems",
"Full-Stack Development",
"Building Real-World Projects"
]
};|
"Talk is cheap. Show me the code." Linus Torvalds |
"Simplicity is the soul of efficiency." Austin Freeman |
|
"Make it work, make it right, make it fast." Kent Beck |
"Code never lies, comments sometimes do." Ron Jeffries |


