Instructional Video4:20
Wonderscape

Amelia Earhart: Early Years and Inspiration for Aviation

K - 5th
This video introduces the early life of Amelia Earhart, from her adventurous childhood in Kansas to her first encounter with aviation. It also explores how her experiences as a nurse's assistant during World War I sparked her interest...
Instructional Video4:10
Curated Video

The Untold Story of Sister Rosetta Tharpe: A Soothing Stroll Through Black Music History

9th - Higher Ed
Join King Kurus, the Black History Buff, on a peaceful walk as he uncovers the remarkable life of Sister Rosetta Tharpe, the unsung Godmother of Rock and Roll. Discover how this pioneering guitarist shaped the future of music against all...
Instructional Video3:48
Wonderscape

Understanding the Executive Branch of US State Government

K - 5th
Explore the powers and responsibilities of the executive branch in state government, including the role of the governor and key officials such as the lieutenant governor, treasurer, controller, secretary of state, and attorney general....
Instructional Video3:51
Wonderscape

Understanding Earthquakes: The Role of Tectonic Movements

K - 5th
Dive into the dynamics of earthquakes, from the initial tremors to the science behind their measurement. Learn how seismologists use seismographs to detect seismic waves and locate epicenters, aiding in earthquake preparedness and the...
Instructional Video9:13
Curated Video

Machine Learning: Random Forest with Python from Scratch - Outliers Removal

Higher Ed
In the second part of the data cleaning process, we will look at an outlier in detail and learn how to correct or remove the outlier.
<
br/>
This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning:...
Instructional Video10:55
Curated Video

Machine Learning: Random Forest with Python from Scratch - Dealing with Missing Values

Higher Ed
Let's look at the first step involved in the data cleaning process, which is filling or removing missing values from a dataset.
<
br/>
This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning:...
Instructional Video11:13
Curated Video

Machine Learning: Random Forest with Python from Scratch - Reading and Manipulating Dataset

Higher Ed
Previously, you learned how to read a dataset; now, we will look at manipulating the data and using a sample dataset in our code.
<
br/>
This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning:...
Instructional Video9:07
Instructional Video6:49
Curated Video

A Detailed Guide to the OWASP Top 10 - API1:2023 Broken Object Level Authorization (BOLA)

Higher Ed
In this session, we will delve into the Broken Object Level Authorization risk, its implications, and strategies for mitigation.
Instructional Video12:59
Curated Video

AWS Certified Solutions Architect Associate (SAA-C03) - Configuring Route 53 Lab

Higher Ed
Do you need to manage DNS solutions within your AWS cloud? If so, Route 53 is the tool you will use. This video explores the capabilities and features of Route 53.
Instructional Video7:00
Curated Video

CompTIA A+ Certification Core 2 (220-1102) - Working with DNS

Higher Ed
When a user complains the Internet is down, what's often happening is that DNS isn't working. There are a few simple tools and procedures to diagnose and repair DNS problems.
<
br/>
This clip is from the chapter "Local Area...
Instructional Video11:21
Curated Video

Learn Azure Serverless Functions in a Weekend - Azure Service Bus Trigger Function to Add Records to Database

Higher Ed
This video demonstrates how to develop the Azure Service Bus trigger function to add records to the database. Here, you will move on to develop a second function that gets triggered upon queueing a message in our Azure Service Bus. It...
Instructional Video7:47
Curated Video

Learn Azure Serverless Functions in a Weekend - Developing Azure Functions API to Get Online Course Details - Part 2

Higher Ed
In the last video, you connected the function to the database, but it is not returning anything on the browser page. In this video, you will return the database to the browser page. So, basically, you will publish the formatted output...
Instructional Video5:11
Curated Video

SQL Server Course for Beginners with 100+ examples - Drop a Table in SQL

Higher Ed
Learn how to drop a table in SQL. Dropping will delete all the records of the table. It will also obliterate the existence of the table.
<
br/>
This clip is from the chapter "Advanced SQL" of the series "SQL Server Course for...
Instructional Video2:46
Curated Video

SQL Server Course for Beginners with 100+ examples - SQL Views

Higher Ed
Learn how to work with Views in SQL. A view is a virtual table created from the actual table, displaying the current result set. We will use the CREATE VIEW and DROP VIEW statements to develop and delete views.
<
br/>
This clip is...
Instructional Video6:07
Curated Video

SQL Server Course for Beginners with 100+ examples - Back Up a Database in SQL

Higher Ed
Learn how to back up a database in SQL. We will back up the database in a local directory with the extension .bak.
<
br/>
This clip is from the chapter "Advanced SQL" of the series "SQL Server Course for Beginners with 100+...
Instructional Video3:58
Curated Video

SQL Server Course for Beginners with 100+ examples - SELECT TOP Clause in SQL

Higher Ed
Learn how to implement the SELECT TOP statement in SQL. We will work with the SELECT TOP PERCENT statement as well.
<
br/>
This clip is from the chapter "Advanced SQL" of the series "SQL Server Course for Beginners with 100+...
Instructional Video2:16
Curated Video

SQL Server Course for Beginners with 100+ examples - SELECT INTO Statement in SQL

Higher Ed
Learn how to work with the SELECT INTO statement in SQL to create a backup copy of your table to a new table. The new table will have the same type and columns as in the first.
<
br/>
This clip is from the chapter "Advanced SQL" of...
Instructional Video3:23
Curated Video

SQL Server Course for Beginners with 100+ examples - Indexes in SQL

Higher Ed
Learn how to work with the CREATE INDEX statement in SQL to create indexes in a table. Indexes retrieve data quickly from the database. We will also see how to delete indexes using the DROP INDEX statement.
<
br/>
This clip is from...
Instructional Video2:20
Curated Video

SQL Server Course for Beginners with 100+ examples - Stored Procedures in SQL

Higher Ed
Use the CREATE PROCEDURE statement to learn how to work with stored procedures in SQL. If you want to reuse a query again and again, then create a procedure and save the query in it. Call the procedure whenever you need that same...
Instructional Video4:12
Curated Video

SQL Server Course for Beginners with 100+ examples - Aliases

Higher Ed
Learn how to work with Aliases in SQL to give a temporary name to a table or column. The AS keyword creates an alias, making column names more readable. Remember that the alias's existence expires when that query's duration ends.
<
br/>...
Instructional Video2:25
Curated Video

SQL Server Course for Beginners with 100+ examples - ALTER TABLE Statement

Higher Ed
Learn how to work with the ALTER TABLE in SQL to add or delete columns in the existing table. To add a column to an existing table, use the ALTER TABLE with ADD command. To delete a column from an existing table, use the ALTER TABLE...
Instructional Video4:02
Curated Video

SQL Server Course for Beginners with 100+ examples - CHECK Constraint

Higher Ed
Learn how to work with the CHECK constraint in SQL to allow only specific values for a column. You can limit the value range set in a column, for example, Age > 18, Marks > 75, and so on.
<
br/>
This clip is from the chapter...
Instructional Video2:59
Curated Video

SQL Server Course for Beginners with 100+ examples - FOREIGN KEY Constraint

Higher Ed
Learn how to work with the FOREIGN KEY constraint in SQL. A FOREIGN KEY is a field in one table that refers to the PRIMARY KEY in another. A child table is a table with a foreign key.
<
br/>
This clip is from the chapter...