Instructional Video6:03
Curated Video

Learning CSS (Video 29)

Higher Ed
As a modern day web designer, it is very critical for you to prepare for the CSS3 world we live in. A major challenge that designers face in their day-to-day life is making their designs stand out from the rest and ensuring they...
Instructional Video13:45
Packt

Rating Component

Higher Ed
This video focuses on the rating component.<br/<br/>>

This clip is from the chapter "Starting the Front-end" of the series "MERN E-commerce from Scratch".This section explains the concept of front-end.
Instructional Video15:58
Curated Video

Power BI Masterclass - A Quick Introduction to Publishing Reports to the Power BI Service

Higher Ed
In this video, let's take a quick introduction to publishing reports to the Power BI Service.
r/>
This clip is from the chapter "DAX, R, and Gateways" of the series "Power BI Masterclass".In this section, we will be covering...
Instructional Video3:08
IDG TECHtalk

Variable formatting with the fmt package | Smart Go

Higher Ed
Learn how to use Go's fmt library to control the formatting of variables, both when just printing to the console and when rendering new strings from other variables within a program.
Instructional Video3:26
Curated Video

Active Directory with Windows Server 2016 - AD Site Links

Higher Ed
In this video, learn about the important considerations when creating site links, how to use site links to increase performance, and how to assign site link prioritization.
r/>
This clip is from the chapter "Managing and...
Instructional Video3:34
Curated Video

AZ-204 Developing for Microsoft Azure Exam Prep - Data Encryption and Storage Accounts

Higher Ed
This video focuses on data encryption and storage accounts.<br/<br/>>

This clip is from the chapter "AZ-204 Secure Data" of the series "AZ-204 Developing for Microsoft Azure Exam Prep".This section focuses on AZ-204 secure data.
Instructional Video5:55
Curated Video

AZ-104: Microsoft Azure Administrator Full Course - Azure AD Connect

Higher Ed
In this video, we will cover Azure AD Connect.
r/>
This clip is from the chapter "Identity" of the series "AZ-104: Microsoft Azure Administrator Full Course".This section introduces identities and Azure Active Directory...
Instructional Video9:32
Curated Video

Multi-Paradigm Programming with Modern C++ - Constructors and Destructors

Higher Ed
Constructors, destructors, and assignment operators are all about object’s lifetime. Sometimes they are automatically generated, sometimes not. This video, provides instructions on how to deal with them.

• The rule of zero:...
Instructional Video5:00
Curated Video

Complete Git Guide: Understand and Master Git and GitHub - What is Tracking Branch?

Higher Ed
This video explains the concept of tracking branch in Git.
r/>
This clip is from the chapter "Git Push, Fetch, and Pull" of the series "Complete Git Guide: Understand and Master Git and GitHub".This section provides an overview...
Instructional Video8:30
Curated Video

Apache Maven Beginner to Guru - Using Spring Repositories

Higher Ed
This video demonstrates how to use Spring repositories.<br/<br/>>

This clip is from the chapter "Maven Repositories" of the series "Apache Maven: Beginner to Guru".This section provides an explanation of Maven repositories.
Instructional Video3:14
Curated Video

Spring Framework Master Class - Java Spring the Modern Way - Step 5-Code Generation

Higher Ed
This video demonstrates how to generate a code.
r/>
This clip is from the chapter "Basic Tools and Framework - Eclipse in 5 steps" of the series "Spring Framework Master Class - Java Spring the Modern Way".This section presents...
Instructional Video5:14
Curated Video

Spring Framework Master Class - Java Spring the Modern Way - Step 1-Creating a Java Project

Higher Ed
This video demonstrates how to create a Java project.
r/>
This clip is from the chapter "Basic Tools and Framework - Eclipse in 5 steps" of the series "Spring Framework Master Class - Java Spring the Modern Way".This section...
Instructional Video3:18
Curated Video

Java Programming for Complete Beginners - Java 16 - Troubleshooting Eclipse - Configuring Java JDK

Higher Ed
This video gives an overview of the entire section.
r/>
This clip is from the chapter "Appendix - Troubleshooting Eclipse and Java" of the series "Java Programming for Complete Beginners - Java 16".This section focuses on the...
Instructional Video8:17
Curated Video

Beginning Python (Video 9)

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...
Instructional Video4:08
IDG TECHtalk

R tip: Quick lookup tables with named vectors

Higher Ed
Leave a comment and let us know what tips you’d like to see in a future Do More With R video.
Instructional Video6:33
IDG TECHtalk

Building a toy social network with Python, Part 3: Logins and user tokens

Higher Ed
In Part 3 of this ongoing series, we create the components needed to allow users to log in and be identified by the system, and show how to save passwords in the system by one-way hashing them, not storing them as insecure plaintext.
Instructional Video3:16
IDG TECHtalk

Using Python dataclasses to simplify managing class objects

Higher Ed
The Numba library for Python makes numerical code faster by way of a just-in-time compiler, as an alternative (or complement) to NumPy and Cython. Often all you need to make existing code faster is a single line of code, with Numba's...
Instructional Video11:52
Packt

ES6 Aside: Default Function Parameters

Higher Ed
Accessing API from Browser: ES6 Aside: Default Function Parameters
<
br/>
This clip is from the chapter "Accessing API from Browser" of the series "The Complete Node.js Developer Course (3rd Edition)".In this section, you will learn...
Instructional Video7:22
Curated Video

AZ-204 Developing for Microsoft Azure Exam Prep - DEMO: Creating a Virtual Machine (VM) in PowerShell

Higher Ed
This video explains how to create a VM in PowerShell.
r/>
This clip is from the chapter "AZ-204 Virtual Machines (VMs)" of the series "AZ-204 Developing for Microsoft Azure Exam Prep".This section introduces you to 2G and...
Instructional Video8:14
Curated Video

AZ-204 Developing for Microsoft Azure Exam Prep - Azure Storage Queues

Higher Ed
This video explains Azure storage queues.
r/>
This clip is from the chapter "AZ-204 Application Messaging" of the series "AZ-204 Developing for Microsoft Azure Exam Prep".This section provides an introduction to application...
Instructional Video5:53
Curated Video

AZ-204 Developing for Microsoft Azure Exam Prep - Automatic Scaling of Azure App Service

Higher Ed
This video explains how to automatically scale Azure App Service.
r/>
This clip is from the chapter "AZ-204 Scaling Applications and Services" of the series "AZ-204 Developing for Microsoft Azure Exam Prep".This section...
Instructional Video12:31
Curated Video

AWS Solutions Architect Associate (SAA-C02) Exam Prep Course - 2021 UPDATED! - Auto Scaling Configuration Lab

Higher Ed
This video explains how to configure and manage auto scaling so that you can design it.
r/>
This clip is from the chapter "Solutions Architect Chapter 9 - Auto Scaling Solutions" of the series "AWS Solutions Architect Associate...
Instructional Video6:31
Curated Video

Multi-Paradigm Programming with Modern C++ - Using Lambdas

Higher Ed
In this coding demo, we use lambda expressions to implement callbacks, for adding logger capability to the server, without increasing coupling.

• About call
backs
• Std
::function
• Using callbacks to implement...
Instructional Video7:08
Curated Video

Complete Modern C++ - Deleter

Higher Ed
We can store any kind of resource in a smart pointer, but it needs to be released correctly. This can be done through a deleter. This video explains the concept and its usage.
r/>
This clip is from the chapter "Memory...