Professional Summary
Dedicated Software Engineer with an excellent blend of people management. Reliable and highly organized team player with excellent interpersonal and effective communication skills, team building, and conflict resolution. Driven with passion to work in an organization where my skills can be enhanced and utilized maximally.
Name:
Omolara AdebowaleBirthday:
19 AugustPortfolio:
Click Here :)Experience:
2+ YearsPhone:
+2347026853884Email:
debbiegterra@gmail.comAddress:
Lagos, NigeriaJob Status:
AvailableSkills
Programming Skills
- HTML5 and CSS3
- Tailwind CSS
- JavaScript
- TypeScript
- Angular
- React
- MongoDB
- Express JS
- Node JS
- Ionic Framework
- Version Control
Soft Skills
- Teamwork
- Communication
- Problem-Solving
- Critical Thinking
- Self-learning
- Accountability
- Adaptability
- Time Management
- Emotional Intelligence
Experience
Coding Instructor - Part Time
TheoWorld IT Services (TWITS) | April 2021 - Present
- I carefully develop and implement training materials for new and existing coders weekly and present virtual training classes via Zoom/Google Meet video Conference.
- Keep track of students' progress to determine the overall success of the learning program. I evaluate and revise lesson plans and course content to achieve student-centered learning.
- Earned positive feedback from parents regarding classroom instruction and student learning success.
Frontend Developer - Intern
Shipthis | April 2022 - September 2022
- Worked closely with backend developers and designers to develop well-designed, testable, efficient code by using the best software development practices.
- Demonstrated hands-on development of websites, which includes developing web pages based on wireframes and visual designs.
- Created, enhanced, and ran automated test cases
Web Developer
Genius Techub | July 2021 - August 2022
- Programmed web solutions for clients using HTML, CSS, and Javascript frameworks.
- Built several mobile applications that meet development standards and client's needs.
- Developed and maintained front-end functionality of websites to produce clean code that follows the design and functional specifications..
- Provided clear documentation and technical support to the end users of each site.
Education
JavaScript/Front-end Course
I recently started the Javascript/Front-end Mentoring Program (in English) organized by The Rolling Scopes School
The Frontend Developer Career Path
Attended a six months Frontend Developer Career path by Scrimba
Mobile Web Development Specialist
Participated in the Google Africa Developer Scholarship - GADS
Code Example
This typescript code example fetches a todo list from an API and emits it to be displayed by the parent Todos Component
loadTodos() {
this.todosService.getTodos()
.subscribe((res: Todo[]) => {
this.todoList = res;
this.btnState$.next(
BtnState.loadedAndDelaying)},
(err) => {
this.btnState$.next(BtnState.error);
});
}