Instructional Video12:15
APMonitor

Python 🐍 Dictionaries

10th - Higher Ed
Dictionaries are a list with key and value pairs. The format for this method of storing values is curly brackets {} as seen below. After you assign a dictionary a name, you can enter values by putting a value followed by a colon to...
Instructional Video4:39
Curated Video

Master Java Web Services and REST API with Spring Boot- Step 05 - Define XML Schema Definition (XSD) for Response – GetCourseDetailsResp

Higher Ed
SOAP Web Services with Spring and Spring Boot: Step 05 - Define XML Schema Definition (XSD) for Response – GetCourseDetailsResp This clip is from the chapter "SOAP Web Services with Spring and Spring Boot" of the series "Master Java Web...
Instructional Video15:57
Packt

Jest Testing Framework

Higher Ed
Testing Node.js (Task App): Jest Testing Framework This clip is from the chapter "Testing Node.js (Task App)" of the series "The Complete Node.js Developer Course (3rd Edition)".In this section, you will learn about sending emails.
Instructional Video9:02
Packt

What is log4j and its Usage in Selenium Framework

Higher Ed
This video explains log4j and how it can be used in the Selenium framework. This clip is from the chapter "Framework Part 7: Logging Framework - log4j" of the series "Selenium WebDriver with Java - Basics to Advanced and Frameworks".This...
Instructional Video17:27
The Business Professor

How to Conduct a Bank Reconciliation - Example

Higher Ed
Professor AJ Kooti provides a detailed examples of how to conduct a Bank Reconciliation for purposes of financial accounting.
Instructional Video7:51
Programming Electronics Academy

Tutorial 03: Arduino IDE and Sketch Overview: Arduino Course for Absolute Beginners (ReM)

Higher Ed
IDE stands for Integrated Development Environment. Pretty fancy sounding, and should make you feel smart anytime you use it. The IDE is a text editor like program that allows you to write computer code for your Arduino board. When you...
Instructional Video5:03
Packt

Troubleshooting Errors on Browser Invocation Code

Higher Ed
This video explains how to troubleshoot errors on browser invocation code. This clip is from the chapter "Brush-Up Java Concepts for Selenium Automation" of the series "Selenium WebDriver with Java - Basics to Advanced and...
Instructional Video16:37
Packt

Optimizing the Page Objects Feature with the Smart Way of Objects Creation

Higher Ed
This video explains how to optimize the page objects feature with smart ways of creating objects. This clip is from the chapter "Framework Building from Scratch - Real Time Project" of the series "Selenium WebDriver with Java - Basics to...
Instructional Video12:50
Packt

XHR Object Methods & Working with Text

Higher Ed
Asynchronous JavaScript, Ajax & Fetch API: XHR Object Methods & Working with Text This clip is from the chapter "Asynchronous JavaScript, Ajax & Fetch API" of the series "Modern JavaScript from the Beginning".In this section, you will...
Instructional Video25:47
APMonitor

Python OpenCV Introduction

10th - Higher Ed
Computer vision is automation of tasks that mimic human response to visual information. Computers gain high-level understanding and take actions from digital images or videos. Packages for image manipulation and computer vision include:...
Instructional Video13:02
Curated Video

The Full Stack Web Development - Error Reporting & Triggering Errors

Higher Ed
PHP Errors, Debugging & Config: Error Reporting & Triggering Errors This clip is from the chapter "PHP Errors, Debugging & Config" of the series "The Full Stack Web Development".In this section, we talk about different types of error,...
Instructional Video4:48
Let's Tute

IFERROR Function & Dynamic Amortization Tables in Excel

9th - Higher Ed
In this video tutorial, the teacher explains the use of the "if error" function and dynamic amortization tables in Microsoft Excel. The "if error" function is used to handle errors in Excel functions, while the dynamic amortization table...
Instructional Video2:30
Curated Video

GCSE Secondary Maths Age 13-17 - Probability & Statistics: Tree Diagrams - Explained

9th - 12th
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...
Instructional Video17:05
Virtually Passed

Fitting a Line using Least Squares #SoME2

Higher Ed
The Least Squares method is widely used to fit curves to data. This is called Least Squares regression. This video shows how to solve the ordinary least squares minimization problem for 1 unknown and 2 unknowns. In practice though, it...
Instructional Video10:25
Curated Video

Learning Lodash 4.0 (Video 25)

Higher Ed
Lodash was built to simplify JavaScript application development. It contains hundreds of methods built for the purpose of providing developers with a fast, reliable, cross-browser toolkit to write applications. With Lodash, you can...
Instructional Video11:32
Programming Electronics Academy

Arduino code syntax: Arduino Course 3.2

Higher Ed
A description of Arduino code syntax.
Instructional Video14:28
Programming Electronics Academy

Blink Two LEDs: Arduino Course 4.6

Higher Ed
A walk through of blinking two LEDs with Arduino.
Instructional Video8:04
Python Programmer

EDA Python - 14-1Errors and Exceptions

Higher Ed
It is possible to anticipate likely errors when writing code in python. This is part one of handling errors and exceptions.
Instructional Video12:01
Curated Video

Learn and Master C Programming - Using Our Library From Projects Within The Same Solution

Higher Ed
We will learn how to reference our library from another project in the same solution and also learn about the advantages of having multiple projects in a single solution. This clip is from the chapter "Creating C Libraries (Static LIBs)"...
Instructional Video3:58
IDG TECHtalk

Using panic and recover for error handling | Smart Go

Higher Ed
Learn how the panic and recover keywords in Go are used for error handling, and why they're not a direct substitute for Go's more conventional error handling mechanisms, but for trapping unexpected or unrecoverable conditions.
Instructional Video3:44
Python Programmer

EDA Python - 06-3variable_name_rules

Higher Ed
There are rules when it comes to naming python variables. We cover those in this video.
Instructional Video8:17
Packt

Handling Express Errors

Higher Ed
File Uploads (Task App): Handling Express Errors This clip is from the chapter "File Uploads (Task App)" of the series "The Complete Node.js Developer Course (3rd Edition)".In this section, you will learn about File uploads
Instructional Video4:53
Packt

Error Messages

Higher Ed
Debugging Node.js (Notes Apps): Error Messages This clip is from the chapter "Debugging Node.js (Notes Apps)" of the series "The Complete Node.js Developer Course (3rd Edition)".In this section, you will learn how to debug in Node.js.
Instructional Video17:07
APMonitor

Python 🐍 Input

10th - Higher Ed
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,...