Instructional Video4:08
Curated Video

Complete Java SE 8 Developer Bootcamp - Lists

Higher Ed
A list is a collection that retains the order the objects were added to it (unless it is sorted). In addition it permits duplicate objects. Learn more about lists.
r/>
This clip is from the chapter "Collections" of the series...
Instructional Video8:05
Curated Video

Excel VBA Programming The Complete Guide - The Object Data Type

Higher Ed
A variable supports more than just primitive data types like numbers and strings. It can also be assigned to any object in the Excel Object Model -- a Worksheet, a Workbook, etc. The design allows for code to be tighter and leaner. In...
Instructional Video15:04
Packt

ES6 Aside: Object Property Shorthand and Destructuring

Higher Ed
Asynchronous Node.js (Weather App): ES6 Aside: Object Property Shorthand and Destructuring
<
br/>
This clip is from the chapter "Asynchronous Node.js (Weather App)" of the series "The Complete Node.js Developer Course (3rd...
Instructional Video7:50
Packt

Object Literals

Higher Ed
JavaScript Language Fundamentals: Object Literals
<
br/>
This clip is from the chapter "JavaScript Language Fundamentals" of the series "Modern JavaScript from the Beginning".In this section, you will learn the important...
Instructional Video4:47
Curated Video

C++ 20 (2a) New Features - std::format: Placeholders and Syntax

Higher Ed
This video shows formal syntax for formatting library mini language and how to use placeholders and placeholder IDs.

• Define simple text with integers and switch placeholders usin
g IDs
• Consider formal syntax of...
Instructional Video6:24
Curated Video

Excel VBA Programming The Complete Guide - Get Last Row of Data in Worksheet

Higher Ed
Daily reports will often have a fluctuating number of rows. In this lesson, we introduce a convenient strategy to identify the last row of data in a sheet --- starting at the bottom of the spreadsheet and navigating upwards.
r/> ...
Instructional Video6:40
Curated Video

Complete Java SE 8 Developer Bootcamp - JARs

Higher Ed
Learn how to create compressed files of applications and libraries called JARs.
r/>
This clip is from the chapter "Packages" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we learn to create packages to...
Instructional Video8:08
Curated Video

Complete Java SE 8 Developer Bootcamp - “this”-Part 1

Higher Ed
The author shows how we can use the “this” keyword for specific instance of a class that is in focus.
r/>
This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer...
Instructional Video5:04
Curated Video

Complete Java SE 8 Developer Bootcamp - Collections

Higher Ed
Learn the basic syntax for using a collection.
r/>
This clip is from the chapter "Collections" of the series "Complete Java SE 8 Developer Bootcamp".The author introduces you to collections, list, sets, queues, deques and maps:...
Instructional Video3:09
Curated Video

Complete Java SE 8 Developer Bootcamp - Common Array Mistakes

Higher Ed
Avoid beginner mistakes.<br/<br/>>

This clip is from the chapter "Arrays" of the series "Complete Java SE 8 Developer Bootcamp".In this section, author details benefits of using various types of arrays to store information.
Instructional Video8:14
Curated Video

Complete Java SE 8 Developer Bootcamp - DateTimeFormatter

Higher Ed
Learn to code with DateTimeFormatter to build date and time in custom manner.
r/>
This clip is from the chapter "Dates and Time" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we learn more about...
Instructional Video7:54
Curated Video

Complete Java SE 8 Developer Bootcamp - Installing Eclipse

Higher Ed
Walkthrough for the installation of Eclipse.
r/>
This clip is from the chapter "Welcome!" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we are introduced to the author and also learn more about the...
Instructional Video8:33
Curated Video

Bash Shell Scripting - "nohup" Command

Higher Ed
This video focusses on the "nohup" command.
r/>
This clip is from the chapter "Process Handling and Running Scripts" of the series "Mastering Bash Shell Scripting: Automate your daily tasks [Updated for 2021]".This section...
Instructional Video5:51
Curated Video

Multi-Paradigm Programming with Modern C++ - Entering Concepts

Higher Ed
Templates make poor interfaces: typename is a wildcard. Concepts let us set requirements for template parameters. Template writer can easily describe what’s expected of the user. Concepts make template interface good.

• About...
Instructional Video8:22
Curated Video

Complete Java SE 8 Developer Bootcamp - Enumerations (enum)

Higher Ed
Learn the syntax for enum; that allows us to create strongly typed label.
r/>
This clip is from the chapter "Java Syntax" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we learn more about conditionals,...
Instructional Video1:43
Curated Video

Complete Java SE 8 Developer Bootcamp - Course Overview

Higher Ed
Meet your author and also learn what this course covers.
r/>
This clip is from the chapter "Welcome!" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we are introduced to the author and also learn more...
Instructional Video8:49
Curated Video

Complete Java SE 8 Developer Bootcamp - LocalTime, LocalDateTime, and Period

Higher Ed
A look at three other immutable java.time types.<br/<br/>>

This clip is from the chapter "Dates and Time" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we learn more about immutable class to represent a date.
Instructional Video5:38
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 02 - Java Class and Object - First Look

Higher Ed
In this video, we will learn about Java class and object - first look.
r/>
This clip is from the chapter "Introduction to the Java Platform" of the series "Java Programming for Complete Beginners - Java 16".In this section, we...
Instructional Video4:58
Curated Video

Excel VBA Programming The Complete Guide - The String Data Type

Higher Ed
A string is a collection of characters --- in layman's terms, it's just text. In this lesson, we take a look at VBA's support for two types of strings -- variable-length and fixed-length -- as well as the advantages of both.
r/> ...
Instructional Video6:28
Curated Video

Excel VBA Programming The Complete Guide - Intro to Arrays

Higher Ed
In this section, we'll explore the array, the most popular data structure in computer science. An array is a sequenced collection of elements, each of which is assigned an index position. In this lesson, we create a fixed-size array of...
Instructional Video3:20
IDG TECHtalk

How Python's context managers help you clean up after yourself

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 Video12:30
Curated Video

Bash Shell Scripting- Basic syntaxes of while loop

Higher Ed
This video shows the basic syntaxes of the while loop.
r/>
This clip is from the chapter "Loops and loop control statements - Part 2" of the series "Complete Bash Shell Scripting".This section shows how to use loops and loop...
Instructional Video2:27
Curated Video

TypeScript for Beginners - Introduction - Objects and Arrays

Higher Ed
This video provides an overview of what you will learn in this section.
r/>
This clip is from the chapter "Objects and Arrays" of the series "TypeScript for Beginners".This section introduces you to objects and arrays and...
Instructional Video2:03
Curated Video

TypeScript for Beginners - Accessor Methods

Higher Ed
This video demonstrates how to work with accessor methods.
r/>
This clip is from the chapter "Access Modifiers, Encapsulation, and Static" of the series "TypeScript for Beginners".This section introduces you to access...