Avatar
Hi, there

Sergey Krukouski

Front-end Developer

31 years old, Vitebsk

English level - A2


I want to master the field of web development, Javascript is especially interesting. In the future, I would like to work in a strong team on unusual projects. Currently, I work as a PLC software developer in an automated process control system, developing software for controlling boilers operating on local fuels, boiler houses in real time and scada systems.
  • Phone
  • E-Mail
  • Telegram
  • LinkedIn

EDUCATION


  • 2006-2010 - Vitebsk State Polytechnic College (Software Technician)
  • 2010-2014 - Polotsk State University (Software Engineer)
  • 2018 - English courses at the Vitebsk school “Light English”
  • 2018 - Software testing basics courses in Andersen
  • 2021 - RS School JS/FRONT-END

EXPERIENCE


  • Vitebsk Universal Base - System administrator 2010-2012. Database support for MSSQL server and enterprise networks
  • NPP Belkotlomash LLC - PLC Software Engineer 2012-Present. Development of automation panels, user interfaces, instructions, software for boilers operating on local fuels, boiler houses, tuning of frequency drives, SCADA systems, communication with the customer and setting up the equipment

SKILLS


  • HTML/CSS (Medium)
  • Javascript (Medium)
  • Java (Novice)
  • Git (Medium)
  • MSSQL (Medium)
  • EcoStruxure Machine Expert (Advanced)
  • Codesys 2.3 (Advanced)
  • Codesys 3.5 (Advanced)
  • EasyBuilder Pro (Advanced)

PORTFOLIO


Example of My Code
develop morse decoder
Javascript

function decode(expr) {
  return expr
  .match(/.{10}/g)
  .map(x => 
    x == "**********"
    ? " "
    : MORSE_TABLE[
    x.replace(/00/g, "")
    .replace(/10/g, ".")
    .replace(/11/g, "-")])       
    .join('');     
}