Instructional Video6:40
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Introduction: Build and Consume a Web API Using ASP.NET Core and ADO.NET

Higher Ed
This is an eye-opener introduction into the highlights of a solution that has two projects: a Web API that is consumed in an ASP.NET Core MVC client. The application uses ADO.NET and uses client- and server-side validation. It also uses...
Instructional Video9:11
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Understand the Behavior on Combining Middleware

Higher Ed
In this video, you will learn how to combine multiple middleware in a middleware pipeline. Specific emphasis is given on WelcomePage and static file middleware. This clip is from the chapter "Middleware in ASP.NET Core 3.1" of the series...
Instructional Video15:14
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - The Startup Class - Defining the Middleware Pipeline

Higher Ed
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...
Instructional Video3:42
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the AddOrder View

Higher Ed
AddOrder view is added in this video along with suitable markup with built-in tag helpers to add model or server-side application. Application is run at the end of the video to demonstrate adding an order to the database. This clip is...
Instructional Video16:55
Curated Video

Quick JavaScript Crash Course - Modern and Advanced JavaScript - Promises-all Settled-vs-all

Higher Ed
This video explains a new function called Promise.allSettled(). This clip is from the chapter "Async Patterns and Promises" of the series "Quick JavaScript Crash Course - Modern and Advanced JavaScript".This section explains async...
Instructional Video4:35
Curated Video

Quick JavaScript Crash Course - Modern and Advanced JavaScript - Promises-any-vs-race

Higher Ed
This video is a continuation of the previous video which explains promise.any(). This clip is from the chapter "Async Patterns and Promises" of the series "Quick JavaScript Crash Course - Modern and Advanced JavaScript".This section...
Instructional Video1:45
Curated Video

Quick JavaScript Crash Course - Modern and Advanced JavaScript - Catch without Error

Higher Ed
This video explains catch without an error. This clip is from the chapter "Error Handling" of the series "Quick JavaScript Crash Course - Modern and Advanced JavaScript".This section explains error handling.
Instructional Video6:19
Curated Video

Quick JavaScript Crash Course - Modern and Advanced JavaScript - Rest Parameters

Higher Ed
This video explains the rest parameters. This clip is from the chapter "Function and Arguments" of the series "Quick JavaScript Crash Course - Modern and Advanced JavaScript".This section explains functions and arguments, which is a...
Instructional Video7:17
Curated Video

Quick JavaScript Crash Course - Modern and Advanced JavaScript - Let Const Rather than Var

Higher Ed
This video explains the replacements of the Var keyword, which are Let and Const. This clip is from the chapter "Variables and Scoping" of the series "Quick JavaScript Crash Course - Modern and Advanced JavaScript".This section explains...
Instructional Video4:12
Curated Video

SQL Server Course for Beginners with 100+ examples - Aliases

Higher Ed
Learn how to work with Aliases in SQL to give a temporary name to a table or column. The AS keyword creates an alias, making column names more readable. Remember that the alias's existence expires when that query's duration ends. This...
Instructional Video4:02
Curated Video

SQL Server Course for Beginners with 100+ examples - CHECK Constraint

Higher Ed
Learn how to work with the CHECK constraint in SQL to allow only specific values for a column. You can limit the value range set in a column, for example, Age > 18, Marks > 75, and so on. This clip is from the chapter "Constraints in...
Instructional Video2:59
Curated Video

SQL Server Course for Beginners with 100+ examples - FOREIGN KEY Constraint

Higher Ed
Learn how to work with the FOREIGN KEY constraint in SQL. A FOREIGN KEY is a field in one table that refers to the PRIMARY KEY in another. A child table is a table with a foreign key. This clip is from the chapter "Constraints in SQL" of...
Instructional Video2:26
Curated Video

SQL Server Course for Beginners with 100+ examples - OR Operator

Higher Ed
Learn how to work with the OR operator in SQL to display records only if one condition is TRUE. The OR operator should separate these two conditions. This clip is from the chapter "Operators in SQL" of the series "SQL Server Course for...
Instructional Video1:06
Curated Video

SQL Server Course for Beginners with 100+ examples - Fix SQL Server Installation Error

Higher Ed
While installing SQL Server, you may get the following error: Learn how to fix the following error while installing Microsoft SQL Server 2019: A required file could not be downloaded. This could mean the version of the installer is no...
Instructional Video9:47
Curated Video

Learning GitHub Actions for DevOps CI/CD - Environment Variables

Higher Ed
This video explains environment variables in detail. Here, you will look at different ways of creating variables and using their values inside our workflows. This clip is from the chapter "GitHub Actions: Exploring the Features" of the...
Instructional Video10:42
Curated Video

React JS Masterclass - Go From Zero To Job Ready - API: Login/Register Endpoint / 120

Higher Ed
In this video, we will look at the React root component, namely the app, the dashboard, the admin, and other elements of the project that form the tree structure of React.
Instructional Video9:39
Curated Video

React JS Masterclass - Go From Zero To Job Ready - React-Toastify / 119

Higher Ed
This lesson will teach us more about props or properties used in React. Here, the properties are transferred from the parent to child components.
Instructional Video14:36
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Dark Mode Integration / 067

Higher Ed
The dark appearance, known as Dark Mode, implements an interface style that many apps already adopt. We will learn to integrate the dark mode into the Cinemate project.
Instructional Video8:39
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Nested Routes / 059

Higher Ed
In this video, we will understand the concept of nested routes. When we create a route and then link other routes with a common hook, then we can create a super route that has the components that can be used in all other subsequent routes.
Instructional Video7:04
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Local Storage: Store All Tasks / 050

Higher Ed
Here, we will focus on our local storage. When we create tasks in our TaskMate, we need to provide the app a local storage to store the tasks that we create.
Instructional Video10:20
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Warning: Undefined Value / 048

Higher Ed
In this lecture, we will understand the "Warning: Undefined Value" error. We will understand what the warning means and how to rectify the error.
Instructional Video11:27
Curated Video

React JS Masterclass - Go From Zero To Job Ready - State: tasklist and setTasklist / 046

Higher Ed
We will create a state called tasklist to add tasks, delete tasks, and edit tasks inside the task list. You will learn to add local time and date strings.
Instructional Video10:01
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Handling Errors (try/catch) / 040

Higher Ed
In this video, we will discuss handling errors, which include server errors, wrong URLs, and so on.
Instructional Video6:34
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Loading State / 039

Higher Ed
Let's focus on the new loading feature, where we will create a state to show the loading of elements. Now that you have learned to fetch elements using a hook, you will now learn to load elements and display the loading image as we wait.