Angular CLI – Commands

Angular apps have different pieces that need to work together. It has components, services, pipes, etc. All these pieces need to be configured to work together. You can either manually configure them, or you can use tools to help you faster build Angular applications. One of these tools is Angular CLI. Per definition: “The Angular […]

Angular CLI – Commands Read More »

AngularJS to Angular 14

Per definition, Angular is a component-based framework for building scalable web applications. Angular is a great framework because it combines declarative templates, dependency injection, end-to-end tooling, and integrated best practices to solve development challenges. But, it did not start at where it is today, a well-established framework. So, how did Angular start, and how did

AngularJS to Angular 14 Read More »

Git cheat sheet

Per definition, Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Even though git is easy to learn, the problem is that people introduce the powerful features of Git that only a few percentages of developers will ever use. Below, you

Git cheat sheet Read More »

CONST vs READONLY in C#

const and readonly are two very useful keywords in C# that as a .NET developer you might see in any real-world application. When used within the same class, these keywords often confuse us as developers. But, what are the similarities and differences between const and readonly? Declaring CONST vs READONLY Per definition, Constants are immutable values

CONST vs READONLY in C# Read More »

Error: The antiforgery token could not be decrypted

If you are deploying a .net core application to a hosting provider and you are getting this issue: System.InvalidOperationException: The antiforgery token could not be decrypted. —> System.Security.Cryptography.CryptographicException: The key {9725081b-7caf-4642-ae55-93cf9c871c36} was not found in the key ring. There is a high probability that you are getting this issue because your data protection keys are

Error: The antiforgery token could not be decrypted Read More »

Scroll to Top