Hi, what do you want to do?
Curated Video
Learning Lodash 4.0 (Video 16)
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 - Passing By Value: Objects
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...
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...
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.
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...
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...
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.
r/>
This clip is from the chapter "Java Syntax" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we...
r/>
This clip is from the chapter "Java Syntax" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we...
Curated Video
Complete Java SE 8 Developer Bootcamp - Conditionals-Swtich
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,...
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,...
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
r/>
This clip is from the chapter "Java Syntax" of the series "Complete Java SE 8 Developer Bootcamp".In...
r/>
This clip is from the chapter "Java Syntax" of the series "Complete Java SE 8 Developer Bootcamp".In...
Curated Video
Complete Java SE 8 Developer Bootcamp - Java Memory Leaks
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...
r/>
This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer Bootcamp".In...
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.
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...
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...
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.
r/>
This...
r/>
This...
Curated Video
Complete Java SE 8 Developer Bootcamp - Sets
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...
r/>
This clip is from the chapter "Collections" of the series "Complete Java SE 8 Developer Bootcamp".The author introduces you to...
Curated Video
Learning Lodash 4.0 (Video 15)
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
Core Java Programming Course- Sorting a Line from a Text File
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...
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...
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.
r/>
This clip is from the chapter "More with Collections" of the series "Complete Java SE 8...
r/>
This clip is from the chapter "More with Collections" of the series "Complete Java SE 8...
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,...
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.
r/>
This clip is from the chapter "Static, Scope, and Garbage Collection" of the series "Complete Java SE 8 Developer Bootcamp".In this...
r/>
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 - Initializing Data
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...
r/>
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 - Default Constructor
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...
r/>
This clip is from the chapter "Introduction to Objects" of the series "Complete Java SE 8 Developer Bootcamp".Java is...
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.
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...
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...
Curated Video
Complete Java SE 8 Developer Bootcamp - Section Overview "Getting Started with Java"
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...
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...
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.
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:...
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:...