NASA
Earth, Sun from Moon's South Pole
This visualization shows the unusual motions of Earth and the Sun as viewed from the South Pole of the Moon. The animation compresses three months (a little over three lunar days) into two minutes. The virtual camera is on the rim of...
Curated Video
Complete Java SE 8 Developer Bootcamp - String Operations and Operators
Learn the most common methods and operations available to 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 value features of...
Curated Video
Complete Java SE 8 Developer Bootcamp - Getters and Setters: Part 1
Getter and setters are a strategy and convention for applying encapsulation. This clip is from the chapter "Encapsulation" of the series "Complete Java SE 8 Developer Bootcamp".In this section, the author covers encapsulation as part of...
Curated Video
Complete Java SE 8 Developer Bootcamp - Loops
Conditionals are one type of control structure. Another type allows us to continuously execute a block of a code while a condition is true. This clip is from the chapter "Java Syntax" of the series "Complete Java SE 8 Developer...
Curated Video
Complete Java SE 8 Developer Bootcamp - Coding Standards
Learn the conventions that most Java developers use when writing applications. This clip is from the chapter "Java Conventions and Primitives" of the series "Complete Java SE 8 Developer Bootcamp".This section gives brief overview on...
Curated Video
Complete Java SE 8 Developer Bootcamp - Section Overview "Introduction to Objects"
An overview of the topics covered in this section. This clip is from the chapter "Introduction to Objects" of the series "Complete Java SE 8 Developer Bootcamp".Java is Object Oriented Programming which uses stack & heap, objects and...
Curated Video
Complete Java SE 8 Developer Bootcamp - Limitations of Collections
Collections are unable to store primitives. However, the Java SE API provides "wrapper" classes which enable primitive values to be added to a collection. This clip is from the chapter "More with Collections" of the series "Complete Java...
Curated Video
Complete Java SE 8 Developer Bootcamp - Interfaces: Part 1
Learn more about interfaces, which define a role that a class can fulfill. Like abstract classes, an interface enables objects to be treated polymorphically. This clip is from the chapter "Abstract Classes and Interfaces" of the series...
Curated Video
Complete Java SE 8 Developer Bootcamp - Throwable
A Throwable is an object that contains error or exception information. This clip is from the chapter "Exception Handling" of the series "Complete Java SE 8 Developer Bootcamp".null
Curated Video
Complete Java SE 8 Developer Bootcamp - Varargs
Varargs allows methods to take zero or more objects. 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...
Curated Video
Complete Java SE 8 Developer Bootcamp - Arrays
Arrays are capable of holding multiple primitives and objects that are of same polymorphic type. This clip is from the chapter "Arrays" of the series "Complete Java SE 8 Developer Bootcamp".In this section, author details benefits of...
Curated Video
Apache Maven Beginner to Guru - System Requirements
This video explains the system requirements for Apache Maven. This clip is from the chapter "Getting Started" of the series "Apache Maven: Beginner to Guru".This section highlights the system requirements for Apache Maven, environment...
Curated Video
Java Programming for Complete Beginners - Java 16 - Step 03 - Writing Multiplication Table Java Program with Eclipse
In this video, we will learn about writing multiplication table Java program with Eclipse. This clip is from the chapter "Introduction to Eclipse - First Java Project" of the series "Java Programming for Complete Beginners - Java 16".In...
Physics Girl
Craziest eclipses in the solar system
A total solar eclipse passed across North America on August 21, 2017. Are there other total solar eclipses in the solar system?
Curated Video
Complete Java SE 8 Developer Bootcamp - Pass By Value: Primitives
This video details how primitive arguments are handled in Java. 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 value features of Java.
Curated Video
Complete Java SE 8 Developer Bootcamp - Finally Block
Finally is an optional part of a try/catch block, which ensures that code will be run in any circumstance. This clip is from the chapter "Exception Handling" of the series "Complete Java SE 8 Developer Bootcamp".null
Curated Video
Complete Java SE 8 Developer Bootcamp - Section Overview "Exception Handling"
Learn more on exception handling. This clip is from the chapter "Exception Handling" of the series "Complete Java SE 8 Developer Bootcamp".null
Curated Video
Complete Java SE 8 Developer Bootcamp - Lists
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. This clip is from the chapter "Collections" of the series "Complete Java...
Curated Video
Java Programming for Complete Beginners - Java 16 - Eclipse Tip - Exploring Java API
In this video, we will learn about exploring Java API. This clip is from the chapter "Reference Types" of the series "Java Programming for Complete Beginners - Java 16".In this section, we will look into string class and understand...
NASA
NASA | LRO's Diviner Takes the Moon's Temperature
During the June 2011 lunar eclipse, scientists will be able to get a unique view of the moon. While the sun is blocked by the Earth, LRO's Diviner instrument will take the temperature on the lunar surface. Since different rock sizes cool...
Curated Video
Complete Java SE 8 Developer Bootcamp - JARs
Learn how to create compressed files of applications and libraries called JARs. 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...
Curated Video
Complete Java SE 8 Developer Bootcamp - “this”-Part 1
The author shows how we can use the “this” keyword for specific instance of a class that is in focus. This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer Bootcamp".In this...
Curated Video
Complete Java SE 8 Developer Bootcamp - Collections
Learn the basic syntax for using a collection. 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: - types of...
Curated Video
Complete Java SE 8 Developer Bootcamp - Common Array Mistakes
Avoid beginner mistakes. 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.