Curated Video
Fundamentals of Object-Oriented Programming - C++ - Member Functions
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)...
Curated Video
In Praise of Quality: Why it Should Matter to You
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...
Professor Dave Explains
Latin Phonetics Part 1: Vowels
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...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Class Method (Part 1)
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...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Class Variables
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...
Curated Video
Python for OOP - The A to Z OOP Python Programming Course - Exercise 2 on Methods
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...
Curated Video
Build and Learn ASP.NET 6.0 Blazor Hands-On - Inheritance in ASP.NET Core 3.1 Blazor
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...
Wonderscape
The Art of Essay Writing: An Exploration
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...
Curated Video
Deep Learning - Recurrent Neural Networks with TensorFlow - RNN Code Preparation
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Refactor to Multiple Functions
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Array.reduce Method
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Function Challenges
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - More on Arguments and Parameters
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Dates and Times
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Creating a Function
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Date Methods and DateTimeFormat API
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...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Print line Println Exercise in Rust
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...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - What Is the Print Line Println macro in Rust
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...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Printing Variables as Arguments in Rust
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...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Refactor to Single _newItem Method
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Props in React.JS
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...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - What Are Closures in Rust
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
Curated Video
Concurrent and Parallel Programming in Python - Multiprocessing Introduction
Here, we will understand multiprocessing and monitor how our CPU functions during multiprocessing.
Curated Video
Type-Safe Interfaces with Modern C++ - std::string
Learn about the idea of an "owning wrapper" by understanding how `std::string` works internally and what its semantics are.