Hi, what do you want to do?
One Minute History
197 - Geronimo - One Minute History
March 5, 1851 - four hundred Mexican soldiers led by Colonel José María Carrasco attack an Apache camp in the state of Chihuahua. Among the slain are the mother, wife and three children of Goyahkla - the one who yawns - the Native...
Curated Video
Deep Learning - Recurrent Neural Networks with TensorFlow - GRU and LSTM (Part 2)
In this video, you will learn about modern RNN units called LSTM.
<
br/>
This clip is from the chapter "Recurrent Neural Networks (RNNs), Time Series, and Sequence Data" of the series "Deep Learning - Recurrent Neural Networks with...
<
br/>
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
Modern JavaScript from the Beginning - Second Edition - Animated Clock - Part 1
In this video, you will learn how to create an animated clock using the Canvas API and the requestAnimationFrame() method.
<
br/>
This clip is from the chapter "Web Browser APIs" of the series "Modern JavaScript from the...
<
br/>
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 - Set Item to Edit
In this video, you will learn how to set an item to edit and show its current value in the input field.
<
br/>
This clip is from the chapter "Shopping List Project" of the series "Modern JavaScript from the Beginning".In this...
<
br/>
This clip is from the chapter "Shopping List Project" of the series "Modern JavaScript from the Beginning".In this...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Clear UI State
In this video, you will learn how to clear the UI state after removing an item from the shopping list.
<
br/>
This clip is from the chapter "Shopping List Project" of the series "Modern JavaScript from the Beginning".In this...
<
br/>
This clip is from the chapter "Shopping List Project" of the series "Modern JavaScript from the Beginning".In this...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Object Literals
In this video, you will learn about object literals in JavaScript, including creating objects, accessing object properties, and adding methods to objects.
<
br/>
This clip is from the chapter "Arrays and Objects" of the series...
<
br/>
This clip is from the chapter "Arrays and Objects" of the series...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - First Project (Part 1)
In this video, you will start working on the first part of the project. You will learn how to set up the project structure, create the necessary React components, and handle state management. The video will guide you through building the...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Conditional Rendering
This video delves into various techniques for conditionally rendering components based on specific conditions or user interactions, if statements, ternary operators, and logical operators for implementing conditional rendering effectively.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Building a Calculator - Part 2
Continuing from the previous video, this part focuses on adding more advanced features to the calculator app. You will learn how to handle decimal inputs, implement additional arithmetic operations, and add functionality such as clearing...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - First Project (Part 2)
Continuing from the previous video, this part focuses on adding more advanced features and functionality to the project. You will learn how to handle user input, implement data fetching and manipulation, and enhance the user interface...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - useEffect Hook in React.JS
This video explores the useEffect hook and its usage in React applications. You will learn to perform tasks such as data fetching, event subscriptions, and cleanup operations using the useEffect hook, and learn the concept of...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Hooks in Reacts.JS
In this video, we will be introduced to hooks, a powerful feature introduced in React 16.8 to use state and other React features in functional components. You will learn about the useState hook to add state to functional components and...
Curated Video
Type-Safe Interfaces with Modern C++ - std::optional – Use Cases
Understand realistic use cases for optional, by looking at example function interfaces and data structure definitions
Curated Video
Type-Safe Interfaces with Modern C++ - Understanding Variants
Understand what a "variant" is and its usefulness.
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - LeetCode Example Solution - Trapping Rainwater
In this video, we will discuss the solution to the exercise on trapping rainwater from the previous video.
<
br/>
This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the series "JavaScript...
<
br/>
This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the series "JavaScript...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - LeetCode Example Solution Steps - Trapping Rainwater
In this video, we will discuss the possible steps to resolve this interview question on trapping rainwater. You will get an idea as to what action items one needs to follow to solve this complex problem.
<
br/>
This clip is from the...
<
br/>
This clip is from the...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Check whether a String Is a Palindrome
In this video, we will discuss the solution to the interview question to check whether a string is a palindrome or not from the previous video.
<
br/>
This clip is from the chapter "Algorithms and Data Structures - Intermediate to...
<
br/>
This clip is from the chapter "Algorithms and Data Structures - Intermediate to...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Uber Eats Payment Database
In this video, we will discuss the solution to the interview question on the Uber Eats payment database from the previous video.
<
br/>
This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the...
<
br/>
This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What Is the Constructor and “this†keyword in JavaScript
In JavaScript, a constructor is a function that is used to create and initialize objects. It is called when a new object is created using the new keyword. The “this†keyword is used inside the constructor to refer to the object...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Writing Testing Units for Model Predictions with JavaScript - Part I
In this video, we will discuss the solution to the exercise on writing testing units for model predictions with JavaScript. This is the first of the two-part solution and here, you will be writing the code lines until concat().
<
br/>...
<
br/>...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Convert an Exponential Solution to a Linear Solution
In this video, we will discuss the solution to the exercise on converting an exponential solution to a linear solution from the previous video.
<
br/>
This clip is from the chapter "Algorithms and Data Structures - Intermediate to...
<
br/>
This clip is from the chapter "Algorithms and Data Structures - Intermediate to...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Understanding the Fibonacci Series and Recursion in JavaScript
In this video, you will learn about the Fibonacci series and how to implement it using recursion in JavaScript. The Fibonacci series is a series of numbers where each number is the sum of the two preceding ones, starting from 0 and 1....
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - How to Generate Missing Letters Between Characters in JavaScript
In this video, we will discuss the solution to the exercise on how to generate missing letters between characters in JavaScript.
<
br/>
This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the...
<
br/>
This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Star Power with RegEx in JavaScript
In this video, we will discuss the solution to the exercise on star power with RegEx in JavaScript from the previous video.
<
br/>
This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the...
<
br/>
This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the...