Instructional Video9:09
Curated Video

Practical Cyber Hacking Skills for Beginners - Understanding Databases and SQL

Higher Ed
In this lesson, we will look at databases and structured query language (SQL) and how they can be used to manipulate and retrieve data.
Instructional Video9:10
Curated Video

Practical Cyber Hacking Skills for Beginners - Hashing

Higher Ed
In this video, we will look at hashing, which is the conversion of key/string/variable into a hash using an algorithm used in malware and antimalware products.
Instructional Video6:37
Curated Video

Practical Cyber Hacking Skills for Beginners - Hardening Networks

Higher Ed
Here, you will learn how to harden networks. What devices and protocols are available to harden a network from being hacked?
Instructional Video3:55
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Adding Spinkit to the App

Higher Ed
This lecture teaches the steps to configure BlazorPro.Spinkit, a Nuget package that allows animated loading indicators while the data is being asynchronously fetched from the database. This clip is from the chapter "Additional Content:...
Instructional Video12:43
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Installing the Blazor Movie App with Database from GitHub on User Machines

Higher Ed
This lecture walks through the process of simulating the Blazor CRUD application with the database after cloning it from the GitHub repository. This clip is from the chapter "Authentication and Authorization" of the series "Build and...
Instructional Video20:57
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - View User Profile Data with Authorization

Higher Ed
This lecture shows all the steps in code required for implementing authorization to view user profile data. This clip is from the chapter "Authentication and Authorization" of the series "Build and Learn ASP.NET 6.0 Blazor Hands-On".This...
Instructional Video12:15
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Authentication in Action for the Movie App

Higher Ed
This lecture shows the usage of individual user accounts in the completed movies app from the previous section. You will see how only logged-in (authenticated) users can view the movies. This clip is from the chapter "Authentication and...
Instructional Video7:26
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - JavaScript Interop Calls to Modal

Higher Ed
This lecture shows how to close the modal dialog after saving to the database by clicking the submit button. You will learn the necessary changes needed to achieve this. This clip is from the chapter "Create a CRUD Application in Blazor"...
Instructional Video14:51
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Details Page to Show List of Movies

Higher Ed
This video lecture shows how to create a details page for movies with a navigation menu. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor Hands-On".This section...
Instructional Video9:05
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Seed the Movies Database

Higher Ed
In this video, you will learn the process of seeding the database with some initial records for testing. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor Hands-On".This...
Instructional Video10:03
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create Methods for Add, Edit, and Delete Operations

Higher Ed
In this lecture, the remaining CRUD operations of add, edit, and delete are performed through coding for the corresponding async methods. You will have a complete understanding of the implementation of the DataAccessService in the app....
Instructional Video4:56
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Add the Movie Entity to the ApplicationDbContext

Higher Ed
In this video, you are shown how to add the movie entity to the ApplicationDbContext class, which was generated with the selection of authentication (individual user account). This clip is from the chapter "Create a CRUD Application in...
Instructional Video4:51
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Movie Class

Higher Ed
A Movie Class is added to the newly created Models folder in this video. This will act as the model for the EF Core for generating the corresponding table in the database. This clip is from the chapter "Create a CRUD Application in...
Instructional Video5:09
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Add Users and Roles

Higher Ed
This video shows how to seed the tables with users and roles by running a method from the Startup class of the Blazor app. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0...
Instructional Video2:18
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Save Data to the Database

Higher Ed
This lecture shows the code to add new record data to the movie database. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor Hands-On".This section explains how to create...
Instructional Video2:27
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Edit the Movies Table

Higher Ed
The movies table is edited to make all fields non-nullable. You will learn how to redesign a table and update the database with the changes. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and...
Instructional Video3:10
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Add Migration to Create Movies Table

Higher Ed
This lecture shows the addition of migration (to EF Core) to create the movies table. You will learn the essential Package Manager console commands to do this. This clip is from the chapter "Create a CRUD Application in Blazor" of the...
Instructional Video1:37
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Database and Add Tables to Store Users and Roles

Higher Ed
This tutorial shows how to create a database for the Blazor app and add User and Roles tables to the database. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor...
Instructional Video8:49
Curated Video

Can DNA help us solve a crime?

9th - Higher Ed
In this video, we explore the incredible world of forensic science and how DNA technology is helping to solve some of the most complex crimes. From the basics of how DNA works, to the cutting-edge techniques used to extract, analyze, and...
Instructional Video6:48
Get Me Coding

How To Create a MySQL Database Schema on Windows

9th - 11th
Using MySQL Workbench, walk through the steps to create a MySQL database schema using the database samples provided by MySQL. This easy step by step video will show you have to get the sample database files and then understand the basic...
Instructional Video5:37
Curated Video

Modern JavaScript from the Beginning - Second Edition - Local Storage Crash Course

Higher Ed
In this video, we will be provided with a brief overview of local storage and how it works. This clip is from the chapter "Shopping List Project" of the series "Modern JavaScript from the Beginning".In this section, we will build a...
Instructional Video8:15
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Managing Database Changes

Higher Ed
This video explains how to manage database changes. This clip is from the chapter "Customizing Views and Elements" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to customize views and elements.
Instructional Video0:46
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Add to GitHub-2

Higher Ed
This video explains how to push the code onto GitHub. This clip is from the chapter "Adding a Database" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to create and add a database.
Instructional Video12:26
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Scaffolding Views and Controllers - Part 1

Higher Ed
This video explains how to scaffold the controller MVC. This clip is from the chapter "Adding a Database" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to create and add a database.