Programming Electronics Academy
Things to Think About When Choosing a Library: Arduino Course 6.3
A look at different criteria to consider when choosing a code library for Arduino.
Programming Electronics Academy
If with Button: Arduino Course 5.2
Using a button and if statement with Arduino.
APMonitor
Python π Input
Input simply requests information from the person using the computer. By default the input value is stored as a string so if you're doing a math equation you need to turn it into an integer or float. In an egg temperature controller,...
Programming Electronics Academy
Using the Same Input to Trigger Two Arduinos
If you ever have a project using two or more Arduinos, it's likely you'll want them to work together. Say for example you have one Arduino connected to an LCD shield, and another Arduino controlling an LED matrix. You want both to do...
Brian McLogan
What do I have to know to graph the tangent and cotangent function
π Learn the basics of graphing a tangent and a cotangent function. To plot the tangent and the cotangent graph we choose a set of points and form a table of values with which we plot the points on the x-y coordinate axis to obtain the...
Brian McLogan
Learn how to determine the domain and range from a table and from a graph
π functions are the possible output values (y-values) of the function. To find the domain of a function from a table we list out the set of the input values and for the range we list out the set of output values. To find the domain and...
Brian McLogan
What are zeros of a polynomial
π Learn about zeros and multiplicity. The zeroes of a polynomial expression are the values of x for which the graph of the function crosses the x-axis. They are the values of the variable for which the polynomial equals 0. The...
Curated Video
Learning PHP 7 (Video 9)
PHP is back and is faster and more lightweight than ever. The world of web technology is seamlessly evolving, and PHP 7's simplicity and prowess addresses the requirements of current and future web and mobile application development....
Curated Video
Bash Shell Scripting- Simple usage of the case statement
This video demonstrates a simple usage of the case statement. This clip is from the chapter "Arithmetic operators" of the series "Complete Bash Shell Scripting".This section covers the different arithmetic operators.
Packt
Add Item to Data Structure
Tracalorie Project (Using the Module Pattern): Add Item to Data Structure This clip is from the chapter "Tracalorie Project (Using the Module Pattern)" of the series "Modern JavaScript from the Beginning".In this section, you will build...
Brian McLogan
Learn how to write the equation of a parabola given vertex and directrix
Learn how to write the equation of a parabola given the vertex and the directrix. A parabola is the shape of the graph of a quadratic equation. A parabola can open up or down (if x is squared) or open left or right (if y is squared)....
Brian McLogan
What are the basics for the parent graph of tangent
π Learn the basics of graphing a tangent and a cotangent function. To plot the tangent and the cotangent graph we choose a set of points and form a table of values with which we plot the points on the x-y coordinate axis to obtain the...
Curated Video
CSS Bootcamp: Master CSS (Including CSS Grid/Flexbox) - Navigation-Markup
Project 1 - Grand Hotel (Based on Flexbox): Navigation-Markup This clip is from the chapter "Project 1 - Grand Hotel (Based on Flexbox)" of the series "CSS Bootcamp: Master CSS (Including CSS Grid/Flexbox)".This section includes a...
Curated Video
C++ Standard Template Library in Practice - Input Iterators
We want to learn what makes up an input iterator, and how to use it. β’ Learn what an input iterator can do β’ Learn what it takes to fulfill an input iterator contract β’ Go through a code example, showing how to use input iterators This...
Curated Video
Learning Dart (Video 25)
Dart is a new open source programming language for the web. Developed by Google, Dart is gaining popularity and has a steadily growing community. It is a single language for both client and server that can be used to build large-scale...
Curated Video
Learning D3.JS 5.0 7.6: Visualization with Scales
In this video, we will learn how to use the scale, range, and domain functions in the scatter plot to dynamically present data. β’ Create the variables for x and y coordinates β’ Alternate the returning values of circles and labels β’ View...
Curated Video
Cloud Native Development on Azure with Java 2.2: Deploy a New Cosmos DB in Azure
Now itβs time to take a step ahead with the TODO list we created in the previous video! We are going to connect our Java application to use Azure Cosmos DB as a backend for storing the TODO list data items. β’ Create a new Cosmos DB...
Programming Electronics Academy
Introduction to Interrupts: Arduino Course 9.1
An introduction to interrupts in programming.
Catalyst University
Sleep Paralysis | Basic Epidemiology & Mechanism [@ 5:04]
In this video, we first explore the basic statistics of and concepts regarding sleep paralysis. Then, we dive into the physiological mechanism that causes it.
Packt
Generating Customized XPath from HTML Attributes
This video demonstrates how to generate a customized XPath from HTML attributes. This clip is from the chapter "Locator Techniques and Tools used to Identify Objects" of the series "Selenium WebDriver with Java - Basics to Advanced and...
Curated Video
C++ Programming By Example - Building a Library Management System
How to build a library management system (books)? β’ Plan out the classes β’ Implement the classes based on the plan β’ Compare functions for basic functionality in the application This clip is from the chapter "Building a Library...
Curated Video
C++ Developer - Project - Dynamically Creating Rectangles from File
This video presents a project to dynamically create rectangles from file. This clip is from the chapter "File Input and Output" of the series "The Complete C++ Developer Course".This section explains file input and output.
Curated Video
GCSE Secondary Maths Age 13-17 - Number: Number machines - Explained
SchoolOnline's Secondary Maths videos are brilliant, bite-size tutorial videos delivered by examiners. Ideal for ages 13-17, they cover every key topic and sub topic covered in GCSE Maths in clear and easy to follow steps. This video...
Brian McLogan
Evaluate piecewise functions
π Learn how to evaluate a piecewise function. A piecewise function is a function which uses different rules for different intervals. When evaluating a piecewise function, pay attention to the constraints of each function as you can only...