Curated Video
Behavioral Design Patterns in C++ - Containers - I (Array)
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.
Curated Video
Behavioral Design Patterns in C++ - DialogBox - II
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.
Curated Video
Behavioral Design Patterns in C++ - DialogBox - I
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...
Curated Video
Behavioral Design Patterns in C++ - Chat System - I
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...
Curated Video
Behavioral Design Patterns in C++ - Basic Implementation-Observer
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.
Curated Video
Behavioral Design Patterns in C++ - DataList - II
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...
Curated Video
Behavioral Design Patterns in C++ - DataList - I
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...
Curated Video
Behavioral Design Patterns in C++ - Undo - I
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...
Curated Video
Learning GitHub Actions for DevOps CI/CD - Default GitHub Variables
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...
Curated Video
Learning GitHub Actions for DevOps CI/CD - Exploring Workflow Components – Events
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...
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Cart: Provider / 125
The context API simplifies sharing of cart data between components. Create a new function called CartProvider and add the reducer.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Clear Filter / 114
This lesson demonstrates how to cover key concepts required to filter successfully and concisely.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Filter: Properties / 113
This lesson will teach us more about props or properties used in React. Here, the properties are transferred from the parent to child components.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Filter: Initial Product List / 112
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...
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Filter: Context and Reducers / 111
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...
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Redux Store State / 094
Redux is a popular data store for JavaScript and React applications. It follows a central principle that data binding should flow.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Methods / 089
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.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Reducer / 088
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.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Function: Edit and Delete / 047
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.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Dynamic Page Title / 076
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.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Add New Task / 029
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...
Curated Video
React JS Masterclass - Go From Zero To Job Ready - useState: Array State Value / 012
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.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Test: Fire Events and User Events / 153
In this video, we will look at different events such as mouse clicks, mouse overs, mouse out, key down, and document load.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Condition Check: Already in Cart / 127
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.