Curated Video
Behavioral Design Patterns in C++ - TextPad - II
This video starts with the creation of the application class and implementation of its important methods. 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++ - Introduction-Command
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...
Curated Video
Behavioral Design Patterns in C++ - Template Method - I
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...
Curated Video
Learn Azure Serverless Functions in a Weekend - Binding Expression and Function Monitoring
This video explains binding expression and function monitoring in detail. This clip is from the chapter "Azure Functions Integrations – Enhancing the Function Code" of the series "Learn Azure Serverless Functions in a Weekend".This...
Curated Video
React JS Masterclass - Go From Zero To Job Ready - React Boilerplate / 005
In this video, we will start our coding journey from the basics. We will understand the required functional folders for our React coding operations in detail.
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 - Login and Registration Page / 118
Let's get acquainted with registering an account so we can explore many relevant services to become a user of the application.
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: 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 - Product Search / 109
Here, we will discuss operator precedence, which determines the order in which an arithmetic operation is performed.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - ScrollToTop Component / 108
This video describes how to use elastic load balancing with your auto scaling group to distribute traffic across the instances in your auto scaling group.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - API: Product List / 104
This video discusses the context in React, a method to pass props from parent to child component(s) by storing the props in a store. We will create a "cart" context to store items in our shopping cart.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Reducers: Add and Remove / 093
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.
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 - Navigation Structure
In this video, we will complete the header section of the Cinemate project and increase font sizes, change logo appearance, activate the navigation link, adding dynamic classes and add hidden variables.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Infinite Loops / 042
In this lecture, we will discuss passing primitive values and passing a function using a callback. We will use the useRef hook to create a reference for the elements and values.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Loading State / 039
Let's focus on the new loading feature, where we will create a state to show the loading of elements. Now that you have learned to fetch elements using a hook, you will now learn to load elements and display the loading image as we wait.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Custom Hook (useFetch) / 038
In this lecture, you will learn how to create a custom hook, which are functions that perform a task or fetches the information. You will learn to create a custom hook and call that hook in the code whenever we need information.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - useCallback Hook / 037
In this video, you will learn about the useCallback hook, as the useEffect hook requires dependencies within the function. In contrast, the useCallback hook does not require a dependency within it and can call dependencies from outside...
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Event / 036
In this lecture, you will learn how to utilize a URL and how to use Async Await, and the functions we will use for the process. You will learn to segregate data based on specified conditions.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Event / 028
Let's learn to create submit buttons, enabling us to accept the input values through forms or input tabs. We can make the submit buttons and get inputs through data storage functions.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Event / 026
In this video, we will examine the listener that we will work with, which calls a function that will execute a task every time there is a change in the input, an anonymous function, or create a function based on our requirement.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Props: In-Depth Introduction / 017
After learning about components and component trees in this video, we will focus on props in detail. We will understand what props are and how they are used in codes and properties with dynamic values.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - useState: Array setState Value / 013
We will continue the lessons on useState; here, you will learn more about setTask. The lesson will show you how to delete the tasks we created in the previous lecture.