Anastasiya Vel'yaninova

Hi everyone! I'm

Anastasiya Vel'yaninova

Junior/trainee Front End Developer

Contacts

About me

I came from totally different fields of activity: veterinary and service sector \(manager in barbershop). But why am I here now?

Because of a strong desire to explore direction with a limitless opportunity to learn and develop. I choose frontend because I truly enjoy when I can instantly see the result of my work. And, yes, I know that it sounds trivial, but it's a fact.

So I started my way from programming school "TeachMeSkills" and successfully finished it. The way wasn't easy, but I think it's worth my time and efforts, because a new world open to me, is so exciting!

I’m concentrated, hardworking, responsible, attentive to details, meticulous person, with ability to listen and to hear. I’m passionate with piano playing, music, dogs, education and vibrant, enthusiastic people. I’ve never stigmatize mistakes and I’m sure it’s not a shame to ask, if you don’t know.

Education

21.12.20 - 27.07.21

Coding School TeachMeSkills

Course: Front End - developer

2009-2014

Vitebsk State Academy of Veterinary Medicine

Specialization: veterinarian pharmacist

Other courses:

Skills

  • Html5

  • Css3

  • JavaScript

  • React

  • Git/GitHub

  • IDE(VSCode, Webstorm)

Languages

English

B2+ according to efset.org

english-level

Russian

Native

Code Example

Codevar task

The main idea is to count all the occurring characters in a string. If you have a string like aba, then the result should be {'a': 2, 'b': 1}. What if the string is empty? Then the result should be empty object literal, {}.

                
function count (string) {
  let result= {};
  for (let i = 0; i < string.length; i++) { 
    if(result.hasOwnProperty(string[i])) {
  result[string[i]] += 1; 
    } else { 
      result[string[i]] = 1;
    }
  }
    return result; 
}

Work Experience

21.12.2020 - 27.07.2021

Coding School TeachMeSkills, student

Education included three modules: html&css, javascript, React. I’ve completed two projects based on given layouts, finished different tasks on javascript module.
Using acquired knowledge during the last education module I’ve created a project available via a link below:

01.12.2018 - 30.11.2020

Barbershop, manager

I learned how to solve conflicts between employees, mastered time-management of a working group, regulated working schedule for more than 10 persons, organized holidays and events for staff and customers.

01.10.2014 - 30.11.2018

Veterinarian pharmacy, consultant

The most important skill that I got during this years is a communicative skill. I questioned each customer for necessary information, patiently listened to their answers, and found individual solutions for them. I’ve managed specialists in the pharmacy entrusted to me and trained specialists of other pharmacies.