photo cv

KATE LUKYANAVA

JUNIOR FRONTEND DEVELOPER

CONTACTS


SKILLS


  • HTML5
  • CSS3
  • JS Basic
  • Git, GitHub
  • Figma

EDUCATION


  • Belarusian State University | 2015-2019
  • IPMA ICR4 and IPMA ICB4 (UPMA, IPMA level D) | 2019
  • EPAM UpSkill IT Fundamentals | 2022
  • RS Schools JS. FRONT-END (in progress)

LANGUAGES


  • Russian: native
  • English: B1

ABOUT MY


I worked at Belarusian National Technical University. I was involved in the organization of distance learning. I have experience in creating and administering Joomla and WordPress sites.

Web development is interesting to me because I see the result of my work. Right now I'm learning CSS, HTML, JS.

I have a passion for this job i believe that passion translates into result.

CODE EXAMPLE


KATA from CODEWARS: Sum of positive

DESCRIPTION:

You get an array of numbers, return the sum of all of the positives ones.
Example [1,-4,7,12] => 1 + 7 + 12 = 20
Note: if there is nothing to sum, the sum is default to 0.

            
              function positiveSum(arr) {
                let sum = 0;
                for (let i = 0; i < arr.length; i++) {
                  if (arr[i] > 0) {
                    sum += arr[i];
                    }
                }
                return sum;
              }
            
          

PROJECTS