Skip to content
View dwep1337's full-sized avatar
πŸ‡§πŸ‡·
Made In Brazil
πŸ‡§πŸ‡·
Made In Brazil
  • Brazil
  • 13:28 (UTC -03:00)

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 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
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. urlshortener urlshortener Public

    A URL Shortener service built using Spring Boot that allows you to create short URLs and redirect users to the original URLs. The service supports automatic URL expiration and provides easy-to-use …

    Java

  2. updown updown Public

    A simple Spring Boot application that demonstrates file upload and download functionalities using MinIO as an object storage solution.

    Java

  3. Logitech-Script Logitech-Script Public

    Logitech Recoil Script

    Lua 2

  4. GTAV-Decompiled-Scripts GTAV-Decompiled-Scripts Public

    Decompiled scripts from GTA V Online v1.69 Build 3258

    C 4

  5. card card Public

    Credit Card Checker

    PHP

  6. upload-x upload-x Public

    API created using NestJS and PostgreSQL, with functionalities for uploading and downloading files.

    TypeScript