Posts tagged with "programming"

Found 85 posts with this tag.

Articles tagged with programming

Blog posts

Cover image for: Understand CORS and Learn How to Enable it for Your ASP NET API

Understand CORS and Learn How to Enable it for Your ASP NET API

Cross Origin Resource Sharing or CORS in short is a W3C standard that allows a server to relax the same-origin policy. Learn more about CORS, how to enable it for an ASP NET Web API, Preflight requests and more.
Article: Understand CORS and Learn How to Enable it for Your ASP NET API. Cross Origin Resource Sharing or CORS in short is a W3C standard that allows a server to relax the same-origin policy. Learn more about CORS, how to enable it for an ASP NET Web API, Preflight requests and more.. Published December 1, 2020.Tagged as: Dotnet, Programming.Click to read the full article.
Cover image for: Migrating My Blog From Hugo To Gatsby

Migrating My Blog From Hugo To Gatsby

Migrating from Hugo to Gatsby
Article: Migrating My Blog From Hugo To Gatsby. Migrating from Hugo to Gatsby. Published June 5, 2020.Tagged as: Programming, Blogging.Click to read the full article.
Cover image for: HOW TO: ZIP Multiple CSV Files In ASP.NET

HOW TO: ZIP Multiple CSV Files In ASP.NET

Learn how to generate a ZIP file containing many CSV files in an ASP.Net Web API application. The same approach is useful to zip files of any type in any .NET application using CSharp.
Article: HOW TO: ZIP Multiple CSV Files In ASP.NET. Learn how to generate a ZIP file containing many CSV files in an ASP.Net Web API application. The same approach is useful to zip files of any type in any .NET application using CSharp.. Published May 15, 2020.Tagged as: Programming.Click to read the full article.
Cover image for: Don't Let Entity Framework Fool Your Constructors!

Don't Let Entity Framework Fool Your Constructors!

Any state that an object can be in must be representable through the class constructor.
Article: Don't Let Entity Framework Fool Your Constructors!. Any state that an object can be in must be representable through the class constructor.. Published April 1, 2020.Tagged as: Programming.Click to read the full article.
Cover image for: Back To Basics: Constructors and Enforcing Invariants

Back To Basics: Constructors and Enforcing Invariants

In C or any class-based object-oriented language, a Constructor is used to create an object. The constructor is responsible for initializing the objec...
Article: Back To Basics: Constructors and Enforcing Invariants. In C or any class-based object-oriented language, a Constructor is used to create an object. The constructor is responsible for initializing the objec.... Published March 16, 2020.Tagged as: Programming.Click to read the full article.
Cover image for: TypeScript: Use Sum Types To Your Advantage When Modelling Data

TypeScript: Use Sum Types To Your Advantage When Modelling Data

Recently I was working at a client, and we had to take online payment for the service they provide. There were two options to pay - either in part or...
Article: TypeScript: Use Sum Types To Your Advantage When Modelling Data. Recently I was working at a client, and we had to take online payment for the service they provide. There were two options to pay - either in part or.... Published February 24, 2020.Tagged as: Programming.Click to read the full article.