rsschool-cv

Alan Kowalzky

Profile Photo

Contact Information

About Me

I am a passionate junior developer eager to start my career in web development. My goal is to become a skilled full-stack developer and contribute to innovative projects. I have strong problem-solving skills and a desire to continuously learn new technologies. Currently focusing on JavaScript and modern web development frameworks.

Skills

Code Example

Here’s my solution to a Codewars problem - “Sum of positive”:

function positiveSum(arr) {
  return arr
    .filter(num => num > 0)
    .reduce((sum, num) => sum + num, 0);
}

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

Projects

  1. RS School CV - This CV project
    • Technologies: Markdown, Git, GitHub Pages
    • Source Code

Work Experience

Educational Projects:

Education

English Level

B2 (Upper-Intermediate)