Activity 33: Angular Recipe GridWith this project I use this interface or model, this is based on the provided figma design. name for the menu name and the img is for the food image. then ID is their unique identifier. // recipe.model.ts export interface Recipe { id: number; n...Nov 26, 2024·3 min read
Actiity 28: Research Rest APIey Principles of REST API A REST API is an architectural style used in software development to provide communication between systems, usually over HTTP, following a stateless, client-server model. It allows clients (e.g., browsers, mobile apps) to co...Oct 14, 2024·5 min read
Activity 29: HTTP MethodsGET: Purpose: Retrieve data from the server. It does not alter any data, making it a safe and idempotent method. Usage: Ideal for fetching a list of resources (e.g., a list of users) or retrieving a single resource by ID. For instance, GET /users m...Oct 13, 2024·2 min read
Activity 24: POSTMANWhat is postman and its uses? Postman is one of the most popular software testing tools which is used for API testing. With the help of this tool, developers can easily create, test, share, and document APIs. Postman is a standalone software testing...Oct 13, 2024·4 min read
Activity 15: Angular with TypeScript and data structures#1: Student List First thing I did after creating the angular file was to generate a component I named it student list and inside that I created a file named student.ts and I wrote this code. export interface Students{ studNum: number; name: stri...Oct 5, 2024·13 min read
Activity 22: Research SMACSS - Scalable and Modular Architecture for CSSWhat is SMACCS? SMACSS ( Scalable and Modular Architecture for CSS ) is a css methodology that designed by Jonathan Snook in 2011. According to style guide of SMACSS, the Css Architecture should not build on 1 stylesheet . It ought to has build...Oct 3, 2024·7 min read
Activity 17: Data Structure AgainList is an ordered data structure that is used to store different or same elements in a sequential manner. The list is similar to array in data structure but in the array, we can store only the elements which are of same data-type whereas in the list...Oct 2, 2024·12 min read