Logo Alexander Brooks

About Me

Hello! I'm Alex, an engineer without a professional license from the United States. My life has been an intriguing blend of art and science, which has presented some challenges that I view as opportunities for growth and resolution.

Currently, I am residing in Germany and plan to stay here for the foreseeable future. My time in Germany offers me a unique opportunity to immerse myself in the German engineering culture and their disciplined mindset. I aim to draw inspiration from this experience to grow my mutlimedia brand into a globally established media and technology company, incorporating the knowledge and insights gained along the way.

A photo of Alexander Brooks giving a commencement speech

Projects

"Tea Cozy" Website

This is a required portfolio project for the Codecademy Full Stack Developer course.

"Fotomatic" Website

This is another required portfolio project for the Codecademy Full Stack Developer course.

Whale Translator

            
  let input = 'turpentine and turtles';
  // vowelArray is an array comprised of vowel sounds used by whales

  let vowelArray = ['a', 'e', 'i', 'o', 'u'];
  /*resultArray stores the vowels extracted from the input variable
  that are found in the vowelArray*/

  let resultArray = [];

  for (let i = 0; i < input.length; i++) {
    if (input[i] === 'e') {
      resultArray.push(input[i]);
    }
    if (input[i] === 'u') {
      resultArray.push(input[i]);
    }
    for (let j = 0; j < vowelArray.length; j++) {
      if (input[i] === vowelArray[j]) {
        resultArray.push(input[i]);
      }
    }
  }

  let resultString = resultArray.join('').toUpperCase();

  console.log(resultString);
  //Outputs: UUEEIEEAUUEE
            
          

Try it yourself!

Skills