Photo

Tyrin Sergey

Front-end developer

Skills

  • HTML, CSS, JS

  • React, Redux

  • Figma

Languages

  • Russian - Native

  • English - Pre-intermediate

About

2+ years of experience as a front-end developer (React, Redux, Thunk, Redux-Saga, Styled-component, Jest). Before that, I worked as a fullstack developer with ASP.Net web applications (ASP.Net Framework, JQuery, SASS, gulp).

Experience

  • Front-end developer

    2019 - Present

    DIRECTUM

    Front-end developer on HR Pro project

  • Full stack developer

    2016 - 2019

    DIRECTUM

    Full stack developer on Directum WebAccess project

Education

  • Udmurt State University (UDSU)

    2008 - 2013

    Faculty: Information Technology and Computer Science

    Specialization: Applied Informatics

  • Udmurt State University (UDSU)

    2008 - 2014

    Faculty: Law, Social Management and Security

    Specialization: Jurisprudence

Code example

                            function explode(s) {
  const nums = s.split('')
    .map(Number);
  let result = '';
  nums.forEach(num => {
    let i = 0;
    while (i < num) {
      result += num;
      i++;
    }
  });
  return result;
}