Hi, what do you want to do?
Wonderscape
Amelia Earhart: Early Years and Inspiration for Aviation
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...
Curated Video
The Untold Story of Sister Rosetta Tharpe: A Soothing Stroll Through Black Music History
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...
Wonderscape
Understanding the Executive Branch of US State Government
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....
Wonderscape
Understanding Earthquakes: The Role of Tectonic Movements
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...
Curated Video
Machine Learning: Random Forest with Python from Scratch - Outliers Removal
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:...
<
br/>
This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning:...
Curated Video
Machine Learning: Random Forest with Python from Scratch - Dealing with Missing Values
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:...
<
br/>
This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning:...
Curated Video
Machine Learning: Random Forest with Python from Scratch - Reading and Manipulating Dataset
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:...
<
br/>
This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning:...
Curated Video
Learn Java from Scratch - A Beginner's Guide - Step 15 - Exploring Java New Features - Records
In this video, let's look at records.
Curated Video
A Detailed Guide to the OWASP Top 10 - API1:2023 Broken Object Level Authorization (BOLA)
In this session, we will delve into the Broken Object Level Authorization risk, its implications, and strategies for mitigation.
Curated Video
AWS Certified Solutions Architect Associate (SAA-C03) - Configuring Route 53 Lab
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.
Curated Video
CompTIA A+ Certification Core 2 (220-1102) - Working with DNS
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...
<
br/>
This clip is from the chapter "Local Area...
Curated Video
Learn Azure Serverless Functions in a Weekend - Azure Service Bus Trigger Function to Add Records to Database
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...
Curated Video
Learn Azure Serverless Functions in a Weekend - Developing Azure Functions API to Get Online Course Details - Part 2
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...
Curated Video
SQL Server Course for Beginners with 100+ examples - Drop a Table in SQL
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...
<
br/>
This clip is from the chapter "Advanced SQL" of the series "SQL Server Course for...
Curated Video
SQL Server Course for Beginners with 100+ examples - SQL Views
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...
<
br/>
This clip is...
Curated Video
SQL Server Course for Beginners with 100+ examples - Back Up a Database in SQL
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+...
<
br/>
This clip is from the chapter "Advanced SQL" of the series "SQL Server Course for Beginners with 100+...
Curated Video
SQL Server Course for Beginners with 100+ examples - SELECT TOP Clause in SQL
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+...
<
br/>
This clip is from the chapter "Advanced SQL" of the series "SQL Server Course for Beginners with 100+...
Curated Video
SQL Server Course for Beginners with 100+ examples - SELECT INTO Statement in SQL
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...
<
br/>
This clip is from the chapter "Advanced SQL" of...
Curated Video
SQL Server Course for Beginners with 100+ examples - Indexes in SQL
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...
<
br/>
This clip is from...
Curated Video
SQL Server Course for Beginners with 100+ examples - Stored Procedures in SQL
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...
Curated Video
SQL Server Course for Beginners with 100+ examples - Aliases
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/>...
<
br/>...
Curated Video
SQL Server Course for Beginners with 100+ examples - ALTER TABLE Statement
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...
Curated Video
SQL Server Course for Beginners with 100+ examples - CHECK Constraint
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...
<
br/>
This clip is from the chapter...
Curated Video
SQL Server Course for Beginners with 100+ examples - FOREIGN KEY Constraint
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...
<
br/>
This clip is from the chapter...