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