MinutePhysics
Passing A Portal Through Itself
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...
SciShow
Animals That Do Drugs
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...
SciShow
The Truth About the Five Stages of Grief
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.
MinutePhysics
Complete Solution To The Twins Paradox
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...
MinutePhysics
Do Photons Cast Shadows?
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...
SciShow
The Sound of Your GPA Slipping Away
Researchers have noticed some trends in the relationship between academic performance and noise. Spoiler alert: it doesn’t sound good.
SciShow
Science Superlatives of 2015!
Learn about the strongest, slowest, and fastest science in 2015!
SciShow
Animals That Do Drugs
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...
MinutePhysics
How Long Is A Day On The Sun?
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.
TED Talks
TED: The tragedy of air pollution -- and an urgent demand for clean air | Rosamund Adoo-Kissi-Debrah
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...
MinutePhysics
Why Do Compressed Air Cans Get Cold?
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...
SciShow
The Truth About the Five Stages of Grief
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.
MinuteEarth
Why Bird Penises Are So Weird
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...
Curated Video
Basil retakes Macedonia! The tide turns ⚔ Battle of Skopje, 1004 ⚔ Basil II the Bulgar Slayer Part 4
Basil retakes Macedonia! The tide turns ⚔ Battle of Skopje, 1004 ⚔ Basil II the Bulgar Slayer Part 4
Wonderscape
The Legacy and Farewell of Queen Elizabeth II
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Promise Chaining
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....
Curated Video
Modern JavaScript from the Beginning - Second Edition - Callback Hell
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Custom insertAfter() Challenge
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...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Exercise - Destructing Tuples with Rust
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Refactor to Single _newItem Method
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...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Exercise - Matching Enums in Rust
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...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Solution - Borrowing in Rust
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...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Borrowing in Rust - The “&†Symbol in Rust
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...
Curated Video
Concurrent and Parallel Programming in Python - Multiprocessing Multiple Varying Arguments
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.