Using Single Sign-On for Securing Applications in ASP.NET Core
Securing web applications is extremely important, as you do not want unauthorized people to gain access to your data. The most convenient way of securing an application is to use single sign-on (SSO) because it allows users to authenticate once and gain access to all apps within the same system. Continue Reading
The Easiest Way to Learn Design Patterns in C#
A deep understanding of design patterns and the ability to apply them to relevant design challenges is key to writing good code. They ensure the code is easy to understand and maintain, can be extended in the face of evolving requirements, and can be reused as needed. This course will Continue Reading
Building AWS Lambda Functions with C# and .NET
Serverless applications enable businesses to deploy highly-scalable workloads in a very cost-efficient manner. AWS Lambda is the main type of serverless application used by the highly popular Amazon Web Services (AWS) cloud. This course is designed to empower individuals with the skills and knowledge to develop robust and scalable AWS Continue Reading
Using xUnit for Test-Driven Development in .NET
Test-driven development (TDD) is a proven way of developing high-quality applications with clean and well-maintainable code. In this course, you will learn how to use the xUnit testing library to apply the principles of test-driven development on .NET. You will start this course by reviewing the fundamentals of xUnit and Continue Reading
Building and Deploying Azure Functions in .NET
Azure Functions allows businesses and individual developers to run workloads of varying intensity in the cloud without the need to manage servers. These serverless applications can automatically scale based on demand, ensuring that resources are always available when needed. Azure Functions is also very cost-effective since it bills you only Continue Reading
Using ML.NET to Build Machine Learning Models
In this course, you will learn how to use ML.NET, which is a tool based on .NET architecture. It consists of a library and command line utility used for building machine learning models. It is so convenient to work with that a developer having little or no background in machine Continue Reading
The Ultimate Guide for SignalR in ASP.NET Core
Dive into the world of real-time web development with SignalR in ASP.NET Core through this comprehensive guide. This course will equip you with all the necessary skills to develop interactive applications capable of real-time communication without excessive calls. You’ll start by getting to know what SignalR is and how to Continue Reading
Building Cross-Platform Applications with .NET MAUI
.NET MAUI (Multi-platform App UI) is a framework that allows developers to build applications for Windows, Android, macOS, and iOS from the same codebase. It provides an extensive library of controls and components that can be used to create complex user interfaces. You’ll begin with the basics of MAUI project Continue Reading
Building Web Applications with Blazor
This course is a comprehensive overview of Blazor, a web framework used to build single-page applications using C# on the server and client sides instead of JavaScript. The course is particularly beneficial for those developers who want to build full-stack web applications using Microsoft technologies. In this course, you’ll start Continue Reading
The Ultimate Guide to gRPC in ASP.NET Core
Enroll on Educative gRPC is a high-performance communication protocol that works over either HTTP/2 or HTTP/3. It can be used by any programming language and framework, including .NET. gRPC libraries with client and server components are included in ASP.NET Core—the main web development framework of .NET. In this course, you’ll Continue Reading
Securing ASP.NET Core Endpoints
Learn to apply authentication and authorization on any ASP.NET Core endpoints from any client type by using Single Sign On. This video will teach you how to secure any type of ASP.NET Core endpoints by using an external Single Sign On provider. It covers any types of standard HTTP endpoints Continue Reading
The easiest way to learn design patterns
Design patters are something that you will need to get familiar with as a programmer who works with object oriented languages. And this is primarily because they represent well-defined solutions to common software development problems. So, instead of thinking through all the details of your solution, you can simply check Continue Reading
Build a Distributed IoT Cluster on .NET 6 Using Blazor and SignalR to Manage IoT Devices
This video will teach you how to build a cluster of IoT devices using only .NET components. After viewing it you will be able to build a complete distributed IoT solution using .NET 6, SignalR and Blazor. This videos explains how SignalR can substantially simplify two-way real-time communication between the Continue Reading
Getting your first job as a self-taught programmer
It may come as a surprise to you, but many professional programmers are self-taught. And many of them have been able to reach fairly high positions in their career. Therefore, it is not only realistic to get into the software development profession without any formal programming qualifications, but it’s also Continue Reading
Building IoT Applications with SignalR
My book, SignalR on .NET 6 – the complete guide, is out now! In this liveProject, you will be developing a public address (PA) system for London Heathrow airport by using Internet of Things (IoT). The system you will build will be able to react to events (such as plane Continue Reading
Beginning gRPC on ASP.NET Core
gRPC allows you to enable components of your distributed application to communicate effectively with each other and it requires very little code to do so. gRPC is a network communication technology that has been originally developed by Google. It works over HTTP2 protocol and it is primarily used to enable Continue Reading
SOLID principles in .NET and C#
SOLID principles are the most fundamental principles of object oriented programming that are absolutely essential to make your code clean, readable and maintainable. In this class, we will go through each of these principles and apply it in C# code in a .NET console application. What you’ll learn In this Continue Reading
C# for absolute beginners
This course will teach you the fundamentals of C# in an unconventional way: by throwing you straight into the deep water and getting you to do something useful with it. So, no more “Hello World!” application! What you’ll learn Together, we will be building an application that will convert markdown Continue Reading