NOTE! The content is free to use but, I do not agree with using in a portfolio unless credits are given.
Saying this because it could damage my reputation and chances of taking commissions.
This portfolio can be used as a source of inspiration for other programmers.
- 
I have contributed to 200m+ visits across many genres; 
- 
I am 17 [ 2008, 18 september ]; 
- 
I work only ' remotely ', so I wont meet anyone else besides employer unless he is located in another country. 
[ EU -> Romania ]
- 
As of right now im free to commision, I have a lot of technical expertise in frontend but I can be full-stack. 
- 
I am just getting started into vehicle mechanics so I wont be taking anything related to them as I am not that experienced in this area of developing. 
- 
I have contributed to a total of ~200m+ visits within the past years. 
function service.new(player:Player,access)
    promise.defer(function()
        return(CreateUI(player.Character or player.CharacterAdded:Wait(),access.Level))
    end)
    return setmetatable({Player=player,self.connection=player.CharacterAdded:Connect(function(char)
        CreateUI(player.Character,access.Level)
    end)},{
      __call=function(self,...)
          if not self.connection then
              return
          end
          
          self.connection:Disconnect()
          self.connection=nil
      end,
    })
endexport class AboutMe {
    name: string;
    role: string = "LuaU Programmer";
    lang: string[] = ["ro_RO", "en_US"];
    exp: string;
    skills: string[];
    constructor(
        name: string = "KTS_God",
        exp: string = "5+",
        skills: string[] = ["Scripting", "Game Design", "Optimization"]
    ) {
        this.name = name;
        this.exp = exp;
        this.skills = skills;
    }
    intro() {
        print(`Hey there! I'm ${this.name}, working as a ${this.role}.`);
        print(`I've been doing this for about ${this.exp} years now, mostly in ${this.lang.join(" and ")}.`);
        print(`Some of the things I enjoy doing: ${this.skills.join(", ")}.`);
    }
}
const newKTS = new AboutMe();
newKTS.intro();