My photo

AlexKov

Kovalev
Alexander

Front-End Developer

Contacts

Summary

I am 37 years old. I have been working as a system administrator for over 18 years. In my spare time, I was engaged in the development of web design for sites. Thanks to this, I mastered the skills of working in Adobe Photoshop and Illustrator. Self-education led to the fact that I was interested in the process of directly creating websites and applications. Now my goal is to learn a new front-end development skill.

Education

  • University: Sukhoi State Technical University of Gomel, Radio Electronics Engineer
  • Courses: IT-Academy - Java Core; The Rolling Scopes School - JS / Front-end. Stage 0;

Languages

  • Russian - native speaker
  • English - Pre Intermediate (A2)

Code Example

                    
                        function isPrime(num) {
                            for (let i = 2, max = Math.sqrt(num); i <= max; i++) {
                                if (num % i === 0) {
                                    return false;
                                }
                            }
                            return num > 1;
                        }
                        function getOut(num) {
                            const primes = [];
                            for (let i = 2; i <= num; i++) {
                                if (isPrime(i)) {
                                    primes.push(i);
                                }
                            }
                            return primes;
                        }
                    
                

Skills & Projects

Hard Skills
  • HTML
  • CSS
  • JavaScript
  • System Administrator
Soft Skills
  • Communication
  • Organisation
  • Creativity and innovation
  • Analytical thinking