Brainwaves Video Anthology
John L. Stanizzi Teachers Make a Difference - Theresa Vincenzo
John L. Stanizzi is the author of the chapbook, Windows. His full length collections are Ecstasy Among Ghosts, Sleepwalking, Dance Against the Wall Antrim House Books, and After the Bell, and Hallelujah Time!, Big Table Publishing...
Curated Video
Bash Shell Scripting- Input with the command line arguments
This video shows how to input data with command line arguments. This clip is from the chapter "Input and output commands for bash shell scripting" of the series "Complete Bash Shell Scripting".This section covers the different input and...
Curated Video
Complete Modern C++ - Folding Basics
In this video, we will understand the concept of folding and how variadic function templates can be used to implement it. This clip is from the chapter "C++17 Template Features" of the series "Complete Modern C++".You will learn about...
Curated Video
Python for Data Analysis: Step-By-Step with Projects - Missing Data Overview
This video introduces you to missing data overview. This clip is from the chapter "Cleaning Data" of the series "Python for Data Analysis: Step-By-Step with Projects".This section introduces you how to clean the data.
Curated Video
IELTS Energy 83: Get a 7 on Writing Task 2- 10 Phrases
Get a 7 Easy Steps to a 7 or Higher
Hip Hughes History
Donald Trump's Travel-Muslim Ban Explained
What is the travel ban? Is it a muslim ban? Join me for a comprehensive lecture detailing the executive order and a weighing of immigration legislative language and the Constitution.
Curated Video
Learning LESS (Video 3)
CSS is great; it's a staple of the web and it helps us to produce beautiful websites, but some parts of it are archaic, and it's often time-consuming to get right. LESS changes that. LESS includes built-in features that allow you to...
Packt
Ways of Initializing Arrays and Assigning Objects
This video demonstrates ways of initializing arrays and assigning objects. This clip is from the chapter "Java Object Oriented Programming System (OOPS) Basic for Selenium Part - 1" of the series "Selenium WebDriver with Java - Basics to...
Packt
Give appropriate attribution for externally sourced media or code : Importing the relevant packages and load the data
From the section: The MNIST example. In this section, we’ll see the MNIST example. We must import the TensorFlow library. We will also take advantage of the TensorFlow data provider for MNIST.
Curated Video
Bash Shell Scripting - Using the "shift" Function
This video explains the "shift" function. This clip is from the chapter "Parsing Command Line Arguments" of the series "Mastering Bash Shell Scripting: Automate your daily tasks [Updated for 2021]".This section helps you understand...
IDG TECHtalk
R tip: Quick Interactive Tables
See how to create an interactive HTML table with one line of code. Plus, plenty of customizations. Leave a comment and let us know what tips you’d like to see in a future Do More With R video.
Curated Video
Complete Java SE 8 Developer Bootcamp - Comparator
Another option for providing sorting information is to create a Comparator object which takes two objects and returns their order. This clip is from the chapter "More with Collections" of the series "Complete Java SE 8 Developer...
Curated Video
Multi-Paradigm Programming with Modern C++ - Arguments and Return Values
How many arguments should a function have, and how to pass them properly? There are simple ways for making the functions even better. • How many arguments? • Passing by value, by reference and by pointer • Return values and other tips...
Curated Video
C++ 20 (2a) New Features - Rationale for Ranges
Passing pair of iterators to algorithms makes them difficult to compose. Code that uses algorithms is verbose and does not facilitate functional programming. • Convert a pair of pointers to a range • Use constrained algorithms • Compose...
Curated Video
Writing the Argument for Your Thesis Statement: Turning Purpose into a Claim
In this video, the teacher explains how to use analysis to write an essay. The focus is on persuasive writing, where the author states their opinion and supports it with evidence. The teacher provides a step-by-step guide on how to turn...
Curated Video
Python for Network Forensics 5.2: Port Enumeration
In this video, we will further our attack by enumerating devices found on our network. This will provide us with services that may be exploitable. • Introduce network sockets and network connections in Python • Use sockets and build a...
Curated Video
Core Java Programming Course- Super Class Constructor
This video explains the super class constructor. This clip is from the chapter "Inheritance and Abstraction" of the series "Learn How to Code: The Complete Core Java Programming Course".This section explains inheritance and abstraction...
Packt
Date Class Concepts
This video explains the date class concepts. This clip is from the chapter "Core Java Tutorial - Part 2" of the series "Selenium WebDriver with Java - Basics to Advanced and Frameworks".This section explores core Java.
Curated Video
Bash Shell Scripting - Passing Arguments
This video helps you understand how to parse arguments. This clip is from the chapter "Getting Started - The Basics" of the series "Mastering Bash Shell Scripting: Automate your daily tasks [Updated for 2021]".This section will help you...
IDG TECHtalk
Python 3.10's new features: Parameter specification variables
Python 3.10's new "ParamSpec" type hinting function lets you pass the type hints of function parameters to other parameters, to make it easier to typehint decorators and other highly abstracted constructions.
Curated Video
Hands-On WebAssembly for C++ Programmers - Running Your First C++ Application on the Web
Now that your tools are installed, how do you write your first C++ program to run in the browser? • Write C++ code • Compile the C++ code into WebAssembly • Integrate input and output between the browser and your code This clip is from...
Curated Video
Learning LESS (Video 19)
CSS is great; it's a staple of the web and it helps us to produce beautiful websites, but some parts of it are archaic, and it's often time-consuming to get right. LESS changes that. LESS includes built-in features that allow you to...
Packt
Adding Tests to Suite in Framework Guidelines
This video explains how to add tests to a suite in the framework guidelines. This clip is from the chapter "Framework Building from Scratch - Real Time Project" of the series "Selenium WebDriver with Java - Basics to Advanced and...
Curated Video
Multi-Paradigm Programming with Modern C++ - Specializing the Template
Our “equal” function uses an epsilon to compare values. This works well with floating point types, but it’s inefficient for fixed point. We can try to specialize the function template, but how to do this in a generic way? • The problem...