Vladislav Belyaev

MyPhoto

Front-end Developer

Contacts information

Skills

  • HTML5, CSS3, Markdown
  • JavaScript
  • Python
  • GitHub, Figma
  • VS Code, WebStorm, PyCharm

Languages

  • Russian - Native
  • English - Intermediate(B1)

Codewars

CodewarsRank

About me

  • I graduated from Belarusian National Technical University as power-engineer in 2018.
  • I've been studying English language during last two years in English-school.
  • I've completed several courses on Python and JavaScript languages.
  • I would like to work with interesting projects and people as Front-end Developer.
  • My strengths

    • Team worker
    • Communication
    • Responsibility

Experience

Profession Company Years
Operator of Turbine department Nuclear Power Plant 2018 - present
Consultant Clothing store "Oodji" 2016 - 2018
Consultant Clothing store "LTB" 2014 - 2016

Portfolio

  • portfolio
  • memory-game
  • image-gallery

Education

  • University

    • Belarusian National Technical University
    • Faculty of Energy
    • Specialty Thermal Power Plants
  • Courses

Code example


    function isPrime(num) {
      for (let i = 2; i <= Math.sqrt(num); i++) {
        if (num % i == 0) {
          return false;
        }
      }
      return num > 1;
    }