Curated Video
Arduino OOP - Set Up the Traffic Light Class
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...
Curated Video
Arduino OOP - The Interface and Main Program (Help to Get Started)
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...
Curated Video
Arduino OOP - Application Example - Make Three LEDs Blink at Different Rates
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...
Packt
Set Up the Traffic Light Class
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...
Packt
The Interface and Main Program (Help to Get Started)
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...
Packt
Create a Header File for the Class
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...
Curated Video
Complete Java SE 8 Developer Bootcamp - Section Overview "Collections"
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
Curated Video
Complete Java SE 8 Developer Bootcamp - Section Overview "More with Collections"
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...
Curated Video
Creational Design Patterns in Modern C++ - Builder Implementation
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...
Curated Video
Creational Design Patterns in Modern C++ - Issues
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...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - While Loops
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...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Tuples
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...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - String Properties and Methods
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...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Requirement Files
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...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Name and Main
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...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Installing 3rd Party Packages
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...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Command Line Crash Course
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:...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Project: Required Packages
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...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Lambda Expressions
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...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Introduction to Modules
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...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Dictionary Comprehensions
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...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - Creating Your First Class
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...
Curated Video
Python for Everybody: The Ultimate Python 3 Bootcamp - (Windows Only) Command Line Crash Course
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...
Curated Video
Practical Python: Learn Python Basics Step by Step- Python 3 - How to Go Further from There
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...