Skip to content
View mardev-xyz's full-sized avatar

Block or report mardev-xyz

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
mardev-xyz/README.md

About Me

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 discord = "https://discord.gg/starscripts";
        const email = "[email protected]";
        return [email, discord];
    }

    get life(): LifeInfo {
        const langs = ["Dutch", "Arabic", "English"];
        const country = ["Netherlands", "Morocco"];
        return [langs, country];
    }

    get coding(): CodingSkills {
        const langs = {
            expert: ["python", "lua"],
            intermediate: ["go", "js"],
            learning: ["c", "c++", "c#"],
        };

        const specialities = ["web/app reverse engineering", "ai", "fivem"];
        const ide = ["vscode", "intellij"];

        return [langs, specialities, ide];
    }
}

Skills

Pinned Loading

  1. tabarra/txAdmin tabarra/txAdmin Public

    The official FiveM server management platform used by over 27k servers!

    TypeScript 831 561

  2. overextended/ox_lib overextended/ox_lib Public

    A FiveM resource and script library for Lua and JS.

    Lua 344 448

  3. citizenfx/fivem-docs citizenfx/fivem-docs Public

    FiveM documentation repository

    HTML 102 309

  4. star-scripts-xyz/star-blackmarket star-scripts-xyz/star-blackmarket Public

    A free blackmarket resource made with ox_lib context menu

    Lua