Instructional Video15:16
Curated Video

Arduino OOP - Set Up the Traffic Light Class

Higher Ed
In this video, you will learn how to set up the traffic light class. This clip is from the chapter "Your Turn - Traffic Light System" of the series "Arduino OOP — Object-Oriented Programming".In this section, we will work on the traffic...
Instructional Video4:35
Curated Video

Arduino OOP - The Interface and Main Program (Help to Get Started)

Higher Ed
In this video, we will cover the interface and main program (help to get started). This clip is from the chapter "Your Turn - Traffic Light System" of the series "Arduino OOP — Object-Oriented Programming".In this section, we will work...
Instructional Video5:40
Curated Video

Arduino OOP - Application Example - Make Three LEDs Blink at Different Rates

Higher Ed
In this video, we will work on an application example to make three LEDs blink at different rates. This clip is from the chapter "LEDBlinker - Use a Class Inside Another Class" of the series "Arduino OOP — Object-Oriented Programming".In...
Instructional Video15:16
Packt

Set Up the Traffic Light Class

Higher Ed
In this video, you will learn how to set up the traffic light class. This clip is from the chapter "Your Turn - Traffic Light System" of the series "Arduino OOP — Object-Oriented Programming".In this section, we will work on the traffic...
Instructional Video4:35
Packt

The Interface and Main Program (Help to Get Started)

Higher Ed
In this video, we will cover the interface and main program (help to get started). This clip is from the chapter "Your Turn - Traffic Light System" of the series "Arduino OOP — Object-Oriented Programming".In this section, we will work...
Instructional Video5:41
Packt

Create a Header File for the Class

Higher Ed
In this video, you will learn how to create a header file for the class. This clip is from the chapter "Organize the Class in a Clear Way" of the series "Arduino OOP — Object-Oriented Programming".In this section, you will learn how to...
Instructional Video0:22
Curated Video

Complete Java SE 8 Developer Bootcamp - Section Overview "Collections"

Higher Ed
An overview of the types of 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 collections
Instructional Video0:11
Curated Video

Complete Java SE 8 Developer Bootcamp - Section Overview "More with Collections"

Higher Ed
An overview on collections. 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 collections and various other operators for sorting...
Instructional Video6:02
Curated Video

Creational Design Patterns in Modern C++ - Builder Implementation

Higher Ed
This video demonstrates how to refactor the code to use the builder pattern. • Remove unnecessary signal and slot connections • Allow for saving the text file to anywhere on the system • Open any text file on the computer This clip is...
Instructional Video5:46
Curated Video

Creational Design Patterns in Modern C++ - Issues

Higher Ed
This video highlights the design issues with the file example. • Use access modifier “public” + keyword “slots” • Implement the function declaration like any other class method • Define the implementation like any other class method This...
Instructional Video3:11
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - While Loops

Higher Ed
A while loop is a loop that will do a thing while a condition is true. This is true in most languages, including Python 3. But be careful, they have a dark side! This clip is from the chapter "Intermediate Python" of the series "Python...
Instructional Video5:56
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Tuples

Higher Ed
Tuples are almost identical to lists. Except you can't edit them. They are immutable lists. This clip is from the chapter "Beginner-friendly Python" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".This section helps...
Instructional Video8:47
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - String Properties and Methods

Higher Ed
Strings are part of this thing called an "object". Objects have special features and pieces of data that come with them. This lesson will show you how to access that data and the special features. This clip is from the chapter...
Instructional Video3:51
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Requirement Files

Higher Ed
Requirement files are common in Python. It's a list of all your packages that your 3rd party project needs to operate. This clip is from the chapter "Advanced Python" of the series "Python for Everybody: The Ultimate Python 3...
Instructional Video7:20
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Name and Main

Higher Ed
Why does "Name and Main" sound like a steakhouse? It has nothing to do with steak. But it does have everything to do with imports and executing file data. This clip is from the chapter "Advanced Python" of the series "Python for...
Instructional Video4:19
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Installing 3rd Party Packages

Higher Ed
Python has one of the largest 3rd party ecosystems in the world. If you need something special, chances are someone has made an open source package already. Might as well use their code! This clip is from the chapter "Advanced Python" of...
Instructional Video5:41
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Command Line Crash Course

Higher Ed
Writing Python means you need to know some command line moves. We'll gently go over the most commonly used commands. Don't worry, it's not hard, I promise! This clip is from the chapter "Introduction" of the series "Python for Everybody:...
Instructional Video1:54
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Project: Required Packages

Higher Ed
New project. New requirements. Here's what we need to get up and running. 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...
Instructional Video3:31
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Lambda Expressions

Higher Ed
Functions in a single line of code! (Seriously, it's really cool!) 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 of various...
Instructional Video3:43
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Introduction to Modules

Higher Ed
Modules. Files. Modules. Files. Modules…you get the point. A module is basically just a Python file you can use from another Python file. This clip is from the chapter "Advanced Python" of the series "Python for Everybody: The Ultimate...
Instructional Video4:02
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Dictionary Comprehensions

Higher Ed
If you ever need to create a dictionary out of 2 lists (happens more than you'd think!), you might want to use a dictionary comprehension instead of writing all your dictionary key-value pairs manually. This clip is from the chapter...
Instructional Video2:28
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - Creating Your First Class

Higher Ed
Create your first Python class. We'll start small and work our way up to more advanced classes later. This clip is from the chapter "Advanced Python" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".This section helps...
Instructional Video4:04
Curated Video

Python for Everybody: The Ultimate Python 3 Bootcamp - (Windows Only) Command Line Crash Course

Higher Ed
Learn about the most commonly used commands on a Windows operating system. This clip is from the chapter "Introduction" of the series "Python for Everybody: The Ultimate Python 3 Bootcamp".This section gives us a basic understanding of...
Instructional Video1:05
Curated Video

Practical Python: Learn Python Basics Step by Step- Python 3 - How to Go Further from There

Higher Ed
This video shows you what and how to pursue further in Python after this course is over. 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...