Summary
Technical skills
-
Html
-
CSS
-
Javascript
Personal information
Contact information
- Phone: +375297086227
- Email: litivn.kirill.m@mail.ru
Date of birth:
28 August
Address:
Sharangovicha street, Minsk, Belarus
Education
-
Belarusian State Agrarian Technical University
Faculty: Business and Managment
Degree: Bachelor
Graduation year: 2014
-
Belarus State Economic University
Faculty: Finance and Banking
Degree: Bachelor
Graduation year: 2014
Experience
Projects and code samples
-
Art-quiz (HTML, CSS, JS)
Application-quiz on the knowledge of the masterpieces of painting and their authors
-
Christmas-toys (HTML, CSS, TS)
Applications for sorting Christmas toys and decorating the Christmas tree
-
Video player
A customised HTML5 video player with controls custom design and following functionality: managing volume, playback rate, fullscreen mode, rewind back/forward width buttons and keyboard.
-
Code sample
Function, that takes the amount of handshakes and returns the minimal amount of people needed to perform these handshakes (a pair of farmers handshake only once).
function getParticipants(handshakes){ // formula handshakes = n*(n - 1) /2 let d = 1 - (4 * (-2 * handshakes)); let result = (1 + Math.sqrt(d)) / 2; return Math.ceil(result); }
- codewars: https://www.codewars.com/users/kirillLit