Marina Lisichkina
Lawyer and Junior Frontend Developer

My photo

About me

Hello!
My name is Marina.
I am a lawyer specializing in civil law.
Ever since school I liked detective films, investigations and protection of the rights and interests of citizens. Therefore, I gladly went to study law at the largest institute in my region.
Particular emphasis was placed on subjects related to civil law, as well as the conduct of business by companies. I also completed my master's degree.
A full blown lawyer at your service!
In my free time, I study English, web-development. I also like playing sports and winning board and computer games. Developing my skills in a race with the skills of the characters!

Education

Saint Petersburg State University
Faculty of Law
Specialization: civil law, antimonopoly law.

Courses

  • HTML Academy
  • HTML and CSS Tutorials on the w3schools
  • RS Schools Course «JavaScript/Front-end»
  • Resume in native HTML and CSS

Code-example

Implementing the display of pet cards using Map.

function getPagesMap(pets, countCardsOnPage) {
  const paginationPets = [];
  for (let index = 0; index < 6; index++) {
    const part = pets.map(function(pet) {
      return {
        ...pet,
        id: index * pets.length + pet.id,
      };
    });
    paginationPets.push(...part);
  }

  const pagesMap = new Map();
  const pageCount = paginationPets.length / countCardsOnPage;
  for (let pageNumber = 1; pageNumber <= pageCount; pageNumber++) {
    const petsOnCurrentPage = paginationPets.splice(0, countCardsOnPage);
    const mixedPetsForCurrentPage = [];
    for (let index = 1; index <= countCardsOnPage; index++) {
      mixedPetsForCurrentPage.push(getRandomItem(petsOnCurrentPage));
    }
    pagesMap.set(pageNumber, mixedPetsForCurrentPage);
  }
  return pagesMap;
}
          

Get in touch

  • @Dea_sul_divano
  • hogwartsgsrh97@gmail.com

Skills

Law

  • Managing various projects
  • Mentoring team members
  • Civil law
  • Corporate law
  • Legislation in the field of electric power, gas and water supply
  • Deep knowledge of procurement legislation
  • Preparation and support of cases in courts of various instances
  • Tools: ConsultantPlus, Excel, Word, SAP

IT

  • HTML5
  • CSS3
  • JavaScript
  • TypeScript
  • Git, GitHub
  • Figma
  • JSON

Languages

  • Russian — native
  • English — B1 (EPAM English test result)