Instructional Video5:12
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Exercise on Class Variables

Higher Ed
In this video, you will explore class variables in Python OOP, how they differ from instance variables, and their use cases in creating shared attributes among class instances.
Instructional Video4:41
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Class Variables

Higher Ed
In this video, you will learn about class variables, which are shared by all instances of a class. You will understand how to define and use class variables, and how they differ from instance variables. This video will provide a...
Instructional Video6:35
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Methods

Higher Ed
In this video, you will learn about methods, which are functions defined within a class. You will understand the different types of methods, such as instance methods, class methods, and static methods, and how to use them in your...
Instructional Video5:14
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Exception Handling

Higher Ed
In this video, you will learn about exception handling with try, throw, and catch functions. This clip is from the chapter "Module 3" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, you will learn about...
Instructional Video4:00
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Header and Implementation Files

Higher Ed
In this video, you will learn how to add header and implementation files to our distance program. This clip is from the chapter "Module 3" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, you will learn...
Instructional Video7:14
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Module 2 Objectives

Higher Ed
In this video, we will cover the learning objective of this module. This clip is from the chapter "Module 2" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, we will cover statements and flow control,...
Instructional Video7:59
Curated Video

Practical Cyber Hacking Skills for Beginners - Web Attack - Cross-Site Scripting

Higher Ed
In this lesson, we will look at cross-site scripting, which is a client-side attack that targets the victim's browser with malicious code.
Instructional Video10:41
Curated Video

Practical Cyber Hacking Skills for Beginners - Inspecting and Manipulating Website Code

Higher Ed
In this video, you will learn how website codes work behind the scenes and to inspect and manipulate them.
Instructional Video6:48
Curated Video

Practical Cyber Hacking Skills for Beginners - Ransomware

Higher Ed
In this video, you will learn about ransomware, the types of ransomwares, the effects and harm that the ransomware causes, and how to minimize the damage.
Instructional Video24:09
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Display Paginated Movies

Higher Ed
This lecture shows how to carry out the pagination of the BlazorMovieApp application. Pagination displays the specified number of records per page. This clip is from the chapter "Paginating the Movies" of the series "Build and Learn...
Instructional Video9:38
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Confirm Delete Dialog

Higher Ed
This lecture shows how to create a confirm delete dialog for getting the confirmation from users before deleting a movie. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and Learn ASP.NET 6.0...
Instructional Video4:44
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Render Fragment Usage to Change Modal Title Dynamically

Higher Ed
This lecture shows a way to change the visual appearance (modal title) of the same modal dialog for two different operations: add and edit movies at runtime, dynamically. This clip is from the chapter "Create a CRUD Application in...
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 Video8:02
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Register the Data Access Services Class in Startup

Higher Ed
Here, we will register the data access service in the Startup class ConfigureServices method. Once it is registered, the service can be called and used in the application. 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 Video7:56
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Learn Asynchronous Programming Through Coding Examples

Higher Ed
In this lecture, you will learn asynchronous programming concepts (essential for learning ASP.NET Core 3.1 Blazor). This clip is from the chapter "Asynchronous Programming Fundamentals" of the series "Build and Learn ASP.NET 6.0 Blazor...
Instructional Video9:09
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - SetParametersAsync

Higher Ed
This lecture discusses the SetParametersAsync method, which is the first method called in a component's lifecycle. This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and Learn ASP.NET...
Instructional Video29:33
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Two-Way Data Binding in ASP.NET Core 3.1 Blazor

Higher Ed
This lecture describes two-way data binding in Blazor. It walks through a user input form that collects data in input controls and as the user types into the input boxes, the data is immediately written to the browser. This clip is from...
Instructional Video15:11
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Event Callback in ASP.NET Core 3.1 Blazor

Higher Ed
This video describes the event callback concept. You will learn how to enable communication among components with event callback. This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and...
Instructional Video3:02
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Frequently Used Page Directives for a Razor Page

Higher Ed
This video explains the frequently used page directives for a Razor page. 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 Video3:25
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - The Program Class and Host Object

Higher Ed
This lecture explains the hosting process of a Blazor application where the Program class main method is the entry point to the application. This clip is from the chapter "Create a CRUD Application in Blazor" of the series "Build and...
Instructional Video9:51
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - OnAfterRender and OnAfterRenderAsync

Higher Ed
This lecture shows a demo code for illustrating these two Blazor lifecycle methods: OnAfterRender and OnAfterRenderAsync. This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and Learn...
Instructional Video11:17
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - OnParametersSet and OnParametersSetAsync

Higher Ed
This lecture shows a demo code for illustrating these two Blazor lifecycle methods: OnParametersSet and OnParametersSetAsync. This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and Learn...
Instructional Video9:14
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - OnInitialized and OnInitializedAsync

Higher Ed
This lecture discusses the OnInitialized and OnInitializedAsync methods in a component's lifecycle. This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series "Build and Learn ASP.NET 6.0 Blazor...