Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Time Travel Program - If Else and Equality Operators
In this video, we will discuss the solution to the exercise on time travel program using if else and equality operators 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 Is Big O and Time Complexity
In this video, you will learn about the Big O notation and time complexity in computer science. We will start by understanding what the Big O notation is and why it is important in analyzing the performance of algorithms. You will also...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Time Travel Program - If Else and Equality Operators
This is an exercise video where you work on time travel program using if else and equality operators. 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 - 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 - What Are Functions in JavaScript
This is a solution video where you will work on the functions 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 - What Are Functions in JavaScript - Part II
In this video, you will continue your exploration of functions in JavaScript, diving deeper into more advanced topics. You will learn about function scope and how it affects the visibility of variables within functions. This clip is from...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What Are Functions in JavaScript - Part I
In this video, you will learn about functions in JavaScript, which are one of the fundamental building blocks of programming. You will explore the basic syntax of functions and learn how to define and call functions in your code. This...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise Solution - What Is Concatenating in JavaScript - Concatenation
This is a solution video where you will learn about concatenation in JavaScript, which is the process of joining together two or more strings to create a single, larger string. This clip is from the chapter "Introduction to Programming...
Curated Video
Vue.js 3 and Firebase for Beginners - Options or Composition?
In this video, we will look at the Options API and the Composition API in Vue 3. The Composition API provides a functional and reusable way of organizing your code, while the Options API provides a traditional object-oriented approach....
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What Are Libraries in Solidity
In this video, you will learn about libraries in Solidity, which are a way to reuse code and can be deployed as separate contracts or included in the main contract bytecode. This clip is from the chapter "Learn Advanced Solidity II" of...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - Uniswap Interactions with Interfaces
In this video, we will discuss the solution to the exercise on Uniswap interactions with interfaces from the previous video. This clip is from the chapter "Learn Advanced Solidity II" of the series "The Complete Solidity Course - Zero to...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What Are Interfaces in Solidity
This video explains what interfaces are in Solidity and how they are used to enforce standardized behavior across contracts. This clip is from the chapter "Learn Advanced Solidity II" of the series "The Complete Solidity Course - Zero to...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Access Library Using A for B Pattern
This is an exercise video on accessing a library using the A for B pattern. This clip is from the chapter "Learn Advanced Solidity II" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What are Abstract Contracts in Solidity
In this video, you will learn about abstract contracts in Solidity, which are contracts that cannot be deployed and are used as base contracts to be inherited from. This clip is from the chapter "Learn Advanced Solidity I (Inheritance...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - What are Contracts Review in Solidity
This video explores the concept of contract reviews in Solidity and how they can help improve the security and reliability of your smart contracts. This clip is from the chapter "Learn Advanced Solidity I (Inheritance and Abstractions)"...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - The Restricted Access Pattern
The Restricted Access Pattern is a design pattern in Solidity that restricts access to certain functions or data within a smart contract to only authorized parties. This pattern is useful for controlling the flow of operations within a...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Smart Contracts - Points of Failure
In this video, we will discuss the different points of failure that can occur in a smart contract. We will go through some examples of how contracts can be exploited by attackers and discuss some best practices for avoiding common...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Obvious (But Helpful) Advice - Take Your Time with New Things
This video helps you with some helpful advice on Solidity and how to go about it. It will help you understand how to work around with the newer concepts you have learned so far. This clip is from the chapter "Solidity Patterns I -...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Solution - Write a Function Overload
In this video, we will discuss the solution to the exercise on writing a function overload from the previous video. This clip is from the chapter "Learn Functions in Solidity" of the series "The Complete Solidity Course - Zero to...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Exercise - Write a Function Overload
This is an exercise video on writing a function overload. This clip is from the chapter "Learn Functions in Solidity" of the series "The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts".This focuses on the...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Function Overloading in Solidity
In this video, we will cover the concept of function overloading in Solidity. Function overloading allows you to define multiple functions with the same name but different parameter types, which can help you write more modular and...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - The Fallback Function in Solidity III
This video will help you with deploying and debugging your Solidity contracts using Remix IDE. By the end of the video, you will have a clear understanding of the fallback function and be able to implement it in your own Solidity...
Curated Video
The Complete Solidity Course - Zero to Advanced for Blockchain and Smart Contracts - Returning Multiple Data Types with Functions in Solidity
In this video, you will learn how to return multiple data types with functions in Solidity. We will understand why returning multiple values can be useful and then dive into the syntax and implementation of such functions in Solidity....