Instructional Video7:14
Curated Video

Modern JavaScript from the Beginning - Second Edition - Primitive Versus Reference Types

Higher Ed
In this video, we will explain the difference between primitive and reference types in JavaScript and how they are stored in memory. This clip is from the chapter "Variables, Data Types, Methods, and More" of the series "Modern...
Instructional Video6:47
Curated Video

Machine Learning: Random Forest with Python from Scratch - Pros and Cons of Random Forest

Higher Ed
In this video, we will look at the benefits and limitations of Random Forest and the complexities involved in decision-making using Random Forest. This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine...
Instructional Video4:51
Curated Video

Machine Learning: Random Forest with Python from Scratch - Clustering

Higher Ed
In this lesson, you will learn about an unsupervised branch of learning called clustering, which involves grouping elements with no labels to classify them. This clip is from the chapter "Introduction to Machine Learning" of the series...
Instructional Video6:14
Curated Video

Machine Learning: Random Forest with Python from Scratch - Classification versus Regression

Higher Ed
Let's learn about the three modes of machine learning: classification, regression, and clustering. This clip is from the chapter "Introduction to Machine Learning" of the series "Machine Learning: Random Forest with Python from...
Instructional Video7:35
Curated Video

Machine Learning: Random Forest with Python from Scratch - Overfitting and Underfitting

Higher Ed
In this video, you will learn about overfitting, a modeling error when a model performs well in training but not in testing, and underfitting, where the model neither performs well during training nor during testing. This clip is from...
Instructional Video6:40
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Ownership in Rust

Higher Ed
Ownership is a key concept in Rust's memory management system, and it's essential for writing efficient and safe programs. In this video, you will learn about ownership in Rust and how it helps prevent common memory-related errors. This...
Instructional Video4:04
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Integer Range and Integer Overflow in Rust

Higher Ed
In this video, you will learn about integer ranges and integer overflow in Rust and how to use Rust's built-in features to work with integers in a safe and reliable way. This clip is from the chapter "Beginner Lessons in Rust" of the...
Instructional Video2:31
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Safe Mode and Unsafe Mode in Rust

Higher Ed
Rust is a modern programming language that prioritizes memory safety and performance. In this video, you will dive into the two modes of operation in Rust—safe mode and unsafe mode. This clip is from the chapter "What Is Rust and Why...
Instructional Video1:30
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Rust - The Borrow Checker

Higher Ed
In this video, you will dive into the core concept of Rust programming—the borrow checker. You will learn how the borrow checker works to ensure memory safety and prevent common programming errors. This clip is from the chapter "What...
Instructional Video3:36
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Understanding Authentication

Higher Ed
This video explains authentication and why it is important. This clip is from the chapter "Website Authentication" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains the process of website authentication.
Instructional Video1:09
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Add to GitHub-3

Higher Ed
This video explains how to push the code done so far onto GitHub. This clip is from the chapter "Customizing Views and Elements" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to customize views...
Instructional Video3:22
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Fix syntax Errors

Higher Ed
This video explains how to fix syntax errors. This clip is from the chapter "Customizing Views and Elements" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to customize views and elements.
Instructional Video8:12
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Understanding the layout file and Bootstrap

Higher Ed
This video explains the layout file and Bootstrap. This clip is from the chapter "Manipulating Website Views and Layout" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains manipulating website views and...
Instructional Video7:02
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Create ASP.NET Core MVC Project - Visual Studio Code

Higher Ed
This video explains how to create the ASP.NET Core MVC project using .NET CLI. This clip is from the chapter "Setup ASP.NET Core MVC Application" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains the...
Instructional Video5:56
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Alternative - Install Visual Studio 2022 (Windows and Mac)

Higher Ed
This video explains how to set up Visual Studio 2022 on the machine. 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 Video3:14
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Install .NET 7 SDK

Higher Ed
This video explains the installation process of .NET 7 SDK. 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 started with...
Instructional Video2:10
Curated Video

Modern JavaScript from the Beginning - Second Edition - Project Introduction-2

Higher Ed
In this section, you will learn about modules and tooling. We will understand the basics of using Node.js and NPM packages. You will learn about different module formats, such as CommonJS and ES Modules, and how to use them in our code....
Instructional Video5:25
Curated Video

Modern JavaScript from the Beginning - Second Edition - bind() and Defining this

Higher Ed
In this video, you will learn about the "bind()" method in JavaScript, including how to use it to set the "this" keyword in class methods and how to define the "this" keyword explicitly using arrow functions. This clip is from the...
Instructional Video7:37
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Math Method - Part 2

Higher Ed
Continuing from the previous video, we will delve deeper into the Math object's methods. You will learn about Math functions, which enable you to generate random numbers, find the maximum and minimum values, and perform exponential...
Instructional Video2:48
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Conclusion-3

Higher Ed
In the final video of the course, the instructor provides a comprehensive conclusion to the React.JS tutorial series and summarizes the key concepts and topics covered throughout the section, highlighting the main takeaways and providing...
Instructional Video4:05
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Media Queries

Higher Ed
In this video, you will learn how to use media queries in CSS3 to apply specific styles based on the characteristics of the device or viewport. We will understand how to create responsive designs that adapt to different screen sizes,...
Instructional Video6:32
Curated Video

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

Higher Ed
This video talks about smart pointers in Rust. This clip is from the chapter "Intermediate to Advanced Videos in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".null
Instructional Video4:35
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - How to Slice in Rust

Higher Ed
In Rust, slicing is a powerful tool for working with arrays, strings, and other collections. With slicing, you can extract specific parts of a collection, modify them, and reassemble them in new ways. In this video, you will learn how to...
Instructional Video3:12
Curated Video

Concurrent and Parallel Programming in Python - Using Async Timeouts

Higher Ed
This video will explain what a timeout does in asynchronous programming and how to place timeouts in our syntax.