Profile avatar

Contacts

Skills

  • HTML5

  • CSS3

  • JS basics

  • React

  • Figma

Education

2022

Boca Code

Computer Software Engineering

2017 - 2019

New Jersey Institute of Technology

Master of Architecture - MArch

2005 - 2011

Belarusian National Technical University

Master of Industrial and Civil Engineering

Language

Belarusian : native

Russian : native

English C1 level (advanced)

Ann Starovoitov

Front End Developer

Summary

As a junior front-end developer, I have a passion for creating user-friendly web experiences. With a solid foundation in HTML, CSS, and JavaScript, I am dedicated to staying up-to-date with the latest industry trends and best practices. I have hands-on experience in developing responsive websites using front-end frameworks such as Bootstrap and React to build dynamic and interactive interfaces. In addition to my technical skills, I am a collaborative team player who values open communication and is eager to learn from senior developers.

Expierence

QA Engineer / SiriusXM / Deerfield Beach, Florida, United States

2022 - present
Responsible for performing formal Type Acceptance testing (Manual, Automated) of the car infotainment engineering Android based products (JVC Kenwood, JLR Audio, Alpine) that deliver SiriusXM audio and data content to SiriusXM Radio Service subscribers. Write BDD TCs based on the Requirements using Gherkin language. Review/ Customize/ Approve/ Reject the BDDs already written. Maintain traceability from high level requirements using JIRA & JAMA to the final test case

Software Engineer / Boca Code / Boca Raton, Florida

Jun 2022 - Nov 2022
Excel in the design of React components utilizing JavaScript, JSX, and SCSS for the front end of client projects. Pioneer effective UX/UI designs for projects. Unite with team members to plan, design, and develop project solutions.

Architectural Designer / RLC Architects / Boca Raton, Florida

Jun 2021 - Apr 2022
Produce documentation for site paln approval project for multifamily building. Integrate complex of calculations to properly develop design plans for structures.

Architectural Designer / Corgan / Greater New York City Area

Jan 2020 - Aug 2020
Work on a variety of projects in the aviation sector - various scale and scope, including interior space of concourses, holding areas, premium passenger lounges. Develop a competition proposal for a large terminal expansion in Zurich.

Architectural Designer / OCA Architects / Newark / New Jersey

Jan 2020 - Aug 2020
Work closely with design manager on mixed-use residential developments to prototype housing designs. Design Terminal One Redevelopment Project at Newark Liberty International Airport in partnership with Grimshaw Architects/ STV.

Architectural Designer / STV / Greater New York City Area

Apr 2017 - Sep 2017
Develop flood protection project of the World Trade Center, contracted by the Port Authority of New York & New Jersey, in association with Parsons Transportation Group, STV/AECOM and Spanish architect Santiago Calatrava.

Architectural Designer / HAKS / Greater New York City Area

Sep 2015 - Feb 2017
Responsible for completing all related design documentation for building repairs, system replacements and reconfiguration of existing buildings. Develop design documentation for 15 buildings, including new roof, building envelope, new electrical distribution system and replacement of mechanical equipment. Construction cost $132 million.

Code

function getMiddle(s)
            {
              if (s.length % 2 == 1) {
                  return s.substring((s.length / 2)+1, (s.length / 2)) 
                } else if (s.length % 2 == 0) {
                    return s.substring((s.length / 2)-1, (s.length / 2)+1)
                } 
            }
            console.log(getMiddle("tower"));
            console.log(getMiddle("bird"));