CRCalda Rodelinrodelcalda.hashnode.dev·Nov 28, 2024 · 3 min readActivity 33: Angular Recipe GridProject Structure Here's the breakdown of the files we'll use in this project: recipe.service.ts: Handles the business logic and provides data to the component. recipe.model.ts: Defines the structure of a recipe object. recipe.component.ts: Manage...00
CRCalda Rodelinrodelcalda.hashnode.dev·Nov 28, 2024 · 2 min readActivity 32: Angular Library GridCreate book.model.ts Define the structure of your book data in src/app/models/book.model.ts: export interface Book { id: number; title: string; author: string; price: number; stock: number; coverImage: string; } Create boo...00
CRCalda Rodelinrodelcalda.hashnode.dev·Nov 26, 2024 · 4 min readActivity 31: Angular Ecommerce Product ListFeatures of the Application Responsive Design: 2 columns on mobile (e.g., iPhone 14 Plus). 3 columns on tablets (e.g., iPad Pro 11"). 5 columns on desktops (e.g., MacBook Pro 16"). Dynamic Product List: Showcases 18 products with consistent b...00
CRCalda Rodelinrodelcalda.hashnode.dev·Oct 16, 2024 · 3 min readActivity 30: HTTP Status Codes1xx (Informational) These codes indicate that the request was received and is being processed, but there is no final response yet. 100 Continue Usage: Indicates that the initial part of the request has been received, and the client can continue wit...00
CRCalda Rodelinrodelcalda.hashnode.dev·Oct 16, 2024 · 2 min readActivity 29: HTTP Methods1. GET Purpose: The GET method is used to retrieve data from a server. Usage: It is safe and idempotent, meaning it doesn't modify any data on the server and can be called multiple times without different outcomes. Examples: Retrieving a list of ...00