Hi, what do you want to do?
Curated Video
Behavioral Design Patterns in C++ - C++ Iterators - II
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.
This clip is from the chapter "Iterator" of the series "Behavioral Design Patterns in C++".This section focuses on the Iterator design pattern.
Curated Video
Behavioral Design Patterns in C++ - Containers - III (Issues)
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.
This clip is from the chapter "Iterator" of the series "Behavioral Design Patterns in C++".This section focuses on the Iterator design pattern.
Curated Video
Behavioral Design Patterns in C++ - Pros and Cons-Iterator
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.
This clip is from the chapter "Iterator" of the series "Behavioral Design Patterns in C++".This section focuses on the Iterator design pattern.
Curated Video
Behavioral Design Patterns in C++ - C++ Iterators - III (More Iterators)
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.
This clip is from the chapter "Iterator" of the series "Behavioral Design Patterns in C++".This section focuses on the Iterator design pattern.
Curated Video
Behavioral Design Patterns in C++ - Containers - I (Array)
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.
This clip is from the chapter "Iterator" of the series "Behavioral Design Patterns in C++".This section focuses on the Iterator design pattern.
Curated Video
CISSP Crash Course - Security in Systems Part 2
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...
<
br/>
This clip is from the chapter "Architecture and Engineering" of the series "CISSP Crash Course".This section covers domain 3, which...
Curated Video
Getting Started with HashiCorp Nomad - Working with Volumes
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...
<
br/>
This clip is from the chapter...
Curated Video
Getting Started with HashiCorp Nomad - Demo - Run Our First Nomad Job
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/>...
<
br/>...
Curated Video
Getting Started with HashiCorp Nomad - Running Our First Nomad Job
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...
<
br/>
This clip is...
Curated Video
Getting Started with HashiCorp Nomad - Demo – Let’s Work with Cluster Members
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...
<
br/>
This clip is from the chapter "Deploying...
Curated Video
Getting Started with HashiCorp Nomad - Managing Cluster Members
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...
Curated Video
Getting Started with HashiCorp Nomad - Nomad Clients
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...
<
br/>
This clip is from...
Curated Video
Getting Started with HashiCorp Nomad - Comparing Nomad to Kubernetes
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...
<
br/>
This clip is from the chapter "Introduction to Nomad" of...
Curated Video
Getting Started with HashiCorp Nomad - Introduction to Nomad
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...
<
br/>
This clip is from the chapter "Introduction to...
Curated Video
Oracle Database Administration from Zero to Hero - Overview on Oracle Database (Part 2 of 2)
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...
<
br/>
This clip is from the chapter "Introduction to RDBMS" of the series "Oracle Database Administration from Zero to...
Curated Video
Oracle Database Administration from Zero to Hero - Practice - Managing Local and Common Users (Part 2 of 2)
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...
<
br/>
This clip is...
Curated Video
Oracle Database Administration from Zero to Hero - Querying Container Data Objects
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...
Curated Video
Mastering C++ Standard Library Features [Video] - Metaprogramming Utilities in the Standard Library
Metaprogramming Utilities in the Standard Library
Curated Video
Mastering C++ Standard Library Features [Video] - Lambdas and the Standard Library
Understand how lambdas and the Standard Library interact and benefit from each other
Curated Video
Mastering C++ Standard Library Features [Video] - Passing Functions to Functions
Learn about higher-order functions and the problems solved by them, techniques to pass functions to other functions
Curated Video
Mastering C++ Standard Library Features [Video] - Storing Callable Objects
Learn how to store arbitrary closures and callable objects, and the 'FunctionObject' and 'Callable' concept definitions
Curated Video
Mastering C++ Standard Library Features [Video] - Anatomy of a Lambda
In-depth analysis of lambda expression syntax from C++11 to C++17
Curated Video
Mastering C++ Standard Library Features [Video] - std::unique_ptr
Overview of std::unique_ptr and its basic interface, understand how unique_ptr works and what problem it solves
Curated Video
Mastering C++ Standard Library Features [Video] - Example: Creating a Compile-Time Set Data Structure
Learn how to create a simple set-like compile-time data structure with a familiar `constexpr`-based syntax