Activity 32: Angular Library Gridbook.service.ts import { Injectable } from '@angular/core'; import { Observable, of } from 'rxjs'; import { Product } from '../Models/book.model'; @Injectable({ providedIn: 'root' }) export class ProductService { private products: Product[] = [ ...Nov 29, 2024·4 min read
Activity 28: Research Rest APIIntroduction: In the digital age, applications need to have smooth communication between different systems to function efficiently. REST APIs, as an architectural style, have emerged to enable this communication, and they provide a standardized metho...Nov 25, 2024·5 min read
Activity 27: Css GridInstruction: apply it on 5 pages (ex. list of products,list of employees, list of students, etc) - name your repo CSS_GRID - add documentation on README.md of your repo - Submit github repositories Products List: A grid showcasing products with imag...Nov 6, 2024·7 min read
Activity 26 CSS FlexInstruction: Apply CSS Flexbox on 5 pages (e.g., product layout, employee cards, student profiles, etc.) Name your repository CSS_FLEX Add documentation in the README.md file of your repository Submit the GitHub repository link Deadline: Decembe...Nov 6, 2024·3 min read
Activity 25: "SOLID PRINCIPLES in Angular"Activity 25: Introduction The SOLID principle is a crucial concept in software development, enhancing code quality and efficiency. It is particularly useful in Angular, a leading web application framework, for creating robust, modular, and extendable...Nov 3, 2024·5 min read
Activity 24: POSTMANFIRST WHAT IS POSTAMAN? Postman is an API platform for building and using APIs. Postman simplifies each step of the API lifecycle and streamlines collaboration so you can create better APIs—faster. Easily store, catalog, and collaborate around all yo...Oct 12, 2024·3 min read
Activity 23: Research Angular ServicesWhat is Angular Services Angular services provide a way for you to separate Angular app data and functions that can be used by multiple components in your app. To be used by multiple components, a service must be made injectable. Services that are in...Oct 9, 2024·32 min read