CV photo

Svitlana Grytsai

Frontend Developer

Contacts

About me

Ukrainian expat in Berlin, who is looking for new meanings in everything

TechSkills

  • JavaScript
  • Node.js
  • HTML
  • CSS

Technologies

  • Confluence
  • Git
  • Jira
  • Scrum
  • Visual Studio Code

Languages

  • English: B2
  • German: C1
  • Ukrainian: native

Work experience in Germany

Apr. 2021 - now

Software developer

Materna Information & Communications SE Berlin, Germany

As a key globally active IT service provider, Materna advises and assists customers in all aspects of digitization and provides tailor-made technologies for agile, flexible, and secure IT.

  • Software Development in various Form-Management-System (FMS) projects for the public sector
  • Form development and application enhancement through the development of new functionalities
  • Bug fixes, adjustment of the application according to customer requirements
  • Application migration
Mar. 2019 - Jul. 2019

Internship

IAV | Automotive Engineering Berlin, Germany

Engineering service provider for the automotive industry.

  • Creation and automation of test cases for the web-frontend and an associated android app
  • Assistance in processing and automation of end-to-end test cases
  • Testing and error recording in the frontend of the end-to-end monitoring

Education Buisiness Informatics

Oct. 2017 - Nov. 2020

Bachelor of Science

Hochschule für Technik und Wirtschaft Berlin (HTW Berlin) Berlin, Germany
Dec. 2019 - Feb. 2020

Distributed Systems Project

“Service for the evaluation of vegan recipes”
  • Development of three microservices using Spring Boot and Docker
  • Configuration of the infrastructure components
  • Implementation of a resilience pattern - circuit breaker
  • UI implementation using Angular
Dec. 2019 - Feb. 2020

Project "Gamification of a Ticket System"

Projektron BCS
  • Development of a web-based prototype with JavaScript
  • Design and implementation of a relational Database with PostgreSQL
  • Communication and collaboration with the team and the client according to Scrum
Oct. 2018 - Feb. 2019

Project “Nutrition app for patients with inflammatory bowel disease"

Aperto GmbH - An IBM Company

Work experience in Ukraine

Apr. 2006 - Jan. 2015

Customer Service and Ticketing Agent

KIY AVIA | Air Service Agentur AG Kiev, Ukraine

KiyAvia specializes in the sales of transport and travel services for airline and tourism companies across Europe.

  • Support for corporate clients for all concerns of their business travel
  • Processing bookings for flights, travel insurance, hotels, rental cars and additional services via reservation systems
  • Problem solving in case of irregularities, processing of processing of cancellations and complaints
  • Participation in further training, such as system training, product training, training on travel areas and seminar tours

Education Economics

Sep. 2001 - Jun. 2006

Specialist Diploma - International economics

National Aviation University (NAU) Kiev, Ukraine

Code examples

            
                let surname = "Grytsai";
                let name = "Svitlana";
                let isRsStudent = true;
    
                function greet(name, surname) {
                    return "Hello, " + name + " " surname + "!";
                }
    
                let result = greet(name, surname);
                console.log(result);