Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - ImageUploader
In this video, we will be discussing how to implement the ImageUploader in our SwiftUI Twitter Clone app.
Curated Video
ChatGPT and DALL-E: Sell Your Creative Thinking with AI - Limitation 5: Apps Can Go Down
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...
Curated Video
Web Hacking Expert - Full-Stack Exploitation Mastery - AngularJS: Template Injection and $scope Hacking – Part 1
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the DeleteCustomer Action Method
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create AddCustomer Action Methods
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the View to Get Customer by ID
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the Customer Controller
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Cookies for State Management
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Understand the Behavior on Combining Middleware
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - About Middleware
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - How Razor Pages Generate Response
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the DeleteOrder Action Method
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create UpdateOrder Action Methods
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create GetOrder Action Methods
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...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the Order Controller
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...
Curated Video
Learn Azure Serverless Functions in a Weekend - HTTP Function to Queue Message
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...
Curated Video
Behavioral Design Patterns in C++ - Lamp - I (NoState)
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...
Curated Video
React JS Masterclass - Go From Zero To Job Ready - React-Toastify / 119
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 - Handling Errors (try/catch) / 040
In this video, we will discuss handling errors, which include server errors, wrong URLs, and so on.
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 - useEffect Hook / 032
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...
Curated Video
React JS Masterclass - Go From Zero To Job Ready - React Loading Skeleton
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.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Fetching Documents - I / 255
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.