Instructional Video4:45
Curated Video

Behavioral Design Patterns in C++ - Containers - I (Array)

Higher Ed
In this video, you will implement an array class as a dynamic array. This clip is from the chapter "Iterator" of the series "Behavioral Design Patterns in C++".This section focuses on the Iterator design pattern.
Instructional Video4:14
Curated Video

Behavioral Design Patterns in C++ - DialogBox - II

Higher Ed
This video will help in the implementation of all the widget classes. This clip is from the chapter "Mediator" of the series "Behavioral Design Patterns in C++".This section focuses on the Mediator pattern.
Instructional Video6:48
Curated Video

Behavioral Design Patterns in C++ - DialogBox - I

Higher Ed
This video will help you create a DialogBox where you will add some widgets and see how to interact with the widgets through the mediator design pattern. This clip is from the chapter "Mediator" of the series "Behavioral Design Patterns...
Instructional Video6:00
Curated Video

Behavioral Design Patterns in C++ - Chat System - I

Higher Ed
This video demonstrates the use case of a chat system. Suppose there are more users who want to connect on the chat system. In that case, connection of each and every individual to another directly can make the system design a lot more...
Instructional Video4:49
Curated Video

Behavioral Design Patterns in C++ - Basic Implementation-Observer

Higher Ed
This video provides a basic implementation of the Observer pattern. This clip is from the chapter "Observer" of the series "Behavioral Design Patterns in C++".This section focuses on the Observer pattern.
Instructional Video6:00
Curated Video

Behavioral Design Patterns in C++ - DataList - II

Higher Ed
In this video, we will add the menu and the macro class in this lesson and complete the implementation. This clip is from the chapter "Command" of the series "Behavioral Design Patterns in C++".In this section, we will explore the...
Instructional Video5:20
Curated Video

Behavioral Design Patterns in C++ - DataList - I

Higher Ed
This video starts with another example that will be used to understand how macro commands can be implemented. This clip is from the chapter "Command" of the series "Behavioral Design Patterns in C++".In this section, we will explore the...
Instructional Video2:24
Curated Video

Behavioral Design Patterns in C++ - Undo - I

Higher Ed
This video explains the basics of undo and redo through the command pattern. This clip is from the chapter "Command" of the series "Behavioral Design Patterns in C++".In this section, we will explore the command design pattern, which...
Instructional Video3:57
Curated Video

Learning GitHub Actions for DevOps CI/CD - Default GitHub Variables

Higher Ed
This video explains the default GitHub variables and its use cases. This clip is from the chapter "GitHub Actions: Exploring the Features" of the series "Learning GitHub Actions for DevOps CI/CD".This section focuses on exploring the...
Instructional Video10:10
Curated Video

Learning GitHub Actions for DevOps CI/CD - Exploring Workflow Components – Events

Higher Ed
This video helps in exploring workflow components; here, you will be focusing on events. This clip is from the chapter "Introduction to the GitHub Action Workflows" of the series "Learning GitHub Actions for DevOps CI/CD".This section...
Instructional Video13:25
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Cart: Provider / 125

Higher Ed
The context API simplifies sharing of cart data between components. Create a new function called CartProvider and add the reducer.
Instructional Video5:47
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Clear Filter / 114

Higher Ed
This lesson demonstrates how to cover key concepts required to filter successfully and concisely.
Instructional Video38:41
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Filter: Properties / 113

Higher Ed
This lesson will teach us more about props or properties used in React. Here, the properties are transferred from the parent to child components.
Instructional Video11:41
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Filter: Initial Product List / 112

Higher Ed
We will create a checkout page, which will require us to handle the items in the product list, make final calculations, and add any other info if needed; reloading the page should allow us to make changes in the total by adding or...
Instructional Video19:26
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Filter: Context and Reducers / 111

Higher Ed
Let's understand UserContext Hook, which makes it easy to pass data throughout your app without manually passing props down the tree, and UseReducer Hook, which allows for a more straightforward, predictable, and organized way to update...
Instructional Video11:24
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Redux Store State / 094

Higher Ed
Redux is a popular data store for JavaScript and React applications. It follows a central principle that data binding should flow.
Instructional Video18:46
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Methods / 089

Higher Ed
In this video, you will learn to validate our forms in React. Here, the form will force us to enter details before we are taken to the product confirmation page.
Instructional Video25:43
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Reducer / 088

Higher Ed
After creating a ledge for the basket page, you will now learn to add functionality to the basket and start receiving items from the product list and the function buttons to work.
Instructional Video20:20
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Function: Edit and Delete / 047

Higher Ed
After learning to create the task list to add and delete tasks, we will now look at the functionality of creating the edit option and the delete option.
Instructional Video13:29
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Dynamic Page Title / 076

Higher Ed
In this lecture, the next step is to start building the homepage of the eCommerce site. We will use components to tell React what we want to see on the screen.
Instructional Video11:02
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Add New Task / 029

Higher Ed
After learning how to input data or tasks using forms and accepting the tasks or data using the submit button, we will now examine how to create new tasks, which will receive inputs from the tasks and add them to the task list we created...
Instructional Video11:59
Curated Video

React JS Masterclass - Go From Zero To Job Ready - useState: Array State Value / 012

Higher Ed
Here, we will continue to understand the useState, but this time, we will not just use it with integers, we will use arrays. We will create a task list and experiment with using tasks.
Instructional Video10:23
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Test: Fire Events and User Events / 153

Higher Ed
In this video, we will look at different events such as mouse clicks, mouse overs, mouse out, key down, and document load.
Instructional Video15:13
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Condition Check: Already in Cart / 127

Higher Ed
For the final checkout page to perform the next set of actions, you will learn how to implement an order confirmation before proceeding with the last payment order.