Instructional Video7:38
Curated Video

Excel VBA Programming The Complete Guide - Syntax Tips

Higher Ed
In this lesson, we'll explore some tips for writing cleaner and more elegant VBA code. This clip is from the chapter "Variables and Data Types" of the series "Excel VBA Programming–The Complete Guide".In this section, we work with...
Instructional Video5:19
Curated Video

Excel VBA Programming The Complete Guide - Comments

Higher Ed
In this lesson, we'll explore the benefits of comments to the developer and practice writing them in the context of a procedure. This clip is from the chapter "The Visual Basic Editor" of the series "Excel VBA Programming–The Complete...
Instructional Video8:43
Curated Video

Complete Git Guide: Understand and Master Git and GitHub - Preparing the React Application for Publishing to the GitHub Pages

Higher Ed
This video explains how to prepare the react application to publish it to the GitHub Pages. This clip is from the chapter "GitHub Pages" of the series "Complete Git Guide: Understand and Master Git and GitHub".This section explains how...
Instructional Video2:27
Curated Video

The Complete Practical Docker Guide - Data Streams of the Process

Higher Ed
This video explains data streams of the process. This clip is from the chapter "Data Streams and Piping in Linux" of the series "The Complete Practical Docker Guide".This section focuses on data streams and piping in Linux.
Instructional Video7:40
Curated Video

Node.js API Masterclass with Express and MongoDB - HTTP Status Codes

Higher Ed
HTTP Intro - Headers, Body, Status Codes, etc: HTTP Status Codes This clip is from the chapter "HTTP Intro - Headers, Body, Status Codes, etc" of the series "Node.js API Masterclass with Express and MongoDB".This section is about Http &...
Instructional Video10:01
Curated Video

The Complete Ethical Hacking Bootcamp: Beginner To Advanced - Simple Keylogger

Higher Ed
This video teaches you to work with a simple keylogger. This clip is from the chapter "Developing a Keylogger" of the series "The Complete Ethical Hacking Bootcamp: Beginner To Advanced".In this section, you'll learn to develop a...
Instructional Video5:59
Curated Video

The Complete Guide to ASP.NET Core MVC (.NET 5) - Create Book and Validations

Higher Ed
In this video, we'll create Book and validations. This clip is from the chapter "Book List Razor Project" of the series "The Complete Guide to ASP.NET Core MVC (.NET 5)".In this section, let's look at book list Razor project.
Instructional Video4:44
Curated Video

The Complete Guide to ASP.NET Core MVC (.NET 5) - Product Upsert Action Part 2

Higher Ed
In this video, we'll look at product Upsert action part 2. This clip is from the chapter "Product CRUD" of the series "The Complete Guide to ASP.NET Core MVC (.NET 5)".In this section, let's look at product CRUD.
Instructional Video14:34
Curated Video

Selenium Python Automation Testing from Scratch and Frameworks - Building Reusable Utility for Logging

Higher Ed
This video demonstrates how to build reusable utility for logging. This clip is from the chapter "Part II-Logging and Generating HTML Reports in Python Framework" of the series "Selenium Python Automation Testing from Scratch and...
Instructional Video14:53
Curated Video

Next.js from Development to Deployment - Auth Context

Higher Ed
This video focusses on Auth Context. This clip is from the chapter "Authentication, JWT, and HttpOnly Cookies" of the series "Next.js from Development to Deployment: Build a Music Event Website".This section explains authentication, JWT,...
Instructional Video6:16
Curated Video

The Full Stack Web Development - Adding Todos To Redis

Higher Ed
Redis - The Cache Database: Adding Todos To Redis This clip is from the chapter "Redis - The Cache Database" of the series "The Full Stack Web Development".In this section, we look into Redis – part of other essential technology and it...
Instructional Video16:20
Curated Video

C++ Developer - Rethrowing Exceptions

Higher Ed
This video explains how to rethrow exceptions. This clip is from the chapter "Exceptions and Debugging" of the series "The Complete C++ Developer Course".This section explains exceptions and debugging in C++.
Instructional Video7:22
IDG TECHtalk

How to use zipapp to bundle Python applications

Higher Ed
Python programs can be difficult to bundle up and transport to other systems, because of the dependencies that need to travel with them. The zipapp module in Python, and related projects like Shiv, create bundles from Python apps -- and...
Instructional Video6:08
IDG TECHtalk

Easy error handling in R with purrr’s possibly

Higher Ed
See how the purrr package’s possibly() function helps you flag errors and keep going when applying a function over multiple objects in R.
Instructional Video9:51
Packt

User Registration and Password Encryption

Higher Ed
This video focuses on user registration and password encryption. This clip is from the chapter "Back-end User Authentication" of the series "MERN E-commerce from Scratch".This section focuses on back-end user authentication.
Instructional Video14:34
Packt

Parameterizing Selenium Tests with Cucumber

Higher Ed
This video explains how to parameterize Selenium tests with Cucumber. This clip is from the chapter "Cucumber Behavior Driven Data – Framework" of the series "Selenium WebDriver with Java - Basics to Advanced and Frameworks".This...
Instructional Video8:07
Packt

CompTIA Network+ Certification N10-007: The Total Course - Certificate Error Scenarios

Higher Ed
This video highlights issues that can arise when using certificates. This clip is from the chapter "Securing Transmission Control Protocol/Internet Protocol (TCP/IP)" of the series "CompTIA Network+ Certification N10-007: The Total...
Instructional Video4:10
Curated Video

AWS Solutions Architect Associate (SAA-C02) Exam Prep Course - 2021 UPDATED! - Launch Methods

Higher Ed
This video explores the various methods available to you so that you can select the right method for your design. This clip is from the chapter "Solutions Architect Chapter 9 - Auto Scaling Solutions" of the series "AWS Solutions...
Instructional Video11:08
Curated Video

.NET Core Microservices - Seed Users

Higher Ed
This video explains the concept of seed users. This clip is from the chapter "Identity Server" of the series ".NET Core Microservices - The Complete Guide (.NET 6 MVC)".In this section, you will learn about identity server.
Instructional Video6:21
Curated Video

.NET Core Microservices - Create Service Bus Processor

Higher Ed
This video explains how to create service bus processor. This clip is from the chapter "Order API" of the series ".NET Core Microservices - The Complete Guide (.NET 6 MVC)".In this section, you will learn about the Order API.
Instructional Video5:34
Curated Video

Multi-Paradigm Programming with Modern C++ - Modules in C++ 2a

Higher Ed
In this video, we learn about the biggest change to C++ in decades. • Writing our first module • Consuming the module • Visibility and reachability This clip is from the chapter "Structuring Projects in C++" of the series "Multi-Paradigm...
Instructional Video6:14
Curated Video

Complete Modern C++ - Project - Part VII (override and final specifier)

Higher Ed
This video explains the purpose of override and final specifier. This clip is from the chapter "Object-Oriented Programming" of the series "Complete Modern C++".In this section, you will learn about inheritance and will work on a project...
Instructional Video9:24
Curated Video

Complete Modern C++ - Constant Expressions - constexpr (C++11)

Higher Ed
In this video, you will learn how to write expressions that can be evaluated at compile time, thereby increasing the performance of your code. • Look at the QPainterPath documentation • Change drawing style on a custom widget based on...
Instructional Video4:16
Curated Video

C++ Standard Template Library in Practice - Console I/O - Read Input

Higher Ed
The user wants to be able to read input from the user onto a console. • Introduce the concept of std: :cin • Present an example program that uses these concepts This clip is from the chapter "I/O in C++" of the series "C++ Standard...