Summary

  • I am Software Engineer with over 9 years of experience specializing in software development for trade, warehouse, and accounting systems. I have analytical skills & strong attention to detail. Also is known as good team player according to past experience. Well motivated for change direction. I am looking for opportunities for a full-time job in web development.

Skills

  • Layout development: HTML5, CSS3, SASS/LESS, Bootstrap
  • Programming languages: JavaScript, JSX
  • Front-end libraries/frameworks: jQuery, React, Redux
  • Development tools: WebStorm / Visual Studio Code
  • Relational Database Management System: MS SQL Server / PostgreSQL / MySQL
  • Front-end build tools: Webpack
  • Version Control Systems: Github, SVN

Experience

  • Software Engineer
    LLC "Amper"
  • Software Engineer
    LLC "Bright Solutions"
  • Software Engineer
    LLC "IT-Lite"
  • Software Engineer
    LLC "FlyFishSoft"

Main responsibilities

  • Business process automation for B2B. Development of new and revision of the necessary modules for existing programs.
  • Building software systems based on 1C 8.3 and synchronization with sites on Python.
  • Maintenance of the project of operational accounting of cargo transportation under the control of Embacadero Rad Studio (Delphi XE5, XE7)
  • Writing additional modules, instruments, development of complex reports
  • Work with the configuration repository. Basic acquaintance with extension technology 1с

Education

  • Minsk State Linguistic University
    Associate’s degree
  • Belarusian National Technical University
    Bachelor’s Degree

Code example

        
    var whatTimeIsIt = function(angle) {
      let hour=Math.floor(angle/30);
      if (hour===0) hour=12
      let min=Math.floor(angle%30*2);
      return `${('0'+String(hour)).slice(-2)}:${('0'+String(min)).slice(-2)}`;
    }