my_foto

Kolya Kutylov

Web Developer

About Me

I'm 34 and i work in sport industry. I sell bikes, snowboards and other stuff and also repair this stuff. All my life i create something, about 10 years ago I started shoot video(weading, action video, FPV). And when 2022 started i thinked that coding is brings together all this things what i love. In february i started learn java(i wanted to create Android app), but after 6 months i understood that for me more interesting create web stuff like sites and applications. And i started this adventure. Now i know so much but also know so small. In last month I spended on study about 5-6 hours per day. But after that i burned out and now i want slowly come back with all this cool peoples.

Project

Not so much project i have on GitHub most of all on my Mac:

Timer

SignIn Form

Education

About 10 different courses about web developing on Udemy, Hexlet and others, try different library. Have some skills with Vue3, bootstrap 5, Webpack, SCSS, work with API. Did many little tasks like: landing pages, small components, different small applications(to-do lists, weather, joke generator) Solved about 100 different problems at codewars, leet code, hacker rank.

Code example

Given an integer x, return true if x is a palindrome, and false otherwise.

          
            const isPalindrome = function(x) {
              if (x < 0) return false;
              
              let str = x.toString()
              
              for(let i = 0; i < str.length/2; i++){
                if(str[i] != str[str.length - 1 - i]){
                  return false
                }
              }
              return true
            };
          
        

Contacts:

  • Phone: +7-950-580-80-99
  • E-mail: kolyakutylov@gmail.com
  • Telegram: @kolyakutylov
  • Discord: Kolya Kutylov(@kutylov)

Skills

  • HTML/CSS
  • JavaScript(ES6)
  • Git
  • Photoshop