Avatar

Aleksandr Akiev

About me

I am 28 years old. I've been doing sports for over 20 years. Worked in sports for 3 years. Graduated in 2018 from the University (Master of Sports) in Yekaterinburg. Strengths: diligence, responsibility, endurance, attentiveness.

I have a desire to study in the field of IT in frontend development. There is no work experience in this field. I want to devote myself to frontend. I have plans to follow in the footsteps of my brother, who is already a Middle Frontend developer.

I finished Stage#0 at RS School.

Skills

  1. HTML
  2. CSS
  3. JS (a little)
  4. Adaptive layout
  1. VSCode
  2. Figma
  3. BEM
  4. Flex
  1. SASS
  2. learn.js
  3. Codewars
  1. Functions
  2. Objects
  3. Arrays

Code Example (Codewars)

const convert = (input, source, target, s = 0, str = '') => {

  const fromInputToSourceSystem = () => {
    input.split('').map(item => s = s * source.length + source.indexOf(item));
  }

  fromInputToSourceSystem();

  const fromSourceSystemToTargetSystem = () => {
    while (s > 0) {
      str = target[s % target.length] + str;
      s = Math.floor(s / target.length);
    }
  }

}
              
function getParticipants(handshakes){

  let i = 0

  while (handshakes > 0) {
    handshakes = handshakes-i;
    i++
  }

  return i
}
            
const isPrime = (number) => {

  if (number < 2) return false;

  for (let i = 2; i <= Math.sqrt(number); i++) {
    if (number % i === 0) { return false }
  }

  return true
}
            

Experience and Education

I have No work experience

I am going through simulations at the HTML Academy, self-study on learn.js and practice on the Codewars platform.
And just recently I finished Stage#0 on the RSSchool.

stage0 codewars htmlacademy

Projects

codejam-eldritch (link)

momentum (link)

travel (link)

English level

Pre-Intermediate