Curated Video
Modern JavaScript from the Beginning - Second Edition - Video API
In this video, you will learn about the Video API. we will see how to load a video, play and pause it, and add video controls to it. This clip is from the chapter "Web Browser APIs" of the series "Modern JavaScript from the Beginning".In...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Canvas Element and API
In this video, you will learn about the Canvas element and the Canvas API. You will learn how to create shapes, draw paths, and add text to the canvas. This clip is from the chapter "Web Browser APIs" of the series "Modern JavaScript...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Function Challenges
This video provides challenges for us to test our understanding of the concepts covered in this section. This clip is from the chapter "Functions, Scope, and Execution Context" of the series "Modern JavaScript from the Beginning".In this...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Progress Bar and Calorie Alert
This video focuses on adding a progress bar and calorie alert to the Tracalorie App project. The video covers how to create and update a progress bar based on the total number of calories consumed and how to display a calorie alert when...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Static Methods
In this video, you will learn about static methods in JavaScript classes, including how to define and use them, and how they differ from instance methods. This clip is from the chapter "OOP - Classes, Getters, Setters, and Private...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Class Inheritance
In this video, you will learn about class inheritance in JavaScript, including how to use the "extends" keyword to create subclasses, how to override superclass methods in subclasses, and how to call superclass methods from within...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Classes
In this video, you will learn about the basics of classes in JavaScript, including how to create classes, instantiate objects from classes, and use constructors to pass arguments to class methods. This clip is from the chapter "OOP -...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Using Object.create()
In this video, we will explore the Object.create() method and demonstrate how it is used to create objects with a specific prototype. This clip is from the chapter "OOP - Constructors and Prototypes" of the series "Modern JavaScript from...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Adding Methods to the Prototype
In this video, we will demonstrate how to add methods to the prototype of an object. We will also discuss the benefits of using prototypes to share methods between objects. This clip is from the chapter "OOP - Constructors and...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Prototypes and the Prototype Chain
In this video, we will introduce prototypes and explain how they are used to share properties and methods between objects. We will also discuss the prototype chain and how it is used to look up properties and methods. This clip is from...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Working with Object Properties
In this video, we will explore different ways of adding and modifying object properties. We will also discuss property descriptors and how they are used to control the behavior of object properties. This clip is from the chapter "OOP -...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Building a Calculator - Part 1
In this video, we will begin building a calculator app using React. You will learn to set up the project, create the necessary components for the calculator interface, and handle user input. The video will guide you through implementing...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Media Queries
In this video, you will learn how to use media queries in CSS3 to apply specific styles based on the characteristics of the device or viewport. We will understand how to create responsive designs that adapt to different screen sizes,...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Overflow
In this video, we will master the art of handling overflow in CSS3 and learn to control the behavior of content when it exceeds the dimensions of its container. We will discover how to handle overflow with properties such as overflow-x...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Z-Index
In this video, we will unlock CSS3's z-index property and understand how to control the stacking order of elements on your webpages. You will learn to layer elements and ensure that they overlap and display correctly, enhancing the depth...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Height and Width
In this video, we will understand the height and width properties in CSS3 and how they are used to control the size of elements. You will learn about different measurement units and how to set fixed and responsive dimensions.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Borders
In this video, we will discover the border property in CSS3 and learn how to style borders around elements. Explore different border styles, widths, and colors. We will understand how to create rounded corners and border effects.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Structure of an HTML5 File
In this video, we will delve into the structure of an HTML5 file and understand the purpose of each component. We will explore the DOCTYPE declaration, head section, and body section. You will learn to properly organize your HTML code to...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - LeetCode Example - Trapping Rainwater
This video talks about the LeetCode platform and then a case study interview question on trapping rainwater. This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the series "JavaScript Mastery from...
Curated Video
Vue.js 3 and Firebase for Beginners - Styling the AboutView
For the finishing touches of our project, we will start with some CSS styling for the AboutView page. This clip is from the chapter "Finishing Touches" of the series "Vue.js 3 and Firebase for Beginners".This section is about the...
Curated Video
Vue.js 3 and Firebase for Beginners - Modal Styling
This video explains modal styling to make the login look attractive and make it appear over the rest of the content. This clip is from the chapter "Authentication" of the series "Vue.js 3 and Firebase for Beginners".This section is all...
Curated Video
The Ultimate ChatGPT Guide with React Native - Develop Mobile Apps - Solution for Stories Bug in the Codes with ChatGPT
This video offers a solution to fix the bug in the code related to the stories feature in React Native with the help of ChatGPT.
Curated Video
The Ultimate ChatGPT Guide with React Native - Develop Mobile Apps - Rendering Image Data Content with React Native for the ChatGPT Project
In this video, you will learn how to render image data content with React Native for the ChatGPT project. The tutorial will cover how to fetch and parse image data from an API or database, as well as how to render the images in your...
Curated Video
Learn Java from Scratch - A Beginner's Guide - Step 04 - OOP Exercise - Rectangle Class
In this video, you will learn an OOP exercise—rectangle class.