My photo

Igor Zolotarev

Front-end developer

I am very keen on web development and programming in general. 10 years experience in IT industry working in big international companies.

Projects

  • July - August 2021
  • “Museum”

    The landing page for the Louvre museum developed by me while I was studying in the online front-end school Rolling Scopes. Stage 0.

    Tech: HTML, CSS, Javascript

    Museum
  • October - November 2018
  • “HSE Data Management System”

    The web application that manages data related to HSE violations on drilling rigs. Successfully implemented in the biggest natural gas company in Russia “Gazprom”.

    Tech: HTML, CSS, Javascript, Bootstrap, ASP.NET core 2, SQL Server 2016

    HSE

Education

  • 2017 - 2018
  • Cornell Institute of Business and Technology,
    New Zealand, Auckland

    Postgraduate Diploma in Software Development

    • Mode of study: full-time
    • GPA: 3.7
  • 2005 - 2010
  • Russian State University of Oil and Gas, Moscow

    Bachelor of Petroleum Engineering

    • Mode of study: full-time

Work experience

  • 2010 - 2021
  • Mistras Group, USA

    Software Engineer

    • Implementation of the software developed in the US to Russian Oil Refineries.
    • SAP link integration with PCMS (Plant Condition Management Software)
    • Business Intelligence Data analytics products development in Qlik Sense
    • Reporting in Crystal Reports
    • On-site clients training
    • Technical support, troubleshooting
  • 2015 - 2016
  • Yamal LNG, Russia

    Lead Data Analyst

    • Records management of the data received from EPC-contractors and vendors
    • Data extraction from Excel spreadsheets from EDMS Fusion
    • Data transformation using VBA ADO and DAO recordsets
    • Loading data to the Access and SQL databases
    • Data validation using Regular Expressions patterns
    • Data quality analysis

Skills

Languages

  • English – fluent.
    IELTS Score: 6.5 of 9.
    Level B1.
  • Russian - native

Prog. Languages

  • HTML, CSS, Javascript
  • C#, Java, Python
  • SQL, R language
  • VBA

Web Dev Stack

  • React, Redux, Angular
  • ASP.NET Core 2.0
  • Node.js, Express
  • Microservices

IDEs

  • VS code
  • Visual Studio 2017

Presentation and code snippets

//Linked List to String

function stringify(list) {
  let node = list;
  let res = '';

  while (node) {
    res += node.data + ' -> ';
    node = node.next;
  }
  res += 'null';

  return res;
}