Curated Video
CompTIA A+ Certification Core 2 (220-1102) - Passwords and Authentication
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the View to Get Customer by ID
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the Index View (Customer Controller)
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Understand the Stored Procedures for CRUD Operation
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...
Curated Video
Blender to Unreal Engine - Become a Dungeon Prop Artist - Using Asset Pack
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...
Curated Video
Blender to Unreal Engine - Become a Dungeon Prop Artist - Setting Up Asset Collections with Physics
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.
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
Learn Azure Serverless Functions in a Weekend - Azure Service Bus Trigger Function to Add Records to Database
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...
Curated Video
Learn Azure Serverless Functions in a Weekend - Azure Functions to Collect Feedback and Store in Database
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...
Curated Video
Learn Azure Serverless Functions in a Weekend - Developing Azure Functions API to Get Online Course Details - Part 1
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...
Curated Video
Behavioral Design Patterns in C++ - Methods for States - II
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.
Curated Video
Behavioral Design Patterns in C++ - Transition Table - I
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.
Curated Video
SQL Server Course for Beginners with 100+ examples - Drop a Table in SQL
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...
Curated Video
SQL Server Course for Beginners with 100+ examples - SQL Views
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...
Curated Video
SQL Server Course for Beginners with 100+ examples - SELECT TOP Clause in SQL
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
Curated Video
SQL Server Course for Beginners with 100+ examples - SELECT INTO Statement in SQL
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...
Curated Video
SQL Server Course for Beginners with 100+ examples - Indexes in SQL
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...
Curated Video
SQL Server Course for Beginners with 100+ examples - Stored Procedures in SQL
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....
Curated Video
SQL Server Course for Beginners with 100+ examples - Aliases
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...
Curated Video
SQL Server Course for Beginners with 100+ examples - UPDATE Statement
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"...
Curated Video
SQL Server Course for Beginners with 100+ examples - ALTER TABLE Statement
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...
Curated Video
SQL Server Course for Beginners with 100+ examples - CHECK Constraint
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...
Curated Video
SQL Server Course for Beginners with 100+ examples - FOREIGN KEY Constraint
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...
Curated Video
SQL Server Course for Beginners with 100+ examples - PRIMARY KEY Constraint
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...