Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Solution - Borrowing in Rust
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...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Borrowing in Rust - The “&†Symbol in Rust
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...
Curated Video
Concurrent and Parallel Programming in Python - Multiprocessing Pool Map Multiple Arguments
Let's learn how to pass multiple arguments, passing lists instead of elements in a list or class while executing a code.
Curated Video
Concurrent and Parallel Programming in Python - Multiprocessing Pool
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.
Curated Video
Concurrent and Parallel Programming in Python - Multiprocessing Queues
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.
Curated Video
Concurrent and Parallel Programming in Python - Final Program Cleanup
Apart from a final cleanup to make our project more functional, you will learn to create local environment variables for actual testing.
Curated Video
Hands-On Continuous Integration and Automation with Jenkins - CD Pipeline – Build and Deploy to Dev
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.
Curated Video
Hands-On Continuous Integration and Automation with Jenkins - CD Pipeline – Approve and Deploy to Live
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.
Curated Video
Hands-On Continuous Integration and Automation with Jenkins - Extend Your Jenkins Job
This video shows how to extend the job created in video 2.3.
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution Part II - Group Objects in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution I - How to Find the Longest Word in a String
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Accessing Arrays with Bracket Notation - Example 1
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 -...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Global Versus Local Scope in Functions with JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise Solution - Compounding and Augmented Operators in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Compounding and Augmented Operators in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - The Remainder Operator in JavaScript - II
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Incrementing and Decrementing Operators in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise Solution - The Difference Between Var, Let, and Const in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - The Difference Between Let and Const in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - The Difference Between Var and Let in JavaScript - ES6
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Build a Basic Calculator in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Assigning Variables to Each Other in JavaScript - Part I
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Declare a Variable in JavaScript and Log the Result
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What Are Datatypes and Variables in Programming Part II
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...