Instructional Video4:18
Curated Video

Behavioral Design Patterns in C++ - C++ Iterators - II

Higher Ed
In this video, we will implement the iterator for the list class.<br<br/>/>

This clip is from the chapter "Iterator" of the series "Behavioral Design Patterns in C++".This section focuses on the Iterator design pattern.
Instructional Video3:02
Curated Video

Behavioral Design Patterns in C++ - Containers - III (Issues)

Higher Ed
This video explains the issue where the elements inside the container are accessed.<br<br/>/>

This clip is from the chapter "Iterator" of the series "Behavioral Design Patterns in C++".This section focuses on the Iterator design pattern.
Instructional Video5:39
Curated Video

Behavioral Design Patterns in C++ - Pros and Cons-Iterator

Higher Ed
This video talks about the pros and cons of the Iterator design pattern.<br<br/>/>

This clip is from the chapter "Iterator" of the series "Behavioral Design Patterns in C++".This section focuses on the Iterator design pattern.
Instructional Video4:56
Curated Video

Behavioral Design Patterns in C++ - C++ Iterators - III (More Iterators)

Higher Ed
In this video, we will add more iterators to use the container more efficiently.<br<br/>/>

This clip is from the chapter "Iterator" of the series "Behavioral Design Patterns in C++".This section focuses on the Iterator design pattern.
Instructional Video4:45
Curated Video

Behavioral Design Patterns in C++ - Containers - I (Array)

Higher Ed
In this video, you will implement an array class as a dynamic array.<br<br/>/>

This clip is from the chapter "Iterator" of the series "Behavioral Design Patterns in C++".This section focuses on the Iterator design pattern.
Instructional Video7:19
Curated Video

CISSP Crash Course - Security in Systems Part 2

Higher Ed
This video continues talking about security in systems, microservices, and containerization.
<
br/>
This clip is from the chapter "Architecture and Engineering" of the series "CISSP Crash Course".This section covers domain 3, which...
Instructional Video13:58
Curated Video

Getting Started with HashiCorp Nomad - Working with Volumes

Higher Ed
After learning more about networking, we will discuss working with volumes; for workloads that require storage for stateful workloads, Nomad provides access to host volumes or CSI volumes.
<
br/>
This clip is from the chapter...
Instructional Video5:09
Curated Video

Getting Started with HashiCorp Nomad - Demo - Run Our First Nomad Job

Higher Ed
In this lesson, you will learn to submit our new job to our Nomad cluster and see it launch all of our containers. We will submit the configuration file we created in the previous lesson and successfully deploy our new container.
<
br/>...
Instructional Video6:48
Curated Video

Getting Started with HashiCorp Nomad - Running Our First Nomad Job

Higher Ed
After creating our first job specification file, you will learn to create jobs and submit them to Nomad to launch the application. We will examine the command “nomad job run " to submit the job to Nomad.
<
br/>
This clip is...
Instructional Video5:12
Curated Video

Getting Started with HashiCorp Nomad - Demo – Let’s Work with Cluster Members

Higher Ed
In this demonstration, we will work on removing clients from our cluster. We will understand how to delete nodes, disable allocations, add allocations, drain allocations, and so on.
<
br/>
This clip is from the chapter "Deploying...
Instructional Video6:23
Curated Video

Getting Started with HashiCorp Nomad - Managing Cluster Members

Higher Ed
After learning how to join multiple servers and clients into our Nomad cluster, we will understand how to remove some of these cluster members from the Nomad cluster, remove server nodes, perform regular maintenance, upgrade the...
Instructional Video5:09
Curated Video

Getting Started with HashiCorp Nomad - Nomad Clients

Higher Ed
After gaining a thorough understanding of the Nomad server, we will now focus on understanding the Nomad client concept, which are members of the Nomad data center responsible for executing tasks and jobs.
<
br/>
This clip is from...
Instructional Video6:22
Curated Video

Getting Started with HashiCorp Nomad - Comparing Nomad to Kubernetes

Higher Ed
In the final video of this section, we will compare the features and performance of Nomad with Kubernetes. We will understand the fundamental differences between them.
<
br/>
This clip is from the chapter "Introduction to Nomad" of...
Instructional Video9:05
Curated Video

Getting Started with HashiCorp Nomad - Introduction to Nomad

Higher Ed
This detailed introductory video places into perspective Nomad and its key features and advantages. It talks about Nomad’s general abilities and how it compares with Kubernetes.
<
br/>
This clip is from the chapter "Introduction to...
Instructional Video9:09
Curated Video

Oracle Database Administration from Zero to Hero - Overview on Oracle Database (Part 2 of 2)

Higher Ed
In this video, you will learn about the different Oracle database editions and license options available.
<
br/>
This clip is from the chapter "Introduction to RDBMS" of the series "Oracle Database Administration from Zero to...
Instructional Video9:40
Curated Video

Oracle Database Administration from Zero to Hero - Practice - Managing Local and Common Users (Part 2 of 2)

Higher Ed
In this practice video, we will continue our hands-on practice with managing local and common users. You will grant privileges as common or local and enable common users to view information about specific PDBs.
<
br/>
This clip is...
Instructional Video12:59
Curated Video

Oracle Database Administration from Zero to Hero - Querying Container Data Objects

Higher Ed
In this video, we will focus on querying container data objects. You will learn how to query container data objects, set CONTAINER_DATA attributes for a common user, obtain information about CONTAINER_DATA attributes in a multitenant...
Instructional Video20:02
Instructional Video17:18
Curated Video

Mastering C++ Standard Library Features [Video] - Lambdas and the Standard Library

Higher Ed
Understand how lambdas and the Standard Library interact and benefit from each other
Instructional Video26:27
Curated Video

Mastering C++ Standard Library Features [Video] - Passing Functions to Functions

Higher Ed
Learn about higher-order functions and the problems solved by them, techniques to pass functions to other functions
Instructional Video24:25
Curated Video

Mastering C++ Standard Library Features [Video] - Storing Callable Objects

Higher Ed
Learn how to store arbitrary closures and callable objects, and the 'FunctionObject' and 'Callable' concept definitions
Instructional Video17:57
Curated Video

Mastering C++ Standard Library Features [Video] - Anatomy of a Lambda

Higher Ed
In-depth analysis of lambda expression syntax from C++11 to C++17
Instructional Video21:32
Curated Video

Mastering C++ Standard Library Features [Video] - std::unique_ptr

Higher Ed
Overview of std::unique_ptr and its basic interface, understand how unique_ptr works and what problem it solves
Instructional Video9:01
Curated Video

Mastering C++ Standard Library Features [Video] - Example: Creating a Compile-Time Set Data Structure

Higher Ed
Learn how to create a simple set-like compile-time data structure with a familiar `constexpr`-based syntax