Contacts

Skills

  • html HTML
  • css CSS
  • js JS
  • photoshop Adobe Photoshop
  • power bi Power BI

Languages

  • Ukrainian (native)
  • Russian (native)
  • English (A1)

Education

Dnipropetrovsk National University

Mathematics

Bachelor of Mathematics and Fundamentals of Informatics.

icon
2003 - 2007

Classical Private University

Computer science

Bachelor of computer science, technician-programmer.

icon
2003 - 2008

Dnipropetrovsk National University

Mathematics

Mathematician, teacher of mathematics.

icon
2007 - 2008

Classical Private University

Automated Systems Software

Master's degree in automated systems software, software engineer.

icon
2008 - 2009

Higher School of Economics

Business Informatics

Retraining program

icon
2014 - 2015

About me

My name is Anastasiia Yurasheva. I currently live in Antalya, but I am Ukrainian.

Before the start of Russia's war against Ukraine, I lived in Moscow and worked as an automation project manager in the Human Resources Department.

Basically, it was the introduction of an automated recruitment system.

And building BI-reporting for company executives.

I drafted business requirements for developers and supervised the implementation of improvements.

Code Example

          
  function calculate(...arr1) {
    return function(...arr2) {
      return [...arr1, ...arr2].reduce((a, b) => a + b)
    }
  }
          
        
          
  Object.defineProperty(Person.prototype, 'name', {
    get() {
      return this.firstName + ' ' + this.lastName;
    },
    set(name) {
      [this.firstName, this.lastName] = name.split(' ');
    }
  });
          
        

Projects