About me

I am 23 years old, I work as a design engineer. I think that my actual job will lead me to stagnation some day or other. I really need in activities where I can develop during my life. That is why I`m here. My goal is to gain knowledge in the field of front-end development.

My strengths:

  • Quick learner
  • Full immersion in the essence of the problems
  • Diligence
  • Team playing

Languages:

  • Russian - native speaker
  • English - A2 (B1 in proccess...)

Code example

                            
        function bmi(weight, height) {
            const bmi = weight / (height * height);    
            
            return bmi <= 18.5 ? 'Underweight' : bmi <= 25 ?    
            'Normal' : bmi <= 30 ? 'Overweight' : 'Obese';    
        }
                            
                        
Projects
photo-filter

Photo-filter

Photo editor that allows you to edit images by applying various properties and filters to them. Presets are included. Supports loading and saving images from device.
photo-filter

Vertical-slider

Asymmetric vertical and horizontal slider written entirely in JavaScript and CSS3 (only wrapper and buttons are written in html).