Curated Video
ChatGPT and DALL-E: Sell Your Creative Thinking with AI - Welcome to the Course
In this video, we will welcome you to the course and provide an overview of what you can expect to learn. We will discuss the importance of AI in today's world and how it is shaping the future of many industries. This clip is from the...
Professor Dave Explains
Logic in Late Modern Philosophy
How did logic continue to develop as the modern period in philosophy progressed? Mill and Comte discussed the inverse deductive method. But then a huge figure arose, George Boole. He innovated new logical symbology that got us closer to...
Curated Video
The Art of Doing - Web Development for Beginners - Store Front Two Preview
In this video, we will have a quick preview of our next project. You will learn how to design a multi-page site for a new "˜made-up company'. The site will include pages such as Home, About, Contact, Pricing, and Pictures, and you are...
Curated Video
The Art of Doing - Web Development for Beginners - Guess My Number Preview
In this video, we will have a quick preview of the "Guess My Number" project. We will discuss the project requirements, including gathering user input, generating random numbers, implementing the game logic, and using functions to...
Curated Video
The Art of Doing - Web Development for Beginners - Final CSS Project Preview
In this video, we will have a quick preview of our final CSS project, which involves building a website for a club, organization, team, and so on. We will discuss the required pages, HTML structure, and semantic elements that should be...
Curated Video
The Art of Doing - Web Development for Beginners - Search Engine Preview
In this video, we will take a quick preview of our project. You will learn how to create your own search engine layout, mimicking Google. This includes creating a thematic header, a search section, a news section with thumbnails for news...
Curated Video
The Art of Doing - Web Development for Beginners - Store Front Preview
In this video, we will create a three-page website for a made-up company. We will design a home page, an about page, and a contact page, all with proper HTML structure and semantic HTML elements. Additionally, we will ensure that each...
Curated Video
ChatGPT for Creatives - WriterZen
In this video, the author talks about another AI tool called WriterZen, which is a writing assistant that helps in improving writing skills. It can check grammar, suggest vocabulary, and give feedback on the tone and style of the...
Curated Video
ChatGPT for Creatives - Nichess
In this video, the author discusses the AI tool called Nichess, designed to help users find profitable niches for their businesses. The tool works by analyzing keywords and generating a list of related topics and potential niches based...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Client-Side Validation of Customer Model
This video shows the process to add client-side validation using jQuery unobtrusive package. You will see the working of client-side through F12 Chrome developer tools and also explain how validation on Client works. This clip is from...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Edit Home Controller Index View
We will edit the default Index view of the home controller in this video to customize it according to our needs. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of the...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Install Nuget Packages
In this video, you will know which are the essential Nuget packages for the MVC client application and how to install them in the project. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Modify the Home Controller
The HomeController is edited to customize it for starting the application. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1 MVC Client" of the series "ASP.NET 6.0 - Build Hands-On Web...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Inspect the wwwroot
This video covers the web root folder, wwwroot, created at the root of the project when you create an ASP.NET Core 3.1 project and use the MVC template. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create an ASP.NET Core MVC Project.
This video shows the creation of an ASP.NET Core 3.1 MVC project and you should be able to do the same thing after attending this video. This clip is from the chapter "Coding Project Part 2: Consume the Web API Using an ASP.NET Core 3.1...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Error Logging in Web API Project
The error logging and handling concept adopted is explained in this video. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the series "ASP.NET 6.0 - Build Hands-On Web Projects".This section explains how to...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create the Customer Model Class
The Customer model is created in this video. The model is mapped to the corresponding Customer table in the database. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the series "ASP.NET 6.0 - Build Hands-On Web...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Understand the SQL Server Database Tables
We start analyzing a pre-existing Microsoft SQL Server database that was created for this application. You will understand the database table structure that will be used by the client application to carry out the CRUD operations....
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create a Web API
In this video, an ASP.NET Core Web API project is created with ASP.NET Core web app empty template. This project will serve as the API for the MVC client. This clip is from the chapter "Coding Project Part 1: Build a Web API" of the...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Introduction: Build and Consume a Web API Using ASP.NET Core and ADO.NET
This is an eye-opener introduction into the highlights of a solution that has two projects: a Web API that is consumed in an ASP.NET Core MVC client. The application uses ADO.NET and uses client- and server-side validation. It also uses...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Integrating Microsoft GitHub Repository Sample Code
This video explains the process of integrating the open-source Microsoft repository sample code available for learning purposes in Visual Studio 2019. At the end of this video, you are expected to integrate the model binding sample code...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Create a ToDo List Razor Pages Application
This is a walkthrough to build a simple Razor ToDoList application with the in-memory collection. The video uses a service layer and dependency injection principles. This clip is from the chapter "Detailed Look into Razor Pages and MVC...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - Understand the Behavior on Combining Middleware
In this video, you will learn how to combine multiple middleware in a middleware pipeline. Specific emphasis is given on WelcomePage and static file middleware. This clip is from the chapter "Middleware in ASP.NET Core 3.1" of the series...
Curated Video
ASP.NET 6.0 - Build Hands-On Web Projects - The Program Class and Host Object
The Program class is where the ASP.NET Core web app builds its web host server and other infrastructure and starts up as a console app (on which the web host is built), utilizing the Startup class. This clip is from the chapter "Create...