interface Developer {
name: string;
role: string;
location: string;
languages: string[];
focus: string;
}
const Zypheris: Developer = {
name: "Yusuf",
role: "Full-Stack Developer",
location: "Turkey",
languages: ["JavaScript", "TypeScript", "Python", "C++", "C#", "Lua", "Kotlin"],
focus: "Building next-generation web applications"
};
class Skills {
frontend = ["React", "Next.js", "Tailwind CSS", "Bootstrap"];
backend = ["Node.js", "Express", ".NET"];
databases = ["MongoDB", "MySQL"];
tools = ["Discord.js", "Git", "VS Code"];
}
"Any fool can write code that a computer can understand. Good programmers write code that humans can understand." — Martin Fowler
"Code is like humor. When you have to explain it, it's bad." — Cory House





