Instructional Video5:38
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Solution - Borrowing in Rust

Higher Ed
This is a solution video on borrowing in Rust. This clip is from the chapter "Beginner to Intermediate Lessons" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the beginner to...
Instructional Video6:42
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Borrowing in Rust - The “&†Symbol in Rust

Higher Ed
In Rust, borrowing is an essential concept for managing memory and preventing common memory-related errors. The ‘&' symbol is used to create references to variables and pass them to functions, which allows efficient memory management...
Instructional Video4:05
Curated Video

Concurrent and Parallel Programming in Python - Multiprocessing Pool Map Multiple Arguments

Higher Ed
Let's learn how to pass multiple arguments, passing lists instead of elements in a list or class while executing a code.
Instructional Video10:40
Curated Video

Concurrent and Parallel Programming in Python - Multiprocessing Pool

Higher Ed
After learning how to distribute the work by multiprocessing over different CPUs, you will learn to replicate the process over a multiprocessing program surrounding multiprocessing classes.
Instructional Video7:35
Curated Video

Concurrent and Parallel Programming in Python - Multiprocessing Queues

Higher Ed
Now that we have understood multiprocessing, you will learn how to split our segments over multiple processes in the form of queues to speed up processing and take a load off the process execution.
Instructional Video7:14
Curated Video

Concurrent and Parallel Programming in Python - Final Program Cleanup

Higher Ed
Apart from a final cleanup to make our project more functional, you will learn to create local environment variables for actual testing.
Instructional Video17:21
Curated Video

Hands-On Continuous Integration and Automation with Jenkins - CD Pipeline – Build and Deploy to Dev

Higher Ed
This video shows how to create a pipeline job in Jenkinsfile and how to create a Jenkinsfile with steps to build a web application and de-ploy it to a development environment.
Instructional Video7:57
Curated Video

Hands-On Continuous Integration and Automation with Jenkins - CD Pipeline – Approve and Deploy to Live

Higher Ed
This video completes the CD pipeline with a step to manually approve the deployment and deploy to the live environment and shows additional resources to write pipeline scripts.
Instructional Video6:59
Curated Video

Hands-On Continuous Integration and Automation with Jenkins - Extend Your Jenkins Job

Higher Ed
This video shows how to extend the job created in video 2.3.
Instructional Video7:41
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution Part II - Group Objects in JavaScript

Higher Ed
In this video, we will continue to discuss the solution to the exercise on group objects in JavaScript. This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the series "JavaScript Mastery from Zero...
Instructional Video5:26
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution I - How to Find the Longest Word in a String

Higher Ed
In this video, we will discuss the solution to the exercise on how to find the longest word in a string from the previous video. This clip is from the chapter "Algorithms - Basics and Fundamentals to Intermediate" of the series...
Instructional Video4:39
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Accessing Arrays with Bracket Notation - Example 1

Higher Ed
This video covers the topic of accessing arrays with bracket notation in JavaScript. The instructor demonstrates how to use bracket notation to retrieve specific values within an array. This clip is from the chapter "Data Structures -...
Instructional Video7:41
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Global Versus Local Scope in Functions with JavaScript

Higher Ed
In this video, you will learn about the concept of scope in JavaScript functions. You will explore how variables declared inside a function have local scope, meaning they can only be accessed within that function, while variables...
Instructional Video4:06
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise Solution - Compounding and Augmented Operators in JavaScript

Higher Ed
This is a solution video where you will learn about compounding and augmented operators in JavaScript. This clip is from the chapter "Introduction to Programming and JavaScript Basics for Absolute Beginners" of the series "JavaScript...
Instructional Video5:59
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Compounding and Augmented Operators in JavaScript

Higher Ed
In this video, you will learn about compounding and augmented operators in JavaScript, which are shorthand notations for performing arithmetic operations and assigning the result to a variable. You will explore different ways to use...
Instructional Video4:30
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - The Remainder Operator in JavaScript - II

Higher Ed
This video is a continuation of the previous one and will cover more advanced use cases for the remainder operator in JavaScript. This clip is from the chapter "Introduction to Programming and JavaScript Basics for Absolute Beginners" of...
Instructional Video3:36
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Incrementing and Decrementing Operators in JavaScript

Higher Ed
In this video, you will learn about incrementing and decrementing operators in JavaScript, which are shorthand notations for adding or subtracting 1 from a variable’s value. You will explore different ways to use these operators and...
Instructional Video2:24
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise Solution - The Difference Between Var, Let, and Const in JavaScript

Higher Ed
This is a solution video where you will learn the difference between var, let, and const in JavaScript. This clip is from the chapter "Introduction to Programming and JavaScript Basics for Absolute Beginners" of the series "JavaScript...
Instructional Video3:55
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - The Difference Between Let and Const in JavaScript

Higher Ed
This video will explain the difference between “let†and “const†in JavaScript, which are two ways to declare variables with different scoping and reassignment properties. This clip is from the chapter "Introduction to Programming...
Instructional Video5:39
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - The Difference Between Var and Let in JavaScript - ES6

Higher Ed
In this video, you will learn about the difference between “var†and “let†in JavaScript, which are two ways to declare variables. You will explore how these keywords behave in different contexts and learn about the scoping rules...
Instructional Video3:35
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Build a Basic Calculator in JavaScript

Higher Ed
This is an exercise video where you will build a basic calculator in JavaScript. This clip is from the chapter "Introduction to Programming and JavaScript Basics for Absolute Beginners" of the series "JavaScript Mastery from Zero to Hero...
Instructional Video6:52
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Assigning Variables to Each Other in JavaScript - Part I

Higher Ed
In this video, you will learn how to assign variables to each other in JavaScript, which can be useful for swapping variable values or updating them based on certain conditions. This clip is from the chapter "Introduction to Programming...
Instructional Video6:40
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Declare a Variable in JavaScript and Log the Result

Higher Ed
In this video, we will discuss the solution to the exercise on declaring a variable in JavaScript and logging the result from the previous video. This clip is from the chapter "Introduction to Programming and JavaScript Basics for...
Instructional Video5:25
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What Are Datatypes and Variables in Programming Part II

Higher Ed
This video is a continuation of the previous one and will cover datatypes and variables in programming in more detail. You will learn about complex data types such as arrays and objects, as well as how to declare and initialize variables...