Instructional Video13:19
Curated Video

Blender to Unreal Engine - 3D Plants and Vegetation - Unreal Engine 5 Basics

Higher Ed
In this lesson, we will start working with Unreal Engine 5. We will get introduced to the launcher, create a new project, and walk through the UI setup. This clip is from the chapter "Unreal Engine 5 Basics" of the series "Blender to...
Instructional Video13:02
Curated Video

React JS Masterclass - Go From Zero To Job Ready - React Introduction

Higher Ed
This introduction by the instructor delves deep into React, why we should learn it, its features and advantages, and its prerequisites.
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 Video10:23
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Session Storage / 121

Higher Ed
In this lesson, you will learn about the local storage of information. When we place items in a basket and refresh or reload the page, it should be able to retain the items placed in the list until the transaction is processed.
Instructional Video10:42
Curated Video

React JS Masterclass - Go From Zero To Job Ready - API: Login/Register Endpoint / 120

Higher Ed
In this video, we will look at the React root component, namely the app, the dashboard, the admin, and other elements of the project that form the tree structure of React.
Instructional Video9:39
Curated Video

React JS Masterclass - Go From Zero To Job Ready - React-Toastify / 119

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 Video14:10
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Login and Registration Page / 118

Higher Ed
Let's get acquainted with registering an account so we can explore many relevant services to become a user of the application.
Instructional Video13:36
Curated Video

React JS Masterclass - Go From Zero To Job Ready - User Account and Cart

Higher Ed
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.
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 Video7:23
Curated Video

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

Higher Ed
Here, you will learn more about a styled-component module, which allows us to write CSS within JavaScript in a very modular and reusable way in React instead of having one global dynamic class.
Instructional Video8:22
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Products Page / 103

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 Video10:47
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Codebook Demo / 097

Higher Ed
This video demonstrates updating and stylizing the product list based on specific eCommerce store sales criteria.
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.