About me
I am an energetic, goal-oriented, reliable, responsible and hardworking person. I am a mature team worker and can adapt to all difficult situations. I can work well both in a team and on my own initiative. If I don’t know something, I’m willing to learn new skills, software development languages, etc.
Skills
- HTML & CSS
- JS
- Git & GitHub
- Python
- C#
- PHP
- Java
- Arduino
Portfolio
A multi-page, responsive, modern website made for a course project that received the highest rating among students in our group.
Click here
Languages
- Kazakh - Native
- Russian - Advanced
- English - Intermediate(B1)
- Chinese - HSK1(HSK2 in process)
Code example
function even_or_odd(n) {
if(n % 2 === 0) {
return 'Even';
} else {
return 'Odd';
}
};