My Photo
  • Python (basic)
  • C++ (basic)
  • Git
  • Photoshop
  • Russian (native)
  • English (B2)

Iliya Kuznetsov

Future Front-End developer

About Me

I completed my Bachelor's degree in Electronics and Nanoelectronics, but over time I realized that I was more attracted to other areas, such as development. In addition, I have always liked visual creativity (in particular, I was engaged in digital drawing and 3D modeling), which additionally influenced the desire to engage in front-end development - and here I am.

My strengths include quick learning, reliability, responsibility, as well as the skill of working in a team.

Education

Higher Education

  • RTU MIREA, bachelor's degree in "Electronics and nanoelectronics"
  • RTU MIREA, master's degree in "Intelligent information systems and technologies" (in progress)

Curses

  • RS Schools Course "JavaScript / Front-end. Stage 0"(in progress)

My Projects

There is nothing here yet, but I hope there will be a lot of very cool stuff soon!

Code Example

                        
function even_or_odd(number) {
    if (number % 2 === 0){
        return "Even";
    }
    return "Odd";
}