Instructional Video19:28
Instructional Video8:00
Curated Video

SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Upload Profile Image

Higher Ed
In this video, we will cover how to upload a profile image for the user using SwiftUI and Node.js.
Instructional Video2:33
Curated Video

SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Fetch Specific Tweets

Higher Ed
In this video, we continue building our Twitter Clone app by implementing the functionality to fetch specific tweets.
Instructional Video2:53
Curated Video

SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Tweet Image Check

Higher Ed
In this video, you will learn how to implement server-side validation to check whether uploaded images for tweets are in the correct format using the Jimp package in Node.js.
Instructional Video6:10
Curated Video

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

Higher Ed
This video is all about implementing a "Unlike" functionality in our Twitter Clone app.
Instructional Video5:50
Curated Video

SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Tweet Image Visualize

Higher Ed
In this video, you will learn how to visualize tweet images in your Twitter Clone app. We will explore how to retrieve tweet images from the database and display them in the app's UI.
Instructional Video5:57
Curated Video

SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Fetching a Specific User

Higher Ed
In this video, you will learn how to fetch a specific user using their ID, and send back only the necessary user data.
Instructional Video7:49
Curated Video

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

Higher Ed
In this video, we will dive deeper into JWTs and learn how to use them for secure user authentication and authorization.
Instructional Video5:27
Curated Video

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

Higher Ed
In this video, you will learn how to use the toJSON method in Mongoose to manipulate the user object before sending it as a JSON response.
Instructional Video8:09
Curated Video

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

Higher Ed
In this video, we will go over how to fetch all users from the MongoDB database using Mongoose and Express, and display them in our app.
Instructional Video10:28
Curated Video

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

Higher Ed
In this video, we will explore advanced techniques for implementing a SearchView in your Twitter Clone app.
Instructional Video12:20
Curated Video

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

Higher Ed
DELETE requests are an essential part of any application that involves user-generated content; in this video, we will walk through how to structure and implement this functionality in your own projects, and offer guidance on how to...
Instructional Video12:02
Curated Video

SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - UPDATE and DELETE Requests

Higher Ed
UPDATE and DELETE requests are essential tools for managing data in web applications; in this video, we will walk through how to structure and implement these requests in your own projects.
Instructional Video8:20
Curated Video

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

Higher Ed
In this video, we will take a closer look at GET requests and how they function, as well as some best practices for implementing them in your web applications.
Instructional Video10:16
Curated Video

SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Note Model and POST Request

Higher Ed
In this video, we will explore the Note model and POST request in depth, including how they work and how to use them effectively in your programming projects.
Instructional Video10:03
Instructional Video9:16
Professor Dave Explains

Innate Lymphoid Cells

12th - Higher Ed
Wrapping up the innate immune system we have one more cell type to examine, and that is innate lymphoid cells. These are a family of lymphocytes that are considered to be the innate counterparts of T cells from the adaptive immunity,...
Instructional Video14:24
Curated Video

The Art of Doing - Web Development for Beginners - Guess My Number Project

Higher Ed
In this video, we will code the "Guess My Number" project together, following the project requirements discussed in the previous video. We will implement the game logic step by step, utilizing functions to structure our code and make the...
Instructional Video14:11
Curated Video

The Art of Doing - Web Development for Beginners - Functions

Higher Ed
In this video, we will delve into functions in JavaScript, including function declarations, parameters, and function bodies. You will also learn how to call functions and pass arguments to them and explore best practices for writing...
Instructional Video3:53
Curated Video

Behavioral Design Patterns in C++ - Pros and Cons-Strategy Pattern

Higher Ed
This video talks about the pros and cons of the strategy pattern. This clip is from the chapter "Strategy" of the series "Behavioral Design Patterns in C++".In this section, you will learn about the strategy pattern.
Instructional Video3:57
Curated Video

Behavioral Design Patterns in C++ - Non-Member Strategy Pointer

Higher Ed
In this video, we will see one more alternative to the strategy pattern, where the pointer is passed as an argument into the function, instead of being a member of the class. This clip is from the chapter "Strategy" of the series...
Instructional Video6:52
Curated Video

Behavioral Design Patterns in C++ - Function Strategy - II

Higher Ed
In this video, we will continue to explore the function strategy design pattern, building on the concepts covered in the previous video. We will dive deeper into the implementation of this pattern. This clip is from the chapter...
Instructional Video7:55
Curated Video

Behavioral Design Patterns in C++ - Function Strategy - I

Higher Ed
In this video, we explore the function strategy design pattern, which allows us to swap out different algorithms at runtime. We will cover the basics of the pattern and how to implement it in JavaScript, as well as some real-world use...
Instructional Video8:07
Curated Video

Behavioral Design Patterns in C++ - Static Strategy

Higher Ed
In this video, we will dive into the static strategy design pattern, which allows us to choose an algorithm at compile-time rather than at runtime. Here, we will see how, in C++, strategy can be implemented more efficiently using...