rsschool-cv

Name: Плехневич Михаил Андреевич

Location: Minsk

Contact:

phone number: +375-33-687-63-09

Email: mishaplxx@gmail.com

LinkedIn: https://www.linkedin.com/in/mikhail-plehnevich-584b661b3/

Education:

ВГУ им. П.М. Машерова (2016-2018)

faculty: mathematics and information technology

specialty: computer security

Courses:

Програмирование на Python: https://stepik.org/cert/792111

LANGUAGE

English: A1

Experience

Code example:

function factorial(n)
{
  if (n < 0 || n > 12) {
    throw new RangeError();
  }
  if (n == 0) {
    return 1;
  } else {
    return n != 1 ? n * factorial(n - 1) : 1;
  }

try {
  throw new RangeError();
} catch (e) {
  if (e instanceof RangeError) {
    return RangeError
  }
}
  }

This code is taken from the solution to task on codewars. My codewars account - mishaplx.

About me

I have experience in programming Python, PHP, jQuery, JavaScript, as well as working with MySql databases and working in graphic packages such as Photoshop and Adobe Illustrator. I have developed various user interfaces such as multi-page sites, landing pages. I also have experience in back-end development - writing php scripts and working with databases. I’m always investigating new areas of programming. Gain additional knowledge of new technologies, approaches, and apply them in practice. Never stop learning. I’m a real team player and also can work individually. I’m attentive to details. I don’t afraid of non-standard situations, overtimes. I’m very responsible about quality of my work, always meet deadlines. My main goal is to grow as a Front-end developer.