Instructional Video2:56
Curated Video

Learning D3.JS 5.0 1.3: What Is D3.js?

Higher Ed
In this video, we will learn what D3.js is, why it’s useful, how to use diagrams and shapes, and examples of bad and good graphs. • Understand the definition of D3.js • Learn the benefits of using D3.js • Understand examples of bad and...
Instructional Video3:10
Curated Video

Learn and Master C Programming - Visual Studio File Menu

Higher Ed
We will go over the file menu and learn what it does and try out some of its features like loading projects, closing a file and reopening it...etc. This clip is from the chapter "Walkthrough: Visual Studio IDE" of the series "Learn and...
Instructional Video8:54
Curated Video

Python for Network Forensics 5.1: Enumeration

Higher Ed
In this video, we will begin to think as an attacker and learn how to enumerate devices on a network. • Learn the basics of calling system commands in Python • Learn how to enumerate network devices • Using Python, build an application...
Instructional Video8:16
Curated Video

Python for Network Forensics 1.4: Importing Scapy Modules

Higher Ed
In this video, we will design a Python based Scapy tool to automate our network analysis. • Familiarize ourselves with common Python data structures • Learn to import 3rd party modules into our own application • Unleash the power of...
Instructional Video5:52
Curated Video

Mastering Tableau 2018.1, Second Edition 5.6: Working with Colors and Shapes

Higher Ed
In this video, we’ll see how to apply colors and shapes using marks card. • Understand marks card: colors and shape • Apply colors using marks card • Applying shapes using marks card
Instructional Video10:05
Curated Video

Hands-On Unity 2018.x Game Development for Mobile (Video 19)

Higher Ed
Ready to take your game development skills to the next level by deploying your games to mobile platforms? With the boom in the mobile game development space, there has never been a better time! This course will give you the necessary...
Instructional Video6:15
Curated Video

Learn and Master C Programming - Basic C Types Continued

Higher Ed
We go over the C basic types again and discuss them in more detail so you become more familiar with them. This clip is from the chapter "Fundamentals and Basics" of the series "Learn and Master C Programming For Absolute Beginners!".In...
Instructional Video8:50
Curated Video

Learn and Master C Programming - If...else...Code Example: Checking high blood pressure readings

Higher Ed
The author shows you an example that uses several if...else statements and also how to nest if statements using a blood pressure reader function that takes two numbers and gives you back your result as string. This clip is from the...
Instructional Video3:24
Curated Video

Learn and Master C Programming - Variadic Functions Overview

Higher Ed
We are introduced to the concept of variadic function in C/C++. This clip is from the chapter "Advanced Topics" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we look into advanced topics such as...
Instructional Video6:51
Curated Video

Python for Network Forensics 3.2: Exploring File Properties

Higher Ed
Using the power of recursive traversal, we will begin to search and populate file properties. • Enrich your understanding of directory traversal • Modify our application to populate file properties • Search returned results to understand...
Instructional Video3:49
Curated Video

Java 11 Programming for Beginners 3.4: Working with Many Forms of Polymorphism

Higher Ed
Polymorphism is hard without examples, so we go through a few. • Build another bot and use it as an example for method overriding • Go through theory • Show an example for method overloading
Instructional Video6:19
Curated Video

Bug Bounty Program Certification 10.4: Components of the Android App Bug Bounty Program

Higher Ed
In this video, you will get Information about Android app components. • Learn about various components of Android app bug bounty program • Explore various vulnerabilities in android machines • Learn about reward on the basis of level of...
Instructional Video6:30
Curated Video

Cloud Native Development on Azure with Java 3.3: Configure the App to Use Your Azure AD Tenant

Higher Ed
Now that we have registered our app with the Azure Active Directory, the next step is to configure the app to use our Azure AD tenant and then package and redeploy our app. Let’s do it right now! • Change the App ID URI and the reply...
Instructional Video7:10
Curated Video

Learn and Master C Programming - Comments in C

Higher Ed
We will go over comments and commenting out code and the different styles of comments supported by C language. This clip is from the chapter "Fundamentals and Basics" of the series "Learn and Master C Programming For Absolute...
Instructional Video2:48
Curated Video

Learn and Master C Programming - Bit-wise Operators Overview

Higher Ed
We will look at an overview of the binary operators that we will cover. This clip is from the chapter "Let's Talk Binary | Manipulating Bits" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we look...
Instructional Video6:35
Curated Video

Learn and Master C Programming - Using '#define' To Define Symbolic Constants

Higher Ed
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...
Instructional Video12:05
Curated Video

High Performance Scientific Computing with C 1.4: Numerical Integration

Higher Ed
How can we calculate integrals with a computer? How can we solve differential equations? • Calculate integrals with the trapezoid and Simpson’s rule • See how the error terms scale with different algorithms • Solve differential equations...
Instructional Video8:59
Curated Video

High Performance Scientific Computing with C 3.2: Pipelining and Hardware-Oriented Design

Higher Ed
How can we design our programs to take the most advantage of modern CPU design? • Learn about caching • Learn about branch prediction and speculative execution • Stay out of the way of the CPU and compiler!
Instructional Video5:48
Curated Video

Cloud Native Development on Azure with Java 2.5: Build and Deploy a New Azure App Service Instance

Higher Ed
In this video, we will create an Azure web application hosted within the Azure App Service. We will configure it such that it will be compatible for hosting our Java Spring Boot application. • Add a new web application • Deploy a default...
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 Video4:41
Curated Video

Learn and Master C Programming - Pointers and Strings (2): Printing Out Vowels In a String

Higher Ed
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...
Instructional Video6:44
Curated Video

Learn and Master C Programming - How To Calculate Array Size in C/C++

Higher Ed
Learn how to use the compiler with the help of 'sizeof' operator to calculate the size (number of elements) inside array without having to hard-code this value! This clip is from the chapter "Arrays" of the series "Learn and Master C...
Instructional Video1:39
Curated Video

Learn and Master C Programming - What is covered in this course?

Higher Ed
A quick overview of what we will cover throughout this course. This clip is from the chapter "Introduction" of the series "Learn and Master C Programming For Absolute Beginners!".In this introductory section, the author helps you jump...
Instructional Video5:54
Curated Video

Java 11 Programming for Beginners 1.4: Running Hello World

Higher Ed
This video guides you to use the basic setup from Video 1 and Video 2 to create your first simple Java program. • Write the Hello World Code • Run Hello World in the IDE • Run Hello World from the command line