Mikhail Oleynikov
Junior Frontend Developer
About me
I'm a highly dedicated and driven professional with an outstanding background in telecommunication, customer services and facilities management. I enjoy the hands on approach and being part of a successful and productive team. I can quickly grasp new ideas and concepts that are introduced. Able to work well on own initiative and can demonstrate the highest levels of organisation. Even within a highly pressurised working environment, I have a strong ability to perform effectively. I possess excellent interpersonal skills and can communicate at all levels
Now I really want to become a frontend-developer and I'm study at RS School.
Work experience
Fiber Opic Engineer, OJSC Rostelecom, 08/2019 to Current
- Work with personnel and facilities management staff to install, remove, or relocate user connectivity equipment and devices
- Document procedures for hardware and software installation and use
- Install or repair network cables, including fiber optic cables
- Identify the causes of networking problems, using diagnostic testing software and equipment
Karasuk district administration of the Novosibirsk region, 06/2016 to 08/2019
- Work experience in leadership positions
Department head, OJSC Rostelecom, 08/2011 to 06/2016
- Recognized by senior executives, customers, vendors, and staff as a highly effective troubleshooter and problem-solver
- Proven record of successfully resolving large-scale, complex issues, reducing expenses, improving operations/performance, and turning around customer satisfaction ratings
- Strong leadership and effective communications skills with the ability to, create highly motivated, productive, customer-focused teams
- Highly knowledgeable in telecommunications operations including voice and data communication network technologies
Telephone/Network Engineer, OJSC Rostelecom, 08/2002 to 06/2011
- Professional Installation Engineer, Experience of undertaking all products and services into customers homes / business which included analyse technical problems and identify the cause by carrying out relevant on-site diagnostic tests
- Checking street cabinets, checking faulty equipment etc Installing and serving Fibre broadband, Vision, Telephone lines
Code example
Code for register on Codewars site:
function multiply(a, b) { if (!a || !b || typeof(a) != "number" || typeof(b) != "number") { return 0; } return a * b; }