interface Developer {
name: string;
location: string;
education: string;
languages: string[];
currentFocus: string[];
funFact: () => string;
}
const jackson: Developer = {
name: "Jackson Chen",
location: "Traversing between digital and physical realms",
education: "Computer Science enthusiast with 3+ years of code crafting",
languages: ["zh_CN", "en_US", "JavaScript", "Java", "C", "Python"],
currentFocus: [
"Building intelligent systems",
"Exploring Web3",
"OS internals",
],
funFact: () => {
const facts = [
"I debug in my dreams sometimes",
"My code once saved me 40 hours of manual work",
"I can type at 120 WPM when really inspired",
"In 2025, I've pledged to stop using TypeScript outside of work environments",
];
return facts[Math.floor(Math.random() * facts.length)];
},
};
|
|