Curated Video
Machine Learning: Random Forest with Python from Scratch - Strings
Here, we will look at the second datatype, strings, which are characters, used to represent text instead of numbers. This clip is from the chapter "Introduction to Python" of the series "Machine Learning: Random Forest with Python from...
Curated Video
Deep Learning - Recurrent Neural Networks with TensorFlow - Demo of the Long-Distance Problem
In this video, we will understand how LSTMs work for resolving a long-distance problem. This clip is from the chapter "Recurrent Neural Networks (RNNs), Time Series, and Sequence Data" of the series "Deep Learning - Recurrent Neural...
Curated Video
Deep Learning - Recurrent Neural Networks with TensorFlow - GRU and LSTM (Part 1)
In this video, you will learn about modern RNN units called GRU. This clip is from the chapter "Recurrent Neural Networks (RNNs), Time Series, and Sequence Data" of the series "Deep Learning - Recurrent Neural Networks with...
Curated Video
Deep Learning - Recurrent Neural Networks with TensorFlow - Proof That the Linear Model Works
In this video, you will learn how the linear model is about to forecast for a sine wave. This clip is from the chapter "Recurrent Neural Networks (RNNs), Time Series, and Sequence Data" of the series "Deep Learning - Recurrent Neural...
Curated Video
ChatGPT for Web Design - Create Amazing Websites - Introduction to JavaScript: Making the Website Interactive
After learning how to create a basic website, you will now learn to make the website more presentable, interactive, and enjoyable. We will use JavaScript. We will instruct ChatGPT to help us with the JavaScript code required to redesign...
Curated Video
Financial Analysis - Build a ChatGPT Pairs Trading Bot - Extending the Position
In this lesson, we will explore extending the position in pairs trading, including how and when to extend or adjust positions based on market conditions and trade signals to maximize profits or manage risks in our pairs trading strategy...
Curated Video
Modern JavaScript from the Beginning - Second Edition - More on Object Literals and this Keyword
In this video, we will review object literals and the 'this' keyword. We will discuss how the 'this' keyword refers to the current object and how we can use it to access object properties. This clip is from the chapter "OOP -...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Speech Synthesis API - Text to Speech
In this video, you will learn about the Speech Synthesis API. We will see how to create a project that converts text to speech using the Speech Synthesis API. This clip is from the chapter "Web Browser APIs" of the series "Modern...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Drum Machine Project
In this video, you will learn how to create a drum machine using the Web Audio API. We will see how to create different drum sounds and how to play them using a keyboard. This clip is from the chapter "Web Browser APIs" of the series...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Music Player Project
In this video, you will learn how to create a music player using the Web Audio API. We will see how to load audio files, play and pause audio, and create audio effects. This clip is from the chapter "Web Browser APIs" of the series...
Curated Video
Modern JavaScript from the Beginning - Second Edition - GeoLocation API
In this video, you will learn about the GeoLocation API. We will see how to retrieve a user's location data and how to use it in our application. This clip is from the chapter "Web Browser APIs" of the series "Modern JavaScript from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Add Pagination for Search
In this video, we will add pagination to the search results page to allow users to navigate between different pages of search results. We will use the Page.js library to create dynamic URLs and render the correct results for each page....
Curated Video
Modern JavaScript from the Beginning - Second Edition - Search Functionality
In this video, we will create a search function that allows users to search for movies and TV shows. We will use JavaScript's Fetch function to query the API and render the results to the UI. This clip is from the chapter "Flixx Movie...
Curated Video
Modern JavaScript from the Beginning - Second Edition - TV Show Details Page
In this video, we will create a TV show details page that's similar to the movie details page. We will fetch TV show data from the API and use a template literal to render the content. This clip is from the chapter "Flixx Movie App...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Details Page Backdrop
In this video, we will add a backdrop image to the movie details page to provide a visual element that complements the movie information. We will use the Swiper library to create a responsive and dynamic backdrop. This clip is from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Spinner and Popular TV Shows
In this video, we will add a loading spinner to indicate when data is being fetched from the API. We will also fetch and display a list of popular TV shows using the same method we used for movies. This clip is from the chapter "Flixx...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Display Popular Movies
In this video, we will fetch and display a list of popular movies from the TMDb API using JavaScript's fetch function and render them to the UI. This clip is from the chapter "Flixx Movie App Project" of the series "Modern JavaScript...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Page Router and Active Link
In this video, we will set up a page router using the Page.js library to allow users to navigate between different pages of our app. We will also create an active link feature to highlight the current page in the navigation menu. This...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Multiple Promises with Async and Await
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Error Handling with Async and Await
In this video, we will explore best practices for handling errors when using async/await in JavaScript. We will cover how to use the try/catch statement with async functions, how to handle errors thrown in Promises, and how to handle...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Async and Await
In this video, we will introduce the async/await syntax for working with Promises in JavaScript. We will cover how to define an async function, use the await keyword to wait for a Promise to resolve, and handle errors using try/catch...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Typicode Todos Mini-Project - Part 2
In this video, we will continue building our Todo list app by adding the ability to delete todos and update their status. We will also cover how to use the PUT and DELETE methods in Fetch and how to handle success and error responses....
Curated Video
Modern JavaScript from the Beginning - Second Edition - Random User Mini-Project
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Handling Multiple Promises with promise.all()
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...