Instructional Video8:37
Packt

Explanation on Nested FOR Loops

Higher Ed
This video explains nested FOR loops. This clip is from the chapter "Java Object Oriented Programming System (OOPS) Basic for Selenium Part - 1" of the series "Selenium WebDriver with Java - Basics to Advanced and Frameworks".This...
Instructional Video8:35
Curated Video

Multi-Paradigm Programming with Modern C++ - Running Asynchronous Tasks

Higher Ed
In this video, we will use promise, future, and a lambda to create a version of std::async that uses our thread pool. Then we will learn some design patterns for efficient concurrent programming. • Overview of the task class and related...
Instructional Video5:09
Curated Video

Multi-Paradigm Programming with Modern C++ - Dive into Ranges

Higher Ed
You probably have more questions than answers at this point: how does the pipeline work? How many loops did we just write? What is the return value of a pipeline? Where are the intermediate results stored? And of course, what else can we...
Instructional Video2:45
Curated Video

Multi-Paradigm Programming with Modern C++ - About the Guidelines

Higher Ed
C++ Core Guidelines are mentioned many times throughout this course. The guidelines are written by some of the most experienced programmers in the world. They are not hard rules though, but rather recommendations and best practices,...
Instructional Video7:06
Curated Video

Multi-Paradigm Programming with Modern C++ - Implementing Continuations

Higher Ed
We want to co_await other tasks. To implement this, every task will keep handles to coroutines that are waiting on it. Once a task is finished, it will cal resume on those handles. All resumptions should be scheduled with the executor. •...
Instructional Video24:30
Curated Video

Dive Into Ansible - From Beginner to Expert in Ansible - Using Loops

Higher Ed
This video demonstrates how to use loops. This clip is from the chapter "Ansible Playbooks- Deep Dive" of the series "Dive Into Ansible - From Beginner to Expert in Ansible".This section explores playbooks in Ansible in details.
Instructional Video1:50
Curated Video

Practical Python: Learn Python Basics Step by Step- Python 3 - Python Level 4: Exercises

Higher Ed
In this video, the author gives a few exercises to work on. This clip is from the chapter "Python Basics- Level 4" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".This section gives an overview of the...
Instructional Video3:57
Curated Video

Practical Python: Learn Python Basics Step by Step- Python 3 - Variable Scope

Higher Ed
This video gives an overview of variable scope and demonstrates how to use it. This clip is from the chapter "Python Basics- Level 2" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this section, you will...
Instructional Video8:53
Curated Video

Practical Python: Learn Python Basics Step by Step- Python 3 - Install a Python IDE (PyCharm)

Higher Ed
This video demonstrates how to install IDE PyCharm in different operating systems. This clip is from the chapter "Python Basics- Level 2" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this section, you...
Instructional Video9:29
Curated Video

Practical Python: Learn Python Basics Step by Step- Python 3 - Python Level 2: Exercises – Solution

Higher Ed
This video shows the answers to the exercises given in the previous video. This clip is from the chapter "Python Basics- Level 2" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this section, you will...
Instructional Video5:00
Curated Video

Beginning Python (Video 26)

Higher Ed
Python is the becoming the language of choice for pretty much every arena. It is a very simple yet extremely powerful programming language. It is a scripting language that is widely used for prototyping to get work up and running in a...
Instructional Video8:22
Curated Video

Bash Shell Scripting - Creating Loops Using "for"

Higher Ed
This video demonstrates how to create loops using "for". This clip is from the chapter "Flow Control" of the series "Mastering Bash Shell Scripting: Automate your daily tasks [Updated for 2021]".This section helps you understand flow...
Instructional Video6:59
Curated Video

Ansible for the Absolute Beginner - Loops

Higher Ed
This video focuses on loops. This clip is from the chapter "Introduction to Loops" of the series "Ansible for the Absolute Beginner - Hands-On – DevOps".This section focuses on loops.
Instructional Video5:57
Curated Video

Multi-Paradigm Programming with Modern C++ - Enter Ranges

Higher Ed
Most algorithms use a pair of iterators. Most containers can be thought of as a pair of begin() and end() iterators. Why not use a pair of iterators everywhere? Roughly, this is what ranges are all about. • Installing range-v3 from...
Instructional Video8:09
Curated Video

Multi-Paradigm Programming with Modern C++ - Enforcing the Contract

Higher Ed
Interface is a contract between two parts of a program. Most functions limit what inputs are valid, while function callers expect a limited range of return values. Most classes have a limited number of states. A good interface must...
Instructional Video8:10
Curated Video

Multi-Paradigm Programming with Modern C++ - Pimpl Idiom

Higher Ed
In this video, we learn about one of the most common C++ tricks to improve compilation speed and hide implementation details. • Add Pimpl to one of the classes • Fix const correctness • Pros and cons of the Pimpl idiom This clip is from...
Instructional Video4:23
Curated Video

Multi-Paradigm Programming with Modern C++ - Scheduling a Coroutine

Higher Ed
Our task class should enable scheduling coroutines on thread pool threads. The coroutine must suspend, and then resume on one of those threads. • Implementing task’s resumption on task manager thread • Implementing task suspension with a...
Instructional Video11:25
Curated Video

Multi-Paradigm Programming with Modern C++ - Resuming the Coroutine

Higher Ed
Our first coroutine was suspended, but never resumed. In this video we will see how to implement coroutine’s resumption for lazy evaluation, and also how to handle return values of a coroutine. • Implementing co_return support in the...
Instructional Video7:10
Curated Video

Practical Python: Learn Python Basics Step by Step- Python 3 - Python Level 4: Exercises - Solution

Higher Ed
This video shows the answers of the exercises given in the previous video. This clip is from the chapter "Python Basics- Level 4" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".This section gives an overview...
Instructional Video2:53
Curated Video

Practical Python: Learn Python Basics Step by Step- Python 3 - Cast a Type to Another Type

Higher Ed
This video shows how to modify a data type of a variable. This clip is from the chapter "Python Basics- Level 1" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".This section is about the fundamentals of...
Instructional Video2:37
Curated Video

Practical Python: Learn Python Basics Step by Step- Python 3 - Install Python on MacOS

Higher Ed
This video shows how to install Python in Mac OS. This clip is from the chapter "Introduction" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this section, the author gives a brief introduction of Python...
Instructional Video6:37
Curated Video

Multi-Paradigm Programming with Modern C++ - Synchronization with Condition Variables

Higher Ed
Condition variables let threads notify each other that work is available or finished. This video provides an overview and an example of using condition variables to implement producer-consumer pattern. • How condition variables work...
Instructional Video11:23
Curated Video

The Complete Java Developer Course: From Beginner to Master - Continue and Break Statements

Higher Ed
This video explains about the continue and break statements. This clip is from the chapter "Control Statements" of the series "The Complete Java Developer Course: From Beginner to Master".This section focuses on the fundamental concepts...
Instructional Video1:23
Curated Video

Practical Python: Learn Python Basics Step by Step- Python 3 - Introduction - Python Basics- Level 2

Higher Ed
This video gives a brief overview of Python functions. This clip is from the chapter "Python Basics- Level 2" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this section, you will learn how to create...