Instructional Video11:11
Curated Video

Machine Learning: Random Forest with Python from Scratch - Kids versus Computer Learning

Higher Ed
In this lesson, we will compare their learning features to understand the fundamental difference between a kid and a computer. This clip is from the chapter "Introduction to Machine Learning" of the series "Machine Learning: Random...
Instructional Video8:40
Curated Video

Modern JavaScript from the Beginning - Second Edition - Array.forEach Method

Higher Ed
In this video, you will learn about the Array.forEach method, which allows us to loop over the elements of an array and execute a function for each element. This clip is from the chapter "Loops, Iteration, and High-Order Array Methods"...
Instructional Video6:54
Curated Video

Modern JavaScript from the Beginning - Second Edition - Capitalize Challenge

Higher Ed
In this video, we will tackle a coding challenge to capitalize the first letter of each word in a given string. We will walk through the problem step by step, discuss different approaches, and write a solution using JavaScript string...
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 Video5:47
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Solution - Destructing Tuples with Rust

Higher Ed
This is a solution video on destructing tuples with Rust. This clip is from the chapter "Beginner to Intermediate Lessons" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the beginner...
Instructional Video2:53
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Printing Variables as Arguments in Rust

Higher Ed
In this video, you will be printing variables as arguments 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...
Instructional Video5:59
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Create Database

Higher Ed
This video explains how to create a database. This clip is from the chapter "Adding a Database" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to create and add a database.
Instructional Video2:31
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Create GitHub Account

Higher Ed
This video explains how to create a GitHub account. 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 the...
Instructional Video10:03
Curated Video

Modern JavaScript from the Beginning - Second Edition - Palindrome Algorithm

Higher Ed
In this video, we will write a unit test for a palindrome checking algorithm. We will use Jest to test our algorithm and ensure that it correctly identifies palindromes. This clip is from the chapter "Unit Testing Algorithms" of the...
Instructional Video8:49
Curated Video

Modern JavaScript from the Beginning - Second Edition - Queues

Higher Ed
Queues are a data structure that allows us to store and retrieve data in a first-in, first-out (FIFO) manner. In this video, you will learn how queues work and how to create them. This clip is from the chapter "Iterators, Generators, and...
Instructional Video2:13
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Find and findIndex Methods

Higher Ed
In this video, we will explore the find() and findIndex() methods used to search for a specific element in an array, where the find() returns the first element that matches a condition, while findIndex() returns the index of the first...
Instructional Video1:50
Curated Video

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

Higher Ed
In this video, you will learn about the outline property in CSS3 and how it can be used to create outlines around elements. We will understand how to customize outline styles, widths, and colors to enhance the visual appearance of elements.
Instructional Video4:08
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - HTML5 Quotation and Citation Tags

Higher Ed
In this video, we will discover the purpose and usage of quotation (blockquote, q) and citation (cite) tags in HTML5, to properly attribute and reference external content within your webpages, such as quotes, citations, and sources.
Instructional Video3:07
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Solution - Iterate Through a Vector in Rust

Higher Ed
This is a solution video on iterating through a vector 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 Video5:57
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Solution - Build a Hash Table with HashMap in Rust

Higher Ed
This is a solution video on building a hash table with HashMap in Rust. This clip is from the chapter "Beginner to Intermediate Lessons" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on...
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 Video7:03
Curated Video

Rediscovering Cro-Magnon: Daily Life and Ingenious Adaptations

6th - Higher Ed
This segment explores the surprisingly sophisticated daily life of Cro-Magnon humans, debunking the myth of the primitive caveman. Learn how they crafted comfortable clothing from leather and fur, adapted to harsh climates, and developed...
Instructional Video7:02
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - For Loop Solution - Sum of Natural Numbers in JavaScript

Higher Ed
In this video, we will discuss a solution on the For loop operator where you will be doing sum of natural numbers in JavaScript from the previous video. This clip is from the chapter "Introduction to Programming and JavaScript Basics for...
Instructional Video3:53
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What Are Functions in JavaScript - Part I

Higher Ed
In this video, you will learn about functions in JavaScript, which are one of the fundamental building blocks of programming. You will explore the basic syntax of functions and learn how to define and call functions in your code. This...
Instructional Video12:42
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What Are Libraries in Solidity

Higher Ed
In this video, you will learn about libraries in Solidity, which are a way to reuse code and can be deployed as separate contracts or included in the main contract bytecode. This clip is from the chapter "Learn Advanced Solidity II" of...
Instructional Video11:28
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What Are Interfaces in Solidity

Higher Ed
This video explains what interfaces are in Solidity and how they are used to enforce standardized behavior across contracts. This clip is from the chapter "Learn Advanced Solidity II" of the series "The Complete Solidity Course - Zero to...
Instructional Video20:41
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - Contract Visibility Advanced I

Higher Ed
In this video, we will discuss the solution to the exercise on contract visibility advanced from the previous video. This clip is from the chapter "Learn Advanced Solidity I (Inheritance and Abstractions)" of the series "The Complete...
Instructional Video3:37
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What Is Inheritance in Solidity

Higher Ed
This video explains the concept of inheritance in Solidity, a way to reuse and extend the functionality of smart contracts. This clip is from the chapter "Learn Advanced Solidity I (Inheritance and Abstractions)" of the series "The...
Instructional Video7:45
Curated Video

The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What are Contracts Review in Solidity

Higher Ed
This video explores the concept of contract reviews in Solidity and how they can help improve the security and reliability of your smart contracts. This clip is from the chapter "Learn Advanced Solidity I (Inheritance and Abstractions)"...