Curated Video
Learn and Master C Programming - Using Visual Studio Command Prompt to write 'Hello, World' one more time
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...
Brian McLogan
Solving a logarithmic equation by using properties of logs
👉 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...
Curated Video
Complete Python Scripting for Automation - Copy the content of a source file into a destination file
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...
Curated Video
Complete Python Scripting for Automation - Practice script on platform and os module
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...
Curated Video
Apache Maven Beginner to Guru - Maven Standard Directory Layout
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,...
Curated Video
Active Directory with Windows Server 2016 - Managing Computer Accounts
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...
Curated Video
Mastering Swift 2 Programming (Video 5)
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...
All In One Social Media
How To Choose What To See First On Facebook News Feed
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...
Packt
Explain the negative impacts of artificial intelligence systems on society : CW Attack Practical Configuration
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...
IDG TECHtalk
How to use command line arguments in a Python script with sys.argv and argparse
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...
Curated Video
Core Java Programming Course- Classes and Objects - Exercise 1
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...
Curated Video
Complete Python Scripting for Automation - Python setup on Linux (Installing required python on Linux)
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...
Packt
Unclean Leader Election
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...
Curated Video
Core Java Programming Course- Concept of Garbage Collector (GC) and Java 10 Update in GC
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...
Packt
Handling Multiple Windows
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...
Curated Video
Complete Python Scripting for Automation - destructor of a class
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...
Curated Video
CompTIA Security+ Certification SY0-601: The Total Course - Chapter 10 Exam Question Review
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...
Curated Video
Active Directory with Windows Server 2016 - Introduction to AD DS Part 2
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...
Curated Video
Learning R for Data Visualization (Video 27)
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...
APMonitor
Interactive Python with Widgets
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...
Packt
Consumer Offset Commit Strategies
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...
Packt
Log Cleanup Delete
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...
Curated Video
Data Science and Machine Learning with R - Working with Functions
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.
IDG TECHtalk
Python lists: Slicing, or obtaining portions of lists from lists
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.