Instructional Video9:56
Curated Video

Modern JavaScript from the Beginning - Second Edition - Page Router and Active Link

Higher Ed
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/>...
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.
<
br/>
This clip is from the chapter "Asynchronous...
Instructional Video8:44
Curated Video

Modern JavaScript from the Beginning - Second Edition - Under the Hood: How Async JS Works

Higher Ed
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...
Instructional Video4:56
Curated Video

Modern JavaScript from the Beginning - Second Edition - DevTools Network Tab

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.
<
br/>
This clip is from the chapter "Asynchronous...
Instructional Video15:29
Curated Video

Modern JavaScript from the Beginning - Second Edition - Setting Up Git and GitHub (Optional)

Higher Ed
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...
Instructional Video10:49
Curated Video

Modern JavaScript from the Beginning - Second Edition - Form Submission and FormData Object

Higher Ed
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...
Instructional Video7:10
Curated Video

Modern JavaScript from the Beginning - Second Edition - Running JavaScript in the Browser

Higher Ed
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...
Instructional Video9:13
Curated Video

Machine Learning: Random Forest with Python from Scratch - Outliers Removal

Higher Ed
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:...
Instructional Video10:55
Curated Video

Machine Learning: Random Forest with Python from Scratch - Dealing with Missing Values

Higher Ed
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:...
Instructional Video19:16
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Delete Using jQuery

Higher Ed
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...
Instructional Video2:19
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Add to GitHub-1

Higher Ed
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...
Instructional Video9:08
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Adding an About Us Page

Higher Ed
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...
Instructional Video17:10
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Modifying the Homepage

Higher Ed
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...
Instructional Video9:23
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Add Project to GitHub

Higher Ed
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...
Instructional Video25:26
Curated Video

ASP.NET Core MVC - Cross-Platform Development - Tour of Files and Folders

Higher Ed
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...
Instructional Video6:09
Curated Video

Modern JavaScript from the Beginning - Second Edition - Nodemon and Route Clean-Up

Higher Ed
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...
Instructional Video18:26
Curated Video

Modern JavaScript from the Beginning - Second Edition - http Module

Higher Ed
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...
Instructional Video8:02
Curated Video

Modern JavaScript from the Beginning - Second Edition - path Module

Higher Ed
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...
Instructional Video14:00
Curated Video

Modern JavaScript from the Beginning - Second Edition - fs (filesystem) Module

Higher Ed
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...
Instructional Video5:49
Curated Video

Modern JavaScript from the Beginning - Second Edition - Getting Started with Jest

Higher Ed
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...
Instructional Video5:10
Curated Video

Modern JavaScript from the Beginning - Second Edition - Babel Setup

Higher Ed
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/>...
Instructional Video8:21
Curated Video

Modern JavaScript from the Beginning - Second Edition - HTML Webpack Plugin

Higher Ed
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...
Instructional Video4:44
Curated Video

Modern JavaScript from the Beginning - Second Edition - CSS and Style Loaders

Higher Ed
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...
Instructional Video11:24
Curated Video

Modern JavaScript from the Beginning - Second Edition - Webpack Basic Setup

Higher Ed
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/>...