rsschool-cv

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

Yanka Kupala State University of Grodno

Yanka Kupala State University of Grodno


🛠️ Skills


📞 Contacts & Links

Platform Link / Info
📧 Email eugene.voronko.13@gmail.com
🔗 LinkedIn linkedin.com/in/eugene-voronko
💻 GitHub eugenevoronko1
🤖 Discord eugenevoronko_25550
📞 Phone +375 (33) 123-45-67

Experience / Projects

CV (This Project)

Landing Page - Mebel Hit


🌐 Languages

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

💻 Code Example

This function checks if a name starts with the letter ‘R’ or ‘r’ (case-insensitively).

The last line, return name;, is unreachable code that never executes.

```javascript function areYouPlayingBanjo(name) { if (name.toLowerCase().startsWith(‘r’)) { return name + “ plays banjo”; } else { return name + “ does not play banjo”; }

return name; }