Contacts
Skills
HTML
CSS
JS
Adobe Photoshop
Power BI
Languages
- Ukrainian (native)
- Russian (native)
- English (A1)
Education
Dnipropetrovsk National University
Mathematics
Bachelor of Mathematics and Fundamentals of Informatics.
Classical Private University
Computer science
Bachelor of computer science, technician-programmer.
Dnipropetrovsk National University
Mathematics
Mathematician, teacher of mathematics.
Classical Private University
Automated Systems Software
Master's degree in automated systems software, software engineer.
Higher School of Economics
Business Informatics
Retraining program
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(' ');
}
});