Instructional Video3:26
Curated Video

Behavioral Design Patterns in C++ - Introduction-Command

Higher Ed
This video provides an introduction to command patterns. 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 encapsulates requests...
Instructional Video3:18
Curated Video

Behavioral Design Patterns in C++ - Pros and Cons-Template Method

Higher Ed
This video talks about the pros and cons of the template method pattern. This clip is from the chapter "Template Method" of the series "Behavioral Design Patterns in C++".In this section, we explore the template method behavioral design...
Instructional Video2:55
Curated Video

Behavioral Design Patterns in C++ - Template Method - III

Higher Ed
In this video, we continue to explore the final details of the template method design pattern, which allows us to define the skeleton of an algorithm in a base class and let subclasses implement specific steps of the algorithm. This clip...
Instructional Video5:53
Curated Video

Behavioral Design Patterns in C++ - Template Method - II

Higher Ed
In this video, we continue exploring the template method design pattern, building on the concepts covered in the previous video and implement the text document. This clip is from the chapter "Template Method" of the series "Behavioral...
Instructional Video7:32
Curated Video

Behavioral Design Patterns in C++ - Template Method - I

Higher Ed
In this video, we will implement the template method design pattern in the document framework. This clip is from the chapter "Template Method" of the series "Behavioral Design Patterns in C++".In this section, we explore the template...
Instructional Video4:52
Curated Video

Behavioral Design Patterns in C++ - Document Framework - III

Higher Ed
In this video, we will add the functionality of versioning. This clip is from the chapter "Template Method" of the series "Behavioral Design Patterns in C++".In this section, we explore the template method behavioral design pattern,...
Instructional Video7:59
Curated Video

Learn Tableau by Working on Exciting Dashboards - Dashboard Actions

Higher Ed
This video explains dashboard actions and how to enable them.
Instructional Video6:14
Curated Video

Learn Tableau by Working on Exciting Dashboards - Exclude - LOD

Higher Ed
This video explains the exclude level of detailed expression by an example.
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 Video9:49
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Cart: Context and Reducers / 124

Higher Ed
In this tutorial, we will use useReducer and useContext to maintain a global state available throughout the project and the state variable.
Instructional Video14:00
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Cart Interface / 123

Higher Ed
The shopping cart page is designed to allow buyers to see all the products they have added to the shopping cart. It contains a detailed list of products.
Instructional Video3:46
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Toggle Dropdown (Hide) / 122

Higher Ed
In this video, you will learn how to effectively handle the chaining of fetch calls to avoid nesting them together, clean up our component code, and abstract those details away from our component code.
Instructional Video7:44
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Dropdown Option / 115

Higher Ed
After learning to use the React state hook, we will look at storing variables passed with the () event to put in the product display.
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 Video10:10
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Dark Mode / 107

Higher Ed
You will learn to create forms to collect information and validate user information such as billing address, mode of payment, and more.
Instructional Video9:35
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Project Deployment / 095

Higher Ed
This video provides a detailed introduction to the concepts covered in this course section, including JavaScript and its topics.
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 Video15:46
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Reducers: Add and Remove / 093

Higher Ed
This lesson creates a new reducer method called removeFromCart, which accepts a value and removes an item from the basket. We will then add an handler to our remove button.
Instructional Video16:52
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Slice and Action / 092

Higher Ed
A "slice" is a collection of Redux reducer logic and actions for a single feature in your app, typically defined together in a single file.
Instructional Video9:43
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Project Structure / 091

Higher Ed
We will explore the most common and most accessible structure in use. I call it the flat structure as it has minimal directory nesting.
Instructional Video12:18
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Project Deployment / 090

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.
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 Video16:27
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Context / 087

Higher Ed
This is a continuation of the previous lesson, where we will continue validating the information we place on the form before checking out.