there should be
a photo here,
but I have no
good shots

Aliaksei Paliukhovich

future front-end developer

contact

  • +375(44)701-20-23
  • alex.teanow@gmail.com
  • heh#3294

skills

  • HTML
  • CSS
  • JavaScript
  • C#
  • Git and GitHub

education

  • Secondary special education,
    Minsk State Energy College,
    heating engineer.
  • As well as various starter courses and
    books on HTML, CSS, JavaScript, C#,
    and more.

work experience

No experience in IT.

language

  • Russian - native
  • Belarusian - native
  • English - beginner

about me

Hello. My name is Alexei, I am 21 years old, I live in Minsk, Belarus. I love programming for a very long time. However, it was not possible to get the desired education for certain reasons. Therefore, I am engaged in self-education. During the time of self-study, I managed to make several prototypes of games on Unity, the code of which I am ashamed to show people :) But I want to become a web developer, so I'm learning programming at RS School!

code example

const towerBuilder = (floors, blockType = '*') => {
    return (new Array(floors)).fill().map((_, i) =>
        blockType
            .repeat((i + 1) * 2 - 1)
            .padStart(floors + i, ' ')
            .padEnd(floors * 2 - 1, ' ')
    );
};

my projects