Instructional Video11:31
Curated Video

Fundamentals of Object-Oriented Programming - C++ - Member Functions

Higher Ed
In this video, you will learn about member functions. This clip is from the chapter "Module 3" of the series "Fundamentals of Object-Oriented Programming - C++".In this section, you will learn about STL (Standard Template Library)...
Instructional Video3:45
Curated Video

In Praise of Quality: Why it Should Matter to You

10th - Higher Ed
For many project managers, quality management is not the highlight of your profession. You know that you need to understand quality. And, of course, you need to deliver it. But that hardly makes it a source of excitement. Put Quality at...
Instructional Video5:47
Professor Dave Explains

Latin Phonetics Part 1: Vowels

12th - Higher Ed
If we are going to learn Latin, the first thing we must do is learn phonetics, as we need to understand the basic sounds of the language, so that we can read it properly. This will require looking at both vowels and consonants, so let's...
Instructional Video6:08
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Class Method (Part 1)

Higher Ed
In this video, you will dive into the concept of class methods in Python. You will learn how to define and use class methods, which are methods that are bound to the class and not the instance of the class. This video will cover the...
Instructional Video4:41
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Class Variables

Higher Ed
In this video, you will learn about class variables, which are shared by all instances of a class. You will understand how to define and use class variables, and how they differ from instance variables. This video will provide a...
Instructional Video5:25
Curated Video

Python for OOP - The A to Z OOP Python Programming Course - Exercise 2 on Methods

Higher Ed
In this video, you will continue to apply your knowledge of methods through another practical exercise. You will be given a more complex problem statement and will learn how to design and implement methods to solve the problem. This...
Instructional Video9:30
Curated Video

Build and Learn ASP.NET 6.0 Blazor Hands-On - Inheritance in ASP.NET Core 3.1 Blazor

Higher Ed
This video shows how a Razor (Blazor) component can inherit a base class that is derived from the ComponentBase class for certain advantages. This clip is from the chapter "Advanced Concepts with Hands-On Coding in Blazor" of the series...
Instructional Video5:25
Wonderscape

The Art of Essay Writing: An Exploration

K - 5th
Delve into the world of essay writing, a literary form that captures personal opinions, experiences, and arguments. Learn about the structure and types of essays, including literary, research, and personal essays. Understand the...
Instructional Video5:54
Curated Video

Deep Learning - Recurrent Neural Networks with TensorFlow - RNN Code Preparation

Higher Ed
In this video, we will understand how to write code in TensorFlow 2 for a simple RNN. This clip is from the chapter "Recurrent Neural Networks (RNNs), Time Series, and Sequence Data" of the series "Deep Learning - Recurrent Neural...
Instructional Video4:14
Curated Video

Modern JavaScript from the Beginning - Second Edition - Refactor to Multiple Functions

Higher Ed
This video covers how to refactor code into multiple functions to make it more organized and easier to read. It covers the concepts of function composition and separation of concerns. This clip is from the chapter "DOM Manipulation" of...
Instructional Video8:56
Curated Video

Modern JavaScript from the Beginning - Second Edition - Array.reduce Method

Higher Ed
In this video, we will discuss the Array.reduce method, which allows us to reduce an array to a single value by applying a function to each element of the array. This clip is from the chapter "Loops, Iteration, and High-Order Array...
Instructional Video12:23
Curated Video

Modern JavaScript from the Beginning - Second Edition - Function Challenges

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

Modern JavaScript from the Beginning - Second Edition - More on Arguments and Parameters

Higher Ed
This video discusses the differences between arguments and parameters in JavaScript, and how to use them effectively in our functions. This clip is from the chapter "Functions, Scope, and Execution Context" of the series "Modern...
Instructional Video8:18
Curated Video

Modern JavaScript from the Beginning - Second Edition - Dates and Times

Higher Ed
In this video, we will cover working with dates and times in JavaScript. We will explore the Date object, which provides built-in methods for working with dates and times, as well as common date and time formats. This clip is from the...
Instructional Video6:14
Curated Video

Modern JavaScript from the Beginning - Second Edition - Creating a Function

Higher Ed
In this video, you will learn how to create a function in JavaScript, and how to call it to perform a specific task. This clip is from the chapter "Functions, Scope, and Execution Context" of the series "Modern JavaScript from the...
Instructional Video9:03
Curated Video

Modern JavaScript from the Beginning - Second Edition - Date Methods and DateTimeFormat API

Higher Ed
In this video, we will continue our exploration of the Date object in JavaScript, focusing on some of the built-in methods for working with dates and times. We will also cover the new Intl.DateTimeFormat API, which provides a powerful...
Instructional Video2:11
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Print line Println Exercise in Rust

Higher Ed
In this video, you will be presented with a series of coding challenges designed to test your knowledge of the print! and println! macros. This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A...
Instructional Video3:43
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - What Is the Print Line Println macro in Rust

Higher Ed
In this video, you will learn about the print! and the println! macros in Rust and how to use them to display output to the console. This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A...
Instructional Video2:53
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Printing Variables as Arguments in Rust

Higher Ed
In this video, you will be printing variables as arguments 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...
Instructional Video4:37
Curated Video

Modern JavaScript from the Beginning - Second Edition - Refactor to Single _newItem Method

Higher Ed
This video focuses on refactoring the Tracalorie App project to use a single _newItem method for creating new meal and workout objects. The video covers how to use JavaScript classes and the 'this' keyword to create a more efficient and...
Instructional Video7:17
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Props in React.JS

Higher Ed
In this video, we will dive deeper into the concept of components in React.JS, create reusable and modular components that encapsulate specific functionality and can be composed together to build complex user interfaces, the different...
Instructional Video4:32
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - What Are Closures in Rust

Higher Ed
This video explains closures in Rust. This clip is from the chapter "Intermediate to Advanced Videos in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".null
Instructional Video7:28
Curated Video

Concurrent and Parallel Programming in Python - Multiprocessing Introduction

Higher Ed
Here, we will understand multiprocessing and monitor how our CPU functions during multiprocessing.
Instructional Video8:18
Curated Video

Type-Safe Interfaces with Modern C++ - std::string

Higher Ed
Learn about the idea of an "owning wrapper" by understanding how `std::string` works internally and what its semantics are.