Instructional Video8:30
Curated Video

Learning Lodash 4.0 (Video 16)

Higher Ed
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...
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.
r/>
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 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.
r/>
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 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.
r/>
This clip is from the chapter "Java Syntax" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we...
Instructional Video6:18
Curated Video

Complete Java SE 8 Developer Bootcamp - Conditionals-Swtich

Higher Ed
A switch is another syntax available when defining conditionals.
r/>
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 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
r/>
This clip is from the chapter "Java Syntax" of the series "Complete Java SE 8 Developer Bootcamp".In...
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.
r/>
This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer Bootcamp".In...
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.
r/>
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...
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.
r/>
This...
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.
r/>
This clip is from the chapter "Collections" of the series "Complete Java SE 8 Developer Bootcamp".The author introduces you to...
Instructional Video7:38
Curated Video

Learning Lodash 4.0 (Video 15)

Higher Ed
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...
Instructional Video6:06
Curated Video

Core Java Programming Course- Sorting a Line from a Text File

Higher Ed
This video demonstrates how to sort a line from a text file.
r/>
This clip is from the chapter "Working with Text Files (Apache Commons IO)" of the series "Learn How to Code: The Complete Core Java Programming Course".This...
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.
r/>
This clip is from the chapter "More with Collections" of the series "Complete Java SE 8...
Instructional Video8:45
Brainwaves Video Anthology

Richard Ovenden - The Bodleian Library - University of Oxford

Higher Ed
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,...
Instructional Video9:44
Curated Video

Learning Lodash 4.0 (Video 7)

Higher Ed
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...
Instructional Video7:23
Curated Video

Learning Lodash 4.0 (Video 26)

Higher Ed
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...
Instructional Video11:33
Curated Video

Learning Lodash 4.0 (Video 23)

Higher Ed
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...
Instructional Video6:11
Curated Video

Complete Java SE 8 Developer Bootcamp - “this”-Part 3

Higher Ed
Learn how to use "this" to chain constructors together and the reasons why it exists.
r/>
This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer Bootcamp".In this...
Instructional Video6:36
Curated Video

Complete Java SE 8 Developer Bootcamp - Initializing Data

Higher Ed
The author introduces the "constructor" as a means to initialize the state of an object.
r/>
This clip is from the chapter "Introduction to Objects" of the series "Complete Java SE 8 Developer Bootcamp".Java is Object Oriented...
Instructional Video4:15
Curated Video

Complete Java SE 8 Developer Bootcamp - Default Constructor

Higher Ed
Learn about the benefits and possible consequences of default constructor provided by the compiler.
r/>
This clip is from the chapter "Introduction to Objects" of the series "Complete Java SE 8 Developer Bootcamp".Java is...
Instructional Video4:55
Curated Video

Complete Java SE 8 Developer Bootcamp - Your First Java Program - Part 2 (Compilation and Execution)

Higher Ed
The author covers the compilation and execution process of a Java program.
r/>
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...
Instructional Video0:26
Curated Video

Complete Java SE 8 Developer Bootcamp - Section Overview "Getting Started with Java"

Higher Ed
Get an overview of getting started with Java.
r/>
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...
Instructional Video6:27
Curated Video

Complete Java SE 8 Developer Bootcamp - Interface: Part 3

Higher Ed
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.
Instructional Video3:36
Curated Video

Complete Java SE 8 Developer Bootcamp - When Arrays Are Not Enough

Higher Ed
The difference between arrays and collections.
r/>
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:...