Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Exercise on Class Variables
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.
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Class Variables
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...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Methods
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...
Curated Video
Fundamentals of Object-Oriented Programming - C++ - Exception Handling
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...
Curated Video
Fundamentals of Object-Oriented Programming - C++ - Header and Implementation Files
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...
Curated Video
Fundamentals of Object-Oriented Programming - C++ - Module 2 Objectives
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,...
Curated Video
Practical Cyber Hacking Skills for Beginners - Web Attack - Cross-Site Scripting
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.
Curated Video
Practical Cyber Hacking Skills for Beginners - Inspecting and Manipulating Website Code
In this video, you will learn how website codes work behind the scenes and to inspect and manipulate them.
Curated Video
Practical Cyber Hacking Skills for Beginners - Ransomware
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.
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Display Paginated Movies
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Confirm Delete Dialog
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Render Fragment Usage to Change Modal Title Dynamically
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Create a Details Page to Show List of Movies
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Register the Data Access Services Class in Startup
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Add Users and Roles
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Learn Asynchronous Programming Through Coding Examples
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - SetParametersAsync
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Two-Way Data Binding in ASP.NET Core 3.1 Blazor
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Event Callback in ASP.NET Core 3.1 Blazor
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Frequently Used Page Directives for a Razor Page
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - The Program Class and Host Object
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - OnAfterRender and OnAfterRenderAsync
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - OnParametersSet and OnParametersSetAsync
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Lifecycle Methods (Code Example) - OnInitialized and OnInitializedAsync
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...