Instructional Video8:59
Curated Video

Learn and Master C Programming - Using Visual Studio Command Prompt to write 'Hello, World' one more time

Higher Ed
Learn an easier and slight faster way to build and compile C programs from the command prompt. This clip is from the chapter "Writing our First Program - A 'Hello, World!' Program in C" of the series "Learn and Master C Programming For...
Instructional Video2:47
Brian McLogan

Solving a logarithmic equation by using properties of logs

12th - Higher Ed
👉 Learn how to solve exponential equations. An exponential equation is an equation in which a variable occurs as an exponent. To solve an exponential equation, we isolate the exponential part of the equation. Then we take the log of both...
Instructional Video11:33
Curated Video

Complete Python Scripting for Automation - Copy the content of a source file into a destination file

Higher Ed
Working with text files: Copy the content of a source file into a destination file This clip is from the chapter "Working with text files" of the series "Complete Python Scripting for Automation".In this section, the author talks about...
Instructional Video7:42
Curated Video

Complete Python Scripting for Automation - Practice script on platform and os module

Higher Ed
OS Module: Practice script on platform and os module This clip is from the chapter "OS Module" of the series "Complete Python Scripting for Automation".In this section, the author introduces OS Module and Basic operation like os.path...
Instructional Video4:29
Curated Video

Apache Maven Beginner to Guru - Maven Standard Directory Layout

Higher Ed
This video explains the Maven standard directory layout. This clip is from the chapter "Maven Basics" of the series "Apache Maven: Beginner to Guru".This section focuses on the Maven basics, such as Maven coordinates, Maven repositories,...
Instructional Video8:31
Curated Video

Active Directory with Windows Server 2016 - Managing Computer Accounts

Higher Ed
Examine the placement of computer accounts in the OU structure, and the considerations and steps needed to place these assets within your structure, using both the GUI and PowerShell options. This clip is from the chapter "Install and...
Instructional Video6:05
Curated Video

Mastering Swift 2 Programming (Video 5)

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 Video1:52
All In One Social Media

How To Choose What To See First On Facebook News Feed

Higher Ed
The Facebook algorthym can make you crazy when all you want to see is what you want to see. Well, in this video I will show you how to choose what to see first on facebook so you don't miss anything from your friends of Facebook pages...
Instructional Video2:51
Packt

Explain the negative impacts of artificial intelligence systems on society : CW Attack Practical Configuration

Higher Ed
From the section: Compare Various Attacks. In this section, you will learn the most important metrics to compare various attacks. Now, you will dive deeper into various adversarial attacks from the white-box category. You will see how...
Instructional Video6:31
IDG TECHtalk

How to use command line arguments in a Python script with sys.argv and argparse

Higher Ed
If you pass command line arguments to a Python script, it's easy to extract and use them with sys.argv. But if you want to build elaborate handlers for command-like arguments, the argparse module in Python's standard library gives you...
Instructional Video6:14
Curated Video

Core Java Programming Course- Classes and Objects - Exercise 1

Higher Ed
This video presents an exercise on classes and objects. This clip is from the chapter "Object-Oriented Programming" of the series "Learn How to Code: The Complete Core Java Programming Course".This section focuses on the different...
Instructional Video13:53
Curated Video

Complete Python Scripting for Automation - Python setup on Linux (Installing required python on Linux)

Higher Ed
Introduction: Python setup on Linux (Installing required python on Linux) This clip is from the chapter "Introduction" of the series "Complete Python Scripting for Automation".The author introduces the course and talks about Python setup...
Instructional Video1:17
Packt

Unclean Leader Election

Higher Ed
This video explains how to enable unclean leader election in Kafka. This clip is from the chapter "Advanced Topics Configurations" of the series "Apache Kafka Series - Learn Apache Kafka for Beginners".In this section, you will learn...
Instructional Video1:50
Curated Video

Core Java Programming Course- Concept of Garbage Collector (GC) and Java 10 Update in GC

Higher Ed
This video explains the concept of GC and its updates in Java 10. This clip is from the chapter "What's New in Java 10?" of the series "Learn How to Code: The Complete Core Java Programming Course".This section highlights the new...
Instructional Video6:50
Packt

Handling Multiple Windows

Higher Ed
This video focused on handling multiple windows. This clip is from the chapter "Techniques to Automate Ajax Calls, Child Windows, and iFrames" of the series "Selenium WebDriver with Java - Basics to Advanced and Frameworks".This section...
Instructional Video5:53
Curated Video

Complete Python Scripting for Automation - destructor of a class

Higher Ed
OOPS for Real Time: destructor of a class This clip is from the chapter "OOPS for Real Time" of the series "Complete Python Scripting for Automation".In this section, the author introduces OOPS and object attributes, constructor of a...
Instructional Video2:28
Curated Video

CompTIA Security+ Certification SY0-601: The Total Course - Chapter 10 Exam Question Review

Higher Ed
IT systems are greatly affected by physical security. This episode presents a scenario in which only some security controls effectively mitigate a security problem. This clip is from the chapter "Physical Security" of the series "CompTIA...
Instructional Video7:54
Curated Video

Active Directory with Windows Server 2016 - Introduction to AD DS Part 2

Higher Ed
We continue looking into the robust interaction of the various components, exploring the global catalog, RODC, and how to work with OUs. This clip is from the chapter "Install and Configure AD DS" of the series "Active Directory with...
Instructional Video4:52
Curated Video

Learning R for Data Visualization (Video 27)

Higher Ed
R is on the rise and showing itself as a powerful option in many software development domains. At its core, R is a statistical programming language that provides impressive tools for data mining and analysis, creating high-level...
Instructional Video13:28
APMonitor

Interactive Python with Widgets

10th - Higher Ed
An IPython widget allows a user to input a value or perform a function. Widgets enhance user interaction with the IPython notebook. See http://apmonitor.com/che263/index.php/Main/PythonWidgets to download the example IPython notebook and...
Instructional Video2:44
Packt

Consumer Offset Commit Strategies

Higher Ed
This video explains how the Kafka consumer can commit offsets automatically. This clip is from the chapter "Kafka Elasticsearch Consumer and Advanced Configurations" of the series "Apache Kafka Series - Learn Apache Kafka for...
Instructional Video2:08
Packt

Log Cleanup Delete

Higher Ed
This video explains how to delete the log cleanup policy. This clip is from the chapter "Advanced Topics Configurations" of the series "Apache Kafka Series - Learn Apache Kafka for Beginners".In this section, you will learn some advanced...
Instructional Video14:20
Curated Video

Data Science and Machine Learning with R - Working with Functions

Higher Ed
This video explains working with functions in R. This clip is from the chapter "Intermediate R" of the series "Data Science and Machine Learning with R from A-Z Course [Updated for 2021]".This section explains intermediate R.
Instructional Video3:12
IDG TECHtalk

Python lists: Slicing, or obtaining portions of lists from lists

Higher Ed
Python's slice syntax lets you take portions of object collections, such as lists. Learn how to use slices efficiently and correctly, and avoid some of the gotchas associated with slicing.