Vladislav Belyaev
Front-end Developer
Contacts information
- LinkedIn: Vladislav Belyaev
- Phone: +375(33)-628-65-38
- E-mail: buladzislau@gmail.com
- Telegram: @buladzislau
- Discord: jocker-py#7929
- GitHub: jocker-py
Skills
- HTML5, CSS3, Markdown
- JavaScript
- Python
- GitHub, Figma
- VS Code, WebStorm, PyCharm
Languages
- Russian - Native
- English - Intermediate(B1)
About me
- I graduated from Belarusian National Technical University as power-engineer in 2018.
- I've been studying English language during last two years in English-school.
- I've completed several courses on Python and JavaScript languages.
- I would like to work with interesting projects and people as Front-end Developer.
-
My strengths
- Team worker
- Communication
- Responsibility
Experience
Profession | Company | Years |
---|---|---|
Operator of Turbine department | Nuclear Power Plant | 2018 - present |
Consultant | Clothing store "Oodji" | 2016 - 2018 |
Consultant | Clothing store "LTB" | 2014 - 2016 |
Education
Code example
function isPrime(num) {
for (let i = 2; i <= Math.sqrt(num); i++) {
if (num % i == 0) {
return false;
}
}
return num > 1;
}