Curated Video
Learning Akka (Video 10)
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...
Curated Video
Tips, Tricks, and Techniques for Node.js Development 1.4: Monorepo with Lerna.js
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
Curated Video
Complete Modern C++ - Operator Overloading - Part I (Basics)
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...
Curated Video
Complete Modern C++ - Passing Arguments to Threads
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.
Curated Video
C++ Standard Template Library in Practice - User - Defined Iterators
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...
Curated Video
Dive Into Ansible - From Beginner to Expert in Ansible - Magic Variables
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...
Brian McLogan
Learning to find the reference angle in the third quadrant
👉 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...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 02 - Java Reference Types – Puzzles
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...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 01 - Reference Types - How are they Stored in Memory?
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...
Curated Video
Frontend Web Development Bootcamp - Build a Twitter Clone - Links
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.
Curated Video
Excel VBA Programming The Complete Guide - Access Object from Collection by Name
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...
Curated Video
The Complete Excel Guide: Beginners to Advanced - Table References
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.
Curated Video
Complete Modern C++ - Structured Bindings
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...
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 threads) • Analyze the usage of std::latch::count_down_and_wait() and...
Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Dictionaries, sets and tuples
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...
IDG TECHtalk
How to use the In command: 2-Minute Linux Tips
In this Linux tip, learn to use the ln command, which can create either type of link on Linux systems.
Curated Video
Multi-Paradigm Programming with Modern C++ - Passing Things Around
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,...
Curated Video
Complete Modern C++ - Project - Part VIII (Upcasting and Downcasting)
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...
Curated Video
Complete Modern C++ - std::move Function
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.
Curated Video
Excel VBA Programming The Complete Guide - The Range.Interior Property
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...
Curated Video
Excel VBA Programming The Complete Guide - The Range.EntireRow and Range.EntireColumn Properties
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...
Curated Video
Excel VBA Programming The Complete Guide - The Name Property on Workbook and Worksheet Objects
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...
Curated Video
Excel VBA Programming The Complete Guide - The Worksheet_Activate Event
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...
Curated Video
Dive Into Ansible - From Beginner to Expert in Ansible - Best Practices for Working with Ansible
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...