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());
π§π·
Made In Brazil
Highlights
Pinned Loading
-
urlshortener
urlshortener PublicA 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
-
updown
updown PublicA simple Spring Boot application that demonstrates file upload and download functionalities using MinIO as an object storage solution.
Java
-
-
GTAV-Decompiled-Scripts
GTAV-Decompiled-Scripts PublicDecompiled scripts from GTA V Online v1.69 Build 3258
C 4
-
-
upload-x
upload-x PublicAPI created using NestJS and PostgreSQL, with functionalities for uploading and downloading files.
TypeScript
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.

