Instructional Video5:04
SciShow

Animals Have Grammar Too - A Little Birdie Told Us

12th - Higher Ed
If you hear birds chirping in the trees, you might not think much of the different sounds you're hearing. But as it turns out, those tweets and chirps have a lot more in common with some of our complicated rules of grammar than you might...
Instructional Video4:45
TED-Ed

TED-Ed: How computers translate human language - Ioannis Papachimonas

Pre-K - Higher Ed
Is a universal translator possible in real life? We already have many programs that claim to be able to take a word, sentence, or entire book in one language and translate it into almost any other. The reality, however, is a bit more...
Instructional Video7:40
3Blue1Brown

Triangle of Power

12th - Higher Ed
Logarithms are confusing, but perhaps some alternate notation could make them more intuitive.
Instructional Video7:23
SciShow

What We Often Get Wrong About the Brain’s 'Language' Centers

12th - Higher Ed
About 150 years ago, scientists found the two main areas that are responsible for language production and comprehension in the brain. But it turns out they might have over-exaggerated what these parts actually do.
Instructional Video7:42
3Blue1Brown

Triangle of Power

12th - Higher Ed
Logarithms are confusing, but perhaps some alternate notation could make them more intuitive.
Instructional Video5:18
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Class Method (Part 2)

Higher Ed
Building upon the previous video, this video will provide further insights into class methods in Python. You will learn about the @classmethod. This video will deepen your understanding of class methods and their advanced usage.
Instructional Video8:37
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Create Your First Class with OOP

Higher Ed
In this video, you will learn how to create your first class in Python using OOP principles. You will understand the syntax for defining a class, creating objects, and initializing attributes. This video will provide a step-by-step guide...
Instructional Video6:54
Curated Video

Machine Learning: Random Forest with Python from Scratch - For Loop

Higher Ed
Let's understand the for loop and how it is used to iterate a sequence, which is a list, tuple, string, dictionary, or set. This clip is from the chapter "Introduction to Python" of the series "Machine Learning: Random Forest with Python...
Instructional Video2:08
Curated Video

Modern JavaScript from the Beginning - Second Edition - Section Introduction-OOP Section Intro

Higher Ed
In this video, we will introduce the topic of Object-Oriented Programming (OOP) and explain its importance in modern web development. This clip is from the chapter "OOP - Constructors and Prototypes" of the series "Modern JavaScript from...
Instructional Video4:50
Curated Video

Modern JavaScript from the Beginning - Second Edition - Try...Catch Statements

Higher Ed
In this video, we will take a closer look at the try/catch statement and how it works to catch errors in JavaScript. We will cover how to use multiple catch blocks, rethrow errors, and catch errors in async functions. This clip is from...
Instructional Video9:09
Curated Video

Modern JavaScript from the Beginning - Second Edition - Fetch Basics

Higher Ed
In this video, we will introduce the basics of the Fetch API, including how to create a simple GET request and handle the response data. We will also explore the Response object and various methods for parsing and manipulating response...
Instructional Video8:44
Curated Video

Modern JavaScript from the Beginning - Second Edition - Under the Hood: How Async JS Works

Higher Ed
In this video, you will learn about how asynchronous JavaScript works. We will see how JavaScript uses the event loop to manage asynchronous tasks and how it avoids blocking the main thread of execution. This clip is from the chapter...
Instructional Video1:31
Curated Video

Modern JavaScript from the Beginning - Second Edition - Section Introduction-Fetch API and Async / Await

Higher Ed
In this section, we will cover the Fetch API and how to use it to make HTTP requests to remote servers. We will also dive into the world of asynchronous JavaScript programming, exploring the async/await syntax for handling promises. This...
Instructional Video7:04
Curated Video

Modern JavaScript from the Beginning - Second Edition - While and Do While Loops

Higher Ed
In this video, you will learn about while and do-while loops in JavaScript and how they differ from for loops. This clip is from the chapter "Loops, Iteration, and High-Order Array Methods" of the series "Modern JavaScript from the...
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 Video7:32
Curated Video

Modern JavaScript from the Beginning - Second Edition - ES Modules

Higher Ed
This video covers ES Modules, which is a module format introduced in ES6 (ECMAScript 2015). The video explains how to create and use ES Modules in our code, how to export and import modules using the ES6 syntax, and how to use ES Modules...
Instructional Video10:16
Curated Video

Modern JavaScript from the Beginning - Second Edition - Prototypical Inheritance and call()

Higher Ed
In this video, we will discuss prototypical inheritance and demonstrate how to use the call() method to invoke a constructor function from another constructor function. This clip is from the chapter "OOP - Constructors and Prototypes" of...
Instructional Video10:15
Curated Video

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

Higher Ed
In this video, you will learn about objects in JavaScript, which are complex data types that allow us to store and organize related data. We will explore how to create objects, define properties and methods, and access their values.
Instructional Video3:16
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - For-In Loop

Higher Ed
In this video, we will look at the for-in loop, a useful iteration construct in JavaScript for iterating over the properties of an object and learn to use the for-in loop to iterate through object properties, perform actions on each...
Instructional Video2:59
Curated Video

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

Higher Ed
In this video, we will explore the for loop, a commonly used loop structure that allows for more control over the loop execution and the initialization, condition, and iteration expression of the for loop, along with examples.
Instructional Video3:39
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Break and Continue Statement

Higher Ed
In this video, we will gain control over loops with the "break" and "continue" statements in JavaScript. We will use "break" to exit a loop prematurely, and "continue" to skip the current iteration and move to the next one, enhancing the...
Instructional Video4:30
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Syntax of JavaScript and Overview

Higher Ed
In this video, we will dive into the syntax of JavaScript and gain an overview of its key components. You will learn about variables, data types, operators, control structures, functions. We will understand how JavaScript code is...
Instructional Video5:59
Curated Video

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

Higher Ed
This is a solution video on how to slice 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 the beginner to...
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...