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...
Curated Video
Complete Modern C++ - Dynamic Memory Allocation - Part I (malloc Function)
This video explains basics of dynamic memory allocation in C. • Learn the meaning of `optional` • Memory layout of `optional` • Optional versus pointers This clip is from the chapter "Memory Management – Part I" of the series "Complete...
Curated Video
Python for Data Analysis: Step-By-Step with Projects - Relationship of Two Features (1)
This video explains the relationship of two features part 1. This clip is from the chapter "Exploratory Data Analysis" of the series "Python for Data Analysis: Step-By-Step with Projects".This section explains exploratory data analysis.
Curated Video
Frontend Web Development Bootcamp - Build a Twitter Clone - How to Create Elements in DOM
DOM Crash Course: How to Create Elements in DOM This clip is from the chapter "DOM Crash Course" of the series "Frontend Web Development Bootcamp: Build a Twitter Clone".This section is about DOM, DOM styles and classes, events etc
Curated Video
Excel VBA Programming The Complete Guide - The TypeName Method
The VBA.TypeName method accepts an VBA object and returns its type as a string. In this lesson, we practice invoking the method in the Immediate Window with a variety of inputs including strings, numbers, and various Excel objects. This...
TLDR News
Should Cummings Resign After Lockdown Violations? Was Johnson Right to Defend Him? - TLDR News
Should Cummings Resign After Lockdown Violations? Was Johnson Right to Defend Him? - TLDR News
Packt
Rendering Messages
Real-Time Web Applications with Socket.io (Chat App): Rendering Messages This clip is from the chapter "Real-Time Web Applications with Socket.io (Chat App)" of the series "The Complete Node.js Developer Course (3rd Edition)".In this...
Packt
Reusing Functions with Variable Data
This video explains how to reuse functions with variable data. This clip is from the chapter "Cucumber Behavior Driven Data – Framework" of the series "Selenium WebDriver with Java - Basics to Advanced and Frameworks".This section...
Curated Video
Complete Git Guide: Understand and Master Git and GitHub - Interactive Rebasing with Squashing in the Local Repository
This video focuses on the interactive rebasing with squashing in the local repository. This clip is from the chapter "Advanced Git" of the series "Complete Git Guide: Understand and Master Git and GitHub".This section explains how to...
Curated Video
The Modern JavaScript Bootcamp (2019) - Methods
In this video, you’re going to learn about methods. A method is nothing more than an object property with a value set to a function. This clip is from the chapter "JavaScript Objects" of the series "The Modern JavaScript Bootcamp...