Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Introduction to Express
This video provides an introduction to Express.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Upload Profile Image
In this video, we will cover how to upload a profile image for the user using SwiftUI and Node.js.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Fetch Specific Tweets
In this video, we continue building our Twitter Clone app by implementing the functionality to fetch specific tweets.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Tweet Image Check
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.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Unlike Tweet
This video is all about implementing a "Unlike" functionality in our Twitter Clone app.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Tweet Image Visualize
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.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Fetching a Specific User
In this video, you will learn how to fetch a specific user using their ID, and send back only the necessary user data.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Tokens
In this video, we will dive deeper into JWTs and learn how to use them for secure user authentication and authorization.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - toJSON
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.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Fetching Users
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.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - SearchView 2
In this video, we will explore advanced techniques for implementing a SearchView in your Twitter Clone app.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - DELETE Notes
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...
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - UPDATE and DELETE Requests
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.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - GET Request
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.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Note Model and POST Request
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.
Curated Video
SwiftUI and Node.js Full Stack - Build Twitter - iOS 16 - Mongoose
This video explains Mongoose in detail.
Professor Dave Explains
Innate Lymphoid Cells
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,...
Curated Video
The Art of Doing - Web Development for Beginners - Guess My Number Project
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...
Curated Video
The Art of Doing - Web Development for Beginners - Functions
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...
Curated Video
Behavioral Design Patterns in C++ - Pros and Cons-Strategy Pattern
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.
Curated Video
Behavioral Design Patterns in C++ - Non-Member Strategy Pointer
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...
Curated Video
Behavioral Design Patterns in C++ - Function Strategy - II
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...
Curated Video
Behavioral Design Patterns in C++ - Function Strategy - I
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...
Curated Video
Behavioral Design Patterns in C++ - Static Strategy
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...