Instructional Video5:03
Curated Video

Learning Akka (Video 10)

Higher Ed
Akka helps you to build scalable, resilient, and fault-tolerant distributed systems that can provide outstanding performance on local machines as well as over remote networks. Employing the actor model, it is possible to leverage these...
Instructional Video6:04
Curated Video

Tips, Tricks, and Techniques for Node.js Development 1.4: Monorepo with Lerna.js

Higher Ed
In this video, we will learn how to develop multiple node packages into one big codebase. • Understand what a monorepo is and install Lerna.js • Create multiple packages • Use these multiple packages
Instructional Video8:29
Curated Video

Complete Modern C++ - Operator Overloading - Part I (Basics)

Higher Ed
This video explains the basics of operator overloading and implementation of common unary and binary operators. • Install Qt5 • Implement CMake for your Qt5 directory as shown in the video • Reconfigure and generate the project via CMake...
Instructional Video4:19
Curated Video

Complete Modern C++ - Passing Arguments to Threads

Higher Ed
In this video, learn how to pass arguments to thread functions. This clip is from the chapter "C++ Concurrency" of the series "Complete Modern C++".The author talks about concurrency in this section.
Instructional Video10:35
Curated Video

C++ Standard Template Library in Practice - User - Defined Iterators

Higher Ed
We want to learn how to make our own iterator. • Discuss the different ways to implement an iterator • Talk about how there is an old way and a new way • Implement our own iterator using the newest method This clip is from the chapter...
Instructional Video3:38
Curated Video

Dive Into Ansible - From Beginner to Expert in Ansible - Magic Variables

Higher Ed
This video explores the special set of magic variables. 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...
Instructional Video2:18
Brian McLogan

Learning to find the reference angle in the third quadrant

12th - Higher Ed
👉 Learn how to find the reference angle of a given angle. The reference angle is the acute angle formed by the terminal side of an angle and the x-axis. To find the reference angle, we determine the quadrant on which the given angle lies...
Instructional Video8:53
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 02 - Java Reference Types – Puzzles

Higher Ed
In this video, we will learn about Java reference types – puzzles. This clip is from the chapter "Reference Types" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will look into string class and...
Instructional Video7:02
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 01 - Reference Types - How are they Stored in Memory?

Higher Ed
In this video, we will learn about reference types - how they are stored in memory. This clip is from the chapter "Reference Types" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will look into...
Instructional Video4:39
Curated Video

Frontend Web Development Bootcamp - Build a Twitter Clone - Links

Higher Ed
HTML Crash Course: Links This clip is from the chapter "HTML Crash Course" of the series "Frontend Web Development Bootcamp: Build a Twitter Clone".This section explains about HTML, Headings, Paragraphs, Lists, Links and so on.
Instructional Video3:57
Curated Video

Excel VBA Programming The Complete Guide - Access Object from Collection by Name

Higher Ed
In this lesson, we explore this with the context of Worksheet objects inside the Worksheets collection. This clip is from the chapter "The Fundamentals of the Excel Object Model" of the series "Excel VBA Programming–The Complete...
Instructional Video8:31
Curated Video

The Complete Excel Guide: Beginners to Advanced - Table References

Higher Ed
The aim of this video is to explore what are table references. This clip is from the chapter "Excel 2019 Advanced: Tables" of the series "The Complete Excel Guide: Beginners to Advanced".In this section, we'll explore the tables.
Instructional Video8:08
Curated Video

Complete Modern C++ - Structured Bindings

Higher Ed
In this video, understand how to use structured bindings to bind variables to different members of an object or an array. This clip is from the chapter "C++17 Core Language Features" of the series "Complete Modern C++".This section...
Instructional Video4:25
Curated Video

C++ 20 (2a) New Features - Latches and Barriers

Higher Ed
Use std::latch and std::barrier to synchronize incrementing atomic value from two separate threads. • Consider latch and barrier initialization values (participating threads) • Analyze the usage of std::latch::count_down_and_wait() and...
Instructional Video11:59
Curated Video

Python 3: Project-based Python, Algorithms, Data Structures - Dictionaries, sets and tuples

Higher Ed
Learning the basics of building a class from scratch and special __init__ method This clip is from the chapter "Python in-depth" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section is about Python...
Instructional Video2:18
IDG TECHtalk

How to use the In command: 2-Minute Linux Tips

Higher Ed
In this Linux tip, learn to use the ln command, which can create either type of link on Linux systems.
Instructional Video7:53
Curated Video

Multi-Paradigm Programming with Modern C++ - Passing Things Around

Higher Ed
Most languages offer a couple of ways of passing data, e. g. by value and by reference. C++ offers many more. How to choose the right way in every case? • Ground rules for passing arguments • When to pass/return by reference, by value,...
Instructional Video5:46
Curated Video

Complete Modern C++ - Project - Part VIII (Upcasting and Downcasting)

Higher Ed
This video is a discussion on upcasting and downcasting within the objects of a class hierarchy. This clip is from the chapter "Object-Oriented Programming" of the series "Complete Modern C++".In this section, you will learn about...
Instructional Video7:52
Curated Video

Complete Modern C++ - std::move Function

Higher Ed
In this video, you will learn about the library function, std::move. This clip is from the chapter "Move Semantics" of the series "Complete Modern C++".In this section, you will learn about values and how to work with semantics.
Instructional Video6:41
Curated Video

Excel VBA Programming The Complete Guide - The Range.Interior Property

Higher Ed
What the Font object is to the foreground, the Interior property is to the background. In this lesson, we use the Range.Interior property to modify the color of a cell in a variety of different ways including: • VBA color constants • The...
Instructional Video2:55
Curated Video

Excel VBA Programming The Complete Guide - The Range.EntireRow and Range.EntireColumn Properties

Higher Ed
The Range.EntireRow and Range.EntireColumn properties are used to target a complete row or column from a single cell. In this lesson, we play around with the two properties in the Immediate Window. This clip is from the chapter "Range...
Instructional Video4:04
Curated Video

Excel VBA Programming The Complete Guide - The Name Property on Workbook and Worksheet Objects

Higher Ed
In this lesson, we explore the Name property on both a Worksheet and Workbook object. The Name property is only readable on a Workbook but is readable and writeable on a Worksheet. The key takeaway is that object design differs; just...
Instructional Video2:48
Curated Video

Excel VBA Programming The Complete Guide - The Worksheet_Activate Event

Higher Ed
The Worksheet_Activate event is triggered when the user navigates to a different worksheet. It can be used to provide the user with instructions or warnings. In this lesson, we write a quick procedure to MsgBox out the activated sheet's...
Instructional Video4:46
Curated Video

Dive Into Ansible - From Beginner to Expert in Ansible - Best Practices for Working with Ansible

Higher Ed
This video presents some best practices for working with Ansible. This clip is from the chapter "Other Ansible Resources and Areas" of the series "Dive Into Ansible - From Beginner to Expert in Ansible".This section presents some other...