Instructional Video3:15
MinutePhysics

Passing A Portal Through Itself

12th - Higher Ed
This video is about what happens if you try to pass a portal (like in the video game Portal or Portal 2) through itself - do you get a paradox? Infinite recursion? Impossibility? Contradiction? The end of the world? Collapse of the...
Instructional Video3:29
SciShow

Animals That Do Drugs

12th - Higher Ed
Turns out humans aren't the only animals that can medicate themselves - many other animals have found ways to deal with illness by using natural remedies. Hank will tell you about some of the most interesting methods animals have found...
Instructional Video11:32
SciShow

The Truth About the Five Stages of Grief

12th - Higher Ed
The Five Stages of Grief show up in media everywhere from The Simpsons to Robot Chicken, but scientists have long been working on better ways to think about grief.
Instructional Video3:34
MinutePhysics

Complete Solution To The Twins Paradox

12th - Higher Ed
This video is about the famous 'Twins paradox' of special relativity, how time can appear to be faster for two different observers at the same time, and which twin really is older (or younger) - the one who stays on earth or the one who...
Instructional Video2:27
MinutePhysics

Do Photons Cast Shadows?

12th - Higher Ed
This video is about two-photon (gamma-gamma) physics, and how photons can interact with each other - either mediated by a passing lepton, or gravitationally via lensing, or via vacuum fluctuation pair production of vertical particles...
Instructional Video4:49
SciShow

The Sound of Your GPA Slipping Away

12th - Higher Ed
Researchers have noticed some trends in the relationship between academic performance and noise. Spoiler alert: it doesn’t sound good.
Instructional Video4:32
SciShow

Science Superlatives of 2015!

12th - Higher Ed
Learn about the strongest, slowest, and fastest science in 2015!
Instructional Video3:28
SciShow

Animals That Do Drugs

12th - Higher Ed
Turns out humans aren't the only animals that can medicate themselves - many other animals have found ways to deal with illness by using natural remedies. Hank will tell you about some of the most interesting methods animals have found...
Instructional Video2:15
MinutePhysics

How Long Is A Day On The Sun?

12th - Higher Ed
This video is about the definition of a day, and how it applies (or not) on the sun. Solar day, sidereal day, universal coordinated time (UTC) day, etc. Length of a day.
Instructional Video8:12
TED Talks

TED: The tragedy of air pollution -- and an urgent demand for clean air | Rosamund Adoo-Kissi-Debrah

12th - Higher Ed
Breathing clean air is every child's human right, says grassroots campaigner Rosamund Adoo-Kissi-Debrah, sharing the heartbreaking story of her seven-year-old daughter, Ella Roberta, whose asthma was triggered to a fatal point by air...
Instructional Video4:59
MinutePhysics

Why Do Compressed Air Cans Get Cold?

12th - Higher Ed
This video is about compressed air cans (aka gas dusters) and why they get cold when you spray them. They cool off because the refrigerant inside (1,1-difluoroethane) is under pressure and boils off when the pressure lowers, and energy...
Instructional Video11:42
SciShow

The Truth About the Five Stages of Grief

12th - Higher Ed
The Five Stages of Grief show up in media everywhere from The Simpsons to Robot Chicken, but scientists have long been working on better ways to think about grief.
Instructional Video2:23
MinuteEarth

Why Bird Penises Are So Weird

12th - Higher Ed
Male birds have the largest genital diversity of any class of animals because their sex chromosomes make it easy to pass male-helping mutations down the line. ___________________________________________ To learn more, start your googling...
Instructional Video13:42
Curated Video

Basil retakes Macedonia! The tide turns ⚔ Battle of Skopje, 1004 ⚔ Basil II the Bulgar Slayer Part 4

6th - Higher Ed
Basil retakes Macedonia! The tide turns ⚔ Battle of Skopje, 1004 ⚔ Basil II the Bulgar Slayer Part 4
Instructional Video5:19
Wonderscape

The Legacy and Farewell of Queen Elizabeth II

K - 5th
This video reflects on the passing of Queen Elizabeth II, the longest-reigning monarch in British history, and the transition to King Charles III. Explore her legacy, the royal funeral procession through Scotland, and the final farewell...
Instructional Video4:20
Curated Video

Modern JavaScript from the Beginning - Second Edition - Promise Chaining

Higher Ed
In this video, you will learn how to use Promise chaining to handle multiple asynchronous tasks in a more elegant way. We will see how to chain Promises together and how to use the result of one Promise as the input for the next Promise....
Instructional Video6:56
Curated Video

Modern JavaScript from the Beginning - Second Edition - Callback Hell

Higher Ed
In this video, you will learn about the problem of Callback Hell, which can occur when working with asynchronous JavaScript. You will learn what it is, how it can make code difficult to read and maintain, and how to avoid it using...
Instructional Video4:54
Curated Video

Modern JavaScript from the Beginning - Second Edition - Custom insertAfter() Challenge

Higher Ed
This video presents a coding challenge to create a custom function called insertAfter() that can insert an element after a specific element in the DOM. This clip is from the chapter "DOM Manipulation" of the series "Modern JavaScript...
Instructional Video3:54
Curated Video

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

Higher Ed
This is an exercise 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 Video4:37
Curated Video

Modern JavaScript from the Beginning - Second Edition - Refactor to Single _newItem Method

Higher Ed
This video focuses on refactoring the Tracalorie App project to use a single _newItem method for creating new meal and workout objects. The video covers how to use JavaScript classes and the 'this' keyword to create a more efficient and...
Instructional Video2:28
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Exercise - Matching Enums in Rust

Higher Ed
This is an exercise video on matching Enums 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 Video5:38
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Solution - Borrowing in Rust

Higher Ed
This is a solution video on borrowing 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 Video6:42
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Borrowing in Rust - The “&†Symbol in Rust

Higher Ed
In Rust, borrowing is an essential concept for managing memory and preventing common memory-related errors. The ‘&' symbol is used to create references to variables and pass them to functions, which allows efficient memory management...
Instructional Video4:45
Curated Video

Concurrent and Parallel Programming in Python - Multiprocessing Multiple Varying Arguments

Higher Ed
In the previous video, we have seen how to provide additional arguments using a partial library in the functools built-in tool; you will now learn to add different elements such as a power list instead.