About me

I am a student at RSSchool, 23 years old, from Saint Petersburg.
My goals is to learn frontend development stuff
and integrate into the coders team.

Experience

HTML, CSS, JS

A copy of an extension featuring audio player, weather, inspirational quotes, background images and to-do.

HTML, CSS, JS

Responsive and interactive Travel Website. Made with HTML, CSS and JavaScript.

Courses

The Rolling Scopes School

Jun 2022 - Aug 2022

JavaScript/Front-end. Stage 0 Pre-school course.

HTML Academy

Jan 2022 - Feb 2022

Introduction to web development course. Learn basics of core web technologies: HTML, CSS, and JavaScript.

Education

Siberian Federal University

Sep 2018 - Jun 2022

Baccalaureate with School of Space and Information Technology, GPA 4.0

Code Example

Sum of positive task from codewars

const duplicateEncode = word => {
    return word
    .toUpperCase()
    .split('')
    .map((el, i, arr) => {
        return arr.indexOf(el)
        == arr.lastIndexOf(el) ?
        '(' : ')'
    });
    .join('');
};