Hi, what do you want to do?
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.
<
br/>...
<
br/>...
Curated Video
Modern JavaScript from the Beginning - Second Edition - AJAX and XHR Object
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.
<
br/>
This clip is from the chapter "Asynchronous...
<
br/>
This clip is from the chapter "Asynchronous...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Under the Hood: How Async JS Works
In this video, you will learn about how asynchronous JavaScript works. We will see how JavaScript uses the event loop to manage asynchronous tasks and how it avoids blocking the main thread of execution.
<
br/>
This clip is from the...
<
br/>
This clip is from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - DevTools Network Tab
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.
<
br/>
This clip is from the chapter "Asynchronous...
<
br/>
This clip is from the chapter "Asynchronous...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Setting Up Git and GitHub (Optional)
In this optional video, you will learn how to set up Git and GitHub for version control and collaboration.
<
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 - Form Submission and FormData Object
In this video, we will look at how to handle form submissions in JavaScript. You will learn how to use the FormData object to collect form data and send it to a server using AJAX.
<
br/>
This clip is from the chapter "Events" of the...
<
br/>
This clip is from the chapter "Events" of the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Running JavaScript in the Browser
In this video, we will explain how to run JavaScript code in the browser with a simple Hello World code.
<
br/>
This clip is from the chapter "Course Introduction" of the series "Modern JavaScript from the Beginning".In this...
<
br/>
This clip is from the chapter "Course Introduction" of the series "Modern JavaScript from the Beginning".In this...
Curated Video
Machine Learning: Random Forest with Python from Scratch - Outliers Removal
In the second part of the data cleaning process, we will look at an outlier in detail and learn how to correct or remove the outlier.
<
br/>
This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning:...
<
br/>
This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning:...
Curated Video
Machine Learning: Random Forest with Python from Scratch - Dealing with Missing Values
Let's look at the first step involved in the data cleaning process, which is filling or removing missing values from a dataset.
<
br/>
This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning:...
<
br/>
This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning:...
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Delete Using jQuery
This video explains a dynamic delete operation using jQuery.
<
br/>
This clip is from the chapter "Customizing Views and Elements" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to customize...
<
br/>
This clip is from the chapter "Customizing Views and Elements" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to customize...
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Add to GitHub-1
This video explains adding the code to GitHub.
<
br/>
This clip is from the chapter "Manipulating Website Views and Layout" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains manipulating website...
<
br/>
This clip is from the chapter "Manipulating Website Views and Layout" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains manipulating website...
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Adding an About Us Page
This video explains how to go about adding the about us page.
<
br/>
This clip is from the chapter "Manipulating Website Views and Layout" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains...
<
br/>
This clip is from the chapter "Manipulating Website Views and Layout" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains...
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Modifying the Homepage
This video explains how to modify the homepage by changing the snippet.
<
br/>
This clip is from the chapter "Manipulating Website Views and Layout" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains...
<
br/>
This clip is from the chapter "Manipulating Website Views and Layout" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains...
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Add Project to GitHub
This video explains how to push the code onto GitHub.
<
br/>
This clip is from the chapter "Setup ASP.NET Core MVC Application" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains the setup of ASP.NET...
<
br/>
This clip is from the chapter "Setup ASP.NET Core MVC Application" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains the setup of ASP.NET...
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Tour of Files and Folders
This video takes you on a tour of the files and folders in Visual Studio.
<
br/>
This clip is from the chapter "Setup ASP.NET Core MVC Application" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains...
<
br/>
This clip is from the chapter "Setup ASP.NET Core MVC Application" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Nodemon and Route Clean-Up
In this video, we will use Nodemon to automatically restart our server whenever changes are made, making development more efficient. We will also clean up our code by moving our route handlers into separate modules.
<
br/>
This clip...
<
br/>
This clip...
Curated Video
Modern JavaScript from the Beginning - Second Edition - http Module
The http module provides a way to create HTTP servers and clients in Node.js. In this video, we will explore how to create an HTTP server using the http module and how to handle HTTP requests and responses. We will also cover how to...
Curated Video
Modern JavaScript from the Beginning - Second Edition - path Module
The path module provides methods for working with file paths and directories. In this video, we will explore the different methods available in the path module and how to use them to manipulate file paths in our Node.js...
Curated Video
Modern JavaScript from the Beginning - Second Edition - fs (filesystem) Module
The filesystem (fs) module is one of the most commonly used modules in Node.js. In this video, we will explore the various methods available in the fs module and how to use them to read, write, and manipulate files and...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Getting Started with Jest
In this video, we will get started with Jest, a popular testing framework for JavaScript. We will install Jest, set up a basic test suite, and write our first test.
<
br/>
This clip is from the chapter "Unit Testing Algorithms" of...
<
br/>
This clip is from the chapter "Unit Testing Algorithms" of...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Babel Setup
In this video, we will look at how to configure Babel in Webpack to transpile our modern JavaScript code to be compatible with older browsers. You will learn how to install Babel and configure it to work with our Webpack setup.
<
br/>...
<
br/>...
Curated Video
Modern JavaScript from the Beginning - Second Edition - HTML Webpack Plugin
In this video, you will learn how to use the HTML Webpack plugin to generate an HTML file that includes our bundled JavaScript and CSS files. We will explore how to configure the plugin and how to add dynamic content to the generated...
Curated Video
Modern JavaScript from the Beginning - Second Edition - CSS and Style Loaders
In this video, we will explore how to use CSS and style loaders in Webpack. We will look at the different types of style loaders available and how to configure them in our Webpack configuration file.
<
br/>
This clip is from the...
<
br/>
This clip is from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Webpack Basic Setup
This video covers how to set up Webpack, a popular module bundler, for a basic project. The video explains how to install and configure Webpack, how to create a simple configuration file, and how to use Webpack to bundle our code.
<
br/>...
<
br/>...