Curated Video
Complete Java SE 8 Developer Bootcamp - Comparable
The author implements the Comparable interface as one option for providing this information. This clip is from the chapter "More with Collections" of the series "Complete Java SE 8 Developer Bootcamp".In this section, learn more about...
Curated Video
Complete Java SE 8 Developer Bootcamp - Queues
A queue is a FIFO collection (first in, first out). Items are added to the tail and removed from the head. This clip is from the chapter "Collections" of the series "Complete Java SE 8 Developer Bootcamp".The author introduces you to...
Curated Video
Complete Java SE 8 Developer Bootcamp - Deques
Learn about double-ended queues that allow objects to be added and removed either from head or tail. This clip is from the chapter "Collections" of the series "Complete Java SE 8 Developer Bootcamp".The author introduces you to...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Python 2 Versus Python 3
Learn the difference between Python 2 and Python 3, and why you don't need to learn Python 2 anymore. This clip is from the chapter "Introduction" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".This section gives us...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Interactive Python
A better way to write Python in your shell. This clip is from the chapter "Advanced Python" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".This section helps understand about OOP, classes, class interface, and so...
Curated Video
Practical Python: Learn Python Basics Step by Step- Python 3 - Best Practices When Writing Python Code
In this video, the author suggests a few tips to follow while writing Python codes. This clip is from the chapter "Conclusion" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this section, the author talks...
Curated Video
Practical Python: Learn Python Basics Step by Step- Python 3 - Welcome!
In the video, the author gives an overview of Python and the topics that will be covered in the course. This clip is from the chapter "Introduction" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".In this...
Curated Video
Creational Design Patterns in Modern C++ - Meyer's Singleton
This video demonstrates how to implement the Meyer’s singleton. This clip is from the chapter "Singleton" of the series "Creational Design Patterns in Modern C++".This section provides an overview of logger classes, multithreading,...
Curated Video
Creational Design Patterns in Modern C++ - Clock Class
This video highlights an example that does not require a singleton implementation for singularity. This clip is from the chapter "Singleton" of the series "Creational Design Patterns in Modern C++".This section provides an overview of...
Curated Video
Complete Java SE 8 Developer Bootcamp - Section Overview "Strings"
Overview of the string object. 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 - The Collection Interface
The most general interface that can be used with many collection classes (excluding maps). 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
Complete Java SE 8 Developer Bootcamp - The Exception Object
Learn more about exception which is subtype of throwable, with methods for learning about what went wrong during the execution of a program. This clip is from the chapter "Exception Handling" of the series "Complete Java SE 8 Developer...
Curated Video
Complete Java SE 8 Developer Bootcamp - Iterator
An iterator provides a polymorphic way of looping through 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,...
Curated Video
Complete Java SE 8 Developer Bootcamp - Lambda Expressions
A lambda expression allows us to use a terse syntax to define the implementation of a functional interface. This clip is from the chapter "Lambda Expressions and Static Imports" of the series "Complete Java SE 8 Developer Bootcamp".In...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Running Python Code
There are a couple of different ways to run your Python code on your computer. We'll explore how to do just that in this lesson. This clip is from the chapter "Introduction" of the series "Python for Everybody: The Ultimate Python 3...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Python Data Types
An introduction to Python data types. This is vital to know. In this lesson, I'll briefly go over the most common data types you'll use every day before we dive into individual data types in their own videos. This clip is from the...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - None
A Python variable walks into a bar and asks a stranger, "How's it going today?". The stranger turns to the variable and says, "None ya business!". Humor helps make learning more fun! This clip is from the chapter "Beginner-friendly...
Curated Video
Classes and Objects with JavaScript
Classes and Objects provide a convenient framework for solving real-world problems with code. Mark will demonstrate JavaScript implementation of classes and object in this video.
Curated Video
C++ Developer - Smart Pointers
This video explains smart pointers. This clip is from the chapter "Templates, the Standard Template Library (STL), and Other Skills" of the series "The Complete C++ Developer Course".null
Curated Video
C++ Developer - Const Correctness
This video focuses on Const correctness. This clip is from the chapter "Pointers" of the series "The Complete C++ Developer Course".This section discusses pointers in C++.
Curated Video
Creational Design Patterns in Modern C++ - Lazy Instantiation
This video demonstrates how to perform a lazy instantiation. This clip is from the chapter "Singleton" of the series "Creational Design Patterns in Modern C++".This section provides an overview of logger classes, multithreading,...
Curated Video
Complete Java SE 8 Developer Bootcamp - Getters and Setters: Part 2
Learn the benefits of 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 Java course.
Curated Video
Complete Java SE 8 Developer Bootcamp - Encapsulation and Data Hiding
Learn to design flexible and robust programs with encapsulation feature. 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 Java...
Curated Video
Complete Java SE 8 Developer Bootcamp - Section Overview "Java Syntax"
The author introduces various Java syntax’s. 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 enumeration.