Curated Video
Deep Learning - Recurrent Neural Networks with TensorFlow - RNN for Image Classification (Code)
In this video, you will learn how to preform RNN for image classification on the MNIST dataset. This clip is from the chapter "Recurrent Neural Networks (RNNs), Time Series, and Sequence Data" of the series "Deep Learning - Recurrent...
Curated Video
Deep Learning - Recurrent Neural Networks with TensorFlow - Forecasting
In this video, we will discuss about forecasting. This clip is from the chapter "Recurrent Neural Networks (RNNs), Time Series, and Sequence Data" of the series "Deep Learning - Recurrent Neural Networks with TensorFlow".In this section,...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Promise Chaining
In this video, you will learn how to use Promise chaining to handle multiple asynchronous tasks in a more elegant way. We will see how to chain Promises together and how to use the result of one Promise as the input for the next Promise....
Curated Video
Modern JavaScript from the Beginning - Second Edition - Truthy and Falsy
This video explains the concept of truthy and falsy values in JavaScript, which can be used to simplify our code when checking for conditions. This clip is from the chapter "Logic and Control Flow" of the series "Modern JavaScript from...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Function Challenges
This video provides challenges for us to test our understanding of the concepts covered in this section. This clip is from the chapter "Functions, Scope, and Execution Context" of the series "Modern JavaScript from the Beginning".In this...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Working with Numbers
In this video, we will cover the basics of working with numbers in JavaScript. We will explore number literals, operators, and common methods for working with numbers. This clip is from the chapter "Variables, Data Types, Methods, and...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Creating Arrays
This video covers how to create arrays in JavaScript, including declaring an array, assigning values to an array, and accessing array elements. This clip is from the chapter "Arrays and Objects" of the series "Modern JavaScript from the...
Curated Video
Machine Learning: Random Forest with Python from Scratch - Clustering
In this lesson, you will learn about an unsupervised branch of learning called clustering, which involves grouping elements with no labels to classify them. This clip is from the chapter "Introduction to Machine Learning" of the series...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - What Are Arrays in Rust
This video explains arrays in Rust. This clip is from the chapter "Beginner to Intermediate Lessons" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the beginner to intermediate content.
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Else If Statements and Nested If Statements in Rust
In this video, you will look at Else If statements and nested If statements in Rust. This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Decision-Making Statements in Rust
This video explains decision-making statements in Rust. This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the beginner lessons in...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - What Is the String Object in Rust - from() and len()
In this video, you will learn about the String object in Rust and how to use its methods, such as from() and len(), effectively in your programs. This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Anagram Algorithm
In this video, we will write a unit test for an anagram checking algorithm. We will use Jest to test our algorithm and ensure that it correctly identifies anagrams. This clip is from the chapter "Unit Testing Algorithms" of the series...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Linked Lists
Linked lists are a data structure that allows us to store data in a sequence of nodes. In this video, you will learn how linked lists work, how to create them, and how to perform basic operations on them. This clip is from the chapter...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Queues
Queues are a data structure that allows us to store and retrieve data in a first-in, first-out (FIFO) manner. In this video, you will learn how queues work and how to create them. This clip is from the chapter "Iterators, Generators, and...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Stacks
Stacks are a data structure that allows us to store and retrieve data in a last-in, first-out (LIFO) manner. In this video, you will learn how stacks work and how to create them. This clip is from the chapter "Iterators, Generators, and...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Generators
Generators are a powerful tool for creating iterators in JavaScript. In this video, you will learn how generators work, how to define them, and how to use them to generate complex sequences of data. This clip is from the chapter...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - classList Method
In this video, we will discover the classList property and its associated methods, which provide a convenient way to manipulate CSS classes on elements, how to add, remove, toggle, and check for the presence of specific classes using...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Arrays Objects
This video focuses on arrays of objects, where each element in the array is an object itself. You will learn to create arrays of objects, access and modify their properties, and perform operations on array elements using loops and other...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - What Are HashMaps in Rust
This video is about HashMaps in Rust. This clip is from the chapter "Beginner to Intermediate Lessons" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the beginner to intermediate...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Solution - How to Slice in Rust
This is a solution video on how to slice in Rust. This clip is from the chapter "Beginner to Intermediate Lessons" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the beginner to...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - How to Slice in Rust
In Rust, slicing is a powerful tool for working with arrays, strings, and other collections. With slicing, you can extract specific parts of a collection, modify them, and reassemble them in new ways. In this video, you will learn how to...
Curated Video
Concurrent and Parallel Programming in Python - Multiprocessing Checking Elements in List in Certain Ranges
In this video, we will finally revisit the initially more CPU-intensive functions we were using, which will be checking how many values in our comparison list are in a specific range.
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Writing Testing Units for Model Predictions with JavaScript - Part II
In this video, we will discuss the solution to the exercise on writing testing units for model predictions with JavaScript. This is the second of the two-part solution and here, you will be completing the code lines and successfully...