My photo
Avatar

SUMMARY

Hey! I’m Illia. I’m going to start working in IT sphere. I like frontend development and game industry. I want to be in a space, where people do huge useful things and make high demands on themselves. I responsibly approach the tasks and try to solve them optimally. I’m independent and i’m a quick learner, trying do the best what I can.

SKILLS

CODE EXAMPLES

            
function convert(input, source, target) {
  if (source === target) return input; 
  let dec = 0;
  const res = [];
  
  for (let i = 0; i < input.length;) {
    dec += source.indexOf(input[i]) * Math.pow(source.length, input.length - ++i);
  } 
  
  while(true) {
    if (dec < target.length) {
      res.push(dec);
      break;
    }
    res.push(dec % target.length);
    dec = Math.floor(dec / target.length);
  }
  
  return res.reverse().map( i => target[i]).join('');
}
            
          

You can find more examples on my GitHub account github logo.

EDUCATION

PSU: Faculty of Information Technologies.
Specialty: Computer systems and the Internet technologies.

ENGLISH

Level: A2, but I keep learning English to this day in the mobile apps Simpler simpler logo and English Galaxy english galaxy logo.