interface Developer<T extends TechStack> {
code<R>(project: Project<T>): Result<R>;
learnNewTech<N extends Technology>(tech: N): Developer<T & N>;
}
type TechStack = Record<string, Technology[]>;
type Technology = string;
type Project<T extends TechStack> = {
name: string;
requiredTech: T;
};
type Result<R> = Promise<R>;
class Person<T extends TechStack> implements Developer<T> {
private readonly name: string;
private readonly age: number;
private readonly interests: string[];
private skills: T;
constructor() {
this.name = "Dang Huu Loc";
this.age = 25;
this.interests = [
"Programming",
"Mechanical Keyboard",
"Workspace setting up",
"New technologies",
];
// Type-safe skill definition
this.skills = {
'Programming Language': ['Go', 'Java', 'JS/TS', 'Dart'],
'Framework': ['NestJS', 'Gin Gonic', 'Flutter'],
'Database': ['Postgres', 'MySQL', 'MongoDB', 'Redis', 'Timescale'],
'Platform': ['Docker', 'Kubernetes', 'AWS'],
'Tools': ['Git', 'Intellij IDEA', 'VS Code', 'ChatGPT', 'Claude'],
} as T;
}
public code<R>(project: Project<T>): Result<R> {
console.log(`${this.name} is coding ${project.name}!`);
return new Promise<R>((resolve) => {
// Simulate coding process
setTimeout(() => {
resolve({} as R);
}, 1000);
});
}
public learnNewTech<N extends Technology>(tech: N): Developer<T & N> {
console.log(`${this.name} learned ${tech}!`);
return this as unknown as Developer<T & N>;
}
public getSkills(): T {
return this.skills;
}
}
const me = new Person();
me.code({
name: "Awesome Go Microservice",
requiredTech: { 'Programming Language': ['Go', 'Typescript'] }
});
I am the Witcher Knight, aspiring to become a Solution Architecture Engineer.👨💻
- HCMC
-
06:57
(UTC +07:00) - loc.yen.512
- in/the-witcher-knight
- https://stackoverflow.com/users/14512647/the-witcher-knight
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.