SciShow
Animals Have Grammar Too - A Little Birdie Told Us
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...
TED-Ed
TED-Ed: How computers translate human language - Ioannis Papachimonas
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...
3Blue1Brown
Triangle of Power
Logarithms are confusing, but perhaps some alternate notation could make them more intuitive.
SciShow
What We Often Get Wrong About the Brain’s 'Language' Centers
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.
3Blue1Brown
Triangle of Power
Logarithms are confusing, but perhaps some alternate notation could make them more intuitive.
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Class Method (Part 2)
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.
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Create Your First Class with OOP
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...
Curated Video
Machine Learning: Random Forest with Python from Scratch - For Loop
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Section Introduction-OOP Section Intro
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Try...Catch Statements
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Fetch Basics
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Under the Hood: How Async JS Works
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Section Introduction-Fetch API and Async / Await
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - While and Do While Loops
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Primitive Versus Reference Types
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - ES Modules
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Prototypical Inheritance and call()
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Objects
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.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - For-In Loop
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - For Loop
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.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Break and Continue Statement
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Syntax of JavaScript and Overview
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...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Solution - How to Slice in Rust
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...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - How to Slice in Rust
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...