Summary

Worked as a salesman in an electronics store, decided to change my job and finished tester course from Software-Testing, got a job at a local small project organization as a software tester. Also worked as a system administrator and a help desk assistant, wrote unit tests in C#. Then I was promoted to the position of WPF frontend developer, because the previous sole developer left. Worked with new languages for several months and quietly began to finalize the portal program for designers together with the backend developer. I also write auxiliary programs and small scripts.

Education

Vologda State Technical University

Faculty of ecology

Specialization: Rescue in emergency situations

Courses

  • JavaScript Manual on learnjavascript.ru (in progress)
  • RS Schools Course «JavaScript/Front-end. Stage 0» (in progress)
  • freeCodeCamp

Projects

Code Example

How good are you really?

There was a test in your class and you passed it. Congratulations! But you're an ambitious person. You want to know if you're better than the average student in your class.

                            
function betterThanAverage(classPoints, yourPoints) {
    return yourPoints > classPoints.reduce((a, b) => a + b, 0) / classPoints.length;
  }