cats

Liudmila Larionova

Junior Frontend Developer

I am a beginner Frontend Developer, who is enthusiastic about creating user-friendly web interfaces and solving design challenges. Currently expanding my knowledge through hands-on projects and continuous learning in modern frontend technologies.

Contacts

Location: Batumi, Georgia

Email: ritsumei@yandex.com

GitHub: tsuyune

The Rolling Scopes School: tsuyune

CodeWars: tsuyune

Skills

  • HTML/CSS
  • JavaScript
  • React
  • Sass
  • BEM Methodology
  • Webpack
  • Vite
  • Git

Language skills

  • English - Upper-Intermediate
  • Russian - Native
  • Swedish - Pre-Intermediate
  • Hilichurlian - Intermediate

Education

  • The Rolling Scopes School - now
  • Scrimba - Learn React Course - now
  • freeCodeCamp (Responsive Web Design)
  • Learn Git Branching
  • Code-Basics (HTML and CSS courses)
  • Grasshopper app (JS Fundamentals course)
  • The Young Programmer's School, Petrozavodsk

Projects

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;
}