Curated Video
Complete Java SE 8 Developer Bootcamp - Creating Exceptions
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
Packt
Examples on Handling Pop-ups with Modified WebDriver Uniform Resource Locator (URL)
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...
Packt
Observer Pattern
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...
IDG TECHtalk
Smart Go: Introduction to the Go language
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...
Curated Video
Complete Java SE 8 Developer Bootcamp - Passing By Value: Objects
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...
Curated Video
Complete Java SE 8 Developer Bootcamp - Operators: Part 2
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,...
Curated Video
Complete Java SE 8 Developer Bootcamp - Operators: Part 1
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...
Curated Video
Complete Java SE 8 Developer Bootcamp - Conditionals-Swtich
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...
Curated Video
Complete Java SE 8 Developer Bootcamp - Conditionals-If / Else If / Else
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,...
Curated Video
Complete Java SE 8 Developer Bootcamp - Java Memory Leaks
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,...
Curated Video
Complete Java SE 8 Developer Bootcamp - Your First Java Program - Part 1 (Code)
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...
Curated Video
Complete Java SE 8 Developer Bootcamp - Unchecked (Runtime) vs. Checked Exceptions
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...
Curated Video
Complete Java SE 8 Developer Bootcamp - Sets
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,...
Curated Video
CompTIA Security+ Certification SY0-601: The Total Course - Python Scripts
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...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 06 - Play and Learn with Planet Class
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...
Curated Video
Migrating to Angular 2 (Video 16)
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,...
Language Tree
Foundational Literacy: Syntax, Part 1
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.
Curated Video
The Full Stack Web Development - Getting Started With JavaScript
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,...
Curated Video
The Full Stack Web Development - Getting Started With CSS
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...
Curated Video
Bash Shell Scripting- One-time task execution with at | scheduling job with at command to execute once
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...
Curated Video
Complete Java SE 8 Developer Bootcamp - Comparator
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...
Curated Video
Bash Shell Scripting- How to use awk command / script in shell scripts
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
IDG TECHtalk
Cython's new pure Python syntax: Faster Python made easier
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...
IDG TECHtalk
Creating constant values in Go with the const keyword | Smart Go
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...