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. This clip is from the chapter...
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. This clip is from the chapter "Deploying Nomad" of the...
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 system,...
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. This clip is from the chapter...
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. This clip is from the chapter "Introduction to Nomad" of the series...
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. This clip is from the chapter "Introduction to Nomad" of...
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. This clip is from the chapter "Introduction to RDBMS" of the series "Oracle Database Administration from Zero to Hero".In this...
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. This clip is from the...
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
Curated Video
Mastering C++ Standard Library Features [Video] - Metafunctions
Understand what a "metafunction" is and how types can be manipulated through templates
Curated Video
Mastering C++ Standard Library Features [Video] - Exceptions in 'constexpr' Functions
Understand the interactions between exceptions and compile-time evaluation of 'constexpr' functions
Curated Video
Mastering C++ Standard Library Features [Video] - constexpr' in the Standard Library
Learn about `constexpr` features in the Standard Library introduced throughout C++11/14/17, and upcoming C++20 features
Curated Video
Mastering C++ Standard Library Features [Video] - Constant Expressions
Understand what a "constant expression" is and how 'constexpr' allows to create functions that can be executed at compile-time
Curated Video
Mastering C++ Standard Library Features [Video] - Safer Interfaces with Higher-Order Functions
Through realistic examples, understand how higher-order functions can be used to create safer and easier interfaces for your users
Curated Video
Mastering C++ Standard Library Features [Video] - Lambdas as Local Functions
Learn how and when to use lambdas as short local functions, in order to reduce repetition and increase maintainability
Curated Video
Mastering C++ Standard Library Features [Video] - Lambdas: Versatile Tools
Understand the versatility of lambdas and unconventional problems solved by them
Curated Video
Mastering C++ Standard Library Features [Video] - Lambdas: Function Objects in Disguise
Understand what lambda expressions are and what problem they solve