Skip to content
View dwep1337's full-sized avatar
🇧🇷
Made In Brazil
🇧🇷
Made In Brazil
  • Brazil
  • 06:35 (UTC -03:00)

Organizations

@MosaicoWeb

Block or report dwep1337

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
dwep1337/README.md
type TechStack = readonly string[];

interface IAboutMe {
  name: string;
  role: string;
  focus: string;
  experience: string;
  location: string;
  stack: TechStack;
  show(): string;
}

class AboutMe implements IAboutMe {
  public readonly name = "Anderson Henrique (Dwep)";
  public readonly role = "Backend Developer";
  public readonly focus = "TypeScript, Java, PHP";
  public readonly experience = "3+ years";
  public readonly location = "Brazil";

  public readonly stack: TechStack = [
    "Node.js (NestJS, Express, Fastify)",
    "Java (Spring Boot)",
    "PHP"
  ];

  get mainStack(): string {
    return this.stack[0];
  }

  public show(): string {
    return `
        ${this.name}${this.role}
        Focus: ${this.focus}
        Experience: ${this.experience}
        Location: ${this.location}
        Stack: ${this.stack.join(", ")}
        Main Stack: ${this.mainStack}
    `;
  }
}

console.log(new AboutMe().show());

Pinned Loading

  1. dwep-zsh-theme dwep-zsh-theme Public

    Tema customizado para Oh My Zsh

    Shell