Instructional Video6:35
Curated Video

CHECKLIST for Solving a System of Equations | 8.EE.C.8

9th - 12th
In this math video we will create and use a checklist for solving a system of equations. Checklist Step 1: If necessary, solve one of the equations for one of the two variables. Step 2: Substitute the expression from Step 1 into the...
Instructional Video3:07
Curated Video

How to Write an Equation for a Real World Situation | 6.EE.B.7

9th - 12th
In this math video we will discover how to write an equation for a real world situation. We will begin by writing a word sentence using mathematical symbols. We will understand that the money we have plus the money we need will be equal...
Instructional Video5:36
Curated Video

Mechanical Energy

3rd - Higher Ed
Dr. Forrester describes mechanical energy by recognizing that this energy can be transferred into other forms of energy.
Instructional Video7:15
Curated Video

Review for You: Counting Money

3rd - Higher Ed
Mr. Addit reviews the values of coins and dollars and then explains how to count coins and dollars. As a strategy for properly calculating change, Mr. Addit reviews the counting on strategy.
Instructional Video7:16
Curated Video

Money

K - Higher Ed
Mr. Addit identifies coins and dollar bills and their values. He also explains how to count money and make change using a number line.
Instructional Video4:16
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Hands-on with Null Pointer Exception Handling

Higher Ed
In this video, we will learn to handle null pointer exceptions, a common exception in Java. We will explore coding exercises that involve checking and handling null values, ensuring the proper functioning of your code in scenarios where...
Instructional Video4:13
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - If Else-If-Else in Java

Higher Ed
In this video, we will learn conditional programming by incorporating the if-else-if-else construct in Java to handle multiple conditions and execute different code blocks based on the evaluation results. This clip is from the chapter...
Instructional Video3:56
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Using While Loop in Java

Higher Ed
In this video, we will dive into the world of while loops in Java programming with this instructional video and learn to use the while loop to execute a block of code repeatedly based on a condition. This clip is from the chapter "Basic...
Instructional Video11:55
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Using For Loop in Java

Higher Ed
In this video, we will discover the power of the “for†loop for iterative tasks in Java and learn the syntax and usage of the for loop, iterate over arrays, and solve common programming challenges using this looping construct. This...
Instructional Video3:58
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Data Type and Operators Hands-on

Higher Ed
In this video, we will understand data types and operators practically. This video will provide hands-on examples to manipulate variables, perform arithmetic operations, evaluate conditions, and make logical decisions using appropriate...
Instructional Video1:56
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Comparison and Logical Operators

Higher Ed
In this video, we will learn about comparison operators for evaluating conditions and logical operators for combining multiple conditions in Java. We will use comparison operators to make comparisons and logical operators to make complex...
Instructional Video1:59
Curated Video

Java for Beginners with Hands-On Program and Capstone Project - Arithmetic and Assignment Operators

Higher Ed
This video will explore arithmetic operators, such as addition, subtraction, multiplication, division, and modulus, and their usage in Java. This video will also explore assignment operators to perform operations and assign results to a...
Instructional Video6:36
Curated Video

Build a Super Advanced Trading Bot on DYDX Hosted on AWS with Python - Making Code Updates

Higher Ed
In this video, we will demonstrate how to make code updates to your trading bot deployed on AWS. You will learn how to transfer updated code to the EC2 instance, restart the bot, and observe the changes in its behavior. This process...
Instructional Video5:30
Curated Video

Build a Super Advanced Trading Bot on DYDX Hosted on AWS with Python - Send Message through Python

Higher Ed
In this video, we will show you how to send messages to Telegram using Python code. You will learn how to utilize the Telegram API, integrate it into your trading bot's codebase, and send messages programmatically. This method provides...
Instructional Video6:48
Curated Video

Build a Super Advanced Trading Bot on DYDX Hosted on AWS with Python - Construct Market Prices - Preparation

Higher Ed
In this video, we will prepare the groundwork for constructing market prices in our trading bot. You will learn about the necessary data sources, APIs, and techniques for gathering and organizing market data. This preparation step is...
Instructional Video6:17
Curated Video

Build a Super Advanced Trading Bot on DYDX Hosted on AWS with Python - Get ISO Times

Higher Ed
In this video, we will show you how to retrieve ISO times using Python. ISO times are essential for synchronizing data and ensuring accurate timestamps for market data. You will learn how to gather ISO times from reliable sources,...
Instructional Video10:03
Curated Video

Build a Super Advanced Trading Bot on DYDX Hosted on AWS with Python - All Positions Function - Part 2

Higher Ed
In this video, we will continue the implementation of the close all positions function for our trading bot. Building upon the previous video, you will learn the remaining steps and considerations for closing open positions on the DYDX...
Instructional Video6:02
Curated Video

Build a Super Advanced Trading Bot on DYDX Hosted on AWS with Python - Connect_To_DYDX

Higher Ed
In this video, we will demonstrate how to establish a connection to the DYDX platform using the Python code. You will learn how to authenticate with your DYDX credentials, set up the necessary API keys, and ensure a secure and reliable...
Instructional Video3:52
Curated Video

Build a Super Advanced Trading Bot on DYDX Hosted on AWS with Python - Adding Environment Variables

Higher Ed
In this video, we will show you how to add environment variables to your development environment. You will learn how to securely store sensitive information, such as API keys and credentials, as environment variables. This practice...
Instructional Video8:29
Curated Video

ChatGPT Voice-Powered Chatbot Build with React and FastAPI - Playing Back Audio and Blob Encoding

Higher Ed
In this video, we will incorporate the functionality to play back recorded audio. We will also cover blob encoding for storing the recorded audio in the database. This clip is from the chapter "Frontend - React Web Application" of the...
Instructional Video4:38
Curated Video

ChatGPT Voice-Powered Chatbot Build with React and FastAPI - Animating a Record Icon

Higher Ed
In this video, we will add animation to our record icon for a more interactive user interface. We will discuss how to incorporate the animation with our existing code. This clip is from the chapter "Frontend - React Web Application" of...
Instructional Video8:44
Curated Video

ChatGPT Voice-Powered Chatbot Build with React and FastAPI - Adding Audio Recording Functionality

Higher Ed
In this video, we will add the functionality to record audio in our application. We will explore the necessary code and structure to achieve this feature. This clip is from the chapter "Frontend - React Web Application" of the series...
Instructional Video7:37
Curated Video

ChatGPT Voice-Powered Chatbot Build with React and FastAPI - Store and Reset Message Data

Higher Ed
In this video, we will create a data structure to store and manage the conversation history of our chatbot and learn how to reset the chatbot for new conversations. This clip is from the chapter "Backend Build - Working with AI" of the...
Instructional Video10:11
Curated Video

ChatGPT Voice-Powered Chatbot Build with React and FastAPI - Convert Voice to Text with Whisper

Higher Ed
In this video, you will learn how to use the Whisper library to convert the voice snippets we recorded to text for processing by our chatbot. This clip is from the chapter "Backend Build - Working with AI" of the series "ChatGPT...