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...
Brainwaves Video Anthology
Richard Ovenden - The Bodleian Library - University of Oxford
Richard Ovenden has been Bodley’s Librarian (the senior Executive position of the Bodleian Libraries, University of Oxford) since 2014. Prior to that Richard held positions at Durham University Library, the House of Lords Library, the...
Curated Video
Learning Lodash 4.0 (Video 7)
Lodash was built to simplify JavaScript application development. It contains hundreds of methods built for the purpose of providing developers with a fast, reliable, cross-browser toolkit to write applications. With Lodash, you can...
Curated Video
Learning Lodash 4.0 (Video 26)
Lodash was built to simplify JavaScript application development. It contains hundreds of methods built for the purpose of providing developers with a fast, reliable, cross-browser toolkit to write applications. With Lodash, you can...
Curated Video
Learning Lodash 4.0 (Video 23)
Lodash was built to simplify JavaScript application development. It contains hundreds of methods built for the purpose of providing developers with a fast, reliable, cross-browser toolkit to write applications. With Lodash, you can...
Curated Video
Complete Java SE 8 Developer Bootcamp - “this”-Part 3
Learn how to use "this" to chain constructors together and the reasons why it exists. This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we learn...
Curated Video
Complete Java SE 8 Developer Bootcamp - Initializing Data
The author introduces the "constructor" as a means to initialize the state of an object. This clip is from the chapter "Introduction to Objects" of the series "Complete Java SE 8 Developer Bootcamp".Java is Object Oriented Programming...
Curated Video
Complete Java SE 8 Developer Bootcamp - Default Constructor
Learn about the benefits and possible consequences of default constructor provided by the compiler. This clip is from the chapter "Introduction to Objects" of the series "Complete Java SE 8 Developer Bootcamp".Java is Object Oriented...
Curated Video
Complete Java SE 8 Developer Bootcamp - Your First Java Program - Part 2 (Compilation and Execution)
The author covers the compilation and execution process of a Java program. 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 features...
Curated Video
Complete Java SE 8 Developer Bootcamp - Section Overview "Getting Started with Java"
Get an overview of getting started with Java. 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 features of Java programming language....
Curated Video
Complete Java SE 8 Developer Bootcamp - Interface: Part 3
Learn benefits of using interfaces. This clip is from the chapter "Abstract Classes and Interfaces" of the series "Complete Java SE 8 Developer Bootcamp".Create abstract classes and interfaces on getting familiar in this section.
Curated Video
Complete Java SE 8 Developer Bootcamp - When Arrays Are Not Enough
The difference between arrays and collections. 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 - Multi- Dimensional Arrays
A multi-dimensional array holds one or more arrays. 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.
Curated Video
Complete Java SE 8 Developer Bootcamp - Abstract Classes: Part 2
More examples of using abstract classes. This clip is from the chapter "Abstract Classes and Interfaces" of the series "Complete Java SE 8 Developer Bootcamp".Create abstract classes and interfaces on getting familiar in this section.
Curated Video
Complete Java SE 8 Developer Bootcamp - Installing the Java SE Development Kit 8 (JDK)
Installation of JDK, which is necessary for lab assignments. 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...
Curated Video
Learning Lodash 4.0 (Video 18)
Lodash was built to simplify JavaScript application development. It contains hundreds of methods built for the purpose of providing developers with a fast, reliable, cross-browser toolkit to write applications. With Lodash, you can...
Curated Video
Learning Lodash 4.0 (Video 17)
Lodash was built to simplify JavaScript application development. It contains hundreds of methods built for the purpose of providing developers with a fast, reliable, cross-browser toolkit to write applications. With Lodash, you can...
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...