Activity 35: Personal PortfolioCreate Separate Components for Each Section Use Angular CLI to create components for each section of the website: ng generate component components/header ng generate component components/about ng generate component components/skills ng generate comp...Nov 26, 2024·2 min read
Activity 29: HTTP MethodsHTTP Methods in RESTful APIs HTTP methods are fundamental for interacting with RESTful APIs. They define the action the client wants to perform on a resource. Below is a detailed overview of the commonly used methods: GET Purpose: Used to retrieve da...Nov 17, 2024·2 min read
Activity 28: Research Rest APIA REST API (Representational State Transfer Application Programming Interface) is a widely used architectural style for building scalable web services. It is based on a set of principles and constraints that define how web standards like HTTP can be ...Nov 17, 2024·4 min read
Activity 25: SOLID PRINCIPLES IN AngularUnderstanding SOLID Principles and Their Application in Angular In software development, SOLID principles are a set of design principles that make code more maintainable, scalable, and flexible. They guide developers in building robust systems by pro...Oct 23, 2024·4 min read
Activity 24: POSTMANHere are the detailed step-by-step installation of Postman. Step 1: Go to postman.com/downloads Press the Windows 64-bit button to download it. Step 2: Open the Installer After the download finishes, you’ll see a prompt at the bottom of your browse...Oct 13, 2024·3 min read
Activity 23: Research Angular ServicesWhat are Angular Services? Angular services are singleton objects used to organize and share data, logic, and behavior across components in an Angular application. Services enable separation of concerns by allowing developers to offload tasks such as...Oct 11, 2024·21 min read
Activity 22: Research SMACSS - Scalable and Modular Architecture for CSSIstructions: What is SMACSS?: SMACSS is a CSS architecture designed to help developers write scalable and modular CSS. It breaks down styles into manageable categories to make large projects easier to maintain. Key Categories: Base: Default styl...Oct 5, 2024·3 min read