person-photo-for-cv

About Me:

I am 35 years old. I love setting new goals and achieving them. I really want to follow the learning path to the very end. I am confident that the knowledge gained will help me in the future.
So why not start right now...

Skils:

  • HTML
  • CSS/SCSS
  • Java Script
  • Git/GitHub
  • OOP
  • Bootstrap
  • Firebase

Code Example:

function HashStorage() {
this.storage = {};

this.addValue = function (key, value) {
this.storage[key] = value;
};

this.getValue = function (key) {
if (this.storage[key]) {
return this.storage[key];
}
return;
};

this.deleteValue = function (key) {
if (this.storage[key] !== undefined) {
delete this.storage[key];
return true;
}
return false;
};

this.getKeys = function () {
const arrayKeys = [];
for (key in this.storage) {
arrayKeys.push(key);
}
return arrayKeys;
};
};

Education:

Universitets

  • Brest State Technical University
    • Faculty of Electronics and Information systems

Courses

  • IT Academy
    • Web Application Development With JavaScript
    • Web Application Development With JavaScript (advanced)

Projects:

Languages:

  • Russian (naitive)
  • English (A1+)
  • Polish (A1)