profile.pic

Aleksey Ratkevich

Frontend Developer

что ты тут делаешь?)

Breafly about myself

  • BrSTU student (4th year)
  • Since childhood, I have been fond of various logical tasks, I love puzzles and solve various tasks in extraordinary ways
  • I am a musician, I play electric guitar and sing. (there are several projects, mainly rock). We performed in Brest and Minsk
  • I am interested in programming (front-end development attracts most of all). I had experience in developing mobile applications in Java in an android studio, I wrote programs in C++, I have basic knowledge of databases (sql)

Skills and Proficiency

  • HTML5, CSS3
  • JavaScript Basics
  • Git, GitHub
  • VS Code, IntelliJ IDEA
  • Adobe Photoshop, Sony Vegas Pro
  • Android Studio basics

Code example

Carousel implementation on Javascript:

          let offset = 0; 
            const sliderLine = document.querySelector('.slider-line');
            
            document.querySelector('.slider-next').addEventListener('click', function() {
                offset = offset + 256 //offset += 256;
                if (offset > 768) {
                    offset = 0;
                }
                sliderLine.style.left = -offset + 'px';
            });
            
            document.querySelector('.slider-prev').addEventListener('click', function() {
                offset = offset - 256 //offset -= 256;
                if (offset < 0) {
                    offset = 768;
                }
                sliderLine.style.left = -offset + 'px';
            });
          
        

Education

4th year student of the Brest State Technical University . Faculty of Electronic Information Systems. I study in the specialty automated information processing systems (ASOI).

bstu_logo_jpg

Languages

  1. English - Intermediate/Upper-intermediate (B1/B2) according to the online test at Efset.org
  2. Russian - Native
  3. Belorussian - Intermediate
efset_results.png