interface Developer {
name: string;
role: string;
education: {
university: string;
year: number;
};
location: string;
passion: string[];
techStack: {
languages: string[];
frontend: string[];
backend: string[];
databases: string[];
tools: string[];
};
}
const owen: Developer = {
name: "Sathanakon Bunphim",
role: "Full Stack Developer",
education: {
university: "King Mongkut's University of Technology Thonburi",
year: 3
},
location: "Thailand πΉπ",
passion: [
"Web Development",
"System Architecture",
"UI/UX Design",
"Problem Solving"
],
techStack: {
languages: ["Python", "JavaScript", "TypeScript", "PHP", "Java", "Go"],
frontend: ["React", "Vue.js", "TailwindCSS", "Bootstrap", "HTML5/CSS3"],
backend: ["Node.js", "Flask", "Django", "Express.js"],
databases: ["MySQL", "PostgreSQL", "MongoDB"],
tools: ["Git", "Docker", "VS Code", "Postman", "Linux"]
}
};
I'm always interested in collaborating on innovative projects and connecting with fellow developers!