Instructional Video19:01
Curated Video

SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - ImageUploader

Higher Ed
In this video, we will be discussing how to implement the ImageUploader in our SwiftUI Twitter Clone app.
Instructional Video1:00
Curated Video

ChatGPT and DALL-E: Sell Your Creative Thinking with AI - Limitation 5: Apps Can Go Down

Higher Ed
In this video, we will examine the limitation that generative AI apps and services can go down, causing disruptions in content creation workflows. This clip is from the chapter "When (And When Not) to Use AI" of the series "ChatGPT and...
Instructional Video5:06
Curated Video

Web Hacking Expert - Full-Stack Exploitation Mastery - AngularJS: Template Injection and $scope Hacking – Part 1

Higher Ed
This is the first of the two-part video that talks about the theoretical part of Template Injection and $scope Hacking that uses AngularJS. This clip is from the chapter "Hacking AngularJS Applications" of the series "Web Hacking Expert...
Instructional Video6:56
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the DeleteCustomer Action Method

Higher Ed
This video explains the code to delete a customer from the database. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of the series "ASP.NET 6.0 - Build Hands-On Web...
Instructional Video13:32
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create AddCustomer Action Methods

Higher Ed
On the Customer Controller side, AddCustomer (GET and POST) action methods are coded in this video with an explanation. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of...
Instructional Video4:52
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the View to Get Customer by ID

Higher Ed
Completing this video will allow you to create a view that shows a customer with a specific ID and a message if that customer does not exist in the database. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using...
Instructional Video10:04
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the Customer Controller

Higher Ed
Students will be able to create the Customer Controller and complete the Index action method after completing this video. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of...
Instructional Video22:02
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Cookies for State Management

Higher Ed
In this video, you will learn, with code examples from a running project, to demonstrate how cookies are used for state management. This clip is from the chapter "State Management in ASP.NET Core" of the series "ASP.NET 6.0 - Build...
Instructional Video9:11
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Understand the Behavior on Combining Middleware

Higher Ed
In this video, you will learn how to combine multiple middleware in a middleware pipeline. Specific emphasis is given on WelcomePage and static file middleware. This clip is from the chapter "Middleware in ASP.NET Core 3.1" of the series...
Instructional Video9:11
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - About Middleware

Higher Ed
In this video, you will learn concepts about middleware such as what is middleware and forming a pipeline combining middleware. This clip is from the chapter "Middleware in ASP.NET Core 3.1" of the series "ASP.NET 6.0 - Build Hands-On...
Instructional Video16:45
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - How Razor Pages Generate Response

Higher Ed
In this video, the entire mechanism of generating an HTML response to a request as handled by the Razor Pages in an ASP.NET Core 3.1 application is discussed. This clip is from the chapter "Create and Take a Deep Dive into Your First...
Instructional Video5:58
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the DeleteOrder Action Method

Higher Ed
This is the video that explains the code for a DeleteOrder action method that deletes an order from the database. It does this without any confirmation of record deletion. This confirm delete view in the present project context is not...
Instructional Video9:28
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create UpdateOrder Action Methods

Higher Ed
This video is about creating the GET and POST action methods for updating an order. You will learn the code with a thorough explanation of the methods. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an...
Instructional Video6:31
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create GetOrder Action Methods

Higher Ed
In this video, you will work out the code for creating the GetOrder(GET and POST) action methods on the Order Controller. The code is discussed in detail along the way. This clip is from the chapter "Coding Project Part 2: Consume the...
Instructional Video11:40
Curated Video

ASP.NET 6.0 - Build Hands-On Web Projects - Create the Order Controller

Higher Ed
This video walks through the coding exercise to create the Order Controller with the Index action method. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of the series...
Instructional Video13:05
Curated Video

Learn Azure Serverless Functions in a Weekend - HTTP Function to Queue Message

Higher Ed
This video demonstrates how to develop an HTTP function to queue messages. Here, you will develop an HTTP trigger function, keeping in mind that it will be used by the payment gateway system to submit the payment status. It should take...
Instructional Video5:06
Curated Video

Behavioral Design Patterns in C++ - Lamp - I (NoState)

Higher Ed
This video explains the implementation of the State design pattern. Here, we will use the example of a lamp with two states, that is, ON and OFF. This clip is from the chapter "State" of the series "Behavioral Design Patterns in...
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 Video10:01
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Handling Errors (try/catch) / 040

Higher Ed
In this video, we will discuss handling errors, which include server errors, wrong URLs, and so on.
Instructional Video6:34
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Loading State / 039

Higher Ed
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.
Instructional Video10:44
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Custom Hook (useFetch) / 038

Higher Ed
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.
Instructional Video12:52
Curated Video

React JS Masterclass - Go From Zero To Job Ready - useEffect Hook / 032

Higher Ed
In this lecture, you will learn to call an API, access the information, and then create the user interface to display the information. We will understand the useEffect hook that accepts a function that contains imperative and possibly...
Instructional Video12:22
Curated Video

React JS Masterclass - Go From Zero To Job Ready - React Loading Skeleton

Higher Ed
Here, we will discuss about an interesting package called the React Loading Skeleton that provides a skeleton structure until we receive a response from the app.
Instructional Video9:52
Curated Video

React JS Masterclass - Go From Zero To Job Ready - Fetching Documents - I / 255

Higher Ed
You can use the Realtime Database Query class to retrieve data sorted by key, by value, or by the value of a child. You can also filter the sorted result.