Hi, what do you want to do?
Curated Video
Multi-Paradigm Programming with Modern C++ - Modules in C++ 2a
In this video, we learn about the biggest change to C++ in decades.
• Writing our first m
odule
• Consuming
the module
• Visibility a
nd
reachability
This clip is from the chapter "Structuring Projects in...
• Writing our first m
odule
• Consuming
the module
• Visibility a
nd
reachability
This clip is from the chapter "Structuring Projects in...
Curated Video
C++ 20 (2a) New Features - Improvements to Lambda Expressions
Consider generic lambda expressions and problem of interacting with the type of argument. Write generic lambda accepting argument of vector holding objects of any type.
• Write generic lambda using “auto” keyword in place of...
• Write generic lambda using “auto” keyword in place of...
Curated Video
C++ 20 (2a) New Features - How to Define a Module
Split module into two separate module interface partitions
• Split module into module interface and module implementation
files
• Compile and run th
e examples
• Compile and
ru
n the example
This clip is...
• Split module into module interface and module implementation
files
• Compile and run th
e examples
• Compile and
ru
n the example
This clip is...
Curated Video
C++ 20 (2a) New Features - Compiling and Linking Modules into an Executable
Learn how to compile and link modular code using Clang 9 and GCC 10 compiled from C++-modules branch.
• Learn which compilers have working modules implement
ation
• Compile, link, and run example four
using GCC
•...
• Learn which compilers have working modules implement
ation
• Compile, link, and run example four
using GCC
•...
Curated Video
Windows PowerShell Hands-On Training for Beginners - PowerShell Modules - Introduction and Benefits
This video focuses on the introduction and benefits of PowerShell modules.
r/>
This clip is from the chapter "PowerShell Modules - Introduction and Benefits" of the series "Windows PowerShell Hands-On Training for...
r/>
This clip is from the chapter "PowerShell Modules - Introduction and Benefits" of the series "Windows PowerShell Hands-On Training for...
Curated Video
C++ 20 (2a) New Features - Latches and Barriers
Use std::latch and std::barrier to synchronize incrementing atomic value from two separate threads.
• Consider latch and barrier initialization values (participating thr
eads)
• Analyze the usage of...
• Consider latch and barrier initialization values (participating thr
eads)
• Analyze the usage of...
Curated Video
C++ 20 (2a) New Features - Partitioning of Modules
Split module from 5.2 into two separate module interface partitions. Afterwards split same module into module interface file and module implementation file.
r/>
This clip is from the chapter "Modules" of the series "C++ 20 (2a)...
r/>
This clip is from the chapter "Modules" of the series "C++ 20 (2a)...
Curated Video
C++ 20 (2a) New Features - Course Summary
In this video, you’ll learn about the course summary.
• Discuss the overview of the c
ourse
• Discuss the next steps after t
hi
s course
This clip is from the chapter "Other Features and Improvements" of the...
• Discuss the overview of the c
ourse
• Discuss the next steps after t
hi
s course
This clip is from the chapter "Other Features and Improvements" of the...
Curated Video
C++ 20 (2a) New Features - What’s New in Ranges
Ranges do not act as a glue between containers and constrained algorithms. They provide composability and non-modifying views with lazy evaluation.
• Define what a ran
ge is
• Define the difference between a view and a...
• Define what a ran
ge is
• Define the difference between a view and a...
Curated Video
Ansible for the Absolute Beginner - Ansible Playbooks
This video introduces you to Ansible playbooks.<br/<br/>>
This clip is from the chapter "Introduction to Ansible Playbooks" of the series "Ansible for the Absolute Beginner - Hands-On – DevOps".This section focuses on Ansible playbooks.
This clip is from the chapter "Introduction to Ansible Playbooks" of the series "Ansible for the Absolute Beginner - Hands-On – DevOps".This section focuses on Ansible playbooks.
Curated Video
Dive Into Ansible - From Beginner to Expert in Ansible - Creating Modules
This video demonstrates how to create modules.
r/>
This clip is from the chapter "Creating Modules and Plug-ins" of the series "Dive Into Ansible - From Beginner to Expert in Ansible".This section demonstrates how to create...
r/>
This clip is from the chapter "Creating Modules and Plug-ins" of the series "Dive Into Ansible - From Beginner to Expert in Ansible".This section demonstrates how to create...
Curated Video
Dive Into Ansible - From Beginner to Expert in Ansible - Motivations, Learning Outcomes, and Course Structure
This video provides an overview of the course structure and gives a quick introduction to the course.
r/>
This clip is from the chapter "Course Overview and Introduction to Ansible" of the series "Dive Into Ansible - From...
r/>
This clip is from the chapter "Course Overview and Introduction to Ansible" of the series "Dive Into Ansible - From...
Curated Video
Python for Data Analysis: Step-By-Step with Projects - Define Functions, Use Packages
This video defines functions, use packages.<br/<br/>>
This clip is from the chapter "Python Crash Course" of the series "Python for Data Analysis: Step-By-Step with Projects".This section gives you a crash course in Python.
This clip is from the chapter "Python Crash Course" of the series "Python for Data Analysis: Step-By-Step with Projects".This section gives you a crash course in Python.
Curated Video
CSS Bootcamp: Master CSS (Including CSS Grid/Flexbox) - What is CSS?
CSS Basics: What is CSS? This clip is from the chapter "CSS Basics" of the series "CSS Bootcamp: Master CSS (Including CSS Grid/Flexbox)".This section is about CSS Basics.
Curated Video
Ansible for the Absolute Beginner - Ansible Modules
This video explains Ansible modules in detail.<br/<br/>>
This clip is from the chapter "Introduction to Ansible Modules" of the series "Ansible for the Absolute Beginner - Hands-On – DevOps".This section focuses on Ansible modules.
This clip is from the chapter "Introduction to Ansible Modules" of the series "Ansible for the Absolute Beginner - Hands-On – DevOps".This section focuses on Ansible modules.
Curated Video
C++ 20 (2a) New Features - Example of Use
Define simple producer – consumer pair of coroutines and switching between them.
• Define consumer coro
utine
• Define producer
coroutine
• Use cppcoro::single_consumer_event facility
to
make it work
...
• Define consumer coro
utine
• Define producer
coroutine
• Use cppcoro::single_consumer_event facility
to
make it work
...
Curated Video
C++ 20 (2a) New Features - Lightweight Access Coordination
Use std::counting_semaphore to synchronize two threads.
• Examine documentation for std::counting_sema
phore
• Analyze pattern of using acquire and relea
se methods
• Check if the synchronization is work
in
g as...
• Examine documentation for std::counting_sema
phore
• Analyze pattern of using acquire and relea
se methods
• Check if the synchronization is work
in
g as...
Curated Video
C++ 20 (2a) New Features - Using Enum
This section shows how to avoid retyping long fully qualified names of enum class values, especially those enclosed in classes.
• Consider example with enum class enclosed in a class and switch statement using its v
alues
...
• Consider example with enum class enclosed in a class and switch statement using its v
alues
...
Curated Video
C++ 20 (2a) New Features - Rationale Behind the Modules
Include directives cause long compilation times and unclear separation of interface from implementation.
• See size of preprocessed
file
• See number of lines from preproc
essed file
• Learn to include directi
ve...
• See size of preprocessed
file
• See number of lines from preproc
essed file
• Learn to include directi
ve...
Curated Video
TypeScript for Beginners - Introduction - Modules
This video provides an overview of what you will learn in this section.<br/<br/>>
This clip is from the chapter "Modules" of the series "TypeScript for Beginners".This section introduces you to modules and explains how to use them.
This clip is from the chapter "Modules" of the series "TypeScript for Beginners".This section introduces you to modules and explains how to use them.
Curated Video
The Complete Practical Docker Guide - Challenge: Create Files Handling Node App
This is a challenge video that gives the problem statement and hint to create files handling Node app.
r/>
This clip is from the chapter "Running Node.js Applications in Docker" of the series "The Complete Practical Docker...
r/>
This clip is from the chapter "Running Node.js Applications in Docker" of the series "The Complete Practical Docker...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 15 - Exploring Spring Modules
Let's look at the Spring modules in this lesson.
r/>
This clip is from the chapter "Getting Started with Spring Framework" of the series "Java Programming for Complete Beginners - Java 16".This section primarily focuses on the...
r/>
This clip is from the chapter "Getting Started with Spring Framework" of the series "Java Programming for Complete Beginners - Java 16".This section primarily focuses on the...
Curated Video
The Complete Ethical Hacking Bootcamp: Beginner To Advanced - Post Exploitation Modules
This video introduces you to exploitation modules.
r/>
This clip is from the chapter "System Hacking and Exploitation" of the series "The Complete Ethical Hacking Bootcamp: Beginner To Advanced".In this section, you'll learn...
r/>
This clip is from the chapter "System Hacking and Exploitation" of the series "The Complete Ethical Hacking Bootcamp: Beginner To Advanced".In this section, you'll learn...
Curated Video
TypeScript for Beginners - Using Function Modules
This video demonstrates how to use function modules.<br/<br/>>
This clip is from the chapter "Modules" of the series "TypeScript for Beginners".This section introduces you to modules and explains how to use them.
This clip is from the chapter "Modules" of the series "TypeScript for Beginners".This section introduces you to modules and explains how to use them.