Instructional Video13:53
Curated Video

Modern JavaScript from the Beginning - Second Edition - Traversing the DOM - All Nodes

Higher Ed
This video covers how to traverse the entire DOM, including text nodes and comment nodes. It covers the firstNode, lastNode, nextNode, and previousNode properties. This clip is from the chapter "DOM Manipulation" of the series "Modern...
Instructional Video11:32
Curated Video

Modern JavaScript from the Beginning - Second Edition - Traversing the DOM - Elements

Higher Ed
This video covers how to traverse the DOM to access child elements, parent elements, and sibling elements. It covers the firstChild, lastChild, nextSibling, and previousSibling properties. This clip is from the chapter "DOM Manipulation"...
Instructional Video8:54
Curated Video

Machine Learning: Random Forest with Python from Scratch - How to Classify

Higher Ed
Let's learn to write a classification method that will train our module and help us get predictions. This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning: Random Forest with Python from...
Instructional Video4:41
Curated Video

Machine Learning: Random Forest with Python from Scratch - Leaf and Decision Node

Higher Ed
In this lesson, you will learn to create two classes, a leaf node and a decision node, with a constructor. This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning: Random Forest with Python from...
Instructional Video11:46
Curated Video

Machine Learning: Random Forest with Python from Scratch - Best Slip

Higher Ed
Here, we will determine the best split at any decision node where information is maximum and split into two branches, true and false. This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning: Random...
Instructional Video8:06
Curated Video

Machine Learning: Random Forest with Python from Scratch - Information Gain

Higher Ed
In this video, we will define columns for questioning and determine how much information can be gained by splitting a column. This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning: Random Forest with...
Instructional Video8:25
Curated Video

Machine Learning: Random Forest with Python from Scratch - Question and Partition

Higher Ed
In this video, you will learn to create two more helper functions, question, and partition, which define statements for querying and retrieving data. This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine...
Instructional Video7:48
Curated Video

Machine Learning: Random Forest with Python from Scratch - Structure

Higher Ed
In this video, we will discuss the structures of a Random Forest, namely forest, tree, leaf node, and decision node. This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning: Random Forest with Python...
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. This clip is from the...
Instructional Video25:22
Curated Video

Modern JavaScript from the Beginning - Second Edition - Linked Lists

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

Modern JavaScript from the Beginning - Second Edition - ES Modules

Higher Ed
This video covers ES Modules, which is a module format introduced in ES6 (ECMAScript 2015). The video explains how to create and use ES Modules in our code, how to export and import modules using the ES6 syntax, and how to use ES Modules...
Instructional Video6:22
Curated Video

Modern JavaScript from the Beginning - Second Edition - Installing and Using Node.js

Higher Ed
This video covers how to install and use Node.js, a JavaScript runtime environment that allows us to run JavaScript code outside of the browser. The video explains how to install Node.js on different operating systems and shows how to...
Instructional Video4:59
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Insert Adjacent Element and Insert Adjacent HTML

Higher Ed
This video introduces the insertAdjacentElement() and insertAdjacentHTML() methods, which provide flexible ways to insert elements or HTML content at specific positions relative to an element. You will learn to use these methods to...
Instructional Video4:16
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Children Nodes

Higher Ed
In this video, we will explore the children property, which provides access to the child nodes of an element. We will retrieve child elements, text nodes, or other types of nodes within an element. Understanding children nodes is...
Instructional Video4:43
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Parent Nodes

Higher Ed
This video focuses on traversing the DOM tree to access the parent nodes of elements. You will learn about the parentNode property to navigate to the immediate parent of an element, useful for traversing up the DOM tree, finding specific...
Instructional Video5:37
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Get Methods

Higher Ed
In this video, we will discover various DOM methods to retrieve elements from the webpage, which include getElementById, getElementsByClassName, getElementsByTagName, and querySelector. You will learn to use these methods effectively to...
Instructional Video3:03
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Append Child and Insert Before

Higher Ed
In this video, we will explore the appendChild() and insertBefore() methods to insert elements into the DOM tree, to append a new element as a child of an existing element, or insert it before a specified reference element, which is...
Instructional Video3:04
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Create Element Text Node

Higher Ed
This video focuses on creating and working with text nodes in the DOM. You will learn to use the document.createTextNode() method to create a new text node, which can be inserted as a child of an element. Understanding how to create and...
Instructional Video14:55
Curated Video

Hands-On Continuous Integration and Automation with Jenkins - Configure the EC2 Plugin

Higher Ed
This video introduces AWS concepts like IAM policy, IAM user, and AMI, and shows how to add AWS credentials to Jenkins and install and configure the EC2 plugin.
Instructional Video7:31
Curated Video

Hands-On Continuous Integration and Automation with Jenkins - Tour of Jenkins Dashboard

Higher Ed
This video gives an overview of the Jenkins dashboard and admin console and introduces key concepts and terminology.
Instructional Video5:43
Curated Video

Vue.js 3 and Firebase for Beginners - Build Tool Setup with Vite

Higher Ed
In this video, we will explore the setup process of Vite, a build tool. To begin the course, we need to install Node.js and npm, which will enable us to seamlessly proceed with the course. This clip is from the chapter "Introduction" of...
Instructional Video8:35
Curated Video

Data Science Model Deployments and Cloud Computing on GCP - Containerization with Docker

Higher Ed
This video explains containerization, which is a way of packaging the code up complete with libraries, files, and dependencies in an environment that is predictable and portable. Docker is a suite of technologies that accomplishes this....
Instructional Video4:44
Curated Video

Data Science Model Deployments and Cloud Computing on GCP - CI/CD

Higher Ed
This video explains continuous integration and continuous delivery in DevOps. This clip is from the chapter "DevOps" of the series "Web Development Concepts for Everyone".This video explains DevOps and cloud orchestration with Kubernetes.
Instructional Video10:55
Curated Video

Data Science Model Deployments and Cloud Computing on GCP - Cloud Hosting with Heroku

Higher Ed
This video explains Heroku, which is a cloud platform that enables developers to build, run, and operate applications entirely on cloud. This clip is from the chapter "Cloud Platforms" of the series "Web Development Concepts for...