Contacts
Skills
-
HTML5
-
CSS3
-
JS basic
-
Git&Github
Languages
-
English (B1)
-
Polish (A1)
-
Ukrainian
-
Russian
Hobbies
-
Fishing
-
Volleyball
About me
My goal is to do what I like. I love coding and fishing. My strengths lie in learning quickly and striving to learn. I want to get knowledge and skills that are enough for employment in the company.
Education
National University of Railway transport, Ukraine
Master of Engineering
International University of Finance, Ukraine
Specialist's degree
Work Expirience
Engineer for the organization and regulation of labor
Railway company
Staff discipline. Labor rationing. Planning and analysis of the wage fund. Monitoring compliance with labor laws.
Code Example
"function showWeather(response);
{ let city = response.data.name;
let cityChoose = document.querySelector("#city");
cityChoose.innerHTML =`${city}`;
let currTemp =
document.querySelector("#temperature");
let temperature =
Math.round(response.data.main.temp);
currTemp.innerHTML =`${temperature}`; }"