me

Iryna Sittsava

Junior frontend
&
future full-stack developer

BIO

My name is Irina, I'm 21 years old and my English is not that good...

By education I am a teacher of German, with level B2, but I became interested in another "language".

Of my strengths, I can single out perseverance and diligence - which allows me not to quit my studies, even when it is very difficult! I am also an open, active and very sociable person.


I am ready to learn and learn new things, because I want to be useful!

Education

  • MSLU
    MSLU
    College Of
    Linguistics
    2018-2022
  • Itlogia
    Intensive:
    "Frontend Start"
    from Itlogia
    2022
  • Udemy
    Practical
    JavaScript
    (Advanced level)
    2022
  • Udemy
    The full course on JavaScript + React
    from UDEMY
    2023
  • Code Basic
    Courses on
    HTML& CSS
    Code Basic
    2022
  • Udemy
    The full course
    on modern
    TypeScript*
    2023-2024

Skills

  • HTML
  • CSS
  • JS
  • GIT
  • REACT
  • TYPESCRIPT

Language

My English - A2

My English is not good... I can understand and read, as well as write in English, but it is still difficult for me to perceive speech by ear, since I am learning by myself and there is a little lack of immersion in a foreign language environment But I'll try to raise my level!

My Germany - B2

My German is much better - I can speak fluently with native speakers, which helps me in my work! I also read books freely and watch books in German. I have almost perfect grammatical and phonetic skills, as this is my specialty!

For example:

                JavaScript:
                const postData = async (url, data) => {
                let res = await fetch(url, {
                    method: "POST",
                    body: data
                });

                return await res.text();
                };
                
Javascript + HTML function createCards(response) { response.forEach(({src, title, link}) => { let card = document.createElement('div'); card.classList.add('animated', 'fadeInUp', 'col-sm-3'); card.innerHTML = ` <div class="styles-block"> <img src=${src} alt="style"> <h4>${title}</h4> <a href=${link}>Подробнее</a> </div> `; document.querySelector(wrapper).appendChild(card); }); }