Yuri Nazarov's photo

Yuri Nazarov

Junior Front-End Developer

Contacts

Education

  • 1998-2003

    Bashkir State University: Applied Mathematics

  • 2021

    HTML Academy - Front-End base course (HTML, CSS, JavaScript)

  • 2022

    rs.school - for now

About Me

I am 41 years old, I live with my wife and two children in the Ufa city.
I am working on a drilling rig. So, I drill Earth monthly.
I loved mathematics, so I graduated of Applied Mathematics in Bashkir State University.
Two first years after University, I worked as Engineer Programmer (anykey). I supported local network and software.
A couple of years ago I started to learning HTML & CSS, in really light mode. In the last year, I am learning hard.
I like reading fiction, repairing mechanical equipment and doing physical labor.
Since I lead a healthy lifestyle, there is plenty time for family and hobbies.
Twelve "I" were used in total.

Skills

  • HTML & CSS
  • JavaScript
  • Git
  • Microsoft Office
  • Photoshop, Figma

Code Example

function highAndLow(str){
   let count = 0;
   let Position = 0;
   let max, min;

   for (i = 0; i < str.length - 1; i++) {
      if (str.indexOf(" ", i) !== -1) {

         //initialization min and max
         if (count === 0) min = max = +str.slice(i, str.indexOf(" ", i));
         
         max = Math.max(max, +str.slice(i, str.indexOf(" ", i)));
         min = Math.min(min, +str.slice(i, str.indexOf(" ", i)));
         i = str.indexOf(" ", i);
         Position = i;
         count++;
      }
   }

   //in case only one number in the string
   if (Position === 0) return str + " " + str;

   max = Math.max(max, +str.slice(Position));
   min = Math.min(min, +str.slice(Position));

   return max.toString() +" "+ min.toString();
}

The code is a kata Highest and Lowest (JavaScript) on codewars.com.

English

Due to have daily english on the job, I have some expiries. Mostly it is a technical language in simple form.
Duolingo app is helping to support the skill.

Hobbies

  • Reading
  • Volleyball
  • Run
  • Manual labor
  • Hiking
  • Play guitar

My projects