my-cv

Anna Nikanorova

Contact info

About Me

I am a third-year student of BSUIR. My speciality is a software engineer. I decided to actively pursue my IT-career direction and improve my knowledge in this area as much as possible.
I believe that my ability to learn and acquire new skills will help me become an experienced developer along this path.

Skills and Proficiency

Code Example

RGB To Hex Conversion from Codewars

function rgb(r, g, b) {
  const clip = (value) => Math.max(0, Math.min(255, value));
  const r1 = clip(r);
  const g1 = clip(g);
  const b1 = clip(b);
  const toHex = (c) => c.toString(16).padStart(2, '0').toUpperCase();
  return toHex(r1) + toHex(g1) + toHex(b1);
}

Education

Languages