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. This clip is from the chapter...
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. This clip is from the chapter "Deploying Nomad" of the...
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 system,...
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. This clip is from the chapter...
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. This clip is from the chapter "Introduction to Nomad" of the series...
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. This clip is from the chapter "Introduction to Nomad" of...
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. This clip is from the chapter "Introduction to RDBMS" of the series "Oracle Database Administration from Zero to Hero".In this...
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. This clip is from the...
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
Instructional Video12:06
Curated Video

Mastering C++ Standard Library Features [Video] - Metafunctions

Higher Ed
Understand what a "metafunction" is and how types can be manipulated through templates
Instructional Video5:13
Curated Video

Mastering C++ Standard Library Features [Video] - Exceptions in 'constexpr' Functions

Higher Ed
Understand the interactions between exceptions and compile-time evaluation of 'constexpr' functions
Instructional Video11:47
Curated Video

Mastering C++ Standard Library Features [Video] - constexpr' in the Standard Library

Higher Ed
Learn about `constexpr` features in the Standard Library introduced throughout C++11/14/17, and upcoming C++20 features
Instructional Video20:04
Curated Video

Mastering C++ Standard Library Features [Video] - Constant Expressions

Higher Ed
Understand what a "constant expression" is and how 'constexpr' allows to create functions that can be executed at compile-time
Instructional Video13:06
Curated Video

Mastering C++ Standard Library Features [Video] - Safer Interfaces with Higher-Order Functions

Higher Ed
Through realistic examples, understand how higher-order functions can be used to create safer and easier interfaces for your users
Instructional Video10:07
Curated Video

Mastering C++ Standard Library Features [Video] - Lambdas as Local Functions

Higher Ed
Learn how and when to use lambdas as short local functions, in order to reduce repetition and increase maintainability
Instructional Video14:50
Curated Video

Mastering C++ Standard Library Features [Video] - Lambdas: Versatile Tools

Higher Ed
Understand the versatility of lambdas and unconventional problems solved by them
Instructional Video6:07
Curated Video

Mastering C++ Standard Library Features [Video] - Lambdas: Function Objects in Disguise

Higher Ed
Understand what lambda expressions are and what problem they solve