rsschool-cv

Alexander Galiev

image-6175.png

Telegram | Discord | E-mail

About

I work as a designer in an engineering company. My responsibilities include graphic design, photography, and 3D visualization. I’m now focused on transitioning into web development and gaining a strong understanding of web technologies and UI/UX principles.

Currently

I work as a designer in an engineering company. I continue to grow my design expertise and also aim to learn the basics of web development to expand my skill set.

Education

2014-2020 Shukhov Belgorod State Technological University

Skills

Sample Code

// Return the sum of all of the positives ones
function positiveSum(arr) {
  return arr
    .filter(num => num > 0)
    .reduce((sum, num) => sum + num, 0);
}