Pavel Zubarev

PAVEL
ZUBAREV
web developer
avatar

Hello, my name is Pavel!

I'm junior front-end web developer. I make websites and I love it.

My Skills

    • JS
    • HTML
    • CSS
    • Linux
    • Windows
    • SASS
    • WebPack
    • VS Code
    • Vim
    • Eclips
    • Qt
    • GitHub
    • Git
    • C++
    • g++
    • CMake
    • Bash

My Projects

screenshot of momentum site

Momentum

screenshot of travel portal site

Travel Portal

Education

2022

Preparatory Course «JavaScript/Front-end. Stage 0»

more

2022

Course «C++ development basics: red belt»

more

2021

Course «C++ development basics: yellow belt»

more

2021

Course «C++ development basics: white belt»

more

2009

Moscow Psychology and Social Institute

Faculty of CIvil Law

2008

Military University of the Ministry of Defense of Russian Federation

Faculty of CIvil Law

Language

  • Russian - Nativ
  • English - A2 (Pre-Intermediate)

Code Example

const GetColumn = (char, size, min, max)=> {
  let result = new Set();
  while(result.size < size) {
    result.add(`${char}${Math.floor(Math.random() * (max - min) + min)}`);
  }
  return result;
}

function getCard() {
  return [
    ...GetColumn("B", 5, 1, 16),
    ...GetColumn("I", 5, 16, 31),
    ...GetColumn("N", 4, 31, 46),
    ...GetColumn("G", 5, 46, 61),
    ...GetColumn("O", 5, 61, 76),
  ];
}
codewars logo