Curated Video
The Art of Doing - Web Development for Beginners - Store Front Two Project Part 2
In this video, you will learn how to style the homepage of the company's site. We will apply appropriate HTML structure and semantic elements to create a visually appealing design. Additionally, we will work on the About page, which will...
Curated Video
The Art of Doing - Web Development for Beginners - CSS Selectors
In this video, you will learn about different CSS selectors such as Universal selector, Element selector, Selector list, Class selector, ID selector, and Descendant selector. We will also understand how CSS properties are inherited from...
Curated Video
The Art of Doing - Web Development for Beginners - Final Project Part 1
In this video, we will start coding our project together, focusing on the index page and applying styles to it. Join us as we take the first steps in building our project from scratch. This clip is from the chapter "JavaScript - Working...
Curated Video
The Art of Doing - Web Development for Beginners - Search Engine Project Part 3
In this video, we will give style to our search engine name "Eramoogle", just like Google. You will learn how to add custom styles to text elements and align them according to the desired layout. This clip is from the chapter "CSS Layout...
Curated Video
The Art of Doing - Web Development for Beginners - Inline Containers with span Tags
In this video, we will explore the span tag, which is an inline container element that can be used to format specific sections of text with a class or id attribute. We will see how to use the span tag to create visually distinct sections...
Curated Video
The Art of Doing - Web Development for Beginners - Container Elements with div Tags
In this video, you will learn about the div tag, which is a powerful container element that can group content together and be targeted later with CSS. We will see how to add class and id attributes to divs to make styling specific...
Curated Video
CompTIA A+ Certification Core 2 (220-1102) - Special IP Addresses
The designers of IP addresses reserved many IP addresses for special uses. From loopback to private IP addresses, a good tech understands these special addresses as well as when and how to use them. This clip is from the chapter "Local...
Curated Video
CompTIA A+ Certification Core 2 (220-1102) - Network IDs and Subnet Masks
IP addressing was designed from the ground up for flexibility in supporting LANs and WANs of any size. The first step towards understanding this flexibility is to understand Network IDs and how they interact with a subnet mask to get...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create UpdateCustomer View
You will be able to understand the creation and working of the view to render an update of a customer record. They will get a refresher on the client- and server-side validation in the process. The completed application until this point...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Edit Home Controller Index View
We will edit the default Index view of the home controller in this video to customize it according to our needs. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of the...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the Customer and Order Classes
In this video, you will learn the creation of the model classes: Customer and Order that map to the corresponding database tables. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the IOrderRepository Interface
The application uses a repository pattern, so in this video, an IOrderRepository interface is created to cater to the Order Table in the database. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the series...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the ICustomerRepository Interface
The application uses a repository pattern, so in this video, an ICustomerRepository interface is created. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the series "ASP.NET 6.0 - Build Hands-On Web...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the Customer Model Class
The Customer model is created in this video. The model is mapped to the corresponding Customer table in the database. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the series "ASP.NET 6.0 - Build Hands-On Web...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - State Management (Session State)
In this video, you will learn, with code examples from a running project, to demonstrate state management with session state. This clip is from the chapter "State Management in ASP.NET Core" of the series "ASP.NET 6.0 - Build Hands-On...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - The Startup Class - Defining the Middleware Pipeline
This video explains how the request processing (middleware) pipeline is created in the configure method. This clip is from the chapter "Create and Take a Deep Dive into Your First ASP.NET Core 3.1 Application" of the series "ASP.NET 6.0...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - The Startup Class - How to Configure Services
This video discusses the Startup class in an ASP.NET Core 3.1 project. After going through this video, you will have knowledge about the two main methods in this class, in particular, the ConfigureServices() method, which is used to...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create a Customer Repository
A Customer Repository class is created and initialized with the connection string and the logger object. GetAllCustomers() method is created to list all customers from the Customer table in the SQL database. This clip is from the chapter...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - How Do We Create an ASP.NET 6.0 Web API Using EF Core?
This is a complete video on creating an ASP.NET 6 Web API using EF Core code first approach. The video shows how to create a new ASP.NET 6 Web API project in VS 2022 and install the Nuget packages. This clip is from the chapter "Build...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Minimal Hosting Model of Migration to ASP.NET 6.0
This tutorial shows the minimal hosting model for migration of ASP.NET Core 3.1 projects to ASP.NET 6.0. This model uses unified Program and Startup classes (and files) to just one Program class (one file). It uses the new WebApplication...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create Index View (Order Controller)
This video explains the creation and code for the Index view of the Order Controller. You will be able to create the Order Controller Index View and run the application. This clip is from the chapter "Coding Project Part 2: Consume the...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the Order Controller
This video walks through the coding exercise to create the Order Controller with the Index action method. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of the series...
Curated Video
Behavioral Design Patterns in C++ - Introduction-Template Method
This video provides an introduction to the template method pattern. This clip is from the chapter "Template Method" of the series "Behavioral Design Patterns in C++".In this section, we explore the template method behavioral design...
Curated Video
Behavioral Design Patterns in C++ - Pros and Cons-Strategy Pattern
This video talks about the pros and cons of the strategy pattern. This clip is from the chapter "Strategy" of the series "Behavioral Design Patterns in C++".In this section, you will learn about the strategy pattern.