
Location: Batumi, Georgia
Email: ritsumei@yandex.com
GitHub: tsuyune
The Rolling Scopes School: tsuyune
CodeWars: tsuyune
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.
Html/Css
Sass
BEM-methodology
Javascript
Webpack
React
Vite
Git
English - Upper-Intermediate
Russian - Native
Swedish - Pre-Intermediate
Hilichurlian - Intermediate
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
JavaScript, HTML, CSS
The project is made for the 30 Day Vanilla JS Challenge by Wesbos
HTML, CSS, JavaScript
I have made the landing page for practicing HTML and CSS skills
HTML, CSS
The project is for The Young Programmer’s School
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;
}