Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Using array.map() Inside JSX Elements
In this video, you will learn to dynamically render elements based on an array of data, leveraging the power of array.map() to generate JSX components. We will understand different use cases and provide tips for efficient and effective...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Model
In this video, you will learn about the Document Object Model (DOM), a programming interface for HTML and XML documents, and understand how the DOM represents the structure of a webpage as a hierarchical tree of objects and interact with...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Pseudo-Classes Part 1
In this video, we will discover the power of pseudo-classes in CSS3 and learn to target elements based on specific states or interactions. We will explore commonly used pseudo-classes such as :hover, :active, and :focus, and understand...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Positions
In this video, we will dive into the world of CSS3 positioning and understand how to precisely place elements on your webpages. You will learn about static, relative, absolute, and fixed positioning, and discover how to use them to...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Font Family
In this video, we will dive into the realm of fonts with CSS3's font-family property. We will explore the different font options available and learn how to specify font families for text content and utilize web-safe fonts and include...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Selectors and Colors in CSS3
In this video, we will dive into the world of selectors and colors in CSS3, different types of selectors, and how they can be used to target specific HTML elements. We will explore the wide range of color options available in CSS3.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - HTML5 Attributes
In this video, you will learn about HTML5 attributes and how they enhance the functionality and behavior of HTML elements. We will discover commonly used attributes such as id, class, src, href, and more to customize and control the...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Introduction-Block and Inline Elements
In this video, you will learn about block and inline elements in HTML, understand the difference between these two types of elements, and how they affect the layout and structure of your webpage.
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - How to Slice in Rust
In Rust, slicing is a powerful tool for working with arrays, strings, and other collections. With slicing, you can extract specific parts of a collection, modify them, and reassemble them in new ways. In this video, you will learn how to...
Curated Video
Concurrent and Parallel Programming in Python - Multiprocessing Checking Elements in List in Certain Ranges
In this video, we will finally revisit the initially more CPU-intensive functions we were using, which will be checking how many values in our comparison list are in a specific range.
Curated Video
Concurrent and Parallel Programming in Python - Multiprocessing Multiple Varying Arguments
In the previous video, we have seen how to provide additional arguments using a partial library in the functools built-in tool; you will now learn to add different elements such as a power list instead.
Curated Video
Concurrent and Parallel Programming in Python - Queues and Master Scheduler
In the previous lessons, you learned how to set up our Wikipedia reader and the Yahoo Finance worker; we will now systemize the process and create separate process entities. You will learn to create queues, take elements, and place them...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What is the Filter Method in JavaScript
In this video, we will be discussing the filter() method in JavaScript. You will learn what the filter() method does and how it works, along with some practical examples. This clip is from the chapter "Algorithms and Data Structures -...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Final Exercise Solution - Facebook Unfriend Functionality
In this video, we will discuss the final solution to the exercise on adding the Facebook Unfriend functionality from the previous video.
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What Is the Sort Method in JavaScript
In this video, you will learn how to use the Sort method in JavaScript to sort arrays in ascending and descending order. The Sort method in JavaScript is a built-in method that is used to sort the elements of an array in place. By...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution II - How to Repeat a String in JavaScript
In this video, we will continue to discuss the solution to the exercise on how to repeat a string in JavaScript. This clip is from the chapter "Algorithms - Basics and Fundamentals to Intermediate" of the series "JavaScript Mastery from...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - How to Reverse a String - Solution I
In this video, we will discuss the solution to the exercise on how to reverse a string from the previous video. This clip is from the chapter "Algorithms - Basics and Fundamentals to Intermediate" of the series "JavaScript Mastery from...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Skyrim Dungeon Master Multi-Dimensional Arrays
In this video, we will discuss the solution to the exercise on Skyrim dungeon master multi-dimensional arrays from the previous video. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What Is the IndexOf Method in JavaScript
In JavaScript, the indexOf() method is used to search for an element in an array and returns the index of the first occurrence of the element. This method takes an argument, which is the element that you want to find in the array. This...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Adding to Arrays with Splice in JavaScript
In JavaScript, you can add elements to an array using the splice() method. This method allows you to add one or more elements to an array at a specified index. In this video, you will learn how to use the splice() method to add elements...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Remove Array Items with Pop and Shift in JavaScript
In this video, you will learn how to remove elements from an array in JavaScript using the pop() and shift() methods. The pop() method removes the last element from an array and returns it, while the shift() method removes the first...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Modifying Arrays and Unshift in JavaScript
In this video, you will learn how to modify arrays in JavaScript. You will learn how to modify a specific element of an array using bracket notation. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Indexing Values in Arrays with JavaScript
In this video, you will learn how to access specific values in arrays using their index number in JavaScript. By the end of the video, you should have a solid understanding of how to use indexing to work with arrays in JavaScript. This...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - The Length Method in JavaScript
In this video, you will learn about the length method in JavaScript, which is used to find the number of elements in an array. The video will cover the basics of arrays, how the length method works, and how it can be used to manipulate...