Scroll

Hello World!
My name is Mikołaj Polecki

01

02

03

04

05

06

07

08

09

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

class MikolajPolecki {

  // A hardworking programmer with passion

  constructor() {

    this.name = "Mikołaj Polecki";

    this.specialization = "Java Developer";

  }

  languages() {

    return [ "Java", "Python", "Kotlin", "C++", "C#", "JavaScript", "HTML / CSS"];

  }

  skills() {

    return ["InteliJ", "PyCharm", "Clion", "Android Studio", "Visual Studio Code",

      "Visual Studio", "Atom", "NodeJS", "MySQL", "SQLite", "Bash", "Git", "Figma"];

  }

  education() {

    return [

      "2021-2025 : Polish-Japanese Academy of Information Technology",

      "Bachelor of Engineering (B.Eng.)"

    ];

  }

  experience() {

    return [

      "06.2024 – PRESENT : Programming Instructor | Coding Giants",

      "08.2020 – PRESENT : Freelance Programmer",

      "10.2023 – 06.2024 : IT Teacher | High School",

      "03.2021 – 05.2024 : Private Programming Lessons",

      "09.2020 – 06.2024 : IT Support | High School of St. Paul"

    ];

  }

}