Skip to content
View the-witcher-knight's full-sized avatar

Block or report the-witcher-knight

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
the-witcher-knight/README.md

Typing SVG

Facebook Gmail LinkedIn Stack Overflow

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'] } 
});

Pinned Loading

  1. viebiz/lit viebiz/lit Public

    Lightning: Go Libs

    Go 2