rsschool-cv

Yuliya Klepusevich

Yuliya Klepusevich

Junior Frontend Developer

πŸ“ Pinsk, Belarus;βœ‰οΈ julikghost@gmail.com; πŸ”— LinkedIn/Yuliya Klepusevich


πŸ’‘ Summary

After several successful years in QA, including automation and mentoring, I decided to transition into frontend development.
My background in UI testing, JavaScript, TypeScript, and CI/CD pipelines enables me to create stable and user-friendly interfaces.
I am now focused on growing as a frontend developer and applying best practices in development and UX.


πŸ”§ Tech Stack

Languages:
JavaScript, TypeScript, SQL, XML, JSON , HTML & CSS

Dev Tools & Collaboration:
GitHub, GitLab, JIRA, Confluence, VS Code, MS SQL, Azure, DevTools, Slack, Figma, DBeaver, Postman, Swagger, Fiddler

CI/CD:
GitHub Actions, Git, RDP, VMware, Docker


πŸ›  Code example

// Function to convert kilometers to miles
function convertKmToMiles(km) {
  return km * 0.621371;
}

// Function to prompt user for numbers and return their sum
function sumInput() {
  let arr = [];

  while (true) {
    let value = prompt("Enter numbers one by one. Click Cancel to stop entering", 0);

    // Stop input on empty string, null, or non-finite value
    if (value === "" || value === null || !isFinite(value)) break;

    arr.push(+value); // Convert to number and add to array
  }

  let sum = 0;
  for (let number of arr) {
    sum += number;
  }

  return sum;
}

// Alert the result of summing the user input
alert(sumInput());


πŸ† Achievements


πŸ“š Education & Training


🌍 Languages


🎯 Personal Qualities


🎨 Hobbies

Photography β€’ Singing β€’ Traveling β€’ Painting Glass β€’ Board & Roleplaying Games


πŸ“Œ Let’s connect and build high-quality, user-friendly software together!