Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - The Stack Versus the Heap in Rust
In Rust, memory management is a crucial part of writing efficient and safe programs. Understanding the differences between the stack and the heap is important for managing memory effectively. In this video, you will learn about the stack...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - String Object Methods in Rust
In this video, you will learn about the different methods available on the String object in Rust and how to use them effectively in your programs. This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Exercise - What Are Variables in Rust
This is an exercise video on variables in Rust. This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the beginner lessons in Rust.
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Integer Exercise Example in Rust
This is an exercise video on integer example in Rust. This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the beginner lessons in...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - What Are Integers in Rust
This video explains integers in Rust in detail. This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the beginner lessons in Rust.
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Print line Println Exercise in Rust
In this video, you will be presented with a series of coding challenges designed to test your knowledge of the print! and println! macros. This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A...
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Install SQL Server Express (Windows)
This video explains the installation of SQL Server Express on Windows. This clip is from the chapter "Environment Setup" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains the environmental setup to get...
Curated Video
Modern JavaScript from the Beginning - Second Edition - API Service - Fetch Ideas
In this video, we will create an API service that will be used to fetch the ideas from the backend. This clip is from the chapter "RandomIdeas Project - Webpack Frontend (Bonus Project)" of the series "Modern JavaScript from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Client Folder Setup
In this video, we will set up the client folder where we will build the frontend of our app. This clip is from the chapter "RandomIdeas Project - Webpack Frontend (Bonus Project)" of the series "Modern JavaScript from the Beginning".In...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Mongoose Connect and Dotenv
In this video, we will use the Mongoose library to connect to our MongoDB database. We will also use the dotenv library to manage our environment variables, such as the database connection string. This clip is from the chapter...
Curated Video
Modern JavaScript from the Beginning - Second Edition - MongoDB Atlas Setup
In this video, we will set up a MongoDB Atlas account, which will provide us with a free cloud-based MongoDB database. We will also create a new database and user and configure our project to connect to the database. This clip is from...
Curated Video
Modern JavaScript from the Beginning - Second Edition - PUT and DELETE Requests - Update and Remove Ideas
In this video, we will handle PUT and DELETE requests to update and remove existing ideas from the database. We will use Mongoose to find and update or remove the idea and return an appropriate response to the client. This clip is from...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Nodemon and Route Clean-Up
In this video, we will use Nodemon to automatically restart our server whenever changes are made, making development more efficient. We will also clean up our code by moving our route handlers into separate modules. This clip is from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - url and querystring Modules
The url and querystring modules provide methods for working with URLs and query strings. In this video, we will explore the different methods available in these modules and how to use them to parse and manipulate URLs and query strings...
Curated Video
Modern JavaScript from the Beginning - Second Edition - path Module
The path module provides methods for working with file paths and directories. In this video, we will explore the different methods available in the path module and how to use them to manipulate file paths in our Node.js applications....
Curated Video
Modern JavaScript from the Beginning - Second Edition - Grouping Tests Together
In this video, you will learn how to group tests together using Jest. We will organize our tests into test suites and describe blocks, making our test code more readable and easier to maintain. This clip is from the chapter "Unit Testing...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Introduction and What Are Algorithms?
In this video, we will introduce the concept of algorithms and why they are important in programming. We will discuss what an algorithm is, the different types of algorithms, and why it's crucial to have good algorithms in software...
Curated Video
Modern JavaScript from the Beginning - Second Edition - What Are Modules?
This video provides an overview of modules and why they are important in modern web development. It explains how modules help organize code and make it easier to maintain and reuse. The video also discusses the benefits of using modules,...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Remove Meals and Workouts from Local Storage
In this video, we will update the Tracalorie app to remove meals and workouts from local storage when they are removed from the app. We will use the Storage class to remove the corresponding item from local storage so that it is not...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Storage Class and Calorie Limit Persist
In this video, we will create a Storage class that handles all the interactions with local storage in the Tracalorie app. We will move all the local storage-related code from the App class to the Storage class. We will also update the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - UI Theme Setup
This video focuses on setting up the user interface (UI) theme for the Tracalorie App project. The video covers how to create and implement a basic UI theme using CSS variables and demonstrates how to switch between light and dark themes...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Sealing and Freezing Objects
In this video, you will learn about how to use the "Object.seal()" and "Object.freeze()" methods to make objects read-only and prevent changes to their properties. This clip is from the chapter "OOP - Classes, Getters, Setters, and...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Getters and Setters with defineProperty()
In this video, you will learn about how to define getters and setters for object properties using the "Object.defineProperty()" method in JavaScript. This clip is from the chapter "OOP - Classes, Getters, Setters, and Private Properties"...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Getters and Setters with Classes
In this video, you will learn about getters and setters in JavaScript classes, including how to define them and how to use them to get and set object properties. This clip is from the chapter "OOP - Classes, Getters, Setters, and Private...