Curated Video
Creational Design Patterns in Modern C++ - Destruction Policies
This video highlights the issues with the lazy instantiation and demonstrates how to resolve them. This clip is from the chapter "Singleton" of the series "Creational Design Patterns in Modern C++".This section provides an overview of...
Curated Video
Creational Design Patterns in Modern C++ - Singleton Issues
This video highlights the issues with 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, patterns, and...
Curated Video
Complete Java SE 8 Developer Bootcamp - Section Overview "Java Conventions and Primitives"
A brief overview on Java conventions and primitives. 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 coding standards, comments....
Curated Video
Complete Java SE 8 Developer Bootcamp - “this”-Part 2
Here, we learn more features of the “this” keyword. 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 to use static variables and...
Curated Video
Complete Java SE 8 Developer Bootcamp - Generics and Autoboxing
These two features help simplify some of the limitations of collection. This clip is from the chapter "More with Collections" of the series "Complete Java SE 8 Developer Bootcamp".In this section, learn more about limitations of...
Curated Video
Complete Java SE 8 Developer Bootcamp - LocalDate
The author explains a new java.time package. This clip is from the chapter "Dates and Time" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we learn more about immutable class to represent a date.
Curated Video
Complete Java SE 8 Developer Bootcamp - Section Overview "Lambda Expressions and Static Imports"
The author introduces you to Lambda expressions. This clip is from the chapter "Lambda Expressions and Static Imports" of the series "Complete Java SE 8 Developer Bootcamp".In this section, we use marker and functional interface to...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Multiple Comparison Operators
It's possible in Python to use multiple comparison operators at the same time. This clip is from the chapter "Intermediate Python" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".This section helps give an overview...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Sets
A set is a unique Python data type that only allows you to store unique items, no duplicates allowed! But there's a catch…*cue scary music*. This clip is from the chapter "Beginner-friendly Python" of the series "Python for Everybody:...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Print Formatting
Being able to add variables to strings and print it out is very important in Python and Python debugging. This lesson will show you the old Python 3.5 way, and the newer Python 3.6+ way to format your sentences. This clip is from the...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Break and Continue
Sometimes you want to loop over a list of items, perform some logic, and if you find the answer you're looking for, you want to exit the loop or skip to the next iterations. This clip is from the chapter "Intermediate Python" of the...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Basic Arithmetic
This is fancy talk for "math". Python 3 has a very simple way of performing simple math equations. Don't worry, this isn't calculus. This clip is from the chapter "Beginner-friendly Python" of the series "Python for Everybody: The...
Curated Video
Practical Python: Learn Python Basics Step by Step- Python 3 - Python Level 1: Exercises - Solution
In this video, the author shows the answers of the exercises given in the previous video. This clip is from the chapter "Python Basics- Level 1" of the series "Practical Python: Learn Python Basics Step by Step- Python 3".This section is...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Type Casting
All user input comes in as a string. But you can't compare apples to oranges, even if they're the same shape. Type casting lets us convert apples into oranges so we can make an accurate comparison. This clip is from the chapter...
Curated Video
C++ Developer - Function Prototypes and Definitions
This video explains the function prototypes and explains how to define functions. This clip is from the chapter "Functions" of the series "The Complete C++ Developer Course".This section discusses the various functions in C++.
Curated Video
C++ Developer - Standard Template Library (STL) - Part 2
This is the second part of a two-part video that explains STL. 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
Creational Design Patterns in Modern C++ - SQL Server Database Classes
This video demonstrates how to add the SQL server database classes and explains their usage. This clip is from the chapter "Abstract Factory" of the series "Creational Design Patterns in Modern C++".This section focuses on the basic...
Curated Video
Creational Design Patterns in Modern C++ - Multithreading Issues
This video demonstrates how to solve the problem of using a singleton in a multithreading application. This clip is from the chapter "Singleton" of the series "Creational Design Patterns in Modern C++".This section provides an overview...
Curated Video
Creational Design Patterns in Modern C++ - Registry of Singletons - Part I
This video is the first part of the two-part video that demonstrates how to implement a registry of singletons. This clip is from the chapter "Singleton" of the series "Creational Design Patterns in Modern C++".This section provides an...
Curated Video
Selenium Python Automation Testing from Scratch and Frameworks - OOP Principles-Classes and Objects
This video explains classes and objects. This clip is from the chapter "Understanding Object-Oriented Principles of Python" of the series "Selenium Python Automation Testing from Scratch and Frameworks".This section explains OOPs...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Strings (Sequences)
Let's learn about a "sequence". The first one is a string. Not like a knitting string, but more like a sentence. Confused? This lesson will clarify everything. This clip is from the chapter "Beginner-friendly Python" of the series...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Scope
Sometimes your variables work in a function, sometimes they don't. What's up with that? This is a feature called scope in Python, and it's essential to know how it works. This clip is from the chapter "Intermediate Python" of the series...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Project: Second Detection
Detect more objects in images! This is our second set of results. This clip is from the chapter "Final Project: Create an Image Recognition Application" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".In this...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Project: Project: First Detection
Detect objects in images! This is our first set of results. This clip is from the chapter "Final Project: Create an Image Recognition Application" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".In this section, you...