Programming Electronics Academy
Series Parallel: Base Electronics: 11
A description of basic series parallel circuit analysis with Arduino.
Next Animation Studio
Evidence for the hypothetical existence of Planet 9 increases
Evidence of the existence of a ninth planet in our solar system is unlikely to be a fluke, according to a pre-print of a California Institute of Technology study.
Curated Video
Develop a computer program to solve a problem using control structures : While Loops
From the section: Python Crash Course. In this section, the author covers Python and provides a crash course on this. Python Crash Course: While Loops
Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Introduction to Trees and Binary Search Trees
Delete scenario 2 - deleting nodes with 1 child node This clip is from the chapter "Algorithms - Search and abstract data structures" of the series "Python 3: Project-based Python, Algorithms, Data Structures".null
Programming Electronics Academy
Circuit Analogy: Base Electronics: 2
Using the water pump analogy to explain electricity.
Visual Learning Systems
Introduction to Electric Current and Circuits
In this educational video, we delve into the concept of electric current and how it is created. We then explore the basics of electric charges and their flow through materials, emphasizing the continuous nature of electric current. This...
Curated Video
Electrical Energy Transmission and Consumer Safety
In this video, the process of transmitting electrical energy from a power station to the consumer is explained. Different types of potential difference are also discussed, including direct current (DC) and alternating current (AC). The...
Curated Video
Implement a computer program using a classic algorithm : A look at the recursive divide function
From the section: Algorithms - Sort, performance, complexity and big O notation. This section is about Algorithms – sort, performance, complexity and big O notation. A look at the divide/split function which introduces recursion
Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Hashmaps and O(1) search complexity
Build methods in the custom linked list class and homework assignment This clip is from the chapter "Algorithms - Search and abstract data structures" of the series "Python 3: Project-based Python, Algorithms, Data Structures".null
Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Visualize Stacks and Queues, and their operations
Delete scenario one - deleting nodes with no children (leaf nodes) This clip is from the chapter "Algorithms - Search and abstract data structures" of the series "Python 3: Project-based Python, Algorithms, Data Structures".null
Curated Video
Introduction to Potential Dividers and Their Applications
The video is a lecture presentation on potential dividers in circuits. The video also discusses variable potential dividers that allow for continuous adjustment of potential difference, and the use of special resistors like thermistors...
Packt
Reversing Linked List - I
This is the first part of the two-part video that demonstrates how to reverse a linked list. This clip is from the chapter "Question 5: Reserve Linked List" of the series "Data Structures and Algorithms: The Complete Masterclass".This...
Packt
Designing a Linked List – Part I
This is the first part of the four-part video that demonstrates how to design a linked list. This clip is from the chapter "Question 4: Design of a Linked List" of the series "Data Structures and Algorithms: The Complete...
Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Project: Complete quote finder using hash table
Inserting nodes into a BST in-depth with test cases This clip is from the chapter "Algorithms - Search and abstract data structures" of the series "Python 3: Project-based Python, Algorithms, Data Structures".null
Curated Video
Complete Git Guide: Understand and Master Git and GitHub - Git Branches Management
This video sheds light on Git branches management. This clip is from the chapter "Git Branches and HEAD" of the series "Complete Git Guide: Understand and Master Git and GitHub".This section explains the most common Git operations. It...
The Business Professor
Cost Volume Profit Analysis - Margin of Safety Analysis
Margin of Safety Analysis is a key assumption when conducting a Cost Volume Profit Analysis. This video explains the relevance of this assumption.
Weatherthings
Rip Current Safety: Where do Rip Currents Happen?
This is the science of what, where, and how of rip currents. Most lifeguard rescues on ocean beaches in the United States are for rip currents. See how to avoid rip currents and learn safety from these killer currents on beaches. They...
Next Animation Studio
Japan University unveils on-road electric vehicle charging technology
TOYOHASHI UNIVERSITY OF TECHNOLOGY has developed rubber wheels that conduct electricity by using high frequency electric current. The concept is similar to that of the electric transmission of a train. The road acts like the overhead...
Curated Video
Introduction to the Balance Sheet
This video provides an introduction to the balance sheet, which is a financial statement that provides a snapshot of a company's assets, liabilities, and equity at a specific moment in time. The presenter explains how businesses measure...
Curated Video
The Complete Beginners Guide to Arduino - 2021 - Resistance and Ohms Law
In this lecture, we are going to look at the relationship between current, voltage, and resistance and learn how to apply Ohms Law to work out one of these values if we know the other two. This clip is from the chapter "Electronic...
IDG TECHtalk
The basics of dates and times in Go
How do Go programs handle dates and times? Learn about the use of the time package to work with the current date and time, create date and time values programmatically, format date/time values, and work with timezones.
Next Animation Studio
Gulf Stream nearing ‘Day After Tomorrow’ tipping point
Scientists say the increased melting of arctic freshwater is causing an imbalance in the salinity of seawater, and this could lead to plummeting temperatures in the northern hemisphere.
Curated Video
Create a list : The List Contains Challenge
From the section: Lists. This section focuses on lists and the various functions of the list. This video presents the List Contains Challenge.
Curated Video
Implement different search algorithms : BST from scratch - Search
From the section: Algorithms - Search and abstract data structures. This section is about Algorithms. You will learn about Bisection, Binary section etc. Add a search method to the BST class