Instructional Video7:54
Curated Video

Complete Java SE 8 Developer Bootcamp - Installing Eclipse

Higher Ed
Walkthrough for the installation of Eclipse. 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 topics this course...
Instructional Video8:33
Curated Video

Bash Shell Scripting - "nohup" Command

Higher Ed
This video focusses on the "nohup" command. 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 focuses on process...
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 concepts:...
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. 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, operators,...
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. 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 topics...
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. 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. 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 will look into...
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. This clip is...
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. 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 control statements.
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. This clip is from the chapter "Objects and Arrays" of the series "TypeScript for Beginners".This section introduces you to objects and arrays and demonstrates how to...
Instructional Video2:03
Curated Video

TypeScript for Beginners - Accessor Methods

Higher Ed
This video demonstrates how to work with accessor methods. This clip is from the chapter "Access Modifiers, Encapsulation, and Static" of the series "TypeScript for Beginners".This section introduces you to access modifiers,...
Instructional Video2:00
Curated Video

Learn and Master C Programming - Where To Go From Here...

Higher Ed
The author lays down the path for further steps to take after this course is completed. This clip is from the chapter "Where To Go From Here..." of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we...
Instructional Video6:56
Curated Video

Complete Java SE 8 Developer Bootcamp - Immutable Strings

Higher Ed
Here you'll learn why Strings are immutable and how we handle this restriction in our programs. This clip is from the chapter "Strings" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you learn to handle strings...
Instructional Video7:15
Curated Video

Complete Java SE 8 Developer Bootcamp - Break, Continue, and Labels

Higher Ed
This video defines the keywords that allow us to manipulate that flow. 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, operators, loops...
Instructional Video1:32
Curated Video

Complete Java SE 8 Developer Bootcamp - Sorting and Searching Collections

Higher Ed
Learn how collections can be sorted and searched through, with methods provided by the Collections class. This clip is from the chapter "More with Collections" of the series "Complete Java SE 8 Developer Bootcamp".In this section, learn...
Instructional Video0:26
Curated Video

Complete Java SE 8 Developer Bootcamp - Section Overview "Polymorphism"

Higher Ed
A brief overview on polymorphism. This clip is from the chapter "Polymorphism" of the series "Complete Java SE 8 Developer Bootcamp".The author introduces you to the unique property of polymorphism and its benefits.
Instructional Video7:19
Curated Video

Excel VBA Programming The Complete Guide - Intro to Error Handling

Higher Ed
Programmers of all experience levels make mistakes --- it's part of the job. Error handling is the ability to avoid errors in our code by catching them before they happen. In this lesson, we discuss some common errors we can run into in...
Instructional Video4:49
Curated Video

Excel VBA Programming The Complete Guide - Alternate Syntax for Fixed-Size Arrays

Higher Ed
The LowerBound To UpperBound syntax can be used when declaring an array to modify the starting and ending index position. In this lesson, we declare an array of 6 whole numbers. This clip is from the chapter "Arrays" of the series "Excel...
Instructional Video11:02
Curated Video

The Complete Java Developer Course: From Beginner to Master - Saying "Hello" to Java

Higher Ed
This video demonstrates the basic "Hello" in the Java programming language. This clip is from the chapter "Introducing Java" of the series "The Complete Java Developer Course: From Beginner to Master".This section introduces you to the...
Instructional Video5:11
Curated Video

The Full Stack Web Development - Getting Started With Markdown

Higher Ed
Markdown- The formatting markup language: Getting Started With Markdown This clip is from the chapter "Markdown- The formatting markup language" of the series "The Full Stack Web Development".Markdown is a markup language very simple to...
Instructional Video5:03
Curated Video

Complete Java SE 8 Developer Bootcamp - Classpath

Higher Ed
Learn how to set a classpath which defines where classes can be found for compilation and execution. This clip is from the chapter "Packages" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we learn to create...
Instructional Video0:17
Curated Video

Complete Java SE 8 Developer Bootcamp - Section Overview "Packages"

Higher Ed
Overview of packages in this section. 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 avoid name collision, define the classpath to access...