Konstantin

Konstantin Fomichev

Junior FrontEnd Development

Personal Info:

City: Ukrain, Kharkov region
Phone: +380(068) 61 00 018, +38(066) 425 22 23
Skype: zloi_kot
E-mail: fomichkostja@gmail.com
Telegram: https://t.me/FomichovKostja
Viber: +380(068) 61 00 018
Linkedin

About my self

I am purposeful, diligent, result-oriented :)

Skills:

Education:

2010 Kharkiv National University of Radio Electronics. Radio communication equipment, broadcasting and television. Degree: specialist

Additional education:

06.2019 IT-School “Hillel”, Kharkov

Course: Front end Pro

11.2017 IT-School “Ukranian IT Scool”, Kharkov

Course: Front end basics

My projects:

Pet project online store. Used technologies:React, Redux toolkit, Type Script (at the development stage).

https://pizza-fomichovk.vercel.app/
https://github.com/fomichovK/react-pizza

Landing page. Used technologies: HTML, Css (FlexBox, Bootstrap …), Java Script.

https://fomichovk.github.io/song-bird/songBird/build
https://fomichovk.github.io/game-rules
https://fomichovk.github.io/online-zoo
https://fomichovk.github.io/mimino
https://fomichovk.github.io/wapik
https://fomichovk.github.io/moveup
https://fomichovk.github.io/limos

Languages

English - Pre-Intermediate

Ukrainian - Native

Russian - Native

Experience:

2019 - LLC “Radian”, position “Engineer”

2016 - 2018 LLC “Sklovolokno”, the position of “shift master”

2008 - 2015 LLC “Merefa glass company”, the position of “glassmaker”

CodeWars Code

DESCRIPTION: In this simple exercise, you will create a program that will take two lists of integers, a and b. Each list will consist of 3 positive integers above 0, representing the dimensions of cuboids a and b. You must find the difference of the cuboids’ volumes regardless of which is bigger.

For example, if the parameters passed are ([2, 2, 3], [5, 4, 1]), the volume of a is 12 and the volume of b is 20. Therefore, the function should return 8.

```function findDifference(a, b) {

let as = a.reduce((a,b)=>ab); let bs = b.reduce((a,b)=>ab); return Math.abs(as-bs); } ```