Instructional Video6:50
Curated Video

Machine Learning: Random Forest with Python from Scratch - Tuples

Higher Ed
In this topic on tuples, you will learn how to get a starting index of a substring and write a simple program to find the starting index of the word WORLD. This clip is from the chapter "Introduction to Python" of the series "Machine...
Instructional Video13:22
Curated Video

Deep Learning - Recurrent Neural Networks with TensorFlow - Code Preparation (NLP)

Higher Ed
In this video, you will learn how to write the code to turn a sequence of words into an acceptable format such that they can be converted into a matrix of numbers. This clip is from the chapter "Natural Language Processing (NLP)" of the...
Instructional Video5:54
Curated Video

Deep Learning - Recurrent Neural Networks with TensorFlow - RNN Code Preparation

Higher Ed
In this video, we will understand how to write code in TensorFlow 2 for a simple RNN. This clip is from the chapter "Recurrent Neural Networks (RNNs), Time Series, and Sequence Data" of the series "Deep Learning - Recurrent Neural...
Instructional Video12:05
Curated Video

Deep Learning - Recurrent Neural Networks with TensorFlow - Autoregressive Linear Model for Time Series Prediction

Higher Ed
In this video, we will dive into coding and learn about the autoregressive linear model for time series prediction. This clip is from the chapter "Recurrent Neural Networks (RNNs), Time Series, and Sequence Data" of the series "Deep...
Instructional Video6:38
Curated Video

Financial Analysis - Build a ChatGPT Pairs Trading Bot - More about Log Returns (Optional)

Higher Ed
This video delves deeper into log returns, including their advantages and limitations compared to simple returns. You will learn to correctly apply log returns in your pairs trading analysis and interpret returns of pairs trading with...
Instructional Video11:45
Curated Video

Modern JavaScript from the Beginning - Second Edition - Speech Recognition API - Color Say Project

Higher Ed
In this video, you will learn about the Speech Recognition API. We will see how to create a project that recognizes a user's speech and changes the background color of the page accordingly. This clip is from the chapter "Web Browser...
Instructional Video7:34
Curated Video

Modern JavaScript from the Beginning - Second Edition - Show Location on a Map

Higher Ed
In this video, you will learn how to show the location data on a map using the Google Maps API. You will also learn how to customize the map according to your needs. This clip is from the chapter "Web Browser APIs" of the series "Modern...
Instructional Video11:39
Curated Video

Modern JavaScript from the Beginning - Second Edition - Display Search Results

Higher Ed
In this video, we will display the search results on a separate page that's similar to the popular movies page. We will use a template literal to render the content and create pagination for large search result sets. This clip is from...
Instructional Video4:54
Curated Video

Modern JavaScript from the Beginning - Second Edition - API Overview and API Key

Higher Ed
In this video, we will provide an overview of the TMDb API and how we can use it to get movie and TV show data for our app. We will also obtain an API key from TMDb that we will use to authenticate our requests. This clip is from the...
Instructional Video12:33
Curated Video

Modern JavaScript from the Beginning - Second Edition - Multiple Promises with Async and Await

Higher Ed
In this video, we will cover how to work with multiple Promises using async/await in JavaScript. We will explore techniques for parallel and sequential execution of Promises and cover how to use Promise.all() and Promise.race() to handle...
Instructional Video12:56
Curated Video

Modern JavaScript from the Beginning - Second Edition - Random User Mini-Project

Higher Ed
In this mini project, we will use the Fetch API to load data from the Random User API and display it in an HTML document. We will cover how to create a custom function for fetching data, how to handle errors and loading states, and how...
Instructional Video6:11
Curated Video

Modern JavaScript from the Beginning - Second Edition - Handling Multiple Promises with promise.all()

Higher Ed
In this video, you will learn how to use the Promise.all() method to handle multiple Promises at once. We will see how to wait for multiple Promises to resolve and how to handle errors if any of the Promises are rejected. This method can...
Instructional Video11:33
Curated Video

Modern JavaScript from the Beginning - Second Edition - AJAX and XHR Object

Higher Ed
In this video, you will learn about the Network tab in the Chrome DevTools. We will see how to inspect HTTP requests and responses and how to analyze network performance. This clip is from the chapter "Asynchronous JavaScript" of the...
Instructional Video10:01
Curated Video

Modern JavaScript from the Beginning - Second Edition - Callbacks

Higher Ed
In this video, you will learn about callbacks in JavaScript. we will see how to use callbacks to execute code after an asynchronous task is completed and how to handle errors and exceptions. This clip is from the chapter "Asynchronous...
Instructional Video9:07
Curated Video

Modern JavaScript from the Beginning - Second Edition - Remove Items from Local Storage

Higher Ed
In this video, you will learn how to remove items from local storage when they are removed from the shopping list. This clip is from the chapter "Shopping List Project" of the series "Modern JavaScript from the Beginning".In this...
Instructional Video6:21
Curated Video

Modern JavaScript from the Beginning - Second Edition - Display Items from Local Storage

Higher Ed
In this video, you will learn how to display the items from local storage in the shopping list. This clip is from the chapter "Shopping List Project" of the series "Modern JavaScript from the Beginning".In this section, we will build a...
Instructional Video8:11
Curated Video

Modern JavaScript from the Beginning - Second Edition - Add Items to Local Storage

Higher Ed
In this video, you will learn how to add items to the shopping list using local storage. This clip is from the chapter "Shopping List Project" of the series "Modern JavaScript from the Beginning".In this section, we will build a shopping...
Instructional Video3:51
Curated Video

Modern JavaScript from the Beginning - Second Edition - Prevent Duplicate Items

Higher Ed
In this video, you will learn how to prevent adding duplicate items to the shopping list. This clip is from the chapter "Shopping List Project" of the series "Modern JavaScript from the Beginning".In this section, we will build a...
Instructional Video9:20
Curated Video

Modern JavaScript from the Beginning - Second Edition - DOM Selectors - Multiple Elements

Higher Ed
This video covers the different ways to select multiple elements in the DOM using JavaScript. It covers the getElementsByTagName(), getElementsByClassName(), and querySelectorAll() methods. This clip is from the chapter "DOM...
Instructional Video14:23
Curated Video

Modern JavaScript from the Beginning - Second Edition - Document Element Properties

Higher Ed
This video covers the properties of the document object, which represents the entire HTML document. It explains how to access and manipulate properties such as the document title, URL, and body. This clip is from the chapter "DOM...
Instructional Video10:31
Curated Video

Modern JavaScript from the Beginning - Second Edition - Array Method Challenges

Higher Ed
In this video, we will put our knowledge of array methods to the test by tackling some coding challenges. This clip is from the chapter "Loops, Iteration, and High-Order Array Methods" of the series "Modern JavaScript from the...
Instructional Video8:56
Curated Video

Modern JavaScript from the Beginning - Second Edition - Array.reduce Method

Higher Ed
In this video, we will discuss the Array.reduce method, which allows us to reduce an array to a single value by applying a function to each element of the array. This clip is from the chapter "Loops, Iteration, and High-Order Array...
Instructional Video15:35
Curated Video

Modern JavaScript from the Beginning - Second Edition - Array.map Method

Higher Ed
In this video, we will explore the Array.map method, which allows us to create a new array by applying a function to each element of an existing array. This clip is from the chapter "Loops, Iteration, and High-Order Array Methods" of the...
Instructional Video11:36
Curated Video

Modern JavaScript from the Beginning - Second Edition - Array.filter Method

Higher Ed
In this video, we will explore the Array.filter method, which allows us to create a new array with only the elements that pass a certain test. This clip is from the chapter "Loops, Iteration, and High-Order Array Methods" of the series...