Eugene Voronko

Eugene Voronko

Junior Front-End Developer and System Administrator


🧠 β€œEvery expert was once a novice.”
I am not afraid to learn and try new things. Welcome to my journey to full-stack development!


πŸ‘€ About Me

Hello everyone, my name is Eugene Voronko. I am a system administrator from the private IT school "ITLANDIA". I want to change the direction towards development. I am fond of sports, poetry, programming, technology and many others. My dreams are to become either a Full Stack Dev or a DevOps engineer.

Technically-minded System Administrator transitioning into software development with the goal of becoming a Full Stack or DevOps Engineer. I combine a solid understanding of IT infrastructure with growing proficiency in programming languages like JavaScript, TypeScript, and Python. I am seeking an opportunity to apply my diverse skill set to build and maintain high-quality software.


πŸŽ“ Education

The Rolling Scopes School

  • Course: JS/Front-end Development
  • Dates: 2025 – Present

Yanka Kupala State University of Grodno

  • Specialty: Information Technology Software (Software Engineer)
  • Dates: 2016 - 2020

Yanka Kupala State University of Grodno

  • Degree: Master of Technical Sciences in Computer Engineering
  • Dates: 2020 - January 2022

πŸ› οΈ Skills

  • Languages: JavaScript (ES6+), HTML5, CSS3, TypeScript, Python, C#, PHP, Assembler(basic), LUA.
  • Tools & Platforms: Git, GitHub, VS Code, Webpack, npm, Figma, Android Studio, yarn, WebStorm.
  • Methodologies: Agile, Scrum (Familiar), BEM.
  • Other: SASS/SCSS, Responsive & Adaptive Design, REST API, IP, Servers (Ubuntu, Fedora, Microsoft Windows Servers), OS, Android Development, HTTP/HTTPS, FTP, DNS and other.

πŸ“ž Contacts & Links


Experience / Projects

CV (This Project)

Landing Page - Mebel Hit

  • Description: The landing page for the Mebel Hit company was created at the request of my students, whom I taught in system administration. A personal initiative to make a page similar to a "grocery" one.
  • Technology Stack: HTML, CSS, JavaScript.
  • Link: Project Link

🌐 Languages

  • English: B1 (Intermediate Reading & Comprehension) / A2 (Elementary Speaking)
  • Polish: A1 (Beginner)
  • Russian: Native
  • Belarusian: Native

πŸ’» Code Example

This function checks if a name starts with the letter 'R' or 'r' (case-insensitively). If so, it returns "[name] plays banjo", otherwise it returns "[name] does not play banjo".

function areYouPlayingBanjo(name) {
  if (name.toLowerCase().startsWith('r')) {
    return name + " plays banjo";
  } else {
    return name + " does not play banjo";
  }
}