rsschool-cv

Hihihehehaha

Liudmila Larionova

Junior Frontend Developer

Contacts

Location: Batumi, Georgia

Email: ritsumei@yandex.com

GitHub: tsuyune

The Rolling Scopes School: tsuyune

CodeWars: tsuyune

Intro

I am a beginner in Frontend development, who wants to become a real developer.

I am flexible, so can easily learn new technologies and I am keen on doing it.

Skills

Language skills

Education

Projects

Bongo cat drum kit

JavaScript, HTML, CSS

The project is made for the 30 Day Vanilla JS Challenge by Wesbos

AOD bikes landing page

HTML, CSS, JavaScript

I have made the landing page for practicing HTML and CSS skills

PC Assembly Banner

HTML, CSS

The project is for The Young Programmer’s School

Code Example

Fizz Buzz task on CodeWars

function fizzbuzz(n) {
    if (n < 1) return;
    let str = [];
    for (let i = 1; i <= n; i++) {
        if (i % 3 == 0 && i % 5 == 0) str.push("FizzBuzz")
        else if (i % 3 == 0) str.push("Fizz")
        else if (i % 5 == 0) str.push("Buzz")
        else str.push(i);
    }
    return str;
}