Alena Martynova

  • phone: +375(44) 761-72-38
  • email: info88881@gmai.com
Photo

Summary

Hi there! I am considering a job change and my goal is to improve knowledge in web development. I'm interested in everything that surround me. Half a year ago, I started learning programming on my own. I liked it and I would like to continue doing this.

Skills

  • HTML5, CSS3, JavaScript
  • Little React, redux
  • Git
  • Photoshop, Figma
  • Selenium, cheerio, and little node.js
  • Code Editor (Visual Studio Code)

Education

BSEU, Faculty of Finance and Banking, Department of Banking

Self-study:

  • HTMLAcademy: HTML & CSS basics
  • JavaScript for kids. A tutorial on programming. Nick Morgan
  • youtube
  • learn.javascript.ru
  • Online-course React JS - путь самурая 1.0

Code examples

This is a function that will receive the page code and return a cheerio object, with which you can work with DOM elements.

                async function getPage(url) {
                  return new Promise((resolve, reject) => {
                      request({
                          url: url,
                          headers: {
                              'User-Agent': 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.13 (KHTML,
                               like Gecko) Chrome/24.0.1290.1 Safari/537.13'
                          }
                      }, (error, response, body) => {
                          if (error) {
                              return reject(error);
                          }
                          return resolve(cheerio.load(body, { decodeEntities: false }));
                      })
                  });
              }
            

Experience

Have an experience in building react app. You can see it here:

English Level

Pre Intermediate

There was no practice of using. I'm read books and articles, watching training videos, trying to improve my language skills.