Instructional Video13:36
Curated Video

CompTIA A+ Certification Core 2 (220-1102) - Passwords and Authentication

Higher Ed
Password security can be compromised by many attack types, such as brute force, dictionary, and rainbow tables. This video explores options for creating very secure passwords and using multifactor authentication. This clip is from the...
Instructional Video4:52
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the View to Get Customer by ID

Higher Ed
Completing this video will allow you to create a view that shows a customer with a specific ID and a message if that customer does not exist in the database. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using...
Instructional Video6:08
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the Index View (Customer Controller)

Higher Ed
This video walks through the coding for creating the index view for the Customer Controller. The application is run to see the Customer list. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core...
Instructional Video9:18
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Understand the Stored Procedures for CRUD Operation

Higher Ed
This video discusses all the CRUD stored procedures that are used for this application. You will understand and be able to write simple stored procedures for these CRUD operations. Stored procedure script is added as resource to generate...
Instructional Video11:15
Curated Video

Blender to Unreal Engine - Become a Dungeon Prop Artist - Using Asset Pack

Higher Ed
We will finish this course with a lesson that will walk us through an example of making use of all the assets within a game level. You will learn how to quickly change the entire atmosphere of individual rooms within a dungeon by simply...
Instructional Video11:04
Curated Video

Blender to Unreal Engine - Become a Dungeon Prop Artist - Setting Up Asset Collections with Physics

Higher Ed
In this lesson, we are going to continue working with a blueprint setup for our asset collections. This time, you will also learn how to add physics to your smaller props for the blueprint actors.
Instructional Video26:02
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?

Higher Ed
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...
Instructional Video11:21
Curated Video

Learn Azure Serverless Functions in a Weekend - Azure Service Bus Trigger Function to Add Records to Database

Higher Ed
This video demonstrates how to develop the Azure Service Bus trigger function to add records to the database. Here, you will move on to develop a second function that gets triggered upon queueing a message in our Azure Service Bus. It...
Instructional Video7:05
Curated Video

Learn Azure Serverless Functions in a Weekend - Azure Functions to Collect Feedback and Store in Database

Higher Ed
In this video, you will see how Azure Functions is used to collect feedback and store it in the database. This clip is from the chapter "Developing Azure Functions Applications with Azure SQL Database" of the series "Learn Azure...
Instructional Video9:14
Curated Video

Learn Azure Serverless Functions in a Weekend - Developing Azure Functions API to Get Online Course Details - Part 1

Higher Ed
This video will help you develop an Azure Functions API to connect to a SQL database and retrieve the course information from the online courses' SQL table. This clip is from the chapter "Developing Azure Functions Applications with...
Instructional Video6:21
Curated Video

Behavioral Design Patterns in C++ - Methods for States - II

Higher Ed
This video demonstrates the implementation of method for states in code. This clip is from the chapter "State" of the series "Behavioral Design Patterns in C++".This section focuses on the State design pattern.
Instructional Video9:28
Curated Video

Behavioral Design Patterns in C++ - Transition Table - I

Higher Ed
This video explains the implementation of the State design pattern through a transition table. This clip is from the chapter "State" of the series "Behavioral Design Patterns in C++".This section focuses on the State design pattern.
Instructional Video5:11
Curated Video

SQL Server Course for Beginners with 100+ examples - Drop a Table in SQL

Higher Ed
Learn how to drop a table in SQL. Dropping will delete all the records of the table. It will also obliterate the existence of the table. This clip is from the chapter "Advanced SQL" of the series "SQL Server Course for Beginners with...
Instructional Video2:46
Curated Video

SQL Server Course for Beginners with 100+ examples - SQL Views

Higher Ed
Learn how to work with Views in SQL. A view is a virtual table created from the actual table, displaying the current result set. We will use the CREATE VIEW and DROP VIEW statements to develop and delete views. This clip is from the...
Instructional Video3:58
Curated Video

SQL Server Course for Beginners with 100+ examples - SELECT TOP Clause in SQL

Higher Ed
Learn how to implement the SELECT TOP statement in SQL. We will work with the SELECT TOP PERCENT statement as well. This clip is from the chapter "Advanced SQL" of the series "SQL Server Course for Beginners with 100+ Examples".null
Instructional Video2:16
Curated Video

SQL Server Course for Beginners with 100+ examples - SELECT INTO Statement in SQL

Higher Ed
Learn how to work with the SELECT INTO statement in SQL to create a backup copy of your table to a new table. The new table will have the same type and columns as in the first. This clip is from the chapter "Advanced SQL" of the series...
Instructional Video3:23
Curated Video

SQL Server Course for Beginners with 100+ examples - Indexes in SQL

Higher Ed
Learn how to work with the CREATE INDEX statement in SQL to create indexes in a table. Indexes retrieve data quickly from the database. We will also see how to delete indexes using the DROP INDEX statement. This clip is from the chapter...
Instructional Video2:20
Curated Video

SQL Server Course for Beginners with 100+ examples - Stored Procedures in SQL

Higher Ed
Use the CREATE PROCEDURE statement to learn how to work with stored procedures in SQL. If you want to reuse a query again and again, then create a procedure and save the query in it. Call the procedure whenever you need that same query....
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:06
Curated Video

SQL Server Course for Beginners with 100+ examples - UPDATE Statement

Higher Ed
Learn how to work with the UPDATE statement in SQL to update existing records in a table. Use the WHERE clause with the UPDATE statement to avoid updating all records in the table. This clip is from the chapter "Alter and Update in SQL"...
Instructional Video2:25
Curated Video

SQL Server Course for Beginners with 100+ examples - ALTER TABLE Statement

Higher Ed
Learn how to work with the ALTER TABLE in SQL to add or delete columns in the existing table. To add a column to an existing table, use the ALTER TABLE with ADD command. To delete a column from an existing table, use the ALTER TABLE with...
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 Video3:22
Curated Video

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

Higher Ed
Learn how to work with the PRIMARY KEY constraint in SQL. A PRIMARY KEY uniquely identifies each record. Not a Primary Key column can never have NULL values. This clip is from the chapter "Constraints in SQL" of the series "SQL Server...