Hello i'm āØ
Work hard and stay curious. Here, we're not just coding; we're creating possibilities and shaping tomorrow. Every line of code is a step towards a better, smarter, and more connected world. Remember, you're not just a developer; you're a visionary, a creator and a changemaker.
interface IProfile {
name: string;
location: string;
currentRole: string;
passions: string[];
}
const myTechJourney: IProfile = {
name: "M. Aji Perdana",
location: `${"Lampung" && "Bandung" ? "Indonesia" : "Earth"}`,
currentRole: "Full-Stack Web Developer",
passions: ["Frontend Web", "Backend Developer", "System Analyst"],
}
const aboutMe: string[] = [
"š I'm passionate about everything related to Typescript and Golang.",
"š± Iām continuously learning and expanding my knowledge in the world of programming."
"š» I'm focused on Frontend Web Development and using technologies
like React, Angular, Next.js",
"š± I enjoy Mobile Development with React Native and Flutter.",
"āļø In the backend, I'm into building REST APIs
and Microservices using Nest.js, Golang,
Java Spring Boot, MongoDB, PostgreSQL, RabbitMQ, MQTT (for IoT connectivity)."
]
const sayHello = async (): Promise<void> => {
Logger.log
(`
š Hello World! I'm ${myTechJourney.name}
from ${myTechJourney.location}
`)
}
await sayHello()