Contacts
- +37063889388
- ann.loshkareva@gmail.com
- @Hanna_LF
- GitHub
Education
IT Academy (2016)
Software Testing Engineer
Belarusian state university of culture (2011)
Librarianship and bibliography. Management
Languages
- Belarusian - native speaker
- Russian - native speaker
- English - A2 (B1 in process...)
- Lithuanian - A1
Interests
About me
Back in 2011, I received a librarian education, but I did not intend to be a librarian.
I started studying web development back in 2017, but I didn’t have enough skills (first of all, knowledge of English) to enter the profession.
Since then, I have been moving, albeit not very quickly, towards my goal of becoming a Frontend developer.
I like to work in a team, I find solutions for unsolvable (at first glance) tasks, I'm not afraid of difficulties, but I like to whine.
I believe that a person can learn everything if he really wants it.
I started studying web development back in 2017, but I didn’t have enough skills (first of all, knowledge of English) to enter the profession.
Since then, I have been moving, albeit not very quickly, towards my goal of becoming a Frontend developer.
I like to work in a team, I find solutions for unsolvable (at first glance) tasks, I'm not afraid of difficulties, but I like to whine.
I believe that a person can learn everything if he really wants it.
Skills
- HTML5, CSS3 (BEM methodology)
- JavaScript (Basic)
- Git/GitHub
- Photoshop
- Windows OS, Linux (Ubuntu)
- Editors: SublimeText, Atom, VSCode
Code example
function colourAssociation(array){
let newArr = [];
for (let i = 0; i<array.length; i++){
let smallArray = array[i];
let obj = {};
obj[smallArray[0]] = smallArray[1];
newArr.push(obj);
}
return newArr;
};