π€ 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
- π§ Email:
eugene.voronko.13@gmail.com
- π LinkedIn: linkedin.com/in/eugene-voronko
- π» GitHub: github.com/eugenevoronko1
- π€ Discord:
eugenevoronko_25550
- π Phone:
+375 (33) 123-45-67
Experience / Projects
CV (This Project)
- Description: A responsive CV page created as a project for the RS School course.
- Technology Stack: HTML, CSS.
- Link: github.com/eugenevoronko1/rsschool-cv
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";
}
}