Information
About Myself
My name is Vlad and I have been doing layout since 2017.
I enjoy layout, constantly learning and developing in the field of front-end.
I like to listen to music, I also know how to play the drums.
I dream of buying a drum kit and playing it for my own pleasure when I want to relax after a hard day’s work.
Experience
Apsite - Web developer (mar 2020 - mar 2022)
- website markup
- implementation of layout to CMS (opencart, wordpress, joomla, modx)
- website redesign
Courses & Projects
- Hexlet - practical courses
- Ukrainian IT_School - JavaScript (apr-jun 2018)
- SPALAH it-scholl - HTML/CSS (apr-jul 2017)
Education
Kharkiv Petro Vasylenko National Technical University of Agriculture
The Education and Research Institute of Business and Management
Specialization: Management
Years: 2008 - 2014
Code example
Javascript:
Which color is the brightest?
function brightest(colors){
let colorCurrent = 0,
colorMax = 0;
for(let i = 0; i < colors.length; i++) {
let r = parseInt(colors[i].slice(1,3), 16),
g = parseInt(colors[i].slice(3,5), 16),
b = parseInt(colors[i].slice(5,7), 16),
sumColor = Math.max(r,g,b);
if (sumColor > colorMax) {
colorMax = sumColor;
colorCurrent = i;
}
}
return colors[colorCurrent].toUpperCase();
}
Languages
- English - A1
- Germany - B1