Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Issues with Rust
In this video, you will explore some issues with Rust. This clip is from the chapter "What Is Rust and Why Does It Matter" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on what, how,...
Curated Video
Rust Programming 2023 - A Comprehensive Course for Beginners - Safe Mode and Unsafe Mode in Rust
Rust is a modern programming language that prioritizes memory safety and performance. In this video, you will dive into the two modes of operation in Rust—safe mode and unsafe mode. This clip is from the chapter "What Is Rust and Why...
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Testing Authentication
This video explains testing the authentication to see the whole user experience. This clip is from the chapter "Website Authentication" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains the process of...
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Delete Using jQuery
This video explains a dynamic delete operation using jQuery. This clip is from the chapter "Customizing Views and Elements" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to customize views and...
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Understand Scaffolded Views
This video explains the views folder and the index.cshtml file. This clip is from the chapter "Adding a Database" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to create and add a database.
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Scaffolding Views and Controllers - Part 1
This video explains how to scaffold the controller MVC. This clip is from the chapter "Adding a Database" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to create and add a database.
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Scaffold Database with Entity Framework Core
This video explains the Scaffold database with Entity framework core. This clip is from the chapter "Adding a Database" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to create and add a database.
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Create Database
This video explains how to create a database. This clip is from the chapter "Adding a Database" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains how to create and add a database.
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Create ASP.NET Core MVC Project - Visual Studio
This video explains how to create the ASP.NET Core MVC project using Visual Studio. This clip is from the chapter "Setup ASP.NET Core MVC Application" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains...
Curated Video
ASP.NET Core MVC - Cross-Platform Development - Install .NET 7 SDK
This video explains the installation process of .NET 7 SDK. This clip is from the chapter "Environment Setup" of the series "ASP.NET Core MVC - Cross-Platform Development".This section explains the environmental setup to get started with...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Getting Started with Jest
In this video, we will get started with Jest, a popular testing framework for JavaScript. We will install Jest, set up a basic test suite, and write our first test. This clip is from the chapter "Unit Testing Algorithms" of the series...
Curated Video
Modern JavaScript from the Beginning - Second Edition - What Is Unit Testing?
In this video, we will explain what unit testing is and why it's important. We will talk about the benefits of unit testing, the difference between unit testing and other types of testing, and the principles of good unit testing. This...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Babel Setup
In this video, we will look at how to configure Babel in Webpack to transpile our modern JavaScript code to be compatible with older browsers. You will learn how to install Babel and configure it to work with our Webpack setup. This clip...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Module Bundlers
This video explains what module bundlers are and why we need them. It covers how module bundlers work, how they help to optimize our code for production, and the benefits of using a module bundler such as Webpack. This clip is from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Installing and Using Node.js
This video covers how to install and use Node.js, a JavaScript runtime environment that allows us to run JavaScript code outside of the browser. The video explains how to install Node.js on different operating systems and shows how to...
Curated Video
Modern JavaScript from the Beginning - Second Edition - What Are Modules?
This video provides an overview of modules and why they are important in modern web development. It explains how modules help organize code and make it easier to maintain and reuse. The video also discusses the benefits of using modules,...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Project Introduction-2
In this section, you will learn about modules and tooling. We will understand the basics of using Node.js and NPM packages. You will learn about different module formats, such as CommonJS and ES Modules, and how to use them in our code....
Curated Video
Modern JavaScript from the Beginning - Second Edition - Set Calorie Limit
In this video, we will add the ability to set a calorie limit in the Tracalorie app. We will also add an input field that allows the user to set the limit and update the progress bar and calorie alert accordingly. We will persist the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - UI Theme Setup
This video focuses on setting up the user interface (UI) theme for the Tracalorie App project. The video covers how to create and implement a basic UI theme using CSS variables and demonstrates how to switch between light and dark themes...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Project Introduction-1
This video provides an introduction to the Tracalorie App project, which is a meal and workout tracker built using object-oriented programming principles. The video outlines the purpose and goals of the project and provides an overview...
Curated Video
Modern JavaScript from the Beginning - Second Edition - ES2022 Private Class Fields
In this video, you will learn about the new private class fields feature in ES2022, including how to define private object properties using the "#" symbol. This clip is from the chapter "OOP - Classes, Getters, Setters, and Private...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Conditional Rendering
This video delves into various techniques for conditionally rendering components based on specific conditions or user interactions, if statements, ternary operators, and logical operators for implementing conditional rendering effectively.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Understanding Hierarchy in React.JS
This video provides a comprehensive explanation of the hierarchy concept in React.JS. You will learn how components are structured in a hierarchical manner, with parent and child components, topics such as component composition, passing...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Components in React.JS
This video introduces template literals in React.JS to dynamically generate strings with embedded expressions. You will learn to use template literals to concatenate strings and variables in a more concise and readable way. You will...