Instructional Video3:40
Curated Video

C++ 20 (2a) New Features - Rationale Behind New Comparison Operator

Higher Ed
Define a type that supports all standard relational operators in pre C++20 and using new defaulted three-way comparison operator. • Define the six member operators • Define only <=> operator • Test both solutions This clip is from the...
Instructional Video6:35
Curated Video

Learn and Master C Programming - Using '#define' To Define Symbolic Constants

Higher Ed
We will write a program that uses '#define' to define some symbolic constants. This clip is from the chapter "Preprocessor Directives" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we look into...
Instructional Video4:15
Flipping Physics

Defining Pi for Physics

12th - Higher Ed
Pi is defined as the ratio of the circumference of a circle to its diameter. A frisbee is used to show the definition of pi. The units for pi, radians, are discussed. The conversion factor between revolutions, degrees, and radians is...
Instructional Video8:19
Curated Video

Complete Python Scripting for Automation - case (Lower, Upper etc...) conversion operations

Higher Ed
Complete String Operations: case (Lower, Upper etc...) conversion operations This clip is from the chapter "Complete String Operations" of the series "Complete Python Scripting for Automation".You will learn about Basic operations on...
Instructional Video7:23
Curated Video

Complete Python Scripting for Automation - working with split, sub and subn operations of re module

Higher Ed
Regular expression with re module: working with split, sub and subn operations of re module This clip is from the chapter "Regular expression with re module" of the series "Complete Python Scripting for Automation".In this section, the...
Instructional Video9:05
Curated Video

Complete Python Scripting for Automation - working with findall and finditer operations

Higher Ed
Regular expression with re module: working with findall and finditer operations This clip is from the chapter "Regular expression with re module" of the series "Complete Python Scripting for Automation".In this section, the author...
Instructional Video26:36
Curated Video

LEAN ON IT! (PART 2)

Pre-K - Higher Ed
Standing, lying, or upside down, a wall makes challenging poses easy. The wall helps you build strength as you prepare for Handstand, Headstand, and Scorpion.
Instructional Video3:45
Curated Video

Mastering Swift 2 Programming (Video 28)

Higher Ed
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
Instructional Video6:50
Packt

Debug a computer program created by someone else : Debugging Your Second Python Program

Higher Ed
From the section: Getting Started with Python Development. Setup your development environment, a gentle introduction to Python3. Demonstrate the Python debugger, and PyCharm interface to the debugger mode. • Run our program in the debug...
Instructional Video21:06
Curated Video

Cypress - Modern Automation Testing from Scratch + Framework - How Cypress Auto Handles Alerts in Web Apps

Higher Ed
This video explains how Cypress auto handles alerts in web apps. This clip is from the chapter "Advance Automation to Handling Alerts, Popups, Child Windows using Cypress-jQuery" of the series "Cypress - Modern Automation Testing from...
Instructional Video4:41
Curated Video

Learn and Master C Programming - Pointers and Strings (2): Printing Out Vowels In a String

Higher Ed
We will write a function called PrintVowels to learn how to process strings using pointers and practice with pointer arithmetic and contents of pointers...etc. This clip is from the chapter "Pointers" of the series "Learn and Master C...
Instructional Video11:29
Curated Video

Excel VBA Programming The Complete Guide - Object-Oriented Programming in Real Life

Higher Ed
VBA is an object-oriented programming language that views an application as a series of interactions between data entities called objects. Objects have properties, which describe its characteristics, and methods, which are actions that...
Instructional Video10:07
Curated Video

Mastering Tableau 2018.1, Second Edition 8.6: Visualize Benford’s Law

Higher Ed
In this video, we’ll see how to visualize Benford’s law in Tableau. • Understand what Benford’s law is • Implement Benford’s law in Tableau
Instructional Video6:57
Curated Video

Predictive Analytics with TensorFlow 1.3: Installing Python in Windows

Higher Ed
This video will first explain the installing and getting started with python. We will then see python data types, strings, lists, tuples, dictionary, sets and functions. • Install python • See the python data types
Instructional Video4:58
Packt

Singleton Pattern

Higher Ed
JavaScript Patterns: Singleton Pattern This clip is from the chapter "JavaScript Patterns" of the series "Modern JavaScript from the Beginning".In this section, you will learn what JavaScript patterns are, and the various JavaScript...
Instructional Video19:48
APMonitor

Python 🐍 Variables

10th - Higher Ed
Variables store information and are objects in Python. For example, if you wanted to keep a set temperature for an egg, you would type egg = 37.5 for °C or egg = 99.5 for °F. The first part tells what the variable will be called, and the...
Instructional Video8:26
Curated Video

Use variables to store data : Variables in Python

Higher Ed
From the section: A Full Python Refresher. This section is about Python Refresher and includes lectures on Variables in Python, Methods, List, tuple and sets. A Full Python Refresher: Variables in Python
Instructional Video2:17
Guinness World Records

Yo-Yo Tricks: Learn How to Walk the Dog, Rock the Baby, and Around the World!

K - 5th
In this video, Mark Hayward, the world record holder for the furthest distance walked with a yo-yo, teaches viewers how to perform three popular yo-yo tricks. He demonstrates the proper technique for walking the dog, rocking the baby,...
Instructional Video4:41
Curated Video

Learn and Master C Programming - Using 'strlen' function to get length of string

Higher Ed
We will learn how to use 'strlen' function to get the length of a string in C/C++. This clip is from the chapter "Strings" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we work with strings and...
Instructional Video3:08
IDG TECHtalk

Writing files in Go: Smart Go

Higher Ed
How to write text to a file in the Go language, using Go's built-in packages. Learn how to use "os" for simple file writing operations, and "bufio" for when you need more control.
Instructional Video6:07
Curated Video

Complete Java SE 8 Developer Bootcamp - Creating Object Types - Part 3

Higher Ed
Here, we use the “Car” class and also demonstrate the return feature. This clip is from the chapter "Introduction to Objects" of the series "Complete Java SE 8 Developer Bootcamp".Java is Object Oriented Programming which uses stack &...
Instructional Video3:29
Curated Video

Complete Git Guide: Understand and Master Git and GitHub - Hash Function Overview

Higher Ed
This video provides an overview of the hash function. This clip is from the chapter "How Git Works Under the Hood" of the series "Complete Git Guide: Understand and Master Git and GitHub".This section explains how to initialize a new Git...
Instructional Video4:46
Curated Video

Application Development with Swift 2 (Video 11)

Higher Ed
Swift 2 is the latest iteration of Apple's native programming language for iOS devices. If you're an aspiring iOS application developer who is looking to build apps for the App Store, you'll need to use Swift. The language boasts a vast...
Instructional Video15:50
Curated Video

Implement a computer program using a classic algorithm : A look at the recursive divide function

Higher Ed
From the section: Algorithms - Sort, performance, complexity and big O notation. This section is about Algorithms – sort, performance, complexity and big O notation. A look at the divide/split function which introduces recursion