Instructional Video2:17
Curated Video

Complete Java SE 8 Developer Bootcamp - Creating Exceptions

Higher Ed
Learn how to create and throw custom exceptions in your applications. This clip is from the chapter "Exception Handling" of the series "Complete Java SE 8 Developer Bootcamp".null
Instructional Video6:49
Packt

Examples on Handling Pop-ups with Modified WebDriver Uniform Resource Locator (URL)

Higher Ed
This video presents examples on handling pop- ups with the modified WebDriver URL. This clip is from the chapter "File Uploading (AUTO IT) and Downloading with Selenium" of the series "Selenium WebDriver with Java - Basics to Advanced...
Instructional Video16:02
Packt

Observer Pattern

Higher Ed
JavaScript Patterns: Observer Pattern This clip is from the chapter "JavaScript Patterns" of the series "Modern JavaScript from the Beginning".In this section, you will learn what JavaScript patterns are, and the various JavaScript...
Instructional Video2:18
IDG TECHtalk

Smart Go: Introduction to the Go language

Higher Ed
The Go language, created by folks at Google, has been with us for a decade and is the basis for many important enterprise projects such as Docker and Kubernetes. Watch a simple Go program in action to get an idea of what it's like to...
Instructional Video4:56
Curated Video

Complete Java SE 8 Developer Bootcamp - Passing By Value: Objects

Higher Ed
We look into further details of passing arguments, with objects, including Strings. This clip is from the chapter "Strings" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you learn to handle strings and pass by...
Instructional Video5:28
Curated Video

Complete Java SE 8 Developer Bootcamp - Operators: Part 2

Higher Ed
More info on post/pre-increment operator and a discussion on the ternary operator. 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 Video11:18
Curated Video

Complete Java SE 8 Developer Bootcamp - Operators: Part 1

Higher Ed
Learn the different operators available to Java, and just as important as per the order of precedence. This clip is from the chapter "Java Syntax" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we learn more about...
Instructional Video6:18
Curated Video

Complete Java SE 8 Developer Bootcamp - Conditionals-Swtich

Higher Ed
A switch is another syntax available when defining conditionals. 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 and...
Instructional Video7:56
Curated Video

Complete Java SE 8 Developer Bootcamp - Conditionals-If / Else If / Else

Higher Ed
Learn more about conditionals that allow us to write blocks of code that are executed if a certain state is true or false This clip is from the chapter "Java Syntax" of the series "Complete Java SE 8 Developer Bootcamp".In this section,...
Instructional Video3:38
Curated Video

Complete Java SE 8 Developer Bootcamp - Java Memory Leaks

Higher Ed
The author demonstrates the mismanagement of garbage collection, unintentionally causing issues. This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer Bootcamp".In this section,...
Instructional Video13:01
Curated Video

Complete Java SE 8 Developer Bootcamp - Your First Java Program - Part 1 (Code)

Higher Ed
Learn about classes, methods, parameters/arguments, return types, and modifiers. This clip is from the chapter "Getting Started with Java" of the series "Complete Java SE 8 Developer Bootcamp".In this section, you get an overview of...
Instructional Video4:37
Curated Video

Complete Java SE 8 Developer Bootcamp - Unchecked (Runtime) vs. Checked Exceptions

Higher Ed
The compiler will enforce developers to write code that handles certain types of exceptions. These are known as "checked" exceptions. Others, which are not enforced, are known as "unchecked" or "runtime" exceptions. This clip is from the...
Instructional Video3:34
Curated Video

Complete Java SE 8 Developer Bootcamp - Sets

Higher Ed
Learn to handle sets collection for fast searching as it organizes data for the purpose. This clip is from the chapter "Collections" of the series "Complete Java SE 8 Developer Bootcamp".The author introduces you to collections, list,...
Instructional Video7:25
Curated Video

CompTIA Security+ Certification SY0-601: The Total Course - Python Scripts

Higher Ed
Python is a multi-platform case-sensitive scripting language that requires a Python interpreter to be installed. This clip is from the chapter "Tools of the Trade" of the series "CompTIA Security+ Certification SY0-601: The Total...
Instructional Video5:19
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 06 - Play and Learn with Planet Class

Higher Ed
In this video, we will play and learn with Planet class. 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 the Java...
Instructional Video6:44
Curated Video

Migrating to Angular 2 (Video 16)

Higher Ed
Angular 2 is a technical and conceptual overhaul of its hugely popular predecessor, AngularJS. This means that for developers who have built and maintained applications with AngularJS, and need to transition projects across to Angular 2,...
Instructional Video1:56
Language Tree

Foundational Literacy: Syntax, Part 1

K - 5th
This lesson on basic sentence syntax helps English learners understand how the order of words matters to be able to put together a sentence using a subject, adjective, verb and direct object.
Instructional Video12:43
Curated Video

The Full Stack Web Development - Getting Started With JavaScript

Higher Ed
Basic JavaScript Concepts: Getting Started With JavaScript This clip is from the chapter "Basic JavaScript Concepts" of the series "The Full Stack Web Development".In this section, we learn the basics of JavaScript programming variables,...
Instructional Video7:50
Curated Video

The Full Stack Web Development - Getting Started With CSS

Higher Ed
Styling with CSS3: Getting Started With CSS This clip is from the chapter "Styling with CSS3" of the series "The Full Stack Web Development".We move on to CSS3 and talk about positioning, gradients, transitions, pseudo classes. We will...
Instructional Video5:06
Curated Video

Bash Shell Scripting- One-time task execution with at | scheduling job with at command to execute once

Higher Ed
This video shows how to perform one-time task execution with at and how to schedule a job with at command to execute once. This clip is from the chapter "Scheduling jobs with at and crontab" of the series "Complete Bash Shell...
Instructional Video3:18
Curated Video

Complete Java SE 8 Developer Bootcamp - Comparator

Higher Ed
Another option for providing sorting information is to create a Comparator object which takes two objects and returns their order. This clip is from the chapter "More with Collections" of the series "Complete Java SE 8 Developer...
Instructional Video7:38
Curated Video

Bash Shell Scripting- How to use awk command / script in shell scripts

Higher Ed
This video shows how to use the awk command/script in shell scripts. This clip is from the chapter "AWK command and AWK scripting" of the series "Complete Bash Shell Scripting".This section covers AWK command and AWK scripting
Instructional Video8:14
IDG TECHtalk

Cython's new pure Python syntax: Faster Python made easier

Higher Ed
Cython compiles Python to C for speed, but has traditionally used a cumbersome custom syntax. Learn in this video about Cython's "pure Python" mode, a way to use Cython with regular Python syntax so you can continue to use your existing...
Instructional Video3:47
IDG TECHtalk

Creating constant values in Go with the const keyword | Smart Go

Higher Ed
The const keyword in Go lets you create values that are immutable across the lifetime of your program. But Go consts behave a little differently from similar features in other languages. Learn how consts work in Go, and how to use them...