Instructional Video9:20
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Understanding the New Look Project File

Higher Ed
This video deals with the new lean and trimmed-up project (.csproj) file in the ASP.NET Core web project. The project file has been considerably trimmed to only include the core framework version. Any other dependencies that may be added...
Instructional Video1:13
Curated Video

Generative AI Art for Beginners - Project Time

Higher Ed
In this video, we will introduce you to the project that you will be working on as an assignment. We will provide you with some guidelines and tips to help you complete the project successfully. This clip is from the chapter "Generative...
Instructional Video10:54
Curated Video

Blender to Unreal Engine - Become a Dungeon Prop Artist - UE5 Introduction to UI (User Interface)

Higher Ed
In this lesson, we will get introduced to the UI in Unreal Engine 5. This will help speed up your workflow because you will develop basic knowledge of all its menus to find them when you need them. Over time, this should become instinctual.
Instructional Video7:41
Curated Video

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

Higher Ed
The lesson will show us how to export our assets from within our Unreal Engine 5 project template and set them up to be used for other projects.
Instructional Video6:22
Curated Video

Blender to Unreal Engine - Become a Dungeon Prop Artist - Creating a New Unreal Engine 5 Project

Higher Ed
This lesson will give you a complete introduction to creating a new project in Unreal Engine 5. You will find out which project settings to select and why. This will help you maximize what you get out of UE5 in addition to storing your...
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 Video16:48
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Migrating ASP.NET Core 3.1 to ASP.NET 6.0 (Current)

Higher Ed
This is a premium video on migrating your Web API and MVC Consume project into the latest and newly released current version of ASP.NET 6.0. The video describes how you could still easily migrate from 3.1 to 6.0 directly (as you have...
Instructional Video7:23
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - How to Migrate the Web API/MVC Project to ASP.NET 5.0?

Higher Ed
This video will show the two main steps required to perform the migration from ASP.NET Core 3.1 to ASP.NET 5. This clip is from the chapter "Bonus: Migrating the Project to ASP.NET 5" of the series "ASP.NET 6.0 - Build Hands-On Web...
Instructional Video5:58
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the DeleteOrder Action Method

Higher Ed
This is the video that explains the code for a DeleteOrder action method that deletes an order from the database. It does this without any confirmation of record deletion. This confirm delete view in the present project context is not...
Instructional Video7:55
Curated Video

Behavioral Design Patterns in C++ - Function Strategy - I

Higher Ed
In this video, we explore the function strategy design pattern, which allows us to swap out different algorithms at runtime. We will cover the basics of the pattern and how to implement it in JavaScript, as well as some real-world use...
Instructional Video7:29
Curated Video

Behavioral Design Patterns in C++ - Spreadsheet Application - V

Higher Ed
In this final video of the series, we will complete the implementation 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...
Instructional Video6:38
Curated Video

Behavioral Design Patterns in C++ - Spreadsheet Application - III

Higher Ed
In this third video of the series, we will try to replace conditional statements with inheritance and see if it works. This clip is from the chapter "Strategy" of the series "Behavioral Design Patterns in C++".In this section, you will...
Instructional Video7:17
Curated Video

Behavioral Design Patterns in C++ - Spreadsheet Application - I

Higher Ed
In this video, we will be building a spreadsheet application using JavaScript. 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.
Instructional Video5:37
Curated Video

Learn Azure Serverless Functions in a Weekend - Creating Functions App and Understanding the File Structure

Higher Ed
This video demonstrates defining and indexing in data structures. This clip is from the chapter "Azure Functions Local Development Environment" of the series "Learn Azure Serverless Functions in a Weekend".This section focuses on the...
Instructional Video6:35
Curated Video

Behavioral Design Patterns in C++ - C++ Iterators - I

Higher Ed
In this video, we will add another layer of complexity, that is, adding a smart pointer that can be used to access instead of the iterator directly. This clip is from the chapter "Iterator" of the series "Behavioral Design Patterns in...
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 Video4:20
Curated Video

Behavioral Design Patterns in C++ - Lamp - IV (Yellow State)

Higher Ed
In this video, we will be adding one more state to the code, that is, yellow state, and see what we can do with the addition of the new state. This clip is from the chapter "State" of the series "Behavioral Design Patterns in C++".This...
Instructional Video9:04
Curated Video

Behavioral Design Patterns in C++ - Lamp - III (State Pattern)

Higher Ed
In this video, we will modify the implementation of the lamp class and use the State pattern instead of managing the state through Enums. This clip is from the chapter "State" of the series "Behavioral Design Patterns in C++".This...
Instructional Video5:06
Curated Video

Behavioral Design Patterns in C++ - Lamp - I (NoState)

Higher Ed
This video explains the implementation of the State design pattern. Here, we will use the example of a lamp with two states, that is, ON and OFF. This clip is from the chapter "State" of the series "Behavioral Design Patterns in...
Instructional Video4:48
Curated Video

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

Higher Ed
In this video, we will add a yellow state to the lamp. This clip is from the chapter "State" of the series "Behavioral Design Patterns in C++".This section focuses on the State design pattern.
Instructional Video8:03
Curated Video

Behavioral Design Patterns in C++ - RPN Evaluator - I

Higher Ed
This video demonstrates another example that uses the Interpreter design pattern and builds the RPN evaluator. This clip is from the chapter "Interpreter" of the series "Behavioral Design Patterns in C++".This section focuses on the...
Instructional Video6:20
Curated Video

Behavioral Design Patterns in C++ - Boolean Interpreter - I

Higher Ed
This video helps in the implementation of the Boolean Interpreter design pattern. This clip is from the chapter "Interpreter" of the series "Behavioral Design Patterns in C++".This section focuses on the Interpreter pattern.
Instructional Video4:18
Curated Video

Behavioral Design Patterns in C++ - Variant

Higher Ed
In this video, we will discuss the C++17 std::variant. This class uses the Visitor pattern for performing operations on its members. This clip is from the chapter "Visitor" of the series "Behavioral Design Patterns in C++".This section...
Instructional Video8:52
Curated Video

Behavioral Design Patterns in C++ - Acyclic Visitor

Higher Ed
This video explains Acyclic Visitor in detail. This clip is from the chapter "Visitor" of the series "Behavioral Design Patterns in C++".This section focuses on the Visitor pattern.