BJBacia, John Ruzzel A.inzelgrammerist.hashnode.dev·Nov 29, 2024 · 2 min readActivity 33: Angular Recipe GridCreate a List of Object Data Structures recipe.service.ts import { Injectable } from '@angular/core'; import { RecipeModel } from '../components/recipe'; @Injectable({ providedIn: 'root' }) export class RecipeService { private recipes: RecipeMod...00
BJBacia, John Ruzzel A.inzelgrammerist.hashnode.dev·Nov 29, 2024 · 2 min readActivity 32: Angular Library GridBook Component HTML <main class="roboto-regular"> @for(book of bookList; track $index){ <div class="book-card"> <div class="book-card__image__container"> <img class="book-card__image" [src]="book.image" /> </div> <div class="boo...00
BJBacia, John Ruzzel A.inzelgrammerist.hashnode.dev·Nov 28, 2024 · 1 min readActivity 31: Angular Ecommerce Product List- Realme mobile phones for sale. The webpage is organized into a grid of product cards, each featuring a photo of a different Realme phone model, its name, price, and an "Add to Cart" button. The webpage also includes a navigation bar at the top, wit...00
BJBacia, John Ruzzel A.inzelgrammerist.hashnode.dev·Nov 27, 2024 · 4 min readActivity 20: Python Orm SqlalchemyUnderstanding the Prompt: A Step-by-Step Guide 1. Setting Up the Environment Install Python: Ensure you have Python installed on your system. You can download the latest version from the official Python website. Create a Virtual Environment: This i...00
BJBacia, John Ruzzel A.inzelgrammerist.hashnode.dev·Nov 27, 2024 · 2 min readActivity 19: Research Python SQLAlchemyIntroduction: Flask is a micro web framework for Python, designed to be lightweight, flexible, and easy to use. It allows developers to build web applications with minimal overhead while offering extensibility through plugins and libraries. Key Featu...00