Instructional Video5:18
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - The Stack Versus the Heap in Rust

Higher Ed
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...
Instructional Video5:04
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - String Object Methods in Rust

Higher Ed
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...
Instructional Video1:57
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Exercise - What Are Variables in Rust

Higher Ed
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.
Instructional Video2:08
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Integer Exercise Example in Rust

Higher Ed
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...
Instructional Video6:45
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - What Are Integers in Rust

Higher Ed
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.
Instructional Video2:11
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Print line Println Exercise in Rust

Higher Ed
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...
Instructional Video5:22
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Install SQL Server Express (Windows)

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

Modern JavaScript from the Beginning - Second Edition - API Service - Fetch Ideas

Higher Ed
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...
Instructional Video9:19
Curated Video

Modern JavaScript from the Beginning - Second Edition - Client Folder Setup

Higher Ed
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...
Instructional Video8:59
Curated Video

Modern JavaScript from the Beginning - Second Edition - Mongoose Connect and Dotenv

Higher Ed
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...
Instructional Video5:58
Curated Video

Modern JavaScript from the Beginning - Second Edition - MongoDB Atlas Setup

Higher Ed
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...
Instructional Video6:21
Curated Video

Modern JavaScript from the Beginning - Second Edition - PUT and DELETE Requests - Update and Remove Ideas

Higher Ed
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...
Instructional Video6:09
Curated Video

Modern JavaScript from the Beginning - Second Edition - Nodemon and Route Clean-Up

Higher Ed
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...
Instructional Video7:26
Curated Video

Modern JavaScript from the Beginning - Second Edition - url and querystring Modules

Higher Ed
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...
Instructional Video8:02
Curated Video

Modern JavaScript from the Beginning - Second Edition - path Module

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

Modern JavaScript from the Beginning - Second Edition - Grouping Tests Together

Higher Ed
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...
Instructional Video2:49
Curated Video

Modern JavaScript from the Beginning - Second Edition - Introduction and What Are Algorithms?

Higher Ed
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...
Instructional Video7:10
Curated Video

Modern JavaScript from the Beginning - Second Edition - What Are Modules?

Higher Ed
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,...
Instructional Video5:57
Curated Video

Modern JavaScript from the Beginning - Second Edition - Remove Meals and Workouts from Local Storage

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

Modern JavaScript from the Beginning - Second Edition - Storage Class and Calorie Limit Persist

Higher Ed
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...
Instructional Video4:47
Curated Video

Modern JavaScript from the Beginning - Second Edition - UI Theme Setup

Higher Ed
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...
Instructional Video7:31
Curated Video

Modern JavaScript from the Beginning - Second Edition - Sealing and Freezing Objects

Higher Ed
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...
Instructional Video11:00
Curated Video

Modern JavaScript from the Beginning - Second Edition - Getters and Setters with defineProperty()

Higher Ed
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"...
Instructional Video9:37
Curated Video

Modern JavaScript from the Beginning - Second Edition - Getters and Setters with Classes

Higher Ed
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...