Data Structure AgainProduct Table List - is an ordered collection of individual items. Each row in the Product Table can be seen as a list of values. These lists contain all the properties of a product. Object - is a collection of key-value pairs where each key repres...Nov 29, 2024·3 min read
HTTP MethodsUnderstanding HTTP Methods in RESTful APIs: GET, POST, PUT, DELETE, and PATCH RESTful APIs rely on HTTP methods to enable clients and servers to communicate. Each method has a unique purpose, enabling the creation, retrieval, update, or deletion of r...Nov 8, 2024·3 min read
REST API (Representational State Transfer Application Programming Interface)Introduction to REST API A REST API is a type of web API that adheres to the principles of REST (Representational State Transfer), an architectural style for building scalable web services. It allows clients to communicate with servers over HTTP usin...Nov 8, 2024·4 min read
SOLID PRINCIPLES in AngularIn software development, SOLID principles are a set of guidelines that help developers design scalable and maintainable systems. These principles can be seamlessly applied in Angular development to create flexible, extensible, and manageable applicat...Oct 21, 2024·11 min read
Postman DocumentationWhat is Postman? Postman is the most popular API development tool, putting the process of creating, testing, automating, and sharing HTTP requests in your hands with ease and without hassle. It enables people to communicate with APIs by utilizing mul...Oct 17, 2024·3 min read
Angular with TypeScript and data structuresTo apply the learning from your previous lesson on Angular with TypeScript and data structures, you’ll implement an array or list similar to the example provided, using strings or numbers. The goal of this activity is to practice manipulating arrays ...Oct 8, 2024·21 min read
Activity 22: Research SMACSS - Scalable and Modular Architecture for CSSIntroduction: SMACSS (Scalable and Modular Architecture for CSS) is a CSS architecture methodology created by Jonathan Snook. It is designed to help developers write more scalable, maintainable, and modular CSS. By categorizing CSS rules into differe...Oct 4, 2024·4 min read