Maksim Baranov

front-end developer

my-photo

I have been studying computer programming for several months now. It gives me pleasure, I would like to devote my life to it. My goal is to become a professional web developer.

Personal info


  • St. Petersburg, Russian Federation;
  • +7 921 303-06-86;
  • oooinfo@mail.ru;

Education


  • Specialist Degree in Law (St. Peterburg State University of Economics, 2010–2016);
  • СЕО (Online Course, 2018);
  • Yandex.Direct (Online Course, 2019);
  • Html, Css, Javascript (learning on my own since this year).

Languges


  • Russian: Native Proficiency;
  • English: Basic.

Experience


Designed several landing pages for my employer using a website builder. Created a few webpage slicing of education HTML website templates.

Soft skills


  • Communication: Advanced;
  • Problem-solving: Advanced;
  • Time-management: Very good.

Hard skills


  • Html: Good;
  • Css: Good;
  • Git: Basic;
  • JavaScript: Basic.

Example of my code


This code will calculate the sum of all numbers that occur from 1 to the number entered into the function.

                     
function testWhile(a) {
let x = 0;
let i = 1;
while (i <= a){
   if (i % 2 === 0) {
      x = x + i;}
      i++;
   }
return x;
};  
                     
                  

Custom video player


HTML, CSS, JavaScript

A Custom HTML5 video player with features such as volume control, playback rate, rewind back / forward with buttons and keyboard.

Vertical-slider


HTML, CSS, JavaScript

Vertical Slider using JavaScript; We have content on both sides and 2 buttons in the middle, once you click it one side goes up and another one goes down.