Curated Video
C++ 20 (2a) New Features - Rationale Behind New Comparison Operator
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...
Curated Video
Learn and Master C Programming - Using '#define' To Define Symbolic Constants
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...
Flipping Physics
Defining Pi for Physics
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...
Curated Video
Complete Python Scripting for Automation - case (Lower, Upper etc...) conversion operations
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...
Curated Video
Complete Python Scripting for Automation - working with split, sub and subn operations of re module
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...
Curated Video
Complete Python Scripting for Automation - working with findall and finditer operations
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...
Curated Video
LEAN ON IT! (PART 2)
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.
Curated Video
Mastering Swift 2 Programming (Video 28)
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...
Packt
Debug a computer program created by someone else : Debugging Your Second Python Program
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...
Curated Video
Cypress - Modern Automation Testing from Scratch + Framework - How Cypress Auto Handles Alerts in Web Apps
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...
Curated Video
Learn and Master C Programming - Pointers and Strings (2): Printing Out Vowels In a String
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...
Curated Video
Excel VBA Programming The Complete Guide - Object-Oriented Programming in Real Life
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...
Curated Video
Mastering Tableau 2018.1, Second Edition 8.6: Visualize Benford’s Law
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
Curated Video
Predictive Analytics with TensorFlow 1.3: Installing Python in Windows
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
Packt
Singleton Pattern
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...
APMonitor
Python 🐍 Variables
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...
Curated Video
Use variables to store data : Variables in Python
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
Guinness World Records
Yo-Yo Tricks: Learn How to Walk the Dog, Rock the Baby, and Around the World!
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,...
Curated Video
Learn and Master C Programming - Using 'strlen' function to get length of string
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...
IDG TECHtalk
Writing files in Go: Smart Go
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.
Curated Video
Complete Java SE 8 Developer Bootcamp - Creating Object Types - Part 3
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 &...
Curated Video
Complete Git Guide: Understand and Master Git and GitHub - Hash Function Overview
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...
Curated Video
Application Development with Swift 2 (Video 11)
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...
Curated Video
Implement a computer program using a classic algorithm : A look at the recursive divide function
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