type ContactInfo = [string, string];
type LifeInfo = [string[], string[]];
type CodingSkills = {
langs: {
expert: string[];
intermediate: string[];
learning: string[];
};
specialities: string[];
ide: string[];
};
class Mar {}
class Attributes extends Mar {
get contact(): ContactInfo {
const email = "github@starscripts.xyz";
const discord = "https://discord.gg/starscripts";
return [email, discord];
}
get life(): LifeInfo {
const languagesSpoken = ["Dutch", "Arabic", "English"];
const countries = ["Netherlands", "Morocco"];
return [languagesSpoken, countries];
}
get coding(): CodingSkills {
const langs = {
expert: ["python", "lua"],
intermediate: ["go", "js"],
learning: ["c", "c++", "c#"],
};
const specialities = [
"Web & app reverse engineering",
"Artificial Intelligence (AI)",
"FiveM development"
];
const ide = ["Visual Studio Code", "IntelliJ IDEA"];
return { langs, specialities, ide };
}
}Hi! I'm Mar, a passionate and self-driven developer with a strong focus on reverse engineering, AI development, and custom solutions in the FiveM ecosystem. With fluency in multiple languages (both spoken and coded), I strive to bridge the gap between low-level systems and high-level user experiences.
🌍 Based in the Netherlands and Morocco, I thrive in multicultural and multilingual environments. My current development stack includes expertise in Python and Lua, while constantly expanding into new languages like Go, C/C++, and C#.
🛠️ I work mainly in VS Code and IntelliJ, driven by curiosity, community collaboration, and a dedication to solving complex problems.
📫 Contact Me
- 📧 Email: github@starscripts.xyz
- 💬 Discord: discord.gg/starscripts

