Hi there 👋

Stats

I use

var SoftwareDeveloper = class Developer {
  constructor(){
      this.name = "Krzysztof";
      this.familyname = "Haller";
      this.age = 17;
      this.languages = ["Python", "PHP", "Java", "JavaScript"];
      this.frameworks = ["FastAPI", "Node.JS", "Vue.JS", "Laravel", "CodeIgniter", "Electron", "JQuery"];
      this.ide = ["InteliJ IDEA", "PHPStorm", "PyCharm", "Visual Studio Code"];
      this.tools = ["Docker", "Kubernetes", "Rancher", "GitHub", "GitLab"];
      this.webservers = ["OpenLiteSpeed", "Apache2", "Nginx"];
      this.databases = ["MySQL", "SQLite", "Redis"];
  }
}